From 115471f4e656a7d4576b6572323cd15a9ed25804 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 28 Jan 2025 13:17:01 +0100 Subject: [PATCH 01/59] Refactor getFeature stuff --- .../symbology/hooks/useGetProperties.ts | 9 +++---- .../vector_layer/types/Categorized.tsx | 25 +++++++++-------- .../vector_layer/types/Graduated.tsx | 27 ++++++++++--------- packages/base/src/tools.ts | 23 ++++++++++++++++ 4 files changed, 56 insertions(+), 28 deletions(-) diff --git a/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts b/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts index a7df44540..59a28ce3e 100644 --- a/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts +++ b/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts @@ -51,17 +51,16 @@ export const useGetProperties = ({ data.features.forEach((feature: GeoJSONFeature1) => { if (feature.properties) { Object.entries(feature.properties).forEach(([key, value]) => { - if (typeof value !== 'string') { - if (!(key in result)) { - result[key] = new Set(); - } - result[key].add(value); + if (!(key in result)) { + result[key] = new Set(); } + result[key].add(value); }); } }); setFeatureProps(result); + console.log('result', result); setIsLoading(false); } catch (err) { setError(err as Error); diff --git a/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx b/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx index b0aea7544..a2d451f94 100644 --- a/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx +++ b/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx @@ -2,6 +2,7 @@ import { IVectorLayer } from '@jupytergis/schema'; import { ReadonlyJSONObject } from '@lumino/coreutils'; import { ExpressionValue } from 'ol/expr/expression'; import React, { useEffect, useRef, useState } from 'react'; +import { filterFeatureProperties } from '../../../../tools'; import ColorRamp from '../../components/color_ramp/ColorRamp'; import StopContainer from '../../components/color_stops/StopContainer'; import { useGetProperties } from '../../hooks/useGetProperties'; @@ -25,6 +26,7 @@ const Categorized = ({ const [colorRampOptions, setColorRampOptions] = useState< ReadonlyJSONObject | undefined >(); + const [features, setFeatures] = useState>>({}); if (!layerId) { return; @@ -55,7 +57,16 @@ const Categorized = ({ }, []); useEffect(() => { - populateOptions(); + // We only want number values here + const filteredRecord = filterFeatureProperties(featureProps); + + setFeatures(filteredRecord); + + const layerParams = layer.parameters as IVectorLayer; + const value = + layerParams.symbologyState?.value ?? Object.keys(filteredRecord)[0]; + + setSelectedValue(value); }, [featureProps]); useEffect(() => { @@ -64,14 +75,6 @@ const Categorized = ({ colorRampOptionsRef.current = colorRampOptions; }, [selectedValue, stopRows, colorRampOptions]); - const populateOptions = async () => { - const layerParams = layer.parameters as IVectorLayer; - const value = - layerParams.symbologyState?.value ?? Object.keys(featureProps)[0]; - - setSelectedValue(value); - }; - const buildColorInfoFromClassification = ( selectedMode: string, numberOfShades: string, @@ -85,7 +88,7 @@ const Categorized = ({ selectedMode: '' }); - const stops = Array.from(featureProps[selectedValue]).sort((a, b) => a - b); + const stops = Array.from(features[selectedValue]).sort((a, b) => a - b); const valueColorPairs = Utils.getValueColorPairs( stops, @@ -145,7 +148,7 @@ const Categorized = ({ return (
diff --git a/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx b/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx index 53d389ecb..c04cd8c29 100644 --- a/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx +++ b/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx @@ -1,15 +1,16 @@ +import { IVectorLayer } from '@jupytergis/schema'; import { ExpressionValue } from 'ol/expr/expression'; import React, { useEffect, useRef, useState } from 'react'; +import { filterFeatureProperties } from '../../../../tools'; import { VectorClassifications } from '../../classificationModes'; -import { IStopRow, ISymbologyDialogProps } from '../../symbologyDialog'; import ColorRamp, { ColorRampOptions } from '../../components/color_ramp/ColorRamp'; -import ValueSelect from '../components/ValueSelect'; import StopContainer from '../../components/color_stops/StopContainer'; import { useGetProperties } from '../../hooks/useGetProperties'; +import { IStopRow, ISymbologyDialogProps } from '../../symbologyDialog'; import { Utils, VectorUtils } from '../../symbologyUtils'; -import { IVectorLayer } from '@jupytergis/schema'; +import ValueSelect from '../components/ValueSelect'; const Graduated = ({ model, @@ -35,7 +36,7 @@ const Graduated = ({ const [selectedMethod, setSelectedMethod] = useState('color'); const [stopRows, setStopRows] = useState([]); const [methodOptions, setMethodOptions] = useState(['color']); - + const [features, setFeatures] = useState>>({}); const [colorRampOptions, setColorRampOptions] = useState< ColorRampOptions | undefined >(); @@ -87,24 +88,26 @@ const Graduated = ({ }, [selectedValue, selectedMethod, stopRows, colorRampOptions]); useEffect(() => { - populateOptions(); - }, [featureProps]); - - const populateOptions = async () => { // Set up method options if (layer?.parameters?.type === 'circle') { const options = ['color', 'radius']; setMethodOptions(options); } + console.log('featureProps', featureProps); + // We only want number values here + const filteredRecord = filterFeatureProperties(featureProps); + + setFeatures(filteredRecord); + const layerParams = layer.parameters as IVectorLayer; const value = - layerParams.symbologyState?.value ?? Object.keys(featureProps)[0]; + layerParams.symbologyState?.value ?? Object.keys(filteredRecord)[0]; const method = layerParams.symbologyState?.method ?? 'color'; setSelectedValue(value); setSelectedMethod(method); - }; + }, [featureProps]); const handleOk = () => { if (!layer.parameters) { @@ -173,7 +176,7 @@ const Graduated = ({ let stops; - const values = Array.from(featureProps[selectedValue]); + const values = Array.from(features[selectedValue]); switch (selectedMode) { case 'quantile': @@ -230,7 +233,7 @@ const Graduated = ({ return (
diff --git a/packages/base/src/tools.ts b/packages/base/src/tools.ts index 40bf79ef0..bdb4b4eca 100644 --- a/packages/base/src/tools.ts +++ b/packages/base/src/tools.ts @@ -867,3 +867,26 @@ export const stringToArrayBuffer = async ( ); return await base64Response.arrayBuffer(); }; + +export const filterFeatureProperties = ( + featureProps: Record> +) => { + // We only want number values here + const filteredRecord: Record> = {}; + + for (const [key, set] of Object.entries(featureProps)) { + // Get the first value in the Set + const firstValue = set.values().next().value; + + // Check if the first value is a string that cannot be parsed as a number + const isInvalidString = + typeof firstValue === 'string' && isNaN(Number(firstValue)); + + // If the first value is not an invalid string, add the Set to the filtered record + if (!isInvalidString) { + filteredRecord[key] = set; + } + } + + return filteredRecord; +}; From af263c17bd1080d308ed0b5201ad8be2274a8a16 Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 27 Jan 2025 09:43:03 +0100 Subject: [PATCH 02/59] Add toolbar item --- packages/base/src/commands.ts | 13 +++++++++++++ packages/base/src/constants.ts | 4 +++- packages/base/src/toolbar/widget.tsx | 9 +++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 244aec57c..b9cba393d 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -170,6 +170,19 @@ export function addCommands( ...icons.get(CommandIDs.identify) }); + commands.addCommand(CommandIDs.temporal, { + label: trans.__('Temporal'), + isEnabled: () => { + return tracker.currentWidget + ? tracker.currentWidget.context.model.sharedModel.editable + : false; + }, + execute: args => { + console.log('TIME'); + }, + ...icons.get(CommandIDs.temporal) + }); + /** * SOURCES and LAYERS creation commands. */ diff --git a/packages/base/src/constants.ts b/packages/base/src/constants.ts index 152e639da..ced61d109 100644 --- a/packages/base/src/constants.ts +++ b/packages/base/src/constants.ts @@ -10,6 +10,7 @@ export namespace CommandIDs { export const undo = 'jupytergis:undo'; export const symbology = 'jupytergis:symbology'; export const identify = 'jupytergis:identify'; + export const temporal = 'jupytergis:temporal'; // Layers and sources creation commands export const openLayerBrowser = 'jupytergis:openLayerBrowser'; @@ -99,7 +100,8 @@ const iconObject = { [CommandIDs.newShapefileLayer]: { iconClass: 'fa fa-file' }, [CommandIDs.newGeoTiffEntry]: { iconClass: 'fa fa-image' }, [CommandIDs.symbology]: { iconClass: 'fa fa-brush' }, - [CommandIDs.identify]: { iconClass: 'fa fa-info' } + [CommandIDs.identify]: { iconClass: 'fa fa-info' }, + [CommandIDs.temporal]: { iconClass: 'fa fa-clock' } }; /** diff --git a/packages/base/src/toolbar/widget.tsx b/packages/base/src/toolbar/widget.tsx index b20b3b67e..4d1afb273 100644 --- a/packages/base/src/toolbar/widget.tsx +++ b/packages/base/src/toolbar/widget.tsx @@ -172,6 +172,15 @@ export class ToolbarWidget extends ReactiveToolbar { }) ); + this.addItem( + 'temporal', + new CommandToolbarButton({ + id: CommandIDs.temporal, + label: '', + commands: options.commands + }) + ); + this.addItem('spacer', ReactiveToolbar.createSpacerItem()); // Users From a4792179fda327fe57198a5978b483e20be75df1 Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 27 Jan 2025 09:51:35 +0100 Subject: [PATCH 03/59] Add temporal boolean --- packages/base/src/commands.ts | 6 ++++++ packages/base/src/mainview/mainView.tsx | 1 + packages/schema/src/interfaces.ts | 2 ++ packages/schema/src/model.ts | 13 +++++++++++++ 4 files changed, 22 insertions(+) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index b9cba393d..4f8f9185d 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -179,6 +179,12 @@ export function addCommands( }, execute: args => { console.log('TIME'); + const current = tracker.currentWidget; + if (!current) { + return; + } + current.context.model.toggleTemporal(); + commands.notifyCommandChanged(CommandIDs.identify); }, ...icons.get(CommandIDs.temporal) }); diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 500f851ad..af7965dd8 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1755,6 +1755,7 @@ export class MainView extends React.Component { ); })} + {this._model.isTemporal &&
temporal slider wooo
}
; } diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index ee0c8ae70..1fa475b05 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -166,6 +166,14 @@ export class JupyterGISModel implements IJupyterGISModel { return this._isIdentifying; } + set isTemporal(isTemporal: boolean) { + this._isTemporal = isTemporal; + } + + get isTemporal(): boolean { + return this._isTemporal; + } + centerOnPosition(id: string) { this._zoomToPositionSignal.emit(id); } @@ -620,6 +628,10 @@ export class JupyterGISModel implements IJupyterGISModel { this._isIdentifying = !this._isIdentifying; } + toggleTemporal() { + this.isTemporal = !this.isTemporal; + } + private _getLayerTreeInfo(groupName: string): | { mainGroup: IJGISLayerGroup; @@ -694,6 +706,7 @@ export class JupyterGISModel implements IJupyterGISModel { private _zoomToPositionSignal = new Signal(this); private _isIdentifying = false; + private _isTemporal = false; static worker: Worker; } From b8bca566ee23380be6f0e3639f408113a72c2206 Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 27 Jan 2025 17:19:10 +0100 Subject: [PATCH 04/59] Start adding time slider thing --- packages/base/src/mainview/TemporalSlider.tsx | 105 ++++++++++++++++++ packages/base/src/mainview/mainView.tsx | 3 +- packages/base/style/base.css | 1 + packages/base/style/temporalSlider.css | 8 ++ 4 files changed, 116 insertions(+), 1 deletion(-) create mode 100644 packages/base/src/mainview/TemporalSlider.tsx create mode 100644 packages/base/style/temporalSlider.css diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx new file mode 100644 index 000000000..acb5dca73 --- /dev/null +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -0,0 +1,105 @@ +import { Slider } from '@jupyter/react-components'; +import { IJGISFilterItem, IJupyterGISModel } from '@jupytergis/schema'; +import React, { useEffect, useState } from 'react'; +import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; + +interface ITemporalSliderProps { + model: IJupyterGISModel; +} + +const TemporalSlider = ({ model }: ITemporalSliderProps) => { + const [layerId, setLayerId] = useState(''); + const [selectedLayer, setSelectedLayer] = useState(''); + const [selectedFeature, setSelectedFeature] = useState(''); + const { featureProps } = useGetProperties({ layerId, model }); + + useEffect(() => { + const localState = model.sharedModel.awareness.getLocalState(); + const selectedLayer = localState?.selected?.value; + + if (!selectedLayer) { + console.warn('Layer must be selected to use identify tool'); + return; + } + + const selectedLayerId = Object.keys(selectedLayer)[0]; + setLayerId(selectedLayerId); + }); + + useEffect(() => { + console.log('layerId', layerId); + console.log('featureProps', featureProps); + }, [layerId, featureProps]); + + const handleChange = (e: any) => { + console.log('change', e.target.value); + + const layer = model?.getLayer(layerId); + if (!layer) { + return; + } + + // I think i want to replace filters? + // or save old ones and reapply them when turning temporal off? + // Really i want this filter to work with existing filters + // I want to replace the one being added instead of adding a new one + // add a type or source or something to the filter item?? + const oldFilters = layer.filters?.appliedFilters; + const newFilters = oldFilters ? [...oldFilters] : []; + + const nf = { + feature: selectedFeature, + operator: '<=' as const, + value: e.target.value + }; + + // if no filters then add this one + // if there are filters we want to replace time one + // assume that is the last entry for now + if (newFilters.length === 0) { + newFilters.push(nf); + } else { + newFilters.splice(newFilters.length - 1, 1, nf); + } + + layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; + model?.sharedModel.updateLayer(selectedLayer, layer); + }; + + const updateLayerFilters = (filters: IJGISFilterItem[], op?: string) => { + const layer = model?.getLayer(selectedLayer); + if (!layer) { + return; + } + + const oldFilters = layer.filters?.appliedFilters; + + const newFilters = oldFilters ? [...oldFilters] : []; + + layer.filters = { logicalOp: 'all', appliedFilters: filters }; + model?.sharedModel.updateLayer(selectedLayer, layer); + }; + + const setFeature = (e: any) => { + console.log('e.target.value', e.target.value); + setSelectedFeature(e.target.value); + }; + + return ( +
+
+ +
+
start
+ +
end
+
step
+
+ ); +}; + +export default TemporalSlider; diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index af7965dd8..a81d88cad 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -79,6 +79,7 @@ import StatusBar from '../statusbar/StatusBar'; import { isLightTheme, loadFile, throttle } from '../tools'; import CollaboratorPointers, { ClientPointer } from './CollaboratorPointers'; import { FollowIndicator } from './FollowIndicator'; +import TemporalSlider from './TemporalSlider'; import { MainViewModel } from './mainviewmodel'; import { Spinner } from './spinner'; import { showErrorMessage } from '@jupyterlab/apputils'; @@ -1755,7 +1756,7 @@ export class MainView extends React.Component { ); })} - {this._model.isTemporal &&
temporal slider wooo
} + {this._model.isTemporal && }
Date: Mon, 27 Jan 2025 17:51:57 +0100 Subject: [PATCH 05/59] Continue --- packages/base/src/mainview/TemporalSlider.tsx | 27 ++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index acb5dca73..aea931663 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -11,6 +11,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); const [selectedLayer, setSelectedLayer] = useState(''); const [selectedFeature, setSelectedFeature] = useState(''); + const [range, setRange] = useState({ start: 0, end: 1 }); const { featureProps } = useGetProperties({ layerId, model }); useEffect(() => { @@ -31,6 +32,19 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { console.log('featureProps', featureProps); }, [layerId, featureProps]); + useEffect(() => { + console.log('selectedFeature', selectedFeature); + if (!selectedFeature) { + return; + } + const values: number[] = Array.from(featureProps[selectedFeature]); + console.log('values', values); + const min = Math.min(...values); + const max = Math.max(...values); + setRange({ start: min, end: max }); + console.log('min, max', min, max); + }, [selectedFeature]); + const handleChange = (e: any) => { console.log('change', e.target.value); @@ -94,9 +108,16 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { })}
-
start
- -
end
+
{new Date(range.start).toLocaleString()}
+ +
{new Date(range.end).toLocaleString()}
+
step
); From fbfdda80b1d7caab00fb12402da08d709d5044c7 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 28 Jan 2025 10:20:50 +0100 Subject: [PATCH 06/59] New example --- examples/earthquakesv2.jGIS | 83 +++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 examples/earthquakesv2.jGIS diff --git a/examples/earthquakesv2.jGIS b/examples/earthquakesv2.jGIS new file mode 100644 index 000000000..b9144b5a3 --- /dev/null +++ b/examples/earthquakesv2.jGIS @@ -0,0 +1,83 @@ +{ + "layerTree": [ + "8de7c2c0-6024-4716-b542-031a89fb87f9", + "3e21d680-406f-4099-bd9e-3a4edb9a2c8b" + ], + "layers": { + "3e21d680-406f-4099-bd9e-3a4edb9a2c8b": { + "filters": { + "appliedFilters": [ + { + "feature": "time", + "operator": ">=", + "value": 1506612291990.0 + } + ], + "logicalOp": "all" + }, + "name": "Custom GeoJSON Layer", + "parameters": { + "color": { + "circle-fill-color": "#3584e4", + "circle-radius": 5.0, + "circle-stroke-color": "#62a0ea", + "circle-stroke-line-cap": "round", + "circle-stroke-line-join": "round", + "circle-stroke-width": 1.25 + }, + "opacity": 1.0, + "source": "348d85fa-3a71-447f-8a64-e283ec47cc7c", + "symbologyState": { + "renderType": "Single Symbol" + }, + "type": "circle" + }, + "type": "VectorLayer", + "visible": true + }, + "8de7c2c0-6024-4716-b542-031a89fb87f9": { + "name": "OpenStreetMap.Mapnik Layer", + "parameters": { + "source": "b2ea427a-a51b-43ad-ae72-02cd900736d5" + }, + "type": "RasterLayer", + "visible": true + } + }, + "metadata": {}, + "options": { + "bearing": 0.0, + "extent": [ + -21054033.93842902, + -12436489.089978427, + 19020982.747149467, + 12436489.08997842 + ], + "latitude": -2.842170943040401e-14, + "longitude": -9.131604792619116, + "pitch": 0.0, + "projection": "EPSG:3857", + "zoom": 2.2057932493971575 + }, + "sources": { + "348d85fa-3a71-447f-8a64-e283ec47cc7c": { + "name": "Custom GeoJSON Layer Source", + "parameters": { + "path": "../../examples/eq.json" + }, + "type": "GeoJSONSource" + }, + "b2ea427a-a51b-43ad-ae72-02cd900736d5": { + "name": "OpenStreetMap.Mapnik", + "parameters": { + "attribution": "(C) OpenStreetMap contributors", + "maxZoom": 19.0, + "minZoom": 0.0, + "provider": "OpenStreetMap", + "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "urlParameters": {} + }, + "type": "RasterSource" + } + } +} From 7b664f4376a6a5a4d3678f4f95ef5a703eeb4646 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 28 Jan 2025 11:26:41 +0100 Subject: [PATCH 07/59] wip --- packages/base/src/mainview/TemporalSlider.tsx | 88 +++++++++++-------- 1 file changed, 51 insertions(+), 37 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index aea931663..e029c885d 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,5 +1,5 @@ import { Slider } from '@jupyter/react-components'; -import { IJGISFilterItem, IJupyterGISModel } from '@jupytergis/schema'; +import { IJupyterGISModel } from '@jupytergis/schema'; import React, { useEffect, useState } from 'react'; import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; @@ -9,9 +9,10 @@ interface ITemporalSliderProps { const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); - const [selectedLayer, setSelectedLayer] = useState(''); + // const [selectedLayer, setSelectedLayer] = useState(''); const [selectedFeature, setSelectedFeature] = useState(''); const [range, setRange] = useState({ start: 0, end: 1 }); + const [validFeatures, setValidFeatures] = useState([]); const { featureProps } = useGetProperties({ layerId, model }); useEffect(() => { @@ -30,6 +31,21 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { useEffect(() => { console.log('layerId', layerId); console.log('featureProps', featureProps); + const featuresForSelect = []; + + // We only want to show features that could be time values + for (const [key, set] of Object.entries(featureProps)) { + const checkValue = set.values().next().value; + console.log('checkValue', checkValue, typeof checkValue); + const [cv2] = set; + console.log('cv2', cv2, typeof cv2); + + if (checkValue && isValidDate(checkValue)) { + featuresForSelect.push(key); + } + } + + setValidFeatures(featuresForSelect); }, [layerId, featureProps]); useEffect(() => { @@ -45,6 +61,12 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { console.log('min, max', min, max); }, [selectedFeature]); + const isValidDate = (val: any) => { + const date = new Date(val); + + return !isNaN(date.getTime()); + }; + const handleChange = (e: any) => { console.log('change', e.target.value); @@ -63,8 +85,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const nf = { feature: selectedFeature, - operator: '<=' as const, - value: e.target.value + operator: '>=' as const, + value: +e.target.value }; // if no filters then add this one @@ -77,21 +99,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; - model?.sharedModel.updateLayer(selectedLayer, layer); - }; - - const updateLayerFilters = (filters: IJGISFilterItem[], op?: string) => { - const layer = model?.getLayer(selectedLayer); - if (!layer) { - return; - } - - const oldFilters = layer.filters?.appliedFilters; - - const newFilters = oldFilters ? [...oldFilters] : []; - - layer.filters = { logicalOp: 'all', appliedFilters: filters }; - model?.sharedModel.updateLayer(selectedLayer, layer); + model?.sharedModel.updateLayer(layerId, layer); }; const setFeature = (e: any) => { @@ -101,24 +109,30 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return (
-
- -
-
{new Date(range.start).toLocaleString()}
- -
{new Date(range.end).toLocaleString()}
- -
step
+ {layerId ? ( + <> +
+ +
+
{new Date(range.start).toUTCString()}
+ +
{new Date(range.end).toUTCString()}
+ +
step
+ + ) : ( +
Select a layer
+ )}
); }; From 03232fe2d7c54a3a958ae98bb1135c6f47bf58d3 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 28 Jan 2025 14:44:07 +0100 Subject: [PATCH 08/59] Add date-fns and examples --- examples/pirates.geojson | 130330 ++++++++++++++++++++++++++++++++++ examples/time_test.jGIS | 99 + packages/base/package.json | 1 + yarn.lock | 8 + 4 files changed, 130438 insertions(+) create mode 100644 examples/pirates.geojson create mode 100644 examples/time_test.jGIS diff --git a/examples/pirates.geojson b/examples/pirates.geojson new file mode 100644 index 000000000..ee498ed9a --- /dev/null +++ b/examples/pirates.geojson @@ -0,0 +1,130330 @@ +{ + "type": "FeatureCollection", + "name": "ASAM_events", + "crs": { + "type": "name", + "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } + }, + "features": [ + { + "type": "Feature", + "properties": { + "reference": "2013-63", + "dateofocc": "2013-03-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA:On 05 March, an LPG tanker was boarded at 06-27N 003-23E, in the vicinity of Lagos, and robbed by pirates.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-170", + "dateofocc": "2015-07-31", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Ship", + "descriptio": "VIETNAM:On 31 July near position 16-30N 112-00E, the Vietnam-flagged fishing ship QNg 96507 TS reported that a group of pirates from three Chinese ships boarded the fishing ship, attacked the crewmen and ransacked the ship in an area of the western Parac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.000000000370051, 16.500000000429281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-171", + "dateofocc": "2015-07-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 24 July, at 0445 local time, a duty watchman informed the duty officer on the bridge that two robbers had boarded an anchored product tanker via the forecastle near position 23-01N 070-13E, Kandla Port Anchorage. The alarm was raised and the cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.016666700086944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-172", + "dateofocc": "2015-07-23", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 23 July, at 2345 local time, a duty officer on board an anchored product tanker noticed two robbers had boarded the ship using a ladder in a small boat near position23-01N 070-13E, Kandla Port Anchorage. Ship's Master raised the general alarm fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.016666700086944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-173", + "dateofocc": "2015-08-08", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:Malaysian authorities have located the tanker MT Joaquim on 9 August near position 02-03N 101-59E in the Malacca Straits. The tanker was hijacked on 08 August and the oil cargo was stolen. Two crew members were injured during the incident and ar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.983333300149525, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-174", + "dateofocc": "2015-08-09", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 9 August near position 01-06N 103-34E, six robbers with long knives in a small fast boat boarded the stern of a bulk carrier underway. They entered the engine room and stole ship's spares. The duty crew sighted the robbers as the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-30", + "dateofocc": "2000-04-12", + "subreg": "63", + "hostility_": "SUICIDE ATTACKER", + "victim_d": "NAVAL VESSEL", + "descriptio": "SRI LANKA:One sailor was killed and a Sri Lankan navy patrol boat sunk in a suicide attack 12 Apr in the northwestern port of Kalpitiya.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.770833300229299, 8.23750000019578] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-278", + "dateofocc": "2000-02-22", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier preparing for cargo operations at Pulau Laut coal anchorage was boarded at 1545 UTC, 22 Feb by intruders who broke into the forward stores and stole stores and safety equipment before escaping unsighted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.983611100019061, 4.692500000022676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-332", + "dateofocc": "2001-12-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: An unidentified general cargo ship was boarded and robbed 8 Dec at 0315 local time at Libreville Roads, Gabon. The Master raised the alarm, fired signal rockets, and sent a distress signal to counter the attack. The thieves stole cargo from conta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.450000000336161, 0.383333300281265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-330", + "dateofocc": "2001-12-02", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: An unidentified bulk carrier reported suspicious approach 2 Dec at 0410 local time in position 09-50N 017-10W. The vessel was underway off Conakry, Guinea when two unlit speedboats approached. Duty Officer altered course, raised the alarm, dir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.16666669970175, 9.833333300272102] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-331", + "dateofocc": "2001-12-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON:An unidentified general cargo ship was boarded and robbed 6 Dec at 0330 local time in Douala port, Cameroon. The four thieves were armed with knives and stole ship's stores. When the alarm was raised, they jumped into the water and escaped in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-29", + "dateofocc": "2000-04-29", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Thieves stole ship's stores from an unidentified cargo ship berthed at the port of Kakinada (17-00N 082-19E), boarding at 0324 UTC armed with knives.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.316666700295968, 16.999999999995794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-333", + "dateofocc": "2001-12-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified chemical tanker was boarded and robbed 10 Dec at 0515 local time at Kakinada anchorage, India. The intruders stole two mooring ropes from the forecastle. Later that morning, at 0855 local time, the thieves boarded again, this ti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.249999999632792, 16.93333330023188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-334", + "dateofocc": "2001-12-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 6 Dec at 0300 local time while at Chennai anchorage, India. Intruders with long knives boarded the ship from a small boat.When the Duty A/B raised the alarm, the crew mustered, an the intruders fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.283333300436993, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-335", + "dateofocc": "2001-12-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: An unidentified bulk carrier was boarded 10 Dec at 2110 local time in position 01-14.51N 104-03.82E while underway in Singapore Straits. When the crew raised the alarm and switched on the deck lights, the intruders fled empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.063333299821068, 1.241666700124711] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-336", + "dateofocc": "2001-12-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 6 Dec at 0445 local time while at Jakarta anchorage and ship's stores were stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-337", + "dateofocc": "2001-12-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Dec between 0230 and 0300 local time by between 9 and 10 persons armed with a gun and long knives while ship was at Jakarta anchorage. Ship's stores and equipment stolen form engine room.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-338", + "dateofocc": "2001-12-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:An unidentified tanker was boarded 5 Dec at 1210 local time while anchored at Sandakan, Sabah. The thieves, armed with rifles, broke into paint store while holding crew member at gunpoint, before escaping in speedboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.833333300142726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-339", + "dateofocc": "2001-12-07", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 7 Dec from 0155 to 0220 local time while anchored at Vung Tau. Thieves stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-340", + "dateofocc": "2001-12-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: The container ship (CSAV SINGAPORE) was boarded 19 Dec at 0230 local time while anchored at Rio Grande outer roads awaiting berth. Duty officer noted boat at vessel's starboard bow and raised alarm. Five persons were seen fleeing in two boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.083333300273296, -32.049999999656961] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-341", + "dateofocc": "2001-12-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified cargo ship was subject to an attempted boarding 14 Dec at 0300 local time by six persons in a small, unlit motor boat. Anti-piracy watch raised alarm and foiled attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.999999999607724, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-342", + "dateofocc": "2001-12-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST:An unidentified bulk carrier was boarded 15 Dec at 0300 local time while at Abidjan outer anchorage. Three persons armed with knives assaulted at watchman, bound and gaggedhim and broke into ship's stores. Another watch man spotted the intr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-343", + "dateofocc": "2001-12-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 14 Dec at 0315 local time by persons armed with long knives while a Chittagong anchorage. In thieves cut three mooring lines and lowered them into the water. They fled in their boats with the lines", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-344", + "dateofocc": "2001-12-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MAYANMAR: An unidentified bulk carrier reports being closely followed 15 Dec at 2340 local time while underway in position 19-47.5N 92-00.0E off the Myanamar coast. A grey-paintedspeedboat bearing the number 421, ordered the captain to stop via VHF and u", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.999999999723286, 19.79166670014007] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-28", + "dateofocc": "2000-04-19", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:Thieves in a wooden boat, armed with knives, cut the mooring line of an unidentified tanker tied to a mooring buoy 19 Apr in Vishakhapatnam. The attack occurred at 2000 UTC. Dutycrew sounded the alarm and the thieves fled with the line.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.366666700195026, 17.69999999992848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-31", + "dateofocc": "2000-05-07", + "subreg": "62", + "hostility_": "FISHING BOAT", + "victim_d": "YACHT", + "descriptio": "SOMALIA:An unidentified yacht reported being followed, at a range of 1.5 miles, by a fishing boat at 1956 local time, in the Gulf of Aden off Somalia. Persons in the boat fired gunshots at the yacht. The yacht took evasive action and the pursuit was brok", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.616666700195424, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-32", + "dateofocc": "2000-04-08", + "subreg": "63", + "hostility_": "LTTE ARTILLERY", + "victim_d": "NAVAL VESSEL", + "descriptio": "SRI LANKA:The Sri Lankan navy reportedly lost two Dvora-class gunboats and suffered 20 casualties in attacks by LTTE artillery in fighting around the Elephant Pass 8 Apr.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.770000000128164, 8.030000000344216] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-33", + "dateofocc": "2000-04-24", + "subreg": "72", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. BORNEO:An unidentified bulk carrier was boarded via the anchor chain by six intruders at 1220 UTC 24 Apr while anchored at Bontang. When challenged by a crew member, one of the attackers stabbed him in the stomach. Another crew member sounde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.490833299686528, 0.111666699719422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-34", + "dateofocc": "2000-05-07", + "subreg": "63", + "hostility_": "NAVY VESSEL", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAY OF BENGAL:An unidentified container ship reports being followed by an unidentified naval ship, north of the Andaman Islands. When the naval vessel drew close it was asked to identify itself via VHF Ch. 16, whereupon it slowly withdrew maintaining rad", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [93.751111100231071, 14.185555599745953] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-35", + "dateofocc": "2000-04-24", + "subreg": "72", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship at anchor at Tanjung Priok was boarded from a small fishing boat 0400 local time 24 Apr. The attackers stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.929999999671509, 2.910000000322498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-36", + "dateofocc": "2000-04-19", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:An unidentified bulk carrier was boarded 19 Apr at 1645 UTC under cover of heavy rain while at anchor at Sebuku Island. Three assailants armed with long knives were chased by a watchman who sounded the alarm. The attackers then fled", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.552499999705162, -5.88750000037345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-37", + "dateofocc": "2000-05-01", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded at 0430 local time by approximately six armed thieves, while at anchor in the Pusur River (21-46N 089-30E), Zone a14, Mongla. The intruders held a watchman hostage but crew were alerted by another watc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.500000000092086, 21.766666699821712] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-38", + "dateofocc": "2000-04-19", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:An unidentified LPG carrier moored at Pusri terminal, Palembang, was boarded 0335 local time 19 Apr by thieves who attempted to steal a liferaft. The duty officer was alerted by the loud noise made when the liferaft fell after its li", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.755833300268421, -2.997499999623471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-39", + "dateofocc": "2000-05-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:An unidentified bulk carrier was approached by unlit boats, along both sides, as it entered the port of Sandakan, Sabah (05-49N 118-08E) at 0500 local time. Persons in one boat attempted to board, using a grappling hook, but aborted the attack w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.133333300267054, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-40", + "dateofocc": "2000-04-17", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:An unidentified general cargo ship was boarded over the bow at 0248 local time 17 Apr at Belawan anchorage by three intruders armed with axes. The duty seaman alerted the duty officer and crew whereupon the attackers jumped overboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.686111099756602, 3.787222199791813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-41", + "dateofocc": "2000-04-22", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "KAPITAN IVANCHUK", + "descriptio": "BANGLADESH: The 19,683-ton, Maltese-flag bulk carrier ,Kapitan Ivanchuk, was boarded by armed thieves at 0945 local time while at anchor Jayman Reach anchorage, Mongla (22-28N 089-35E). Thieves boarded simultaneously from barges alongside to port and s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 22.466666699754398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-42", + "dateofocc": "2000-04-13", + "subreg": "71", + "hostility_": "SMALL CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. INDIAN OCEAN:An unidentified chemical tanker reported attempted boarding from a small vessel while underway 13 Apr in 02-49.6S, 095-40.8E. Small craft reportedly approached from port and starboard sides, apparently during hours of darkness, a", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [95.679999999626432, -2.826666699795567] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-254", + "dateofocc": "2000-09-07", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified tanker at anchor Chittagong Roads, was boarded 7 Sep at 0315 local time by five person armed with long knives. The duty officer raised the alarm and the thieves escaped with four mooring lines to a boat in which five accomplic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-255", + "dateofocc": "2000-09-03", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified ship was attacked 3 and 4 Sep at Chittagong Port by a gang of 20-25 persons armed with long knives and operating from six boats. The group attempted to cut the ship's stern line 3 Sep and fled when the crew was alerted. On 4", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-256", + "dateofocc": "2000-09-05", + "subreg": "62", + "hostility_": "BOAT", + "victim_d": "YACHT", + "descriptio": "RED SEA:An unidentified yacht reported 5 Sep that it was being followed by a boat in a \"suspicious\" manner at 0730 local time in the vicinity of Jabal al Tair Island in the lower Red Sea. At 0930 the suspicious boat moved away and no further incidents w", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.734722200158728, 13.839722200110145] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-257", + "dateofocc": "2000-09-01", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "VESSEL", + "descriptio": "RED SEA:An unidentified ship reported being approached 1 Sep at 0820 local time while underway in position 12-36N 046-23E. Two high-speed boats approached at bow and stern but sped away when alarm was sounded and searchlight turned on them.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.383333299970218, 12.600000000033333] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-258", + "dateofocc": "2000-09-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker was boarded 9 Sep at 0015 local time while underway in the Banka Strait in position 02-34.8S 105-46.3E. Pirates armed with long knives held the duty officer and A/B hostage after which they proceeded to the Master and Ch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.771666700096716, -2.579999999792051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-259", + "dateofocc": "2000-09-08", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 8 Sep 0140 local time at Tanjung Priok anchorage by four persons from among 20 in a boat which approached the stern. Ship raised alarm and the intruders fled without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-260", + "dateofocc": "2000-09-11", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:A bulk carrier at Bintulu Anchorage was boarded 11 Sep at 0328 local time by five persons armed with long knives and guns. The intruders broke open the forecastle store and stole ships stores as well as food rations and other equipment from a l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.36944439992152, 5.437777800140509] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-261", + "dateofocc": "2000-09-10", + "subreg": "92", + "hostility_": "REBELS", + "victim_d": "MEN", + "descriptio": "MALAYSIA-PHILIPPINES:Three men were abducted 10 Sep from a Malaysian resort on Pandanan Island and taken by boat to the Philippine rebel stronghold of Jolo.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.445277799780001, 12.074722200408303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-262", + "dateofocc": "2000-01-30", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED HEAVY-LIFT VESSEL IN TRANSIT OF THE ESCRAVOS RIVER IN NIGERIA WAS REPORTEDLY APPROACHED BY A SPEED BOAT CONTAINING THREE PERSONS IN MILITARY UNIFORM WHO DEMANDED THE VESSEL STOP 30 JAN (REPORTED 8 FEB). WHEN THE ORDER WAS REFUSED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-263", + "dateofocc": "2000-02-05", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "ASEAN SUCCESS", + "descriptio": "INDIA:THE 15,943-TON, SINGAPORE-FLAG BULK CARRIER (ASEAN SUCCESS) WAS BOARDED 5 FEB AT 2100 UTC WHILE ANCHORED IN OUTER ANCHORAGE AT KANDLA, INDIA. SHIP WAS BOARDED BY 12 INTRUDERS WHO STOLE A LARGE QUANTITY OF SHIP'S STORES BEFORE BEING CHASED BY SHIP'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.207499999762717, 22.898888899780388] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-264", + "dateofocc": "2000-02-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "APJ ANAND", + "descriptio": "BANGLADESH:THE 10,588-TON, INDIAN-FLAG BULK CARRIER (APJ ANAND) WAS BOARDED 2 FEB AT MONGLA PORT INNER ANCHORAGE, AT 0115 UTC. AN UNKNOWN NUMBER OF BOARDERS, ARMED WITH AXES AND KNIVES, WERE INVOLVED. SHIP'S CREW TRIED TO REPEL THE ATTACK BY SHOUTING A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.594166700367225, 22.45611109989045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-265", + "dateofocc": "2000-02-07", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "KAPITAN IVANCHUK", + "descriptio": "BANGLADESH:THE 19,683-TON, MALTESE-FLAG BULK CARRIER (KAPITAN IVANCHUK) WAS BOARDED 7 FEB AT 0030 LOCAL BY 6 INTRUDERS ARMED WITH LONG KNIVES, WHILE AT ANCHOR AT MONGLA ROADS. THE INTRUDERS STOLE SHIP'S STORES FROM FORWARD AND FLED WHEN THE CREW SOUNDED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.594444400217981, 22.45583330021492] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-266", + "dateofocc": "2000-01-31", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:ATTEMPTED BOARDING WAS MADE ON UNIDENTIFIED BULK CARRIER 31 JAN (REPORTED 8 FEB) WHILE AT ANCHOR AT ADANG BAY. BOARDING WAS ATTEMPTED BY FOUR INDIVIDUALS WHO FLED WHEN THEY WERE SPOTTED BY ALERT CREW ON ANTI-PIRACY WATCH.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.703888900362131, 4.134166700103606] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-267", + "dateofocc": "2000-02-11", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "DUBAI PRIDE", + "descriptio": "NIGERIA:The 9,094-ton, Bahamian-flag chemical tanker (DUBAI PRIDE) was boarded 11 Feb 0430 UTC at Lagos Anchorage by ten attackers armed with long knives. The attackers threatened the duty seaman and raided the ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.500000000008868, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-268", + "dateofocc": "2000-02-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MIYUKI", + "descriptio": "INDONESIA:The 2,025-ton, Singaporean-flag chemical tanker (MIYUKI) was boarded 0240 local time 13 Feb at anchor Merak, Indonesia by three men armed with knives. An engineer was held hostage in the engine room while the attackers stole engine stores and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.449999999875843, -5.96666669987917] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-93", + "dateofocc": "2001-03-07", + "subreg": "91", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:An unidentified container ship was subject to an attempted boarding 7 mar at 0512 local time while underway in manila bay. Persons in a speedboat attempted to come alongside and returned at 0550, but both times alert crew prevented the boardi", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.894999999771926, 14.611666699738691] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-94", + "dateofocc": "2001-03-14", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 14 MAR AT 0350 LOCAL TIME AT LAGOS ANCHORAGE BY THREE MEN ARMED WITH JUNGLE BOLOS. CREW LOCKED THEMSELVES IN THE ACCOMMODATION AND INFORMED PORT CONTROL. AFTER 15 MINUTES THE THIEVES LEFT WITH THREE MOOR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.466666700039298, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-95", + "dateofocc": "2001-03-18", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 18 MAR AT 0300 LOCAL TIME WHILE ANCHORED AT POSITION 04-49S 011-39E, 1.2 NM FROM POINTE-NOIRES. TWO PERSONS, AT LEAST ONE OF WHOM WAS ARMED WITH A KNIFE, LOWERED MOORING LINES INTO A WAITING BOAT. WHEN SPOTT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.649999999867703, -4.816666700246628] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-96", + "dateofocc": "2001-03-17", + "subreg": "72", + "hostility_": "MERCHANT VESSEL", + "victim_d": "THIEVES", + "descriptio": "Indonesia-Borneo:An unidentified lpg carrier was boarded 17 Mar at 0345 local time while at Bontang anchorage. Three persons armed with long knives stole four mooring lines and other ship's stores. Master states belief that thieves monitored vhf channe", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.516666699995426, 0.083333300181607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-97", + "dateofocc": "2001-03-15", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED ROLL-ON, ROLL-OFF SHIP WAS BOARDED 15 MAR AT 2200 LOCAL TIME WHILE BERTHED AT WHARF 305, TANJUNG PRIOK. PERSONS ARMED WITH KNIVES AND GUNS STOLE CASH AND CREW BELONGINGS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-98", + "dateofocc": "2001-03-15", + "subreg": "71", + "hostility_": "HIJACKERS", + "victim_d": "INABUKWA", + "descriptio": "INDONESIA:THE 649-TON, INDONESIAN-FLAG CARGO SHIP (INABUKWA) WAS HIJACKED 15 MAR AT 1155 UTC WHILE SAILING FROM PANGKALBALAM, BANGKA ISLAND, INDONESIA IN ABOUT 00-37S 105-25E, ON A VOYAGE TO SINGAPORE WITH A CARGO OF TIN PLATES, CONCENTRATE, AND PEPPER W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.416666699873929, -0.616666699751079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-99", + "dateofocc": "2001-03-15", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED TANKER WAS BOARDED 15 MAR AT 0230 UTC WHILE ANCHORED AT SEMANGKA PORT. TWO PERSONS ARMED WITH LONG KNIVES WERE SPOTTED AND JUMPED OVERBOARD WITHOUT ANY REPORTED LOSS TO THE SHIP.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, -5.550000000148941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-100", + "dateofocc": "2001-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 14 MAR AT 0100 LOCAL TIME WHILE UNDERWAY IN POSITION 00-58.5N 101-11.6E. EIGHT PERSONS ARMED WITH KNIVES AND GUNS BOARDED FROM A SPEEDBOAT AND ROBBED SHIP'S CASH BEFORE LEAVING IN THEIR SPEEDBOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.193333300096981, 0.974999999994623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-101", + "dateofocc": "2001-03-20", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "LORNA", + "descriptio": "VENEZUELA:Yacht (lorna), nationality unknown, was attacked by four persons in a pirogue 20 Mar 3 miles off the venezuelan coast (reported 28 mar) the pirogue approached the yacht and its occupants asked for cigarettes. When the owner turned away he was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.999999999861075, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-102", + "dateofocc": "2001-03-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MATSUMI MARU NO. 7", + "descriptio": "STRAIT OF MALACCA:THE 2,814-TON, SINGAPORE-FLAG TANKER (MATSUMI MARU NO. 7) LATE ON 18 MAR WHILE UNDERWAY BETWEEN SINGAPORE AND PORT KELANG WITH A PETROLEUM CARGO. A GANG OF FROM 5 TO 7 PERSONS BOARDED FROM A SPEEDBOAT AND HELD THE CREW HOSTAGE WHILE TA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.000000000046668, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-103", + "dateofocc": "2001-03-26", + "subreg": "71", + "hostility_": "FISHING BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO AN ATTEMPTED BOARDING 26 MAR AT 2240 LOCAL TIME WHILE UNDERWAY IN POSITION 00-14N 108-10E. DUTY OFFICER SPOTTED A FISHING BOAT ON RADAR AND RAISED ALARM, FOLLOWING WHICH BOAT WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.166666699738016, 0.233333299781748] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-104", + "dateofocc": "2001-03-21", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 21 MAR AT 0348 LOCAL TIME WHILE UNDERWAY IN THE DURIAN STRAIT IN POSITION 00-43N 108-10E. WATCHMAN NOTICED PERSON TRYING TO ENTER ACCOMMODATION BLOCK AND SOUNDED ALARM, WHEREUPON THE INTRUDERS JUMPED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.166666699738016, 0.71666670017521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-105", + "dateofocc": "2001-03-20", + "subreg": "71", + "hostility_": "FISHING BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS AN ATTEMPTED BOARDING 20 MAR AT 1950 UTC WHILE UNDERWAY IN POSITION 00-55N 105-51E. SHIP WAS APPROACHED BY A FISHING BOAT AND WHEN THE BOAT WAS NOTICED, SWITCHED ON ALL ITS DECK LIGHT AND SHINED ALDIS LA", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.849999999676527, 0.916666699642064] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-106", + "dateofocc": "2001-03-22", + "subreg": "91", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES-LUZON:An unidentified tanker was boarded 22 mar at 0050 local time while anchored at batangas. Duty ab raised alarm and the thieves fled with lifebuoys and escaped in their boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.016666699658913, 13.766666699563018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-107", + "dateofocc": "2001-03-26", + "subreg": "22", + "hostility_": "INTRUDERS", + "victim_d": "CAP DOMINGO", + "descriptio": "Ecuador:The 31,446-ton Malta-flag container ship (Cap Domingo) was boarded 26 Mar at 0330 by persons who gained access from a small boat in heavy rain as ship approached sea buoy. When master shined light on the intruders shots were fired whereupon crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.999999999576232, -1.999999999719364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-43", + "dateofocc": "2000-05-03", + "subreg": "92", + "hostility_": "MILF REBELS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:A Philippine-flag cargo vessel was slightly damaged by an explosion which occurred in the General Santos (06-07N 125-11E) port area, in what is variously described as the fishing port or a cargo pier. Rebels of the Moro Islamic Liberation Fro", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.183333300360232, 6.116666700169958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-44", + "dateofocc": "2000-05-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:The duty officer on an unidentified bulk carrier berthed at Belawan was attacked with iron bars by two of five intruders discovered on board at 2000 local time. The officer was able to escape and sound the ship's alarm, whereupon the intruders", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-45", + "dateofocc": "2000-04-29", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified cargo ship berthed at the port of Sandakan (05-49N 118-08E), Sabah, was boarded at 0200 local time by about six thieves who attempted to steal from the forecastle store. Crew spotted the intruders who left the vessel without ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.133333300267054, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-46", + "dateofocc": "2000-05-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. JAWA:An unidentified LPG tanker was approached while at anchor, at Anyer (06-03S 105-55E), at 0100 local time by persons in a small boat, who attempted to board using grappling hooks. Hired guards fired warning shots and the intruders fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.916666700339761, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-47", + "dateofocc": "2000-04-17", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:Unidentified chemical tanker boarded 0345 local time 17 Apr while at anchor at Belawan. Three intruders armed with long knives boarded over the starboard bow. Crew on watch sounded general alarm and the intruders fled by jumping over", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.686111099756602, 3.787222199791813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-48", + "dateofocc": "2000-04-15", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:Unidentified chemical tanker was boarded 0300 local time 15 Apr at anchor at Belawan. Seven intruders gained access over the bow and jumped over board and fled in two boats after stealing some ship's stores, when spotted by watchman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.687222200432643, 3.788611100143328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-49", + "dateofocc": "2000-05-03", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:An unidentified LPG tanker was boarded at anchor at Vung Tau (10-21N 107-04E)0120 local time. The duty seaman spotted two persons, in blue coveralls similar to crew-issue clothing, on the forecastle but realized they were armed with knives and we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-50", + "dateofocc": "2000-04-14", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA. SARAWAK:An unidentified timber carrier was boarded 0300 local time 14 Apr at Bintulu anchorage by robbers who attempted to enter the forecastle store room. Duty watchman alerted the crew and the intruders fled in their motor boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.844999999646461, 3.24500000041877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-51", + "dateofocc": "2000-04-13", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA. SARAWAK:An unidentified timber carrier was boarded 2230 local time 13 Apr at Bintulu anchorage by robbers who cut lock on the forecastle store room. Duty watchman raised the alarm and the robbers escaped in their motor boat. No information on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.844999999646461, 3.24500000041877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-52", + "dateofocc": "2000-04-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:An unidentified tanker was subject of an attempted boarding 0240 local time 12 Apr at Belawan anchorage. Five robbers attempted to gain access over the vessel's bow while two accomplices waited in a wooden boat at a distance of 2 to 3", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.717499999848314, 3.800833300209661] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-53", + "dateofocc": "2000-04-26", + "subreg": "73", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier repelled an attempted boarding while at anchor at Tanjung Marangaas (10-36S 121-33E) at 1750 local time. Five or six thieves using a grappling hook from a boat were detected and thwarted by alert crew on the bulk", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.550000000094315, -10.600000000177317] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-54", + "dateofocc": "2000-04-01", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:An unidentified bulk carrier was boarded 1 Apr at 0300 local time in Belawan anchorage by eight attackers armed with long knives. The boarding was noticed by the duty officer who alerted the crew via public address and the attackers f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.78000000035621, 3.929999999582094] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-55", + "dateofocc": "2000-04-06", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. JAVA:An unidentified bulk carrier was boarded 6 Apr at 0310 local time at Merak anchorage by three persons armed with long knives who gained access over the stern. The intruders tried to take the watchman hostage but he escaped by jumping ov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.44499999961937, -5.955000000238442] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-56", + "dateofocc": "2000-04-02", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:Seven masked pirates attempted to board an unidentified bulk carrier underway on 2 Apr at 1300 local time in position 02-27S, 117-00E passing Balabalagan Reef in the Makassar Strait. Boarding thwarted by unspecified crew action.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.99999999963245, -2.450000000318482] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-269", + "dateofocc": "2000-02-09", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship was boarded 1800 UTC 9 Feb at anchor Belawan, Indonesia by attackers armed with knives. Crew sounded alarm and attackers fled, apparently without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-270", + "dateofocc": "2000-02-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "FLORA", + "descriptio": "INDONESIA:The 6,935-ton, Bahamas-flag cargo ship (FLORA) was boarded 19 Feb while at anchor in 01-02S 117-17E off Samarinda by approximately 10 armed intruders at 0300, local. Theattackers held a crew member hostage and then escaped with his personal be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.283333299834908, -1.03333329965659] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-271", + "dateofocc": "2000-02-18", + "subreg": "71", + "hostility_": "THIEF", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 18 Feb at 0700 local at its berth at Jakarta. A crewmember was threatened with a knife and ship's stores stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -5.96666669987917] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-272", + "dateofocc": "2000-02-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified survey vessel was boarded 17 Feb while at anchor at Tanjung Priok by nine attackers armed with long knives. The attackers damaged ship's equipment and stole stores before fleeing when chased by the crew. The attacker's boat th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.799999999842157, -5.949999999981969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-273", + "dateofocc": "2000-02-20", + "subreg": "92", + "hostility_": "GUERRILLAS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:Probable separatist guerrillas attacked several sites in the southern Philippines on the island of Basilan 20 Feb. Among the attacks, unidentified men fired on a cargo ship loading at the Isabela Pier in an attack apparently coordinated with", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.05249999978912, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-274", + "dateofocc": "2000-02-24", + "subreg": "52", + "hostility_": "GUNBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH-CENTRAL MEDITERRANEAN-ALGERIA:An unidentified bulk carrier reports being followed by suspicious high-speed gunboat type vessel on 24 Feb in position 37-15.5N 007-50.6E off the coast of Algeria. The crew of the bulk carrier turned on lights and mus", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [7.84333329982104, 37.258333299562707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-275", + "dateofocc": "2000-02-24", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO:An unidentified bulk carrier alongside berth 9 unloading rice at Matadi, was boarded 1540 UTC on 24 Feb by 100 to 120 persons who rushed past the watchman. The mob stole loose items on deck and rice from the cargo until crew members raised the ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.500277799943092, -4.524166699632417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-276", + "dateofocc": "2000-02-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified chemical tanker was boarded 0510 UTC by 15 intruders armed with long knives and stones 22 Feb while alongside Jetty no. 2, Kandla Port. Pirates escaped with stores after fighting with the crew who sounded alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.536666699824764, 11.021111099704967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-277", + "dateofocc": "2000-02-23", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified cargo ship anchored 2.9 miles from the breakwater at Jakaarta's outer anchorage was boarded 2130 UTC 23 Feb by three intruders armed with knives. The three threatened the deck watch who escaped unharmed and alerted the duty off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.745833299949481, 1.99888889973397] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-279", + "dateofocc": "2000-02-22", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:An unidentified tanker at PTSC Terminal, Vungtau was boarded 2030 (local) on 22 Feb. A single intruder armed with a knife boarded over the bow while two accomplices remained in a boat nearby. After threatening a crew member the intruder stole s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.090000000328189, 10.389999999988845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-280", + "dateofocc": "2000-02-25", + "subreg": "93", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HONG KONG:An unidentified container ship at anchor in Western Anchorage no. 2 was boarded in the early morning of 25 Feb by an unknown number of person who broached 10 cargo containers. There is no report of any contents being stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.128333299881319, 22.336944400131586] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-281", + "dateofocc": "2000-03-02", + "subreg": "12", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "UNITED STATES:Two intruders armed with guns boarded an unidentified bulk carrier at 0230 (local) 2 Mar in Port Newark, New Jersey. After breaking into the Chief Mate's cabin and threatening him, they stole personal belongings and cash. The intruders al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.163888899942719, 40.738888900249378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-282", + "dateofocc": "2000-02-12", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "HERRENTOR", + "descriptio": "ECUADOR:The 5,025-ton Cyprus flag cargo ship (HERRENTOR) was reportedly boarded 12 Feb in port Guayaquil (reported 2 Mar). Ten armed robbers broke open a container and removed between 30 and 40 boxes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.030555600433729, -2.41111109984206] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-283", + "dateofocc": "2000-01-23", + "subreg": "24", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL:Four thieves boarded an unidentified ship at anchor in the Fazandinha Anchorage (Munguba Port) on the Amazon River 23 Jan (reported 3 Mar). The intruders were discovered in process of lowering tins of paint to a waiting boat and attacked the ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-33.921388899700219, -7.57305559981944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-108", + "dateofocc": "2001-03-28", + "subreg": "37", + "hostility_": "ROBBERS", + "victim_d": "SPAR EIGHT", + "descriptio": "BELGIUM:THE 22,300-TON, NIS-FLAG BULK CARRIER (SPAR EIGHT) WAS BOARDED 28 MAR AT 0240 LOCAL TIME BY TWO ARMED MEN WHO ENTERED THE MASTER'S CABIN, BOUND HIS HANDS AND FEET, AND RANSACKED THE CABIN, APPARENTLY IN SEARCH OF KEYS OR SAFE COMBINATION. THE TH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "I" + }, + "geometry": { + "type": "Point", + "coordinates": [3.000000000442355, 51.25000000042894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-109", + "dateofocc": "2001-03-27", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 27 MAR AT 0350 LOCAL TIME WHILE AT ANCHOR, CHITTAGONG. TWO PERSONS BOARDED WHILE TWO MORE REMAINED IN THEIR BOAT. DUTY OFFICER RAISED ALARM AND INTRUDERS JUMPED OVERBOARD WITHOUT TAKING ANYTHING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-110", + "dateofocc": "2001-03-30", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS APPROACHED 30 MAR AT 2339 LOCAL TIME WHILE UNDERWAY IN POSITION 02-47N 101-00E BY PERSONS IN TWO SPEEDBOATS. ALERT CREW IS STATED TO HAVE PREVENTED BOARDING.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.000000000014325, 2.783333300178981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-111", + "dateofocc": "2001-03-29", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED SUPPLY SHIP WAS BOARDED 29 MAR AT 0300 LOCAL TIME WHILE AT LABUAN ANCHORAGE. AN ENGINE WAS STOLEN FROM ONE LIFEBOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.233333299903506, 5.333333299676895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-112", + "dateofocc": "2001-04-02", + "subreg": "61", + "hostility_": "MOTOR BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:ABOUT 14 PERSONS IN TWO MOTOR BOATS CHASED AND FIRED SHOTS AT AN UNIDENTIFIED CARGO SHIP 2 APR AT 1230 UTC WHILE THE SHIP WAS UNDERWAY IN POSITION 06-52N 050-01E, 40 NM OFF THE SOMALI COAST. THE CARGO SHIP ALTERED COURSE AND THE PURSUIT WITH GUN", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.016666700060796, 6.866666699969358] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-113", + "dateofocc": "2001-04-04", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 4 APR AT 2045 LOCAL TIME WHILE BERTHED AT COCHIN CONTAINER TERMINAL BY SIX PERSONS OPERATING FORM A WOODEN BOAT. ONE CONTAINER WAS OPENED AND CARGO STOLEN BEFORE THE THIEVES JUMPED OVERBOARD AND ESCAPED W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-114", + "dateofocc": "2001-04-05", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP REPORTED THAT ON 5 APR AT 0130 LOCAL TIME THREE UNLIT BOATS WERE SIGHTED AHEAD OF THE SHIP WHICH WAS AT THE TIME UNDERWAY IN POSITION 01-36N 102-49E. ONE OF THE THREE BOATS APPROACHED THE SHIP AND ITS CREW AT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.816666699609982, 1.599999999677607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-115", + "dateofocc": "2001-04-04", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED 4 APR AT 2140 LOCAL TIME WHILE UNDERWAY IN POSITION 05-38N 096-32E. TWO SPEEDBOATS APPROACHED FROM THE STERN BUT WITHDREW WHEN CREW WAS ALERTED.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.533333300288007, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-288", + "dateofocc": "2000-03-02", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was target of attempted boarding on two occasions, 0100 and 0340 (local) 2 Mar at anchor at Tanjung Priok. Would-be boarders were in two motor boats and finally fled when duty watchman fired a shot from vessel's ri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-116", + "dateofocc": "2001-04-14", + "subreg": "26", + "hostility_": "ROBBERS", + "victim_d": "NUEVA ALCAMAR", + "descriptio": "PANAMA:ACCORDING TO A 14 APR PRESS REPORT, SIX THIEVES ROBBED PASSENGERS ABOARD THE (NUEVA ALCAMAR) (PROBABLE COASTAL FERRY) OF $8,300 WHILE THE SHIP WAS AT KUNA YALA. THE THIEVES REPORTEDLY PASSED THEMSELVES OFF AS AGENTS FROM THE NATIONAL POLICE INFOR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.75000000017792, 9.500000000202874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-117", + "dateofocc": "2001-04-10", + "subreg": "61", + "hostility_": "FISHING BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:AN UNIDENTIFIED CONTAINER SHIP WAS FIRED ON FROM THREE FISHING BOATS 10 APR AT 1400 LOCAL TIME WHILE UNDERWAY IN POSITION 00-08.8S 044-06.2E, NINETY NAUTICAL MILES EAST OF KISMAYU. FOUR SHOTS WERE FIRED AND BOARDING WAS REPORTEDLY ATTEMPTED BEFO", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.103333299932444, -0.146666699924765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-118", + "dateofocc": "2001-04-07", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "JOLLY OVORIO", + "descriptio": "GULF OF ADEN:THE CYPRIOT-FLAG CONTAINER SHIP (JOLLY AVORIO) REPORTED TWO ATTEMPTED PIRACIES 7 APR AT 1400 AND 1530 LOCAL TIME WHILE UNDERWAY ABOUT 33 NM SOUTH OF THE YEMENI COAST. THE FIRST INCIDENT INVOLVED FOURTEEN SMALL HIGH-SPEED BOATS IN POSITION 1", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.783333299900335, 14.166666700295366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-119", + "dateofocc": "2001-04-02", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN:AN UNIDENTIFIED FRENCH YACHT REPORTS BEING FOLLOWED FROM 2 TO 5 APRIL FROM POSITION 12-35N 047-47E TO POSITION 13-55N 052-12E. FOUR ATTEMPTS AT BOARDING WERE REPORTEDLY AVERTED WITH THE \"HELP\" OF A TANKER AND CARGO SHIP IN THE VICINITY.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.783333299835647, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-120", + "dateofocc": "2001-04-12", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP AVERTED AN ATTEMPTED BOARDING 12 APR AT 0440 LOCAL TIME AT CHENNAI ANCHORAGE WHEN ALERT CREW FORCED WITHDRAWAL OF A BOAT WITH SIX PERSONS, ONE OF WHOM HAD THROWN A GRAPPLING HOOK ONTO THE RAIL.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-121", + "dateofocc": "2001-04-13", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 13 APR AT 1445 UTC WHILE ANCHORED AT CHITTAGONG BY THREE MEN FROM AN UNLIGHTED BOAT WHO CAME OVER THE STERN AND ATTEMPTED TO STEAL SHIP'S STORES. ANTI PIRACY WATCH SPOTTED THE INTRUDERS AND RAISED THE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-57", + "dateofocc": "2000-04-05", + "subreg": "81", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WEST CENTRAL PACIFIC:An unidentified bulk carrier reported being followed for one hour and thirty minutes during the night of 5 Apr in position 16-20N, 133-43E. Suspicious craft described as having twin bows on 30 meter length and speed of about 18 knot", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [133.566666700379528, 16.333333300032621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-58", + "dateofocc": "2000-05-01", + "subreg": "22", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU:An unidentified 15,000-ton, Liberian-flag chemical tanker was boarded between 0130 and 0230 local time 1 May (reported 16 May) while berthed at Pisco. The thieves removed mooring line and towing equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.289999999900544, -13.729999999747974] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-59", + "dateofocc": "2000-05-10", + "subreg": "22", + "hostility_": "THIEVES", + "victim_d": "ARCTIC OCEAN", + "descriptio": "ECUADOR:The 10,829-ton, Bahamas-flag, refrigerated container ship (ARCTIC OCEAN) was boarded near buoy 22 while approaching the port of Gye at Guayaquil 10 May 2218 local time. A single container was entered and about ten percent of its cargo of compute", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.868611099718748, -2.181388900310537] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-60", + "dateofocc": "2000-04-28", + "subreg": "24", + "hostility_": "THIEVES", + "victim_d": "ALEXANDRA", + "descriptio": "VENEZUELA:The 7,361-ton, Antigua-flag container ship (ALEXANDRA) was discovered to have been boarded at anchor, Guanta, 28 Apr (reported 15 May) 1915 local time when heaving anchor to proceed to berth. Four persons were seen running along the deck to a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.837499999781471, 10.687499999960266] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-61", + "dateofocc": "2000-05-06", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "GEFION", + "descriptio": "BRAZIL:The 7,170-ton, Philippine-flag bulk carrier (GEFION) was boarded at daybreak 6 May (reported 16 May) while anchored in Santos Outer Roads. The robbers, said to number between five and eight stole approx. $2,000 from the ship's safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-33.938333300347495, -7.556388899922297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-62", + "dateofocc": "2000-05-01", + "subreg": "24", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL:An unidentified 9,760-ton container ship was boarded about 2320 local time 1 May (reported 16 May) while anchored in Santos Roads. Duty watchman spotted two men searching between containers and shortly afterward more persons attempted to board f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-33.904444400127545, -7.589444400216337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-63", + "dateofocc": "2000-05-11", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "FISHING VESSELS", + "descriptio": "NIGERIA:Nigerian fishermen have been attacked on the Bakassi Peninsula and while fishing in territorial waters between 11 and 13 May. The attackers reportedly came from Cameroon and stole valuables, boats and fishing gear at gun point.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-64", + "dateofocc": "2000-05-10", + "subreg": "57", + "hostility_": "MILITANT YOUTHS", + "victim_d": "MILLARD BAY 74", + "descriptio": "NIGERIA:About 30 Ijaw militants stormed the Chevron operated drill rig (MILLARD BAY 74) 10 May in the Dibi area of Delta State. The youths assaulted company personnel, seized four workboats and threatened to blowup the facility if drilling operations we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-65", + "dateofocc": "2000-05-11", + "subreg": "57", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:An 11 May report states that a vessel at Lagos was boarded at anchor from the launch (BAHIM SANI ABACHI) by six men, three of them uniformed, who attempted to extract payments of $5,000 for services not rendered. The Captain's attempt to obtain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.079166700012763, 5.322222200286603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-66", + "dateofocc": "2000-05-10", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:Ship's stores were stolen 1230 local time from an unidentified bulk carrier anchored at Chennai, Madras 10 May. Duty watchman noticed one thief who boarded over the stern who jumped into the water and fled in a waiting boat with six other persons a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-67", + "dateofocc": "2000-05-13", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified bulk carrier berthed at Chittagong was approached by a small boat containing four persons armed with crowbars at 0600 local time 13 May. One person dove into the water alongside the ship, possibly to remove zinc anodes but all", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.813888900349809, 22.315277799802743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-68", + "dateofocc": "2000-05-10", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified cargo ship was boarded at 2350 10 May while at anchor Chittagong. Four armed intruders stole ship's stores and escaped by jumping into the water.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814722199551625, 22.315000000127213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-69", + "dateofocc": "2000-05-06", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified 9,000-ton, Panamanian-flag LPG tanker was subjected to three attacks while at anchor at Chittagong 6 May (reported 16 May). At 0200 6 May several small boats were spotted approaching the ship. The deck watch was alerted and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.797222199553346, 22.298611099905543] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-284", + "dateofocc": "2000-01-21", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "ARKTIS MARINER", + "descriptio": "IVORY COAST:An unidentified vessel, possibly 6,285-ton Danish-flag (ARKTIS MARINER), was attacked at anchor 21 Jan in Abidjan inner anchorage (reported 3 Mar). Robbers stole personal belongings from seaman on watch and tried unsuccessfully to enter the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.955000000206098, 4.44611109969469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-285", + "dateofocc": "2000-02-29", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA:Unidentified ship boarded from boat at bow at 0200 29 Feb in anchorage 8 miles off Luanda by five attackers armed with knives. Robbers succeeded in stealing life raft after the general alarm was sounded. Repeated requests for assistance to the p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.209166699745083, -8.809444399842107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-286", + "dateofocc": "2000-01-31", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified 18,812-ton Liberian flag chemical tanker was approached at 2305 on 31 Jan by a suspicious fishing boat proceeding without navigation lights with a speedboat in tow. Approach was first detected as a weak radar return. A", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.720000000008895, 4.117222199631613] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-287", + "dateofocc": "2000-03-05", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified ship was boarded 1915 UTC 5 Mar at Samarinda Anchorage by robbers who broke into forward deck store and stole a large amount of supplies.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.720555599942031, -0.085833299619196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-289", + "dateofocc": "2000-02-24", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:Crew of unidentified 34,000-ton Panamanian flag bulk carrier successfully repelled an attack by thieves at Belawan anchorage 24 Feb, 0200 (local). Vessel was approached by small boat with seven persons on board who ignored watchman's shouts an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.041111099597515, 4.936111099647576] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-290", + "dateofocc": "2000-03-12", + "subreg": "63", + "hostility_": "SMALL CRAFT", + "victim_d": "WORLD KUDOS", + "descriptio": "ARABIAN SEA:The 49,827-ton, Greek-flag tanker (WORLD KUDOS) was attacked (NFI) by a small craft 12 Mar while 40 miles NE of Socotra Island. Ship evaded the attackers and proceeded on voyage to Singapore.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [97.661944400341781, 12.318888900283582] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-291", + "dateofocc": "2000-03-12", + "subreg": "62", + "hostility_": "BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA:An unidentified ship reports approach with apparent attempt to board 12 Mar by 25-meter brown-painted boat with large number of antennas at 1420 UTC in position 12-57N 055-00E. This report is believed additional to case 12 Mar cited by M/V W", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.000000000325372, 12.949999999999704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-292", + "dateofocc": "2000-03-10", + "subreg": "62", + "hostility_": "MERCHANT VESSEL", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA:An unidentified ship responded via VHF to a distress signal 10 Mar in position 13-06.0N 053-06.8E but reports signaling vessel acted suspiciously when queried.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.113333299837109, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-293", + "dateofocc": "2000-03-10", + "subreg": "62", + "hostility_": "BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA-GULF OF ADEN:An unidentified vessel reports approach in 14-53.9N 051-01.8E at 1500 UTC 10 Mar by boat with four persons. When anti-piracy measures deployed, the craft immediately left the area.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.029999999936194, 14.898333300170577] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-294", + "dateofocc": "2000-02-24", + "subreg": "63", + "hostility_": "HIJACKERS", + "victim_d": "GLOBAL MARS", + "descriptio": "INDIAN OCEAN-ANDAMAN SEA:The 17-member crew of the 3,729-ton Panamanian-flag chemical tanker (GLOBAL MARS) was recovered 10 Mar from an island near Phuket, Thailand. They report their ship was hijacked 24 Feb at 2230 by a group of about 20 armed pirates", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [98.046944400304767, 7.926388899806511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-295", + "dateofocc": "2000-03-20", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified bulkcarrier anchored at Chennai (Madras) outer anchorage was subject of attempted boarding 20 Mar at 0600 local. Alert duty seaman spotted five persons armed with long knives who attempted to board over vessel's stern. When spotte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.28611110024076, 13.040000000119505] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-303", + "dateofocc": "2000-09-12", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED AND ROBBED 12 SEP AT 0315 LOCAL TIME WHILE AT EVERTON WHARF, NEW AMSTERDAM, GUYANA. FIVE PERSONS ARMED WITH GUNS AND KNIVES BROKE INTO THE PAINT LOCKER AND STOLE SHIP'S STORES BEFORE ESCAPING IN A BOAT. A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.0250000000824, 6.794999999949027] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-297", + "dateofocc": "2000-03-26", + "subreg": "57", + "hostility_": "MILITANT YOUTHS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:Militant youths in the Niger Delta attacked a commercial boat 26 Mar as it entered the Benin River. Ten passengers and 6 military escorts were injured in the gunfire from armed personnel in three speedboats..", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.533333299946094, 6.158333299726053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-298", + "dateofocc": "2000-03-26", + "subreg": "61", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:An unidentified tanker reports being approached 26 Mar while at anchor at Dar Es Salaam by five persons in an unlit boat. The boat was detected near the vessel's stern and a searchlight shone on it from the bridge after which it moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.287222199590872, -6.823611100445646] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-122", + "dateofocc": "2001-04-16", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER REPORTS SUSPICIOUS MANEUVERS BY A HIGH-SPEED BOAT 16 APR AT 0145 LOCAL TIME WHILE UNDERWAY IN POSITION 02-03S 108-48E. THE SHIP'S CREW ALTERED COURSE AND FIRED FLARES WHEREUPON THE BOAT WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.799999999906845, -2.049999999586078] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-123", + "dateofocc": "2001-04-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DAISY DUCK", + "descriptio": "GULF OF ADEN:THREE PIRATES IN A WOODEN BOAT REPORTEDLY APPROACHED A YACHT 12 APR AT 0440 UTC (REPORTED 24 APR) UNDERWAY IN POSITION 12-55N 048-20E, ORDERING IT TO STOP. WHEN THE YACHT INCREASED SPEED THE PIRATES SHOT AT THE YACHT USING A MACHINE GUN. Y", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.333333300168192, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-314", + "dateofocc": "2000-09-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship was boarded 24 Sep at 1810 UTC while underway in position 01-17.0N 104-57.8E. Six person armed with long knives boarded from the starboard side. One crew member was robbed of cash and personal effects before the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.963333300119984, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-124", + "dateofocc": "2001-04-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "JUBILEE", + "descriptio": "INDIA:PANAMANIAN-FLAG CARGO SHIP (JUBILEE) (NFI) REPORTED INTERCEPTED 26 APR BY TWO BOATS WHICH BLOCKED ITS MOVE ALONG NAVIGATION CHANNEL WHILE BEING PILOTED FROM HALDIA TO KOLKATA. PILOT AND MASTER WERE DRAGGED FORM SHIP BY MEMBERS OF A GANG OF 200 WHO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.066666700257088, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-125", + "dateofocc": "2001-04-20", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 20 APR AT 0335 LOCAL TIME AT CHENNAI ANCHORAGE. FIVE PERSONS FROM UNLIT BOAT BROKE OPEN FORE PEAK STORE AND STOLE SHIP'S STORES. WATCH RAISED ALARM AND INTRUDERS JUMPED OVERBOARD AND ESCAPED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-126", + "dateofocc": "2001-04-17", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 17 APR IN \"EARLY HOURS\" AT MOORING BUOY NO. 6, MONGLA. THIEVES BROKE OPEN MANHOLE COVER INTO STEERING GEAR FLAT AND STOLE SEVEN MOORING LINES, ENGINE SPARES AND STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 22.466666699754398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-127", + "dateofocc": "2001-04-18", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS BEING CHASED 18 APR AT 0445 LOCAL TIME IN POSITION 05-35S 096-49E BY TWO HIGH SPEED UNLIT BOATS WHICH WITHDREW WHEN ILLUMINATED BY SEARCHLIGHT.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.816666700315238, -5.583333300118511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-128", + "dateofocc": "2001-04-20", + "subreg": "94", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TAIWAN STRAIT:AN UNIDENTIFIED BULK CARRIER REPORTS APPROACH BY THREE MEN IN A FAST BOAT 20 APR AT 11 UTC WHILE UNDERWAY IN POSITION 25-51N 120-45E. ALERT CREW REPORTEDLY FOILED THE ATTEMPTED BOARDING VIA THE STERN.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.750000000428258, 25.849999999787372] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-129", + "dateofocc": "2001-04-16", + "subreg": "94", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EAST CHINA SEA:AN UNIDENTIFIED CARGO SHIP REPORTEDLY NOTICED APPROACH BY A SPEED BOAT 16 APR AT 1935 LOCAL TIME WHILE UNDERWAY IN POSITION 24-34N 119-04E. BOAT INCREASED SPEED AND CAME ALONGSIDE WHILE A PERSON ON BOARD THE BOAT THREW A GRAPPLING HOOK AN", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.066666700360315, 24.566666699552513] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-130", + "dateofocc": "2001-04-20", + "subreg": "25", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC:AN UNIDENTIFIED TANKER WAS BOARDED 20 APR AT 2200 LOCAL TIME WHILE BERTHED AT RIO HAINA. FOUR PERSONS ARMED WITH KNIVES TRIED TO DISMANTLE A LIFEBOAT ENGINE AND JUMPED OVERBOARD ESCAPING WITH SAFETY EQUIPMENT WHEN SPOTTED. MARINE POL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-131", + "dateofocc": "2001-04-24", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 24 APR AT 0145 LOCAL TIME WHILE ANCHORED IN TEMA OUTER ROADS. TWO CREW CHECKING THE ANCHOR CHAIN WERE ASSAULTED AND HELD HOSTAGE BY TWO PERSONS WHILE THREE OTHERS STOLE SHIP'S STORES AND CREW EFFECTS. NO INJ", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-132", + "dateofocc": "2001-01-26", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "KHERSONES", + "descriptio": "SINGAPORE STRAIT:A 2 MAY REPORT STATES THAT UKRAINE FLAG DREDGE (KHERSONES) WAS BOARDED 26 JAN IN SINGAPORE STRAIT BY 12 PERSONS WHO SLASHED THREE CREW MEMBERS WITH MACHETES AND FIRE AXES BEFORE ESCAPING. NO MOTIVE IS REPORTED FOR THE ATTACK AND NO ITEM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.000000000111356, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-133", + "dateofocc": "2001-04-22", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 22 APR AT 0405 LOCAL TIME WHILE AT ANCHOR AT SANDAKAN, SABAH. EIGHT PERSON BOARDED USING GRAPPLING HOOKS AND STOLE SHIP'S STORES BEFORE ESCAPING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-134", + "dateofocc": "2001-04-25", + "subreg": "73", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-BANDA SEA:AN UNIDENTIFIED BULK CARRIER REPORTS BEING APPROACHED 25 APR AT 0430 UTC BY SUSPICIOUS CRAFT WHILE UNDERWAY IN 07-58S 123-45E. CRAFT APPROACHED FROM PORT BOW AND TRIED TO COME ALONGSIDE. SHIP'S ALARM RAISED AND MATE MANEUVERED AWAY", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.749999999625857, -7.966666699943801] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-135", + "dateofocc": "2001-04-27", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:AN UNIDENTIFIED TANKER WAS BOARDED 27 APR AT BETWEEN 0200 AND 0400 LOCAL TIME WHILE AT HONGAY ANCHORAGE. SHIP'S STORES STOLEN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 20.983333300227969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-136", + "dateofocc": "2001-04-27", + "subreg": "93", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO ATTEMPTED BOARDING 27 APR AT 2115 LOCAL TIME WHILE UNDERWAY IN POSITION 14-52N 112-58E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.966666700432825, 14.866666700228109] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-70", + "dateofocc": "2000-05-09", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified LPG tanker was approached while underway at 0345 UTC 9 May from the port quarter by two speed boats. The crew activated fire hoses and the apparent attempted boarding was aborted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.719722200333365, 4.117500000206462] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-71", + "dateofocc": "2000-05-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:An unidentified tanker was boarded 2200 local time 9 May by four pirates armed with long knives while underway in 02-05N, 109-13E off Sarawak. The third officer was taken hostage while the crew's valuables and cash were stolen. The attackers l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.216666699637074, 2.083333300246295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-315", + "dateofocc": "2000-09-24", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 24 Sep at 0230 local time while at Samarinda, Muara Berau and robbed of a life raft.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.239444400033676, -1.021388900165107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-72", + "dateofocc": "2000-05-16", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:On May 16 a previously-unreported incident of attempted robbery occurred on an unidentified anchored ship at Belawan 4 Apr. Between three and five persons were seen at 0303 local time on the forecastle of the ship. When the alarm wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-73", + "dateofocc": "2000-05-14", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:An unidentified cargo ship was boarded 0205 local time 14 May at anchor at Belawan. Five robbers armed with long knives boarded via the starboard side, tied up the duty sailor and threatened to kill him. They broke into the forecastl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-74", + "dateofocc": "2000-04-30", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:An unidentified 24,000-ton, Liberian-flag bulk carrier was attacked about 2030 local time 30 Apr (reported 16 May) while anchored two miles outside the harbor limit at Kohsichang.Thieves were heard trying to force the metal hawse cover to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.699999999914724, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-75", + "dateofocc": "2000-05-16", + "subreg": "26", + "hostility_": "HIJACKERS", + "victim_d": "GONIVE ENFLECHE", + "descriptio": "HAITI:Ten Haitian police officers seeking political asylum in the U.S. hijacked the catamaran ferry (GONIVE ENFLECHE)16 May after it sailed from Port Au Prince. The ferry's master and mate had been tied up but none of the 121 passengers and crew was inj", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.499999999750969, 18.699999999960824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-76", + "dateofocc": "2000-04-23", + "subreg": "57", + "hostility_": "GANG MEMBERS", + "victim_d": "MERCHANT VESSELS", + "descriptio": "NIGERIA:Nigerian police on 23 Apr raided the hulk of a sunken merchant ship off Lagos which was being used by a gang as a base from which to raid nearby island communities and ships anchored offshore. Six persons were arrested and 12 others escaped. On", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.079166700012763, 5.322222200286603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-77", + "dateofocc": "2000-05-22", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified tanker was boarded 2200 local time 22 May as it was preparing to sail from Cochin port. Thieves boarded over the stern and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.536666699824764, 11.021111099704967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-78", + "dateofocc": "2000-05-25", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified bulk carrier was board 1425 local time 25 May while berthed at Chittagong. Three thieves tossed ship's stores to confederates ashore until duty officer spotted them and alerted the crew. One thief excaped by jumping overboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-79", + "dateofocc": "2000-05-15", + "subreg": "74", + "hostility_": "PURSUERS", + "victim_d": "SPIRIT OF JUNO", + "descriptio": "INDIAN OCEAN:The sailing yacht (SPIRIT OF JUNO) reports that at 1846 UTC 15 May it was approached in position 13-24S 114-45E by a lighted unidentified motor vessel described as 100 to 120 feet in length with red-painted bow. The motor vessel with 5 pers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [114.750000000234195, -13.399999999908175] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-80", + "dateofocc": "2000-05-28", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified VLCC was approached at 1445 UTC 28 May in position 01-47N 102-28E by ten persons in an unlit boat. Crew sounded alarm as craft came alongside and attempted boarding was aborted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.466666699643611, 1.783333300146637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-81", + "dateofocc": "2000-05-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified tanker was boarded by five pirates armed with long knives at 0300 local time 28 May in position 02-00.0N 102-14.8E. The intruders entered the accommodation through the engine room skylight. When the intruders tried to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.246666700050184, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-82", + "dateofocc": "2000-05-15", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:Five masked men in two wooden speed boats approached and attempted to board an underway unidentified tanker. The incident occurred 2200 UTC 15 May in position 05-50.3N 115-37.3E off Sabah. Crew sounded ship's whistle and manned fire hoses where", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.621666699920638, 5.838333300399199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-83", + "dateofocc": "2000-05-20", + "subreg": "92", + "hostility_": "REBELS", + "victim_d": "NAVAL VESSEL", + "descriptio": "PHILIPPINES:Philippine rebels hurled hand grenades at an unidentified Philippine naval vessel docked Cotabato city in Mindanao 20 May. The naval vessel was reportedly riddled with holes but no injuries were reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.445277799780001, 12.074722200408303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-299", + "dateofocc": "2000-03-26", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:An unidentified cargo ship was boarded 26 Mar while at anchor, Bintulu, Malaysia. Three attackers armed with long knives boarded via the hawse pipe. They broke into the forecastle paint locker and stole ship's stores. When detected the thiev", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.07000000039568, 3.770000000368327] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-300", + "dateofocc": "2000-03-31", + "subreg": "22", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR:An unidentified container ship was boarded 31 Mar at 2306 local time while heaving anchor eight nautical miles off the sea buoy at Guayaquil. Two persons boarded the ship using long poles,leaving two accomplices in their speedboat. The assailan", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.880833299785024, -2.220833300313245] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-304", + "dateofocc": "2000-09-18", + "subreg": "22", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Ecuador:An unidentified ship was reportedly boarded by thieves 18 Sep at 2240 local time while approaching Guayaquil. They were discovered by a watchman and fired at him when he approached. The thieves then fled to a boat tied alongside with one of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.877499999555653, -2.20083330018673] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-302", + "dateofocc": "2000-03-27", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 27 Mar at 0330 local time while at Berlian Wharf 402, Surabaya by robbers who stole engine spares from the engine room.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.002499999631368, -7.257499999599361] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-305", + "dateofocc": "2000-09-14", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 14 SEP AT 0500 WHILE ANCHORED AT LAGOS ROADS. THREE PERSONS STOLE SHIP'S STORES AND SAFETY EQUIPMENT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.401944400153297, 6.435277800044616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-306", + "dateofocc": "2000-09-03", + "subreg": "63", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NORTH ARABIAN SEA:AN UNIDENTIFIED TANKER REPORTEDLY WAS APPROACHED 3 SEP AT 2115 LOCAL TIME IN POSITION 21-53N 064-24E BY SIX BOATS WHICH CHARGED THE SHIP'S SIDE AT HIGH SPEED. ALARM WAS SOUNDED AND ANTI-PIRACY CREW MUSTERED WITH FIRE HOSES AS DECK LIGH", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.400000000449495, 21.883333299627566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-307", + "dateofocc": "2000-09-15", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED AND ROBBED OF STORES 15 SEP AT 0225 LOCAL TIME WHILE AT CHENNAI ANCHORAGE. FOUR PERSONS FROM AN UNLIT BOAT JUMPED OVERBOARD AND ESCAPED WHEN DUTY CREW RAISED THE ALARM.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.440277799996238, 13.051666699760233] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-308", + "dateofocc": "2000-09-14", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 14 SEP AT 0710 LOCAL TIME AT CHITTAGONG ANCHORAGE AS THE CREW WERE OPENING HATCHES FOR DISCHARGE. THE THIEVES ENTERED THE FORECASTLE AND FLED WITH SOME SHIP'S STORES WHEN THE ALARM WAS RAISED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.524722199964913, 22.219444400399823] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-309", + "dateofocc": "2000-09-16", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER REPORTS APPROACH BY TWO SPEEDBOATS WITH APPARENT INTENT TO BOARD 16 SEP AT 1808 LOCAL TIME. SHIP'S ALARM WAS SOUNDED AND EVASIVE STEERING BEGUN AND THE BOATS BROKE OFF THEIR ATTEMPT.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.951944399993124, 3.563333299718579] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-310", + "dateofocc": "2000-09-15", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPELLED A BOARDING ATTEMPT 15 SEP AT 0153 LOCAL TIME AT LAWI-LAWI ANCHORAGE, BALIKPAPAN, EAST KALIMANTAN. NINE PERSONS FROM A BOAT ATTEMPTED TO BOARD THE SHIP VIA THE STERN BUT FLED WHEN THE ANTI-PIRACY PATROL SOUNDED T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.612222199607004, -2.97916670042332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-311", + "dateofocc": "2000-09-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified tanker was boarded 22 Sep at 0130 local time while underway in position 01-51N 102-20E. Five persons armed with long knives took hostage two members of the anti-piracy watch but were unable to gain access to the accommo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.333333300115896, 1.849999999910551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-312", + "dateofocc": "2000-09-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified chemical tanker was boarded 21 Sep at 2305 local time in position 02-00N 102-11E by persons armed with long knives and shot guns. The thieves entered the master and other officer's cabins and robbed personal items befor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.183333299616379, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-313", + "dateofocc": "2000-09-25", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship underway in position 01-05.4N 105-03.4E at 0125 local time on 25 Sep was approached from astern by an unlit boat first noticed by the duty officer on the ship's radar. The ship commenced evasive maneuvers, sounde", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.056666700293931, 1.089999999598149] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-137", + "dateofocc": "2001-04-30", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:ON OR ABOUT 30 APR AN OIL TANKER OWNED BY THE STATE OIL MONOPOLY PERTAMINA WAS REPORTEDLY THE TARGET OF A ROCKET-PROPELLED GRENADE ATTACK WHILE AT ITS BERTH AT LHOKSEUMAWE. THE ATTACK WAS ALLEGEDLY LAUNCHED BY REBELS OF THE FREE ACEH MOVEMENT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.16666670028161, 5.166666700004328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-138", + "dateofocc": "2001-04-18", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS BEING CHASED 18 APR AT 0445 LOCAL TIME IN POSITION 05-35N 096-49E BY TWO HIGH SPEED UNLIT BOATS WHICH WITHDREW WHEN ILLUMINATED BY SEARCHLIGHT.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.816666700315238, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-139", + "dateofocc": "2001-05-05", + "subreg": "93", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:AN UNIDENTIFIED BULK CARRIER WAS REPORTEDLY SURROUNDED 5 MAY AT 2315 LOCAL TIME BY FIVE SPEEDBOATS WHOSE OCCUPANTS ATTEMPTED TO BOARD WHILE THE BULK CARRIER WAS UNDERWAY IN POSITION 16-02N 113-42E. CREW MUSTERED AND ACTIVATED FIRE HOSES", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.700000000335081, 16.03333329993302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-140", + "dateofocc": "2001-05-08", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL:An unidentified bulk carrier was boarded 8 May at 0155 local time while berthed at sugar terminal, by ten persons armed with pistols and machine guns. Crew members were taken hostage or tied up while robbers broke into cabins and stole cash, store", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.883333300256652, -8.099999999646855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-141", + "dateofocc": "2001-05-14", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "USNS LITTLEHALES", + "descriptio": "SENEGAL:THE U.S. FLAG SURVEY SHIP (USNS LITTLEHALES) WAS BOARDED AND ROBBED OF SIX MOORING LINES 14 MAY ABOUT 0530 LOCAL TIME WHILE UNDERWAY FIVE MILES SOUTH OF DAKAR PORT. ROVING DECK WATCH NOTICED SMALL UNLIT BOAT ASTERN CONTAINING EIGHT PERSONS WHICH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.499999999770978, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-142", + "dateofocc": "2001-05-11", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 11 MAY AT 0155 UTC AT LAGOS ANCHORAGE AND ONE CREW MEMBER TAKEN HOSTAGE AND THEN THROWN OVERBOARD CATCHING HIMSELF ON A RAIL. ALARM RAISED AND THIEVES ESCAPED WITH SHIP'S STORES. LAGOS PORT CONTROL REPOR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-143", + "dateofocc": "2001-05-14", + "subreg": "63", + "hostility_": "THIEF", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 14 MAY AT 2100 LOCAL TIME AT CHITTAGONG ANCHORAGE BY A SINGLE PERSON ARMED WITH A KNIFE. WHEN SPOTTED BY WATCH PERSON JUMPED OVERBOARD AND ESCAPED IN UNLIT MOTORBOAT WITH A MOORING LINE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-144", + "dateofocc": "2001-05-16", + "subreg": "62", + "hostility_": "YEMENI GOVERNMENT", + "victim_d": "DELOS CARRIER", + "descriptio": "YEMEN:THE 4,878-TON, ST. VINCENT-FLAG VEHICLE CARRIER (DELOS CARRIER) WAS ABANDONED ABOUT 16 MAY BY ITS OFFICERS AND CREW AFTER THE SALVOR CONTRACTED TO FREE THE VESSEL AGROUND OFF YEMEN NEAR HODEIDAH LEFT THE SCENE FOLLOWING DEMANDS FOR PAYMENTS AND IND", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.200000000303476, 14.799999999564875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-145", + "dateofocc": "2001-05-09", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 MAY AT 0345 LOCAL TIME WHILE ANCHORED AT PENANG INNER ANCHORAGE BY FIVE PERSONS ARMED WITH LONG KNIVES AND CROWBARS. ALARM WAS SOUNDED AND THIEVES JUMPED OVERBOARD AFTER WHICH CREW DISCOVERED NINE CO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.333333300051208, 5.416666700237272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-146", + "dateofocc": "2001-05-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 12 MAY AT BELAWAN ANCHORAGE AT 0430 LOCAL TIME BY FOUR ARMED PERSONS FROM A SPEEDBOAT. DUTY SEAMAN HELD AT KNIFEPOINT AND SHIP'S STORES STOLEN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-147", + "dateofocc": "2001-05-12", + "subreg": "73", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-BANDA SEA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 12 MAY AT 0100 LOCAL TIME WHILE UNDERWAY IN POSITION 06-07S 125-28E. WATCH SPOTTED ONE PERSON BOARD FROM STARBOARD QUARTER AND ALERTED OTHER CREW. INTRUDER JUMPED OVERBOARD AND ESCAPED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.466666700387464, -6.11666670037863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-148", + "dateofocc": "2001-05-09", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Java:An unidentified bulk carrier was twice boarded 9 May at 0330 and 1030 local time while at Semarang anchorage. A mast house locker was broken into and ship's stores and equipment stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.316666700302164, -6.883333300250456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-149", + "dateofocc": "2001-05-05", + "subreg": "93", + "hostility_": "ATTACKERS", + "victim_d": "FISHING VESSEL", + "descriptio": "THAILAND:AN UNIDENTIFIED MALAYSIAN FISHING BOAT WAS ATTACKED 5 MAY (REPORTED 15 MAY) AT ABOUT 1700 LOCAL TIME WHILE FISHING ABOUT 12 MILES OFF TAKBAI, THAILAND. A SECOND BOAT APPROACHED THE FIRST AND OPENED FIRE KILLING OR WOUNDING THE MASTER WHO FELL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.000000000046668, 6.200000000006241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-150", + "dateofocc": "2001-05-11", + "subreg": "22", + "hostility_": "FISHING BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Ecuador:An unidentified container ship was approached 11 may at 1940 local time by two boats disguised as fishing boats. The container ship was about 20 miles off the coast about 98 miles from Guayaquil on a voyage from Buenaventura. After executing ev", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.999999999576232, -0.500000000120508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-84", + "dateofocc": "2000-05-23", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. BORNEO:An unidentified bulk carrier was boarded 0005 local time 23 May at the pilot anchorage, Samarinda. Two persons armed with long knives boarded at the forecastle but jumped into the sea when spotted by a seaman who sounded the alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.720555599942031, -0.085833299619196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-85", + "dateofocc": "2000-05-22", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. JAVA:An unidentified tanker was boarded over the stern while berthed at Anyar 0230 local time 22 May. The four intruders, armed with long knives, were spotted by the duty watchman and fled in their boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.499999999839588, -8.500000000379202] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-86", + "dateofocc": "2000-05-17", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:Five men boarded an unidentified tanker 0420 local time 17 May as it heaved anchor at Belawan anchorage. Crew sounded the alarm and the intruders jumped overboard.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.681666699750565, 3.91333329968495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-87", + "dateofocc": "2000-05-15", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "ERYA 3", + "descriptio": "INDONESIA. SUMATERA:An unknown ship reporting its name as (ERYA3) was heard in VHF Channel 16 2308 local time 15 May informing Batam Radio it was being boarded by ten men using grappling hooks. Ship reported position as 01-11N 103-58E or just off the bre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-90", + "dateofocc": "2000-01-02", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "SINAR JAVA", + "descriptio": "SRI LANKA:The 10,756-ton, Singapore-flag container ship (SINAR JAVA) was raided during the night of 2 Jan while berthed at Colombo. Navy and harbor police alerted by ship's crew who detected the raiders' approach and police were able to arrest four of t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.000000000234536, 9.649999999803072] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-93", + "dateofocc": "2000-05-30", + "subreg": "28", + "hostility_": "HIJACKERS", + "victim_d": "MARIA ESTELA", + "descriptio": "GUATEMALA. BELIZE:Three gunmen hijacked the commuter ferry (MARIA ESTELA) 30 May on a routine voyage across the Gulf of Honduras from Puerto Barrios, Guatemala to Punta Gorda, Belize. Five passengers and crew were shot and their bodies later recovered f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.916666699998643, 15.900000000230023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-94", + "dateofocc": "2000-06-03", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST:Stores were stolen and a crew member injured and hospitalized following an attack 2 Jun at 0125 UTC on an unidentified tanker anchored at Abidjan, Ivory Coast.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.955000000206098, 4.44611109969469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-325", + "dateofocc": "2000-10-01", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED GENERAL CARGO SHIP REPORTED FOILING ATTEMPTED BOARDING BY FIVE PERSONS IN A SPEEDBOAT1 OCT AT 0140LOCAL TIME WHILE UNDERWAY IN POSITION 01-55.2N 102-22.5E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.375000000396028, 1.91999999990378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-95", + "dateofocc": "2000-05-17", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA:The 8,922-ton St. Vincent-flag bulk carrier was boarded 17 May (reported 1 Jun) at Luanda anchorage. A gang, said to number 8 or 9, armed with long knives, swords and iron rods pursued the crew and tied and beat two men, on of whom was left uncon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.209166699745083, -8.809444399842107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-96", + "dateofocc": "2000-06-03", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:Ten persons in two unlit boats attempted to board an unidentified cargo ship 3 Jun at 0250 local time at Chennai anchorage. Watchman alerted bridge and intruders fled when they saw the alerted crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-97", + "dateofocc": "2000-06-03", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "ASIA HARMONY", + "descriptio": "BANGLADESH:Persons from three wooden boats made three attempts to board the 4,724-ton, Singapore-flag cargo ship (ASIA HARMONY) 3 Jun at 1515 UTC at Chittagong anchorage. Crew and watchmen prevented attempts.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-98", + "dateofocc": "2000-06-01", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified cargo ship was attacked, reportedly for the second time, 1 Jun at 1945 local time, at anchorage area 14, Pussur River, Mongla, by thieves armed with long knives. Losses not reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.594444400217981, 22.45583330021492] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-316", + "dateofocc": "2000-09-23", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:And unidentified LPG carrier reports being approached and illuminated by an unidentified boat which emerged from a large group of fishing boats 23 Sep at 0045 local time while underway Northwest of Kalimantan. After switching on its searchlig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.101666700324586, -1.53944440015556] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-317", + "dateofocc": "2000-09-24", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:An unidentified bulk carrier was boarded 24 Sep at 0300 local time while loading at Sandakan. Two persons were observed by the duty patrol attempting to open the paint locker while twelve others waited in two boats tied to the anchor chain. Du", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.254444399903832, 5.919722200357626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-318", + "dateofocc": "2000-09-25", + "subreg": "91", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:An unidentified container ship was boarded 25 Sep at 0130 local time while at anchor at Manila Bay. The duty seaman sounded ship's alarm and the thieves leapt overboard and escaped with some equipment form the ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.700833299731016, 14.844444399824113] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-319", + "dateofocc": "2000-09-28", + "subreg": "57", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA:AN UNIDENTIFIED CONTAINER SHIP REPORTED ATTEMPT TO BOARD 28 SEP AT 1158 UTC WHILE RAISING ANCHOR TEMA ANCHORAGE 05-40N 000-01W. ANTI-PIRACY WATCH SPOTTED SMALL WOODEN BOAT WHICH WAS DRIVEN AWAY. LATER ONE PERSON ATTEMPTED TO BOARD VIA THE ANCHOR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.01666669955182, 5.66666669957084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-320", + "dateofocc": "2000-09-28", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA. MADRAS:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 28 SEP AT 0030 LOCAL TIME AT CHENNAI ANCHORAGE. THREE PERSON ARMED WITH KNIVES WERE SPOTTED BY DUTY WATCH, ALARM WAS SOUNDED AND INTRUDERSJUMPED OVERBOARD. POLICE BOAT ATTENDED TO INVESTIGATE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.354999999558004, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-321", + "dateofocc": "2000-10-02", + "subreg": "63", + "hostility_": "LTTE REBELS", + "victim_d": "NAVY BOAT", + "descriptio": "SRI LANKA:THE DEFENCE MINISTRY REPORTED 2 OCT THAT AN OFFICER AND A SAILOR WERE KILLED WHEN THEIR BOAT WAS DISABLED BY LTTE REBELS NEAR THE WESTERN COASTAL TOWN OF PUTTALAM.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.833333299837875, 8.033333299674268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-322", + "dateofocc": "2000-10-01", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MYANMAR:UNIDENTIFIED CONTAINER SHIP AT NEW EXPLOSIVE ANCHORAGE, YANGON RIVER SUBJECTED TO ATTEMPTED BOARDING BY THREE PERSONS FORM SMALL BOAT 1 OCT AT 0210 LOCAL TIME. WATCH RAISED ALARM AND INTRUDERS FLED TOWARD NEW CONTAINER TERMINAL.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [96.259999999699176, 16.646666699800051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-323", + "dateofocc": "2000-10-02", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:ALERT CREW FOILED ATTEMPTED BOARDING OF UNIDENTIFIED CONTAINER SHIP 2 OCT AT 2330 LOCAL TIME WHILE UNDERWAY IN POSITION 02-21.6N 101-41.0E, 10 NM FROM TANJUNG TUAN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.683333300049867, 2.359999999989952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-324", + "dateofocc": "2000-10-01", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 1 OCT AT 0250 LOCAL TIME WHILE UNDERWAY IN POSITION 01-57.5N 102-15E. CHIEF OFFICER WAS TAKEN HOSTAGE BY FOUR PERSONS ARMED WITH GUNS AND LONG KNIVES AND HIS KEYS USED TO OPEN CABINS OF MASTER", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.250000000279613, 1.958333300129823] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-326", + "dateofocc": "2000-09-29", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP REPORTED ATTEMPTED BOARDING 29 SEP AT 0420 LOCAL TIME WHILE UNDERWAY IN POSITION 01-54.7N 102-13.4E. MASTER TOOK EVASIVE ACTION ALTERING COURSE AFTER WHICH PURSUIT AND BOARDING ATTEMPTS CONTINUED FOR TEN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.223333299869523, 1.911666700317255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-327", + "dateofocc": "2000-10-01", + "subreg": "71", + "hostility_": "HIJACKERS", + "victim_d": "HAZEL 1", + "descriptio": "SINGAPORE:BULK CARRIER (HAZEL 1)(NFI) REPORTS BOARDING 1 OCT BY 21 PERSONS ARMED WITH PISTOLS AND KNIVES WHILE ANCHORED AT SINGAPORE WESTERN OPL ANCHORAGE. INTRUDERS BOARDED AT 0030 LOCAL TIME, TIED AND GAGGED THE SLEEPING CREW AND RANSACKED THE SHIP FO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.573333299868182, 1.219999999971094] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-328", + "dateofocc": "2000-10-01", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. SUMATERA:AN UNIDENTIFIED TANKER WAS BOARDED 1 OCT AT 0200 LOCAL TIME WHILE AT ANCHOR, DUMAI PORT BY FOUR PERSONS ARMED WITH KNIVES OPERATING FORM A SMALL MOTOR BOAT. WATCH RAISED ALARM AND INTRUDERS FLED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.65000000044364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-151", + "dateofocc": "2001-05-06", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Ecuador:An unidentified container ship was boarded 6 May at 2230 local time while anchored at Guayaquil (reported 18 May). Ten persons boarded from a boat alongside and shots were fired when crew tried to stop boarding. General alarm sounded and pilot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.899999999810461, -2.216666699982682] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-152", + "dateofocc": "2001-05-16", + "subreg": "51", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MOROCCO:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 16 MAY AT 0300 LOCAL TIME AT AGADIR BY EIGHT PERSONS ARMED WITH KNIVES AND STICKS. THE INTRUDERS THREATENED THE WATCHMEN BUT CREW ARRIVED AND CAPTURED FOUR PERSONS, DETAINING THEM UNTIL POLICE ARRIVED WITHI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.666666699908887, 30.49999999998272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-153", + "dateofocc": "2001-05-16", + "subreg": "62", + "hostility_": "ROBBERS", + "victim_d": "GULF STAR", + "descriptio": "YEMEN:THE 22,572-TON, BAHAMAS FLAG CONTAINER SHIP (GULF STAR) WAS BOARDED AND ROBBED 16 MAY BETWEEN 0030 AND 0600 LOCAL TIME BY PERSONS WHO ENTERED RADIO ROOM AND STOLE A LAPTOP COMPUTER, TWO PRINTERS AND A FAX MACHINE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-154", + "dateofocc": "2001-05-14", + "subreg": "63", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:A SINGLE PERSON ARMED WITH A KNIFE BOARDED AN UNIDENTIFIED CARGO SHIP AT CHITTAGONG ANCHORAGE 14 MAY AT 2100 LOCAL TIME USING A GRAPPLING HOOK AT THE FORECASTLE. WHEN SPOTTED BY ANTI-PIRACY WATCH THE MAN JUMPED OVERBOARD AND ESCAPED IN AN UNL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-155", + "dateofocc": "2001-05-17", + "subreg": "71", + "hostility_": "STALKER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA SEA:AN UNIDENTIFIED GAS CARRIER REPORTS BEING INTERCEPTED 17 MAY AT 0200 LOCAL TIME WHILE UNDERWAY IN THE NORTH JAVA SEA IN POSITION 01-09S 107-33E BETWEEN SUMATRA AND KALIMANTAN. SHIP ALTERED COURSE BUT BOAT MATCHED MOVEMENTS UNTIL ILLUM", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.549999999641614, -1.150000000186481] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-156", + "dateofocc": "2001-05-22", + "subreg": "57", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 22 MAY AT 0130 WHILE AT LAGOS ANCHORAGE. FOUR ARMED PERSONS ATTEMPTED TO BREAK INTO THE ROPE STORE BUT FLED WHEN THEY WERE SPOTTED AND ALARMS WAS RAISED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-157", + "dateofocc": "2001-05-26", + "subreg": "56", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EGYPT:An unidentified container ship was boarded 26 may at 1625 local time while at outer anchorage, suez. Unauthorized person found at forward stores while a second attempted to board from a launch. Two other persons found in accommodation. alarm raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.833333300019547, 32.566666699811265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-158", + "dateofocc": "2001-05-22", + "subreg": "62", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAN:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 22 MAY AT BANDAR KHOMEINI INNER ANCHORAGE VIA HAWSE PIPE, AND SHIP'S STORES STOLEN. DESPITE PROBABLE OCCURRENCE OF MANY SUCH EVENTS, THIS IS RARE EXAMPLE OF ONE ACTUALLY BEING REPORTED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.099999999864735, 30.433333300218806] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-159", + "dateofocc": "2001-05-29", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 29 MAY AT 0600 LOCAL TIME AT TANJUNG PRIOK ANCHORAGE. THE THREE INTRUDERS JUMPED OVERBOARD AND ESCAPED WHEN ALARM RAISED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-354", + "dateofocc": "2000-10-18", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER REPORTED A BOARDING ATTEMPT 18 OCT AT 2030 LOCAL TIME AT CHENNAI. ANTI-PIRACY WATCH FOILED THE ATTEMPT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.354999999558004, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-160", + "dateofocc": "2001-05-26", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED ROLL-ON, ROLL-OFF SHIP WAS BOARDED 26 MAY AT 0530 LOCAL TIME WHILE ANCHORED AT TANJUNG PRIOK. FIVE PERSONS BOARDED VIA THE STERN AND WHEN CHALLENGED STRUCK ONE CREW MEMBER OVER THE HEAD, CAUSING HIM TO BLEED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-161", + "dateofocc": "2001-05-23", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 23 MAY AT 0345 LOCAL TIME AT BELAWAN ANCHORAGE. FIVE PERSONS BOARDED VIA THE FORECASTLE AND JUMPED OVERBOARD AND ESCAPED WITH A BREATHING APPARATUS WHEN THE ALARM WAS SOUNDED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, -3.783333300419997] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-162", + "dateofocc": "2001-05-22", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Balikpapan:An unidentified bulk carrier was boarded 22 May at Lawi Lawi anchorage, Balikpapan. A life raft and three mooring lines were stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.466666700183282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-163", + "dateofocc": "2001-05-27", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:AN UNIDENTIFIED TANKER WAS BOARDED 27 MAY AT 1705 LOCAL TIME AT VUNG TAU ANCHORAGE. ANTI-PIRACY WATCH SPOTTED TWO PERSONS LOWERING MOORING LINE INTO A SPEEDBOAT. ALARM RAISED AND THIEVES ESCAPED IN THE BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-164", + "dateofocc": "2001-05-23", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 23 MAY AT 2030 LOCAL TIME OVER THE BOW WHILE ANCHORED AT VUNG TAU. THE THIEVES BROKE OPEN THE FORECASTLE STORE STOLE SHIP'S STORES. ALARM RAISED AND THIEVES ESCAPED IN UNLIT MOTORBOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-165", + "dateofocc": "2001-05-24", + "subreg": "94", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EAST CHINA SEA:AN UNIDENTIFIED TANKER WAS REPORTEDLY CIRCLED 24 MAY AT 1400 UTC BY FOUR HIGH-SPEED BOATS WHILE UNDERWAY IN POSITION 25-38N 122-39E. CREW MUSTERED, TURNED ON DECK LIGHTS AND ACTIVATED FIRE HOSES, THE BOATS WITHDREW AND REGROUPED AT STERN.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.649999999860142, 25.633333300423317] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-166", + "dateofocc": "2001-05-31", + "subreg": "51", + "hostility_": "THIEVES", + "victim_d": "SEA REGENT", + "descriptio": "SENEGAL:THE FORMER CRUISE SHIP (SEA REGENT) (POSSIBLY (REGENT SEA) UNDER TOW TO INDIA WHERE IT WAS TO BE USED AS A HOTEL OR ACCOMMODATION SHIP, WAS RANSACKED BY LOCAL INHABITANTS WHILE OFF DAKAR ACCORDING TO A 31 MAY PRESS REPORT. THE THIEVES, OPERATING", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.499999999770978, 14.500000000364594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-99", + "dateofocc": "2000-06-01", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:Six persons in a wooden boat attempted to remove zinc anodes from the stern of an unidentified container ship anchored at Chittagong 1 Jun at 0430 local time. Ship's watch had been doubled and six local watchmen hired. Port Control notified", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-100", + "dateofocc": "2000-06-05", + "subreg": "63", + "hostility_": "LTTE REBEL FORCES", + "victim_d": "NAVAL VESSEL", + "descriptio": "SRI LANKA:Sri Lankan forces reportedly lost two Super Dvora patrol boats 5 Jun in attacks south of Jaffna. One boat was sunk by rebel forces while the second was reported hit by Air Force planes by mistake. Fifteen sailors were reported killed. As the", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.000000000234536, 9.649999999803072] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-101", + "dateofocc": "2000-06-03", + "subreg": "62", + "hostility_": "ETHIOPIA", + "victim_d": "ERITREA", + "descriptio": "ERITREA-ETHIOPIA:Ethiopian aircraft reportedly conducted bombing raids around the port of Massawa 19 May and on 3 and 4 Jun fighting was reported near Assab port. Among Ethiopia's unstated war aims, access to the sea and control of a port must figure st", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.816666700367591, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-102", + "dateofocc": "2000-06-01", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified tanker was boarded 1 Jun at 0256 local time in position 01-48.7N 102-26.6E by seven persons armed with long knives. Intruders tied up the captain, stole $1,483 in ship's cash, crew effects and equipment. The intruders", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.442500000261077, 1.811111100333449] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-103", + "dateofocc": "2000-05-31", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier was approached under the stern 31 May at 1405 UTC by an unlit fast speedboat in position 01-47.0N 102-28.1E. Crew sounded alarm and switched on lights whereupon boarding attempt was aborted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.468333299845938, 1.783333300146637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-104", + "dateofocc": "2000-06-01", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier reported that 1 Jun at 2300 local time a boat with six persons armed with knives tied up to its anchor chain at Panjang anchorage in position 05-30S 105-17E. Watchman alerted the bridge and ship's alarm was sounded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-105", + "dateofocc": "2000-06-03", + "subreg": "91", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:An unidentified general cargo ship reports attempted boarding 3 Jun at 0250 UTC while underway in 18-52N 118-44E. Attacking craft is described as radar equipped, modern high-speed craft showing no name. Nature of boarding attempt is uns", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.733333299567107, 18.866666700357428] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-106", + "dateofocc": "2000-06-07", + "subreg": "82", + "hostility_": "RIVAL GANG", + "victim_d": "POLICE BOAT", + "descriptio": "SOLOMON ISLANDS:One of the rival gangs fighting for control of the Solomons seized a police patrol boat in the capital, Honiara, and used it to shell opposing militia causing a reported 100 casualties 7 Jun.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [159.950000000256978, -9.416666699675943] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-107", + "dateofocc": "2000-06-21", + "subreg": "63", + "hostility_": "HIJACKERS", + "victim_d": "MED STAR", + "descriptio": "INDIAN OCEAN:The crew of 10,576-ton, St. Vincent-flag cargo ship (MED STAR) reported hijacked 9 Jun by 14 stowawayswho boarded the ship at Bandar Abbas, Iran, cooperated in smuggling the men aboard for a reported payment of $250 per person. The 14 were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.866666700111125, 5.10000000024047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-108", + "dateofocc": "2000-06-06", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified heavy-lift vessel was approached 4 miles from the breakwater at Chennai by six persons in a speed boat at 0215 local time 6 Jun. Three of the boat occupantsboarded the ship and tried to gain access to the accommodation block but we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-109", + "dateofocc": "2000-06-09", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified cargo ship was boarded in Chittagong Roads at 2200 local time 9 Jun. Two persons armed with long knives gained access over the stern and lowered two mooring lines into the water where they were towed away by a small wooden boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 22.300000000257114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-110", + "dateofocc": "2000-06-10", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship was boarded 10 Jun at 1215 local time at Tanjung Priok anchorage by eight persons armed with steel pipes who gained access over the stern. The intruders fled immediately when they were noticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.450000000199225, -2.533333300154766] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-111", + "dateofocc": "2000-06-05", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker was boarded 5 Jun at 0300 local time at Belawan anchorage by two persons armed with long knives who gained access via the anchor chain from a smallwooden boat. Duty AB spotted the intruders and sounded the alarm whereupo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-329", + "dateofocc": "2000-09-28", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED SHIP REPORTS BEING APPROACHED 28 SEP AT 1045 LOCAL TIME WHILE UNDERWAY IN POSITION 05-23.4S 106-57.2E WEST OF KALIMANTAN. SHIP WAS APPROACHED AT 21 KNOTS BY SMALL SPEEDBOAT FROM PORT QUARTER. ALARM WAS RAISED AND ANTI-PIRACY C", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.953333299671726, -5.390000000035855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-330", + "dateofocc": "2000-09-27", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPORTS ATTEMPTED BOARDING 27 SEP AT 1800 LOCAL TIME WHILE UNDERWAY IN 00-30N 108-07E. TEN PERSONS IN A /WHITE-HULLED HIGH SPEED BOAT APPROACHED THE STERN AT 22 KNOTS. ALARM WAS RAISED AND BOAT DISAPPEARED IN DIRECTION", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.116666699871303, 0.499999999911836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-331", + "dateofocc": "2000-09-26", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: AN UNIDENTIFIED TANKER REPORTED AN ATTEMPTED BOARDING 26 SEP AT 0405 LOCAL TIME WHILE UNDERWAY IN POSITION 01-15.6N 104-54.5E. TEN TO FIFTEEN PERSONS IN A SPEEDBOAT APPROACHED THE STARBOARD QUARTER BUT ABORTED THE ATTEMPT WHEN SEARCHLIGHT WAS", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.908333299996798, 1.260000000224181] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-332", + "dateofocc": "2000-09-25", + "subreg": "71", + "hostility_": "HIJACKERS", + "victim_d": "PETCHEM", + "descriptio": "INDONESIA-NATUNA ISLAND:THE 2,378-TON CHEMICAL TANKER (PETCHEM) WAS HIJACKED 25 SEP AT 0230 LOCAL TIME IN POSITION 01-40N 106-18E NEAR THE NATUNA ISLANDS WHILE ON VOYAGE PORT DICKSON, TO KUCHING, SARAWAK, MALAYSIA WITH A CARGO OF GAS OIL. CREW WERE OVER", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.300000000275645, 1.666666700340784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-333", + "dateofocc": "2000-09-19", + "subreg": "24", + "hostility_": "BOARDERS", + "victim_d": "CSAV CHARLESTON", + "descriptio": "COLOMBIA:THE 14,865-TON CYPRUS-FLAG CONTAINER SHIP (CSAV CHARLESTON) WAS APPROACHED 19 SEP (REPORTED 3 OCT) WHILE UNDERWAY OFF CARTAGENA WITH THE PILOT STILL ON BOARD. FOUR ARMED MEN IN A MOTORBOAT ATTEMPTED TO SECURE A LINE TO THE SHIP BUT ABORTED THEI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.666666700244662, 10.500000000235218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-334", + "dateofocc": "2000-10-04", + "subreg": "21", + "hostility_": "KIDNAPPERS", + "victim_d": "SPORT FISHING BOATS", + "descriptio": "GUATEMALA:Kidnapping for ransom, long a problem in Guatemala, has reportedly moved to sport fishing boats in the pacific 40miles southwest of port quetzal according to a 4 Oct report of an august incident. The kidnappers wore army fatigues and operated", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-92.50000000039779, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-335", + "dateofocc": "2000-10-12", + "subreg": "62", + "hostility_": "SUICIDE BOAT ATTACK", + "victim_d": "USS COLE", + "descriptio": "YEMEN:THE U.S. FLAG DESTROYER USS COLE WAS SEVERELY DAMAGED 12 OCT BY AN EXPLOSION CAUSED BY AN APPARENT SUICIDE BOAT ATTACK WHILE MOORING AT THE PORT OF ADEN FOR REFUELING. THE REPORTED CASUALTY TOLL IS 17 DEAD AND NUMEROUS INJURIES. THE U.S. DEPARTMEN", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.049999999868703, 12.783333299603044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-336", + "dateofocc": "2000-10-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED OFFSHORE SUPPLY SHIP WAS BOARDED AND ROBBED 6 OCT AT 0057 WHILE AT ANCHOR CHITTAGONG. TWO BOATS WITH SIX PERSONS EACH APPROACHED AND, WHEN CREW ON DECK TRIED TO PREVENT BOARDING, OPENED FIRE WITH GUNS INJURING THE 2ND OFFICER.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-337", + "dateofocc": "2000-10-03", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED AND ROBBED 3 OCT DURING THE NIGHT, WHILE ANCHORED AT CHITTAGONG ANCHORAGE C. THE SAME PERSONS HAD TRIED TWICE EARLIER TO BOARD. SHIP'S STORES WERE STOLEN BEFORE A BANGLADESHI NAVAL UNIT ANCHORED NEARB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.238333299850353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-338", + "dateofocc": "2000-10-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:ABOUT 40 PIRATES IN FIVE BOATS REPORTEDLY ATTEMPTED TO BOARD AN UNIDENTIFIED TANKER 7 OCT AT 1330 LOCAL TIME IN THE SOUTHERN RED SEA IN POSITION 14-38.64N 042-03.93E. A PASSING SHIP REPORTEDLY CAME TO THE ASSISTANCE OF THE TANKER AND THE BOARDIN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.06555559989215, 14.644166699607126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-339", + "dateofocc": "2000-10-06", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP REPORTED BEING APPROACHED 6 OCT AT 0030 LOCAL TIME WHILE UNDERWAY IN POSITION 01-45N 102-31E. A WOODEN SPEEDBOAT, SIX METERS IN LENGTH AND WITH A LIGHT BLUE HULL CAME CLOSE TO THE STERN BUT LEFT WHEN ANTI", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.516666700409644, 1.750000000177067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-167", + "dateofocc": "2001-05-31", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 31 MAY AT 0400 LOCAL TIME WHILE AT CHENNAI PORT. FIVE PERSONS WERE OBSERVED ON DECK ARMED WITH KNIVES ATTEMPTING TO REMOVE A MOORING LINE. ALARM WAS RAISED AND THE INTRUDERS JUMPED OVERBOARD TO ESCAPE IN T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.354999999558004, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-168", + "dateofocc": "2001-05-31", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CEMENT CARRIER WAS BOARDED 31 MAY AT 2000 LOCAL TIME WHILE AT JETTY 5, MONGLA. WATCHMAN OBSERVED TEN MEN ARMED WITH KNIVES LOWERING MOORING LINE INTO A SMALL BOAT. HE WAS ASSAULTED WHEN HE CONFRONTED THE THIEVES WHEREUPON HE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.533333300061656, 22.583333299560252] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-169", + "dateofocc": "2001-06-01", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED PRODUCT TANKER WAS BOARDED 1 JUN AT 1920 LOCAL TIME WHILE MOORED AT BELAWAN. THIEVES BROKE INTO THE FORECASTLE STORE AND STOLE SHIP'S STORES BEFORE ESCAPING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-170", + "dateofocc": "2001-06-04", + "subreg": "61", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:AN UNIDENTIFIED CARGO SHIP REPORTS ATTEMPTED BOARDING 4 JUN AT 0100 LOCAL TIME BY A GROUP OF 20 TO 30 PERSONS OPERATING FROM EACH OF TWO BOATS SPOTTED AT THE VESSEL'S ANCHOR CHAIN WHILE AT ANCHOR DAR ES SALAAM. ALARM SOUNDED AND CREW MUSTERED W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.749999999648139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-353", + "dateofocc": "2000-10-18", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED 18 OCT AT 0500 LOCAL TIME WHILE BERTHED AT KANDLA. A STOREROOM AT THE STERN WAS BROKEN INTO AND STORES AND EQUIPMENT STOLEN. POLICE RECOVERED ONE TOOLBOX.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.183333300380184, 23.050000000056514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-171", + "dateofocc": "2001-06-10", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "MOHYEDDIN-M", + "descriptio": "INDIAN OCEAN-YEMEN:THE SYRIAN-FLAG LIVESTOCK CARRIER (MOHYEDDIN-M) WAS REPORTED BOARDED PRIOR TO 10 JUN WHILE IN YEMENI WATERS NEAR OMANI BOARDER BY PERSONS WHO DEMANDED MONEY TO ALLOW CONTINUED PASSAGE OF THE VESSEL. SHIP CALLED AT OMAN ENROUTE MUMBAI,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.000000000260684, 15.99999999996345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-172", + "dateofocc": "2001-06-10", + "subreg": "63", + "hostility_": "BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:An unidentified tanker reported being followed 10 jun at 0443 utc for a period of about 55 minutes while underway in position 01-08N 085-09E. boat with 6 or 7 persons aboard, light green in color and 12 to 15 meters in length was not challe", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [85.149999999996396, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-173", + "dateofocc": "2001-06-06", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP ANCHORED IN THE PUSSUR RIVER, MONGLA WAS ROBBED OF FOUR ZINC ANODES FROM THE RUDDER POST 6 JUN DURING THE EARLY MORNING HOURS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 22.466666699754398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-174", + "dateofocc": "2001-06-11", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:AN UNIDENTIFIED BULK CARRIER REPORTS APPROACH BY THREE SPEEDBOATS WITH ABOUT 10 PERSONS EACH 11 JUN AT 1130 UTC WHILE UNDERWAY IN ABU ALI CHANNEL, 14-14.8N 042-43.3E. MASTER TOOK EVASIVE ACTION AND THERE WAS NO BOARDING.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.72166669999126, 14.246666699902278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-175", + "dateofocc": "2001-06-07", + "subreg": "61", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED LPG CARRIER REPORTS APPROACH BY DARK GRAY SPEEDBOAT OPERATING AT 25 KNOTS 7 JUN AT 1215 UTC WHILE UNDERWAY IN POSITION 01-08S 085-25E. BOAT \"HOVERED\" AROUND SHIP FOR FIFTEEN MINUTES AND LEFT WHEN SHIP FLASHED SEARCHLIGH", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [85.416666700126427, -1.133333300289337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-176", + "dateofocc": "2001-06-07", + "subreg": "92", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Philippines:An unidentified cargo ship reports attempt to board 7 Jun at 0243 utc while underway in Celebes sea in position 05-35.3n 123-04.7e. The boat with armed persons aboard followed the ship for 30 minutes before breaking off contact. There is co", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.078333300305644, 5.588333300166255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-177", + "dateofocc": "2001-03-20", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "LORNA", + "descriptio": "VENEZUELA:SAILING YACHT (LORNA) WAS ATTACKED BY GUNMEN 20 MARCH (REPORTED 20 JUN) AT 0030 LOCAL TIME WHILE UNDERWAY IN POSITION 10-44.6N 062-22.1W BETWEEN ISLA MARGARITA AND TRINIDAD. THE YACHT'S OWNER WAS SHOT AND THE YACHT RANSACKED BY FOUR MEN ARMED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.368333299926917, 10.743333300184588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-178", + "dateofocc": "2001-06-12", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 12 JUN AT 0220 LOCAL TIME WHILE ANCHORED AT DAR ES SALAAM, BY ABOUT 20 PERSONS ARMED WITH KNIVES. PIRACY WATCH SPOTTED THEM LOWERING MOORING LINE TO A WAITING BOAT AND RAISED THE ALARM. RESPONDING CREW", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.749999999648139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-179", + "dateofocc": "2001-06-12", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 12 JUN AT 0330 LOCAL TIME IN THE OUTER ROADS, CHENNAI VIA THE STERN SIX PERSONS ARMED WITH LONG KNIVES. THE INTRUDERS THREATENED THE WATCHMAN AND STOLE SHIP'S STORES BEFORE JUMPING OVERBOARD TO ESCAPE IN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-180", + "dateofocc": "2001-06-17", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 17 JUN AT 2120 LOCAL TIME BY EIGHT PERSONS ARMED WITH KNIVES, WHILE THE SHIP WAS ANCHORED AT CHITTAGONG. WHEN THE ALARM WAS SOUNDED AND CREW MUSTERED, THE THIEVES JUMPED OVERBOARD AN ESCAPED WITH MOORING LIN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-181", + "dateofocc": "2001-06-14", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 14 JUN AT 2320 LOCAL TIME BY PERSONS ARMED WITH KNIVES WHILE ANCHORED AT CHITTAGONG. SHIP'S WATCHMAN WAS THREATENED BUT RAISED THE ALARM WHEREUPON THE THIEVES ESCAPED WITH SHIP'S EQUIPMENT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-112", + "dateofocc": "2000-05-27", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "TEMASEK", + "descriptio": "STRAIT OF MALACCA:The 11,755-ton Singapore-flag tanker (TEMASEK) was boarded 0300 local time 27 May (reported 21 Jun) in position 01-59.5N 102-12.7E by seven persons who stole $330 from the Chief Enginee and an unreported sum of cash, a mobile phone and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.21166670005357, 1.992500000025302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-352", + "dateofocc": "2000-10-16", + "subreg": "71", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 16 OCT AT 0100 UTC WHILE UNDERWAY IN POSITION 05-45.8N 096-28.3E OFF SUMATRA. BOATS, EACH OF WHICH CONTAINED TWO MEN AND WERE BLUE WITH RED AND WHITE HORIZONTAL STRIPES, APPROACHED TO WITHIN 30", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.471666699706077, 5.763333300149441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-113", + "dateofocc": "2000-04-30", + "subreg": "82", + "hostility_": "THIEVES", + "victim_d": "WORLD DISCOVERER", + "descriptio": "SOLOMON ISLANDS:The 3,153-ton, Liberian-flag passenger ship (WORLD DISCOVERER), wrecked 30 Apr in Sandy Passage, 25 miles north of Honiara, and abandoned by passengers and crew, has been ransacked by local natives. The ship had reportedly been dewatered", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [159.816666699654661, -9.983333300080915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-114", + "dateofocc": "2000-06-07", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "SEA LION", + "descriptio": "GUATEMALA:The owner of the yacht (SEA LION) was found dead aboard 7 Jun after apparently being shot several times about 3 Jun, and the vessel had been ransacked. At the time of incident yacht was anchored on the Rio Dulce. Assaults on and robbery of y", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.872222199914688, 15.747499999602269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-115", + "dateofocc": "2000-06-02", + "subreg": "22", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR:An unidentified Liberian-flag general cargo ship was approached 2 Jun 0030 local time (reported 29 Jun) as it approached port at Guayaquil in the vicinity of buoy 48. Twelvepersons in a motor launch approached from vessel's stern and were judged", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.999999999576232, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-116", + "dateofocc": "2000-06-23", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "SCAN EAGLE", + "descriptio": "CAMEROUN:The 1,964-ton Danish-flag cargo ship (SCAN EAGLE) was boarded 23 Jun at 0015 local time while berthed at Douala, Cameroun. Several men, reportedly heavily armed (NFI) retrained three crew while they removed drums of paint from the ship's store.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.500000000202874, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-117", + "dateofocc": "2000-06-20", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified bulk carrier at Chittagong was boarded 20 Jun at 0245 local time by six thieves armed with knives. After threatening the duty seaman the intruders broke open the rope store and stole ship's stores. Duty seaman raised the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-118", + "dateofocc": "2000-06-26", + "subreg": "63", + "hostility_": "LTTE SEA TIGERS", + "victim_d": "MERCS UHANA", + "descriptio": "SRI LANKA:The 1,834-ton Sri Lanka-flag cargo ship (MERCS UHANA) was attacked 26 Jun early in the day as it came to anchor off Point Pedro, by boats of the LTTE Sea Tigers. A suicide boat, reportedly carrying six LTTE cadres rammed the ship setting it af", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.000000000234536, 9.649999999803072] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-119", + "dateofocc": "2000-06-26", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker was boarded 26 Jun at 0110 local time during a rain storm while at Tanjung Santan anchorage. The thieves reportedly boarded via an anchor chain, stole a life raft and stores, and escaped without being noticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-120", + "dateofocc": "2000-06-05", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified 16,000-ton cargo ship was boarded 5 Jun (reported 29 Jun) at Panjang anchorage off Sumatra. Duty oiler reportedly discovered four men, one of whom was armed with a knife, hiding in the ship's funnel at 0115. Ship's alarm was s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.720555599942031, -5.150000000315856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-121", + "dateofocc": "2000-06-29", + "subreg": "25", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC:An unidentified bulk carrier was boarded 29 Jun at 0330 local time while berthed at Rio Haina. The intruders entered the bridge through a window and stole communications gear and signal flares. Two navy security guards were on board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.000000000119826, 19.916666700256485] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-122", + "dateofocc": "2000-07-03", + "subreg": "24", + "hostility_": "THIEVES", + "victim_d": "ATL ENDURANCE", + "descriptio": "VENEZUELA:The 4,455-ton, Panama-flag (ATL ENDURANCE) was boarded 3 Jul at 0130 local time while at berth 5, Guanta. Six intruders boarded from the seaward side armed with knives and bolt cutters. Holding a crew member at knifepoint, they opened three 4", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.999999999958106, 10.333333299838614] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-123", + "dateofocc": "2000-07-03", + "subreg": "22", + "hostility_": "BOARDERS", + "victim_d": "MINNESOTA", + "descriptio": "ECUADOR:The 6,794-ton Malta-flag refrigerated cargo ship (MINNESOTA) was boarded 3 Jul at 1930 local time while at Puerto Bolivar anchorage. During the incident one crew member was shot and wounded. Other ships in the area reportedly left the anchorage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.249999999776776, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-124", + "dateofocc": "2000-07-02", + "subreg": "51", + "hostility_": "THIEVES", + "victim_d": "VENEZIA", + "descriptio": "GUINEA:An unidentified cargo ship, assessed to be 11,536-ton, Malta-flag cargo ship (VENEZIA) was attacked by gun fire 2 Jul at 2100 local at its berth, Conakry. Ship had been experiencing pilferage of cargo of bagged rice during stay and, on 2 Jul, Mas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.000000000107434, 8.999999999737042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-340", + "dateofocc": "2000-10-01", + "subreg": "93", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:AN UNIDENTIFIED CONTAINER SHIP REPORTS APPROACH BU HIGH-SPEED CRAFT 1 OCT AT 1400 LOCAL TIME IN POSITION 19-29N 113-42E. CRAFT DESCRIBED AS DARK HULL, LOW FREEBOARD, ROUND PORTS, RADAR AND WITH 12 OIL DRUMS ON DECK, WITHOUT MARKINGS OR F", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.700000000335081, 19.483333299729793] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-341", + "dateofocc": "2000-10-09", + "subreg": "71", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:FIVE PERSONS IN A SPEEDBOAT ATTEMPTED TO BOARD A CARGO SHIP 9 OCT AT 0350 LOCAL TIME UNDERWAY IN 03-09.3N 105-30.5E. BOAT LEFT THE SCENE WHEN ALARM SOUNDED AND CREW MUSTERED.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.508333300196057, 3.155000000298969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-342", + "dateofocc": "2000-10-05", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 5 OCT AT 1230 LOCAL TIME AT ANCHOR, JAKARTA. SIX PERSONS ARMED WITH LONG KNIVES BOARDED VIA THE PORT SIDE AND STOLE SHIP'S STORES BEFORE FLEEING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.896666700245532, -6.051666699742498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-343", + "dateofocc": "2000-10-05", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:AN UNIDENTIFIED TANKER WAS BOARDED 5 OCT AT 2000 UTC WHILE AT ANCHOR SANDAKAN. FOUR PERSONS ARMED WITH KNIVES BOARDED BUT FLED WHEN DUTY OFFICER RAISED ALARM.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.111666699938269, 5.820000000299729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-344", + "dateofocc": "2000-10-09", + "subreg": "91", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:Eight persons boarded an unidentified container ship 9 Oct at 0135 at anchor manila bay from an unlit boat. Stores were stolen from forward store and the thieves fled when spotted and ship's alarm sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.894999999771926, 14.611666699738691] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-345", + "dateofocc": "2000-09-29", + "subreg": "92", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:AN UNIDENTIFIED DUTCH REFRIGERATED CARGO SHIP WAS PURSUED FOR 45 MINUTES 29 SEP (REPORTED 6 OCT) WHILE UNDERWAY IN 08-02.0N 127-18.5E ABOUT 50 MILES OFF MINDANAO ENROUTE DAVAO. PURSUIT BEGAN AT 2130 LOCAL TIME WHEN UNLIT BOAT APPROACHED AT S", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [127.308333299642072, 8.033333299674268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-346", + "dateofocc": "2000-10-12", + "subreg": "83", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT SHIP CREWS", + "descriptio": "FIJI:Local authorities report extortion and robbery aimed at foreign merchant ship crews at Lautoka according to 12 OCT report. Armed men wearing military uniforms have boarded vessels at Kings wharf demanding cash and food.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [177.46666670027048, -17.600000000403725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-347", + "dateofocc": "2000-10-12", + "subreg": "22", + "hostility_": "SPEED BOATS", + "victim_d": "CIELO DE CHILE", + "descriptio": "Ecuador:The 14,366-ton Cyprus flag container ship (Cielo de Chile) was approached \"early\" 12 Oct at Guayaquil while underway near the data sea buoy by two boats each containing about seven armed persons. Boats attempted to come alongside. Alarm was sou", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.899999999810461, -2.216666699982682] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-348", + "dateofocc": "2000-10-14", + "subreg": "63", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT OF ATTEMPTED BOARDING 14 OCT AT 1930 UTC WHILE ANCHORED AT CHENNAI. FOUR PERSONS IN A SPEEDBOAT ATTEMPTED TO GAIN ACCESS VIA THE ANCHOR CHAIN BUT FLED WHEN SPOTTED BY SHIP'S WATCH.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.354999999558004, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-349", + "dateofocc": "2000-10-12", + "subreg": "63", + "hostility_": "FISHING BOAT", + "victim_d": "BOWDITCH", + "descriptio": "INDIAN OCEAN-SRI LANKA:A U.S. FLAG SURVEY VESSEL (USNS BOWDITCH) WAS APPROACHED 12 OCT, 260 MILES EAST OF SRI LANKA IN POSITION 05-46.6N 086-6.2E BY A 40 FT. SAIL-MOTOR FISHING BOAT. FOUR CREW OF THE FISHING BOAT, TWO OF WHOM APPEARED TO BE CONCEALING W", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [86.103333300391398, 5.776666699817213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-350", + "dateofocc": "2000-10-12", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:FIVE HIGH SPEED BOATS, EACH CONTAINING 6 TO 7 PERSONS ATTEMPTED TO BOARD AN UNIDENTIFIED TANKER 12 OCT BETWEEN 1050 AND 1140 LOCAL TIME IN POSITION 12-36.0N 043-01.3E. DUTY OFFICER NOTICED THE BOATS AND RAISED THE ALARM. CREW ACTIVATED FIRE HOS", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.021666700090918, 12.600000000033333] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-351", + "dateofocc": "2000-10-12", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:AN UNIDENTIFIED SHIP DETECTED APPROACH OF TWO UNLIT HIGH SPEED BOATS ON RADAR 12 OCT AT 2350 LOCAL TIME WHILE UNDERWAY IN POSITION 14-08.0N 042-27.3E. THREE SIGNAL ROCKETS WERE FIRED AND BOATS WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.454999999861229, 14.133333299601759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-182", + "dateofocc": "2001-06-18", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED SHIP REPORTS APPROACH WITH INTENT TO BOARD 18 JUN AT 0200 LOCAL TIME WHILE UNDERWAY IN POSITION 01-10.5N 101-42.5E. SHIP WAS APPROACHED BY AN UNLIT BOAT WITH RED HULL WHICH WITHDREW WHEN ILLUMINATED BY SEARCHLIGHT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.708333300432912, 1.175000000360853] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-183", + "dateofocc": "2001-06-16", + "subreg": "71", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO ATTEMPTED BOARDING 16 JUN AT 0445 WHILE ANCHORED AT PENANG ANCHORAGE, BUTTERWORTH. WATCH OBSERVED ONE PERSON FROM AN UNLIT BOAT ATTEMPT TO BOARD VIA THE ANCHOR CHAIN WHO FLED WHEN THE ALARM WAS RAISED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.333333300051208, 5.416666700237272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-184", + "dateofocc": "2001-06-17", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:DUTY CREW OF AN UNIDENTIFIED SHIP DISCOVERED THREE UNAUTHORIZED PERSONS IN SHIP'S ENGINE ROOM 17 JUN AT 0320 LOCAL TIME WHILE SHIP WAS BERTHED AT JETTY A, TRIPOLYA, ANYER. ALARM WAS SOUNDED AND INTRUDERS ESCAPED BY JUMPING INTO WATER.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.000000000176044, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-185", + "dateofocc": "2001-06-13", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MIRI ENERGY", + "descriptio": "INDONESIA:THE MALAYSIAN-FLAG TANKER (MIRI ENERGY) WAS BOARDED 13 JUN AT 0500 LOCAL TIME BY ABOUT TEN PERSONS WHILE UNDERWAY IN POSITION 01-27N 106-16E OFF PULAU PENGIBU ON A BALLAST VOYAGE SANDAKAN TO PORT DICKSON. SHIP WAS BOARDED VIA THE STERN AND ONE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.266666700306075, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-186", + "dateofocc": "2001-06-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA:AN UNIDENTIFIED TANKER WAS BOARDED 23 JUN AT 0435 LOCAL TIME WHILE ANCHORED AT CONAKRY. PERSONS ARMED WITH GUNS AND KNIVES ASSAULTED THREE OFFICER WHO RECEIVED INJURIES. SHIP'S STORES, CASH FROM SAFE AND CREW VALUABLES WERE TAKEN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-187", + "dateofocc": "2001-06-22", + "subreg": "51", + "hostility_": "BOARDERS", + "victim_d": "ESA TRUST", + "descriptio": "SIERRA LEONE:THE 997 TON, PANAMANIAN FLAG TANKER (ESA TRUST) REPORTED BEING BOARDED 22 JUN AT 0428 UTC WHILE UNDERWAY IN POSITION 08-59.7N 013-51.5W. THREE CREW REPORTED BRUISED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.858333300093818, 8.995000000379889] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-188", + "dateofocc": "2001-06-24", + "subreg": "61", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH AFRICA:AN UNIDENTIFIED CONTAINER SHIP REPORTS SUSPICIOUS APPROACH WITH APPARENT INTENT TO BOARD 24 JUN AT 1128 LOCAL TIME WHILE UNDERWAY IN POSITION 31 13.3S, 030 09.3E. CREW MUSTERED ON DECK AND SHIP ALTERED COURSE WHEREUPON BOAT BROKE OFF CONTAC", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [30.155000000272821, -31.221666700277694] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-189", + "dateofocc": "2001-06-23", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "BANGLADESH:TWO UNIDENTIFIED BULK CARRIERS WERE ROBBED OF ZINC ANODES ATTACHED TO RUDDER POST 23 JUN, THE FIRST AT 0730 AND THE SECOND AT 0745 LOCAL TIME, WHILE ANCHORED AT CHITTAGONG OUTER ROADS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-190", + "dateofocc": "2001-06-20", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH-SANDAKAN:AN UNIDENTIFIED SHIP REPORTED THAT ON 20 JUN AT 0700 LOCAL TIME WATCHMAN SPOTTED FIVE PERSONS OPENING A CONTAINER. WHEN CHALLENGED THE FIVE ESCAPED IN A SMALL BOAT WITH SOME CARGO.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-191", + "dateofocc": "2001-06-20", + "subreg": "71", + "hostility_": "HIJACKERS", + "victim_d": "TIRTA NIAGA IV", + "descriptio": "INDONESIA:THE 2,863-TON, MALAYSIAN FLAG TANKER (TIRTA NIAGA IV) WAS HIJACKED 20 JUN AS IT LAY AT ANCHOR OFF ACEH, INDONESIA. THE CAPTAIN AND SECOND ENGINEER WERE TAKEN HOSTAGE BUT THE ENGINEER WAS LATER RETURNED TO THE SHIP WHICH SAILED INTO MALAYSIAN W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.999999999917293, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-192", + "dateofocc": "2001-06-20", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 20 JUN AT 0100 LOCAL TIME AT TANJUNG PRIOK ANCHORAGE. THE THIEVES ENTERED THE ENGINE ROOM AND STOLE ENGINE SPARES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-193", + "dateofocc": "2001-06-19", + "subreg": "71", + "hostility_": "HIJACKERS", + "victim_d": "SELAYANG", + "descriptio": "INDONESIA:THE 1,877 TON MALAYSIAN-FLAG TANKER (SELAYANG) WAS HIJACKED 19 JUN SHORTLY AFTER SAILING FROM PORT DICKSON, MALAYSIA WITH A CARGO OF GAS OIL. ITS CREW OF 17 WERE REPORTED HELD HOSTAGE. THE SHIP WAS TRACKED TO A POINT OFF KALIMANTAN AND WAS ST", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.799999999680495, 2.516666699873667] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-194", + "dateofocc": "2001-07-02", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED TANKER WAS BOARDED 2 JUL AT 0400 LOCAL TIME WHILE ANCHORED FIVE MILES FROM BREAKWATER, LAGOS. THREE PERSONS ARMED WITH KNIVES BOARDED VIA THE PORT QUARTER AND, WHEN CHALLENGED BY ANTI-PIRACY WATCH, THREATENED HIM STEALING HIS WAL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.500000000008868, 6.416666700269616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-195", + "dateofocc": "2001-06-24", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "NEDLLOYD EVEREST", + "descriptio": "MADAGASGAR:ANTIGUAN FLAG CONTAINER SHIP (P & O NEDLLOYD EVEREST) WAS BOARDED 24 JUN AT ITS BERTH TOAMASINA AND NINE CONTAINERS WERE BROACHED AND SOME CARGO STOLEN DESPITE FOUR PERSONS HAVING BEEN ON WATCH DURING NIGHT TIME CARGO OPERATIONS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.38333330006725, -18.166666699734094] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-196", + "dateofocc": "2001-06-27", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED BY THREE PERSONS DRESSED AS DOCK LABOR 27 JUN AT 0530 WHILE BERTHED AT DAR ES SALAAM. THE THREE STOLE SHIP'S STORES AND, WHEN CHALLENGED, JUMPED OVERBOARD AND ESCAPED BY BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.299999999907584, -6.850000000280886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-125", + "dateofocc": "2000-06-04", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "FLYING OFFICER NIRMAL JIT SINGH SEKHON P", + "descriptio": "INDIA:The 28,704-ton, Indian flag tanker (FLYING OFFICER NIRMAL JIT SINGH SEKHON PVC) spilled diesel oil at its Berth 4 Jun (reported 30 Jun) due to apparent tampering with discharge valve by thieves seeking to steal the oil.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.536666699824764, 11.021111099704967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-126", + "dateofocc": "2000-06-03", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified heavy-lift vessel was boarded3 Jun at 0215 local time while anchored 4 miles off the breakwater at Chennai. Three of six persons in a speedboat boarded the ship and attempted to enter the accommodation. The intruders fled when spo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.502777799604814, 12.054999999957261] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-127", + "dateofocc": "2000-06-27", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified container ship reports theft of more than 600 container twist locks and other lashing gear 27 Jun while at Chittagong port.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-128", + "dateofocc": "2000-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "HUMEN BRIDGE", + "descriptio": "STRAIT OF MALACCA:The 37,549-ton, German-flag container ship (HUMEN BRIDGE) was boarded 28 Jun at 2220 local time whle ship was underway between Singapore and Port Klang. Seven persons armed with knives and broad swords boarded from a speedboat, overpow", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.720000000008895, 4.117222199631613] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-129", + "dateofocc": "2000-07-02", + "subreg": "93", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:An unidentified container ship was boarded 2 Jul at 0330 local time while at Penang terminal. Two intruders fled when spotted by duty seaman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.36944439992152, 5.437777800140509] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-130", + "dateofocc": "2000-06-21", + "subreg": "93", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:An unidentified container ship was boarded 21 Jun at 2359 local time while anchored at Laem Chabang. The intruders boarded via the anchor chain and fled when alarm was raised by watchman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.893888900247759, 13.067499999731467] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-131", + "dateofocc": "2000-06-26", + "subreg": "92", + "hostility_": "SABOTEURS", + "victim_d": "MAKISIG", + "descriptio": "PHILIPPINES:The 3,302-ton, Philippine-flag tanker (MAKISIG) suffered a severed cargo oil line while discharging 26 Jun at Illana Bay, Mindanao. Police are stated to believe Muslin rebels sabotaged the tanker's operation to force the oil company to pay p", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.445277799780001, 12.074722200408303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-132", + "dateofocc": "2000-07-04", + "subreg": "95", + "hostility_": "GREENPEACE ACTIVISTS", + "victim_d": "BYISK", + "descriptio": "JAPAN:The 2,360-ton, Russian-flag timber carrier (BYISK) was boarded 4 Jul at Toyama port by 6 Greenpeace anti-logging activists who chained themselves to its cargo of wood. The activists left the ship 5 Jun. The Greenpeace ship (RAINBOW WARRIOR) had p", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [137.366666700142787, 37.333333299812466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-133", + "dateofocc": "2000-07-10", + "subreg": "51", + "hostility_": "GREENPEACE ACTIVISTS", + "victim_d": "AEGIS", + "descriptio": "PORTUGAL:The 13,123-ton Cyprus-flag cargo ship (AEGIS) was boarded 10 Jul by four Greenpeace activists who chained themselves to the mast as the ship entered Leixoes to protest illegal logging in Cameroon where the cargo was loaded. As of 12 Jul the pro", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.250000000178659, 39.500000000273758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-134", + "dateofocc": "2000-07-06", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified cargo ship was boarded 6 Jul at 2000 local time over the stern while at Chittagong Roads anchorage by four thieves in two unlit boats. Duty officer raised alarm and the intruders fled by jumping overboard.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-135", + "dateofocc": "2000-07-04", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified bulk carrier was boarded 4 Jul at 0700 UTC while at Mongla anchorage by three thieves armed with knives and cutting tools who gained access via chain cable attached to mooring buoy. Those on board ship stole supplies while two", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.594444400217981, 22.45583330021492] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-136", + "dateofocc": "2000-07-11", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified cargo ship was boarded 10 Jul at 0258 local time by four thieves armed with knives while at anchor, Samarinda River Roads. The intruders boarded over the stern and stole a life raft before being spotted by duty officer. When a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.720555599942031, -5.150000000315856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-364", + "dateofocc": "2000-10-25", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:AN UNIDENTIFIED CHEMICAL TANKER WAS SURROUNDED 25 OCT BY \"SEVERAL\" SPEEDBOATS FROM TWO OF WHICH A BOARDING WAS ATTEMPTED. CREW MUSTERED AND ACTIVATED FIRE HOSES AND BOATS WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.283333300139759, 12.716666699663961] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-137", + "dateofocc": "2000-07-07", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship was boarded 7 Jul at 0515 local time while underway in the Durian Strait in position 00-49.0N 103-35.5E. The thieves entered the second officer's cabin, tied him with plastic cord and stole his money, jewelry and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.591666699792427, 0.816666699908637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-138", + "dateofocc": "2000-07-04", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 4 Jul at 2020 local time while at Belawan Port. The three intruders used poles and grappling hooks to board but, when challenged by the duty seaman, jumped overboard and fled in a waiting boat. Ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-139", + "dateofocc": "2000-07-10", + "subreg": "61", + "hostility_": "ATTACKERS", + "victim_d": "NET EXPRESS", + "descriptio": "SOMALIA:The French-flag cargo ship (NET EXPRESS), not further identified, was reportedly attacked 10 Jul off Bargal in Northern Somalia. The ship, which had broken down and had been drifting for two days, was boarded by about 20 persons operating from s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.091388899768049, -11.27416669962588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-355", + "dateofocc": "2000-10-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 23 OCT AT 1000 LOCAL TIME WHILE OFF KHULNA IN POSITION 22-26.55N 089-35.5E. ABOUT TWELVE PERSONS ARMED WITH LONG KNIVES HAD BOARDED THE SHIP WHEN PORT POLICE ONBOARD FIRED WARNING SHOTS. THE INTRUDERS E", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.591666700238989, 22.442500000371865] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-356", + "dateofocc": "2000-10-22", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED ROLL-ON, ROLL-OFF CARGO SHIP WAS APPROACHED 22 OCT AT 2330 LOCAL TIME WHILE AT CHITTAGONG ANCHORAGE BY TWO UNPAINTED WOODEN BOATS CONTAINING TEN PERSONS. DUTY OFFICER RAISED ALARM AND CREW MUSTERED, WHEREUPON THE BOATS WITHDRE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.238333299850353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-357", + "dateofocc": "2000-10-23", + "subreg": "62", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 23 OCT AT 1245 LOCAL TIME IN POSITION 13-20N 042-58E, 17 MILES FROM RAS FATUNA, ERITREA BY FOUR PERSONS IN A BLUE-STRIPED SPEEDBOAT TRACKED AT ABOUT 25 KNOTS. BOAT'S OCCUPANTS WERE ARMED WITH SWORDS \"AND", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.966666699967732, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-358", + "dateofocc": "2000-10-21", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "FISHING VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED FISHING VESSEL WAS ATTACKED 21 OCT AT NIGHT WHILE ANCHORED BETWEEN SINGAPORE AND INDONESIA. EIGHT ARMED ATTACKERS, REPORTED TO BE INDONESIAN, BOARDED THE BOAT, INJURING THE CAPTAIN WHO WAS HOSPITALIZED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.000000000079012, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-359", + "dateofocc": "2000-10-21", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified cargo ship was boarded 21 Oct at 0450 local time while anchored at Bontang. Duty seaman was locked inside crane housing but chief officer raised the alarm and the intruders fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.516666699995426, 0.083333300181607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-360", + "dateofocc": "2000-10-18", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED TANKER WAS BOARDED 18 OCT AT BERTH, SANDAKAN ATTEMPTING TO STEAL STORES. CREW WAS ALERTED AND ATTACK ABORTED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.111666699938269, 5.820000000299729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-361", + "dateofocc": "2000-10-22", + "subreg": "92", + "hostility_": "GUNMEN", + "victim_d": "ARIES FOREST", + "descriptio": "PHILIPPINES-MINDANAO:THE 19,925-TON PANAMANIAN-FLAG BULK CARRIER (ARIES FOREST) WAS ATTACKED 22 OCT BY GUNMEN WHO FIRED A ROCKET PROPELLED GRENADE (RPG) AT THE SHIP AS IT DISCHARGED A CARGO OF LOGS AT DAVAO PORT. THERE WERE NO PERSONNEL CASUALTIES BUT A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.633333300060031, 7.083333300407958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-362", + "dateofocc": "2000-10-25", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS ROBBED OF ZINC ANODES 25 OCT WHILE DISCHARGING CHEMICALS AT CHITTAGONG.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.238333299850353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-363", + "dateofocc": "2000-10-24", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 24 OCT AT ANCHOR CHITTAGONG, BY ABOUT 25 PERSONS ARMED WITH LONG KNIVES. CREW RESISTED BUT WAS UNABLE TO PREVENT THEFT OF STORES. PORT CONTROL WAS NOTIFIED BUT COAST GUARD ASSISTANCE ONLY ARRIVED AFTER 90 M", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.238333299850353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-365", + "dateofocc": "2000-10-26", + "subreg": "72", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 26 OCT AT 0510 LOCAL TIME WHILE UNDERWAY IN POSITION 01-43.0N 117-34.8E BY PERSONS IN A SPEEDBOAT WHO ATTEMPTED TO BOARD, PREVENTED BY CREW ALERTNESS.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.579999999705137, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-366", + "dateofocc": "2000-10-26", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED 26 OCT AT 0510 LOCAL TIME BY A SPEEDBOAT WHILE UNDERWAY IN POSITION 01-27N 103-11E. CREW ALERTNESS PREVENTED BOARDING.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.183333299648723, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-367", + "dateofocc": "2000-10-25", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED SHIP AT ANCHOR IN POSITION 00-44.8N 103-42.2E WAS BOARDED 25 OCT BY 60 TO 80 PERSONS. TWO CREWMEMBERS WERE SLIGHTLY INJURED BEFORE SHIP CUT ANCHOR CHAIN AND PROCEEDED TO SINGAPORE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.703333300241127, 0.746666699915352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-368", + "dateofocc": "2000-10-29", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 29 OCT AT 2030 UTC WHILE AT TARAHAN ANCHORAGE. INTRUDERS ENTERED ENGINE ROOM AND STOLE A LARGE QUANTITY OF SPARE PARTS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, -5.516666700179371] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-369", + "dateofocc": "2000-10-29", + "subreg": "71", + "hostility_": "INTRUDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED TANKER WAS BOARDED 29 OCT AT 0220 UTC WHILE ANCHORED AT TELUK SEMANGKA BY A SINGLE PERSON WHO WAS CAUGHT BY ANTI-PIRACY WATCH AND TRANSFERRED TO POLICE BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, -5.550000000148941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-370", + "dateofocc": "2000-10-29", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified bulk carrier was boarded via the stern 29 Oct at 1900 local time by seven persons armed with long knives who stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.23333329999042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-371", + "dateofocc": "2000-10-24", + "subreg": "93", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 24 OCT AT 2315 LOCAL TIME IN PORT HAIPHONG BY TWO PERSONS WHO ATTEMPTED TO OPEN THE FORECASTLE STORE. ALARM WAS RAISED AND INTRUDERS CLIMBED DOWN A ROPE TO THEIR BOAT AND FLED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.683333300211586, 20.833333299728508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-197", + "dateofocc": "2001-07-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:AN UNIDENTIFIED BULK CARRIER REPORTS BEING APPROACHED SUSPICIOUSLY 2 JUL AT 0335 UTC BY TWO BOATS CONTAINING THREE PERSONS EACH WHILE UNDERWAY IN POSITION 13-25.7N 043-02.4E, NEAR PORT AL MUKHA. BOATS TURNED AWAY WHEN CREW WENT ON ALERT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.040000000190389, 13.42833330031192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-198", + "dateofocc": "2001-06-29", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:AN UNIDENTIFIED CARGO SHIP REPORTS ATTEMPTED BOARDING 29 JUN AT 0445 LOCAL TIME WHILE UNDER WAY IN POSITION 13-42.5N 043-24.6E. TWO VERY FAST UNLIT BOATS APPROACHED BUT TURNED AWAY WHEN CONFRONTED WITH CHARGED FIRE HOSES AND SEARCHLIGHTS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.410000000283276, 13.708333300285005] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-199", + "dateofocc": "2001-06-28", + "subreg": "62", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERSIAN GULF-IRAQ:AN UNIDENTIFIED SHIP WAS BOARDED 28 JUN WHILE AT ANCHOR IN POSITION 29-38.7N 48-45.2E NEAR UMM QASR. THIEVES BROKE INTO FORECASTLE STORE AND STOLE FIRE FIGHTING GEAR.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.753333300127792, 29.645000000193363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-200", + "dateofocc": "2001-07-02", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS THAT 20 PERSONS ARMED WITH GUNS AND LONG KNIVES ATTEMPTED TO BOARD VIA THE STERN OF THE SHIP 2 JUL AT 0100 LOCAL TIME WHILE UNDERWAY IN POSITION 01 05N, 104 55E. DUTY OFFICER MANEUVERED THE SHIP AND ATTEM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.916666700307417, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-201", + "dateofocc": "2001-07-01", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 1 JUL AT 0125 LOCAL TIME BY SIX PERSONS ARMED WITH LONG KNIVES WHILE SHIP WAS UNDERWAY IN POSITION 01-03N 104-57E. CREW WAS MUSTERED AND ALARM SOUNDED AND INTRUDERS ESCAPED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.950000000276987, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-202", + "dateofocc": "2001-06-30", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED OIL TANKER WAS BOARDED 30 JUN AT 0230 LOCAL TIME AT PULAU MAPOR ISLAND. ALARM WAS SOUNDED AND CREW MUSTERED AS INTRUDERS ESCAPED. MASTER ALERTED OTHER SHIPS IN AREA VIA VHF.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.749999999910756, 0.966666700408098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-203", + "dateofocc": "2001-06-30", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTED AN ATTEMPT TO BOARD 30 JUN AT 0100 WHILE UNDERWAY IN POSITION 01-05N 104-55E. ABOUT TWENTY PERSONS ARMED WITH GUNS AND KNIVES CAME UP ASTERN IN A FAST BOAT BUT ABORTED THE BOARDING WHEN ILLUMINATED BY SE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.916666700307417, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-204", + "dateofocc": "2001-06-27", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 27 JUN AT 0500 LOCAL TIME WHILE AT BELAWAN ANCHORAGE. FIVE PERSONS ARMED WITH A SHOTGUN AND KNIVES BOARDED VIA THE FORECASTLE AND THREATENED A WATCHMAN. THE THIEVES FLED WITH STORES AND CREW VA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-205", + "dateofocc": "2001-06-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 27 JUN AT 0445 LOCAL TIME WHILE UNDERWAY IN POSITION 01-11.6N 103-24.6E OFF PULAU IYU KECIL. FIVE MASKED MEN ARMED WITH LONG KNIVES ROBBED THE MASTER OF $4,000 AND PERSONAL BELONGINGS. THEY THEN ESCAPE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.410000000425043, 1.193333299561004] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-206", + "dateofocc": "2001-07-09", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 JUL AT 0224 LOCAL TIME AT LAGOS ANCHORAGE. DUTY SEAMAN WAS TIED UP AND SHIP'S STORES STOLEN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.316666700439157, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-207", + "dateofocc": "2001-07-06", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 6 JUL AT 0345 LOCAL TIME WHILE ANCHORED FOUR MILES FROM THE FAIRWAY BUOY, LAGOS ROADS. THREE PERSONS ARMED WITH LONG KNIVES BOARDED VIA THE STARBOARD QUARTER. DUTY SEAMAN WAS STRUCK AND HIS WALKIE-TALKIE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.316666700439157, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-208", + "dateofocc": "2001-07-03", + "subreg": "57", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA BISSAU:An unidentified cargo ship was boarded 3 jul at 1940 local time while underway in position 10-38S 003-05E. about ten armed persons gained access but retreated to their boat when alarm sounded. boat then shadowed the vessel for about one h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [3.083333300278639, -10.633333300146887] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-209", + "dateofocc": "2001-07-08", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED AT CHENNAI ANCHORAGE 8 JUL AT 0345 LOCAL TIME. ANTI-PIRACY WATCH SPOTTED TWO PERSONS ON THE MAIN DECK AND SOUNDED ALARM, WHEREUPON THE TWO JUMPED OVERBOARD.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-210", + "dateofocc": "2001-07-03", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 3 JUL AT 2000 UTC WHILE AT CHITTAGONG ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES STOLE SHIP'S STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-211", + "dateofocc": "2001-07-05", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 5 JUL AT 0730 LOCAL TIME WHILE AT TANJUNG PRIOK ANCHORAGE. FOUR PERSONS WERE SPOTTED BY ANTI-PIRACY WATCH AND ESCAPED WHEN ALARM WAS SOUNDED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-212", + "dateofocc": "2001-07-12", + "subreg": "57", + "hostility_": "BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA:AN UNIDENTIFIED CHEMICAL TANKER REPORTS BEING APPROACHED AND FOLLOWED 12 JUL AT 1125 UTC BY A BOAT CONTAINING 5 PERSONS WHILE UNDERWAY OFF GHANA IN POSITION 04-19N 001-14W, 45 MILES OFFSHORE. AFTER FOLLOWING ALTERATIONS OF THE VESSEL'S COURSE THE", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.233333300022764, 4.316666699572124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-213", + "dateofocc": "2001-07-12", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 12 JUL AT 1815 UTC WHILE AT CHENNAI ANCHORAGE. THREE PERSONS ARMED WITH KNIVES OF FIVE TOTAL IN A GREEN BOAT WHICH PULLED ALONGSIDE BOARDED IN HEAVY RAIN. SHIP'S ALARM SOUNDED AND THIEVES ESCAPED BY JUMP", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-140", + "dateofocc": "2000-07-24", + "subreg": "25", + "hostility_": "STOWAWAYS", + "victim_d": "COLUMBIA 1", + "descriptio": "DOMINICAN REPUBLIC:The 17,200-ton Cyprus-flag cargo ship (COLOMBIA 1) was threatened by 21 knife-armed stowaways after they were discovered on board 24 Jul enroute Miami. U. S. federal agents boarded the ship offshore and stowaways were taken into cust", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.749999999919226, 20.000000000092768] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-141", + "dateofocc": "2000-07-14", + "subreg": "22", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU:An unidentified German container ship was boarded 14 Jul at 0320 local time (reported 25 Jul) while awaiting bunkers at Callao Anchorage. The thieves, armed with knives, escaped when spotted by a watchman, after steaming a mooring line from the for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.000000000249145, -39.000000000016598] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-142", + "dateofocc": "2000-07-12", + "subreg": "22", + "hostility_": "INTRUDERS", + "victim_d": "CONCENSUS REEFER", + "descriptio": "ECUADOR:The 7,239-ton, Netherlands-flag refrigerated cargo ship (CONSENSUS REEFER) was boarded 12 Jul at 0415 local time (reported 25 Jul) while at Guayaquil outer anchorage. Watch was accosted by a man with a knife and spotted three intruders at the fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.666666700406324, -3.50000000021754] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-143", + "dateofocc": "2000-07-17", + "subreg": "51", + "hostility_": "PROTESTERS", + "victim_d": "RANGER 1", + "descriptio": "SPAIN:The 6,272-ton Maltese-flag cargo ship (RANGER 1) docked 17 Jul at Villagarcia with Greenpeace protesters chained to its mast and to shoreside cranes in protest of the import of allegedly illegal timber from Cameroon. Spanish authorities had earlie", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.166666700342375, 40.500000000306102] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-144", + "dateofocc": "2000-07-15", + "subreg": "51", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MAURITANIA:An unidentified container vessel was boarded 15 Jul at about 0001 local time while anchored in Nouadhibou Bay by thieves operating from small speed boats. The intruders fled with ship's stores and equipment when crew mustered on deck.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.250000000405009, 19.499999999626937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-145", + "dateofocc": "2000-07-21", + "subreg": "57", + "hostility_": "MILITANT YOUTHS", + "victim_d": "OIL FIELD SERVICE BOAT", + "descriptio": "NIGERIA:Militant youths attacked an oil field service boat carrying workers of China's National Petroleum Corporation 21 Jul in the Forcados River. Two Chinese workers were kidnapped. Nigerian naval authorities state that more than 40 persons have been", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-146", + "dateofocc": "2000-07-19", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:Five armed thieves boarded an unidentified tanker 19 Jul at 2350 UTC while the ship was anchored at Dar-es-Salaam. The five came aboard from an 8-meter white unlit motor boat manned by three accomplices and escaped with ship's stores despite du", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.289722199719108, -6.828611099802799] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-147", + "dateofocc": "2000-07-22", + "subreg": "63", + "hostility_": "INTRUDER", + "victim_d": "TANKER", + "descriptio": "INDIA:An unidentified tanker was boarded 22 Jul 0500 local time while at Chennai Anchorage. A single intruder boarded at the forecastle but jumped overboard to a waiting boat when the alarm was raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-148", + "dateofocc": "2000-07-18", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified tanker was boarded 18 Jul 0455 local time while at Chennai anchorage. Two thieves boarded via the forecastle but escaped without stealing anything in a boat with three accomplices when the alarm was raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-149", + "dateofocc": "2000-07-16", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified bulk carrier was boarded 16 Jul at 0100 local time at Chennai anchorage. Two thieves boarded from a motorboat using a grappling hook but fled when spotted by ship's watchman and escaped in their motorboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-150", + "dateofocc": "2000-07-15", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA-ADEN:An unidentified roll-on roll-off vessel was approached 15 Jul at 0330 local time by two small boats going \"over 23 knots\" while in position 13-38N 042-56E. The boats approached from the bow and retreated when illuminated by the ship's searc", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.933333300173388, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-151", + "dateofocc": "2000-07-12", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:An unidentified bulk carrier reports being approached 12 Jul at 2050 local time by two speed boats, each containing five persons. As the boats attempted to come alongside crew mustered and energized hoses and the boats moved away.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.734722200158728, 13.839722200110145] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-152", + "dateofocc": "2000-07-22", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier was approached 22 Jul at 2200 local time by six persons in a fast, white colored boat with silent engine while underway in the Strait of Malacca in mid- channel. The boat's occupants attempted to board usin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.720000000008895, 4.117222199631613] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-153", + "dateofocc": "2000-07-20", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified LPG carrier was boarded 20 Jul at 2245 local time while underway in the Strait of Malacca in position 01-50.2N 102-22.5E. Six persons tied up \"the crew\" and threatened to kill them. The attackers escaped with about $10", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.375000000396028, 1.836666700067497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-372", + "dateofocc": "2000-11-05", + "subreg": "51", + "hostility_": "THIEVES", + "victim_d": "TORM ALEXANDRA", + "descriptio": "GUINEA:THE 3,972-TON, MALTA-FLAG CARGO SHIP (TORM ALEXANDRA) WAS BOARDED IN CONAKRY ON 5 NOV AT 0300 UTC BY 8 TO 10 MACHINE-GUN ARMED PERSONS WHO STOLE ABOUT $3,000 AND SHIP'S EQUIPMENT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-373", + "dateofocc": "2000-11-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "HAJI MOHAMMAD JATT", + "descriptio": "PAKISTAN:FIVE PAKISTANI FISHING VESSELS, INCLUDING (HAJI MOHAMMAD JATT) REPORT BEING ROBBED OF THEIR CATCH 2 NOV BY 24 ARMED PERSONS IN A HIGH-SPEED CRAFT TEN MILES FROM TATTA IN SINDH PROVINCE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [66.999999999814122, 24.000000000222144] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-374", + "dateofocc": "2000-11-06", + "subreg": "63", + "hostility_": "SPEEDBOAT", + "victim_d": "SUPPLY BOAT", + "descriptio": "MYANMAR-ANDAMAN SEA:AN UNIDENTIFIED SUPPLY BOAT REPORTED APPROACH 6 NOV AT 0340 LOCAL TIME BY UNLIT SPEEDBOAT IN POSITION 10-34.7N 097-23.9E. THE BOAT LEFT WHEN ILLUMINATED BY SEARCHLIGHT.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [97.398333299690989, 10.578333299815029] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-375", + "dateofocc": "2000-11-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 6 NOV AT 0128 LOCAL TIME WHILE UNDERWAY IN POSITION 01-56.5N 102-19.0E. ABOUT 20 ARMED PERSONS TOOK THE CREW HOSTAGE AND ROBBED THEIR CASH AND VALUABLES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.31666670004347, 1.941666700057397] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-376", + "dateofocc": "2000-11-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 5 NOV AT 0125 LOCAL TIME WHILE UNDERWAY IN POSITION 01-49.5N 102-23.2E. CASH AND VALUABLES WERE TAKEN FROM THE CREW BEFORE THE BOARDERS LEFT ABOUT 0445.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.386666700036756, 1.825000000426826] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-377", + "dateofocc": "2000-11-04", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP REPORTS BOARDING 4 NOV AT 0510 LOCAL TIME FROM A TEN-METER RED BOAT SPOTTED ALONGSIDE WHILE UNDERWAY IN POSITION 01-45.9N 102-32.0E. DUTY OFFICER FIRED SHOT FROM SHOTGUN AND BOARDERS JUMPED OVERBOARD AND ESCA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.53333329958275, 1.765000000047166] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-378", + "dateofocc": "2000-11-04", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-BORNEO:AN UNIDENTIFIED CHEMICAL TANKER WAS APPROACHED AT ABOUT 20 KNOTS 4 NOV AT 0135 LOCAL TIME BY AN UNLIT BOAT WHILE UNDERWAY IN POSITION 03-17S 109-41E. SHIP INCREASED SPEED, ALTERED COURSE AND DIRECTED SEARCHLIGHTS AT THE BOAT WHICH BROKE", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.683333300308618, -3.283333299954165] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-379", + "dateofocc": "2000-11-03", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED 3 NOV AT 2335 LOCAL TIME WHILE UNDERWAY IN POSITION 04-04.0N 099-25.0E BY AN UNLIT BOAT FIRST SIGHTED AT A DISTANCE OF ABOUT 1.2 MILES FROM THE STARBOARD SIDE. SHIP SOUNDED WHISTLE AND DIRE", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.416666699679865, 4.066666700238557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-380", + "dateofocc": "2000-11-04", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 4 NOV BETWEEN 0200 AND 0400 LOCAL TIME WHILE ANCHORED AT TANJUNG PRIOK AND ROBBED OF TWO LIFE RAFTS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-381", + "dateofocc": "2000-10-30", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED TANKER WAS APPROACHED 30 OCT AT 2300 LOCAL TIME WHILE AT ANCHOR INNER HARBOR KUALA ENOK. DUTY OFFICER RAISED ALARM, CREW MUSTERED AND FIRED THREE ROCKETS. AFTER THIRTY MINUTES BOAT DEPARTED.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.406666700195615, -0.516666700017652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-382", + "dateofocc": "2000-11-03", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 3 NOV AT 0325 LOCAL TIME WHILE ANCHORED IN SANDAKAN HARBOR INNER ROADS. THIEF BOARDED OVER BOW BY ROPE FROM A SPEEDBOAT CONTAINING SIX ACCOMPLICES BUT FLED WHEN ALARM WAS SOUNDED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.111666699938269, 5.820000000299729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-383", + "dateofocc": "2000-10-30", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CSAV TAIPEI", + "descriptio": "Ecuador:The 24,053-ton, German-flag container ship (csav Taipei) was attacked and boarded 30 Oct off Guayaquil at the data sea buoy as it approached the pilot station (reported 15 Nov). Four armed attackers boarded from a boat despite having been spotte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.899999999810461, -2.216666699982682] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-384", + "dateofocc": "2000-11-10", + "subreg": "56", + "hostility_": "STOWAWAYS", + "victim_d": "ANGLIA", + "descriptio": "LEBANON:TWO IRAQIS SHOVED ASIDE A WATCHKEEPER AND FORCED THEMSELVES ABOARD THE 4,927-TON, ANTIGUAN FLAGGED CARGO SHIP (ANGLIA) 10 NOV AS IT LAY ALONGSIDE AT BEIRUT. AFTER A SEARCH OF THE VESSEL THREE MEN WERE DISCOVERED IN ADDITION TO THE TWO INITIALLY", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [35.500000000144382, 33.86666669994321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-385", + "dateofocc": "2000-11-04", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "AZTLAN", + "descriptio": "GABON:THE 26,047-TON PANAMA-FLAG BULK CARRIER (AZTLAN) WAS BOARDED 4 NOV AT 0300 LOCAL TIME AT ANCHOR, OWENDO (REPORTED 15 NOV). SECOND OFFICER RAISED ALARM WHEN INTRUDERS WERE SPOTTED ON FORECASTLE ATTEMPTING TO STEAL MOORING LINES AND THE SIX PERSONS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.483333300305731, 0.350000000311695] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-386", + "dateofocc": "2000-11-09", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 9 NOV AT 0055 LOCAL TIME WHILE ANCHORED AT CHENNAI OUTER ANCHORAGE. SIX PERSONS WERE OBSERVED AND CHASED BY CREW BEFORE ESCAPING IN THEIR BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.354999999558004, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-387", + "dateofocc": "2000-11-13", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED INDONESIAN SHIP WAS REPORTED ATTACKED 13 NOV AT ANOWRA THANA AFTER LOCAL AGENT REFUSED TO PAY A \"TOLL\" AND SEVERAL CREW MEMBERS WERE HURT. POLICE ARRESTED THREE PERSONS. SAME SHIP WAS ATTACKED A DAY LATER AND GOODS LOOTED WHI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-214", + "dateofocc": "2001-07-10", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 10 JUL AT 0700 UTC WHILE AT CHENNAI ANCHORAGE. FOUR PERSONS OF SEVEN IN A BOAT WHICH PULLED ALONGSIDE GAINED ACCESS TO THE SHIP BUT FLED WHEN ALARM WAS SOUNDED. SHIP WAS BOARDED AGAIN 12 JUL.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-215", + "dateofocc": "2001-07-16", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 16 JUL AT 1530 UTC WHILE ANCHORED AT CHITTAGONG. TWO PERSONS OPERATING FROM A SPEEDBOAT STOLE THREE MOORING LINES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-216", + "dateofocc": "2001-07-15", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "VIRGINIA", + "descriptio": "INDONESIA:THE GREEK FLAG BULK CARRIER (VIRGINIA) WAS BOARDED AND ROBBED 15 AND 16 JUL WHILE LOADING CEMENT AT TANJUNG PRIOK ANCHORAGE. ON 15 JUL FOUR PERSONS IN TWO BOATS ATTEMPTED TO BOARD BUT WERE REPELLED WHEN SPOTTED. MASTER INFORMED OTHER SHIPS IN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-217", + "dateofocc": "2001-07-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS REPORTEDLY BOARDED 14 JUL AT 1800 LOCAL TIME BY PERSONS OPERATING FROM AN INDONESIAN FISHING BOAT UNDERWAY IN POSITION 02-06N 109-31E, 10 NM FROM DATU LIGHTHOUSE. THE BOARDERS THREATENED TO HIJACK THE SHIP AND, A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.516666699736732, 2.100000000143439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-218", + "dateofocc": "2001-07-12", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED CHEMICAL TANKER WAS SUBJECT TO AN ATTEMPTED BOARDING 12 JUL AT 2145 LOCAL TIME WHILE ANCHORED AT BELAWAN. SIX PERSONS ARMED WITH LONG KNIVES WERE ATTEMPTING TO CLIMB THE ANCHOR CHAIN WHEN DISCOVERED. THE CREW THREW FLA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-219", + "dateofocc": "2001-07-11", + "subreg": "92", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SULU SEA-PHILIPPINES:AN UNIDENTIFIED BULK CARRIER WAS REPORTEDLY APPROACHED 11 JUL AT 1800 UTC BY THREE UNLIT SPEEDBOATS WHILE UNDERWAY IN POSITION 08-00N 120-00E. WATCH OFFICER TURNED LIGHTS ON BOATS AND THEY MOVED AWAY.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.999999999729425, 7.999999999704698] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-220", + "dateofocc": "2001-07-21", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 21 JUL AT 1815 LOCAL TIME AT ABIDJAN ANCHORAGE BY A SINGLE PERSON ARMED WITH A LONG KNIFE. THE INTRUDER THREATENED THE WATCHMAN AND WAS LATER JOINED BY FIVE OTHER WHO STOLE SAFETY EQUIPMENT AND ESC", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.016666700371843, 5.316666699604468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-221", + "dateofocc": "2001-07-04", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "ARTEMIS", + "descriptio": "BANGLADESH:THE 7,565-TON, PANAMANIAN FLAG CONTAINER SHIP (ARTEMIS) WAS BOARDED 4 JUL AT 0206 LOCAL TIME WHILE ANCHORED AT CHITTAGONG ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES STOLE TWO MOORING LINES AND A MEGAPHONE BEFORE ESCAPING WHEN CREW MUSTER", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-222", + "dateofocc": "2001-07-23", + "subreg": "71", + "hostility_": "SMALL CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED SHIP REPORTS SUSPICIOUS APPROACH 23 JUL AT 1255 UTC WHILE UNDERWAY IN POSITION 01-40N 102-45E. UNLIT SMALL CRAFT APPROACHED AS CLOSE AS FIVE METERS BUT PULLED AWAY WHEN CREW SWITCHED ON LIGHTS.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.749999999846125, 1.666666700340784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-223", + "dateofocc": "2001-07-24", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 24 JUL AT 0115 LOCAL TIME WHILE ANCHORED AT TANJUNG PRIOK. PERSONS ARMED WITH KNIVES ENTERED ENGINE ROOM AND TIED UP WATCHMAN, ESCAPING WITH A LARGE AMOUNT OF ENGINE SPARES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-224", + "dateofocc": "2001-07-19", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 19 JUL AT 1930 UTC AT PANJANG PORT. TWO PERSONS FROM A SMALL BOAT ENTERED THE ENGINE ROOM AND THREATENED THE MOTORMAN ON WATCH WITH A KNIFE AND TIED HIM UP. DECK WATCH NOTICED THE BOAT AND RAIS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-225", + "dateofocc": "2001-07-21", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 21 JUL AT 2300 LOCAL TIME WHILE AT OUTER ANCHORAGE, VUNG TAU. PERSONS FORMA SMALL UNLIT BOAT STOLE SHIP'S STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-226", + "dateofocc": "2001-07-18", + "subreg": "94", + "hostility_": "PATROL BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EAST CHINA SEA:AN UNIDENTIFIED SUPPLY VESSEL REPORTS APPROACH 18 JUL AT 2125 LOCAL TIME WHILE UNDERWAY IN POSITION 23-00N 119-51E. A CRAFT RESEMBLING A NAVAL PATROL BOAT ORDERED THE SUPPLY BOAT TO STOP. MASTER MUSTERED THE CREW AND REPLIED HE HAD CONTA", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.850000000129285, 23.0000000001898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-227", + "dateofocc": "2001-07-24", + "subreg": "57", + "hostility_": "BOARDERS", + "victim_d": "SUPPLY VESSEL", + "descriptio": "ANGOLA:AN UNIDENTIFIED SUPPLY VESSEL WAS BOARDED 24 JUL (POSS. 24 JUN) AT 1450 LOCAL TIME WHILE UNDERWAY NEAR PUNTA FINHAL, LUANDA. TWO PERSONS CAME ABOARD FROM A SPEEDBOAT AND ASSAULTED THE WATCHMAN BEFORE JUMPING OVERBOARD WHEN CREW RESPONDED. THE TW", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.250000000099305, -8.83333330044843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-228", + "dateofocc": "2001-07-26", + "subreg": "61", + "hostility_": "THIEF", + "victim_d": "MECHANT VESSEL", + "descriptio": "TANZANIA:AN UNIDENTIFIED TANKER WAS BOARDED 26 JUL AT 2245 LOCAL TIME WHILE ANCHORED AT DAR ES SALAAM. A SINGLE PERSON ARMED WITH A KNIFE BOARDED AT THE FORECASTLE USING A GRAPPLING HOOK AND LOWERED A MOORING LINE INTO A WAITING BOAT. DUTY OFFICER RAIS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.299999999907584, -6.850000000280886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-162", + "dateofocc": "2000-07-27", + "subreg": "71", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified container ship was boarded 27 Jul at 2145 local time in position 01-45.2N 102-32.5E. Eight persons armed with long knives took the electrician hostage and stole cash and personal items belonging to master and crew. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.541666699893369, 1.753333300406496] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-154", + "dateofocc": "2000-07-15", + "subreg": "71", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was approached from the stern by a speedboat carrying three persons 15 Jul at 0130 local time. Boarding was averted when watchman sounded alarm.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-155", + "dateofocc": "2000-07-26", + "subreg": "82", + "hostility_": "HIJACKERS", + "victim_d": "SOLOTAI NO. 68", + "descriptio": "SOLOMON SEA:The Japanese fishing vessel (SOLOTAI NO. 68) was hijacked 26 Jul while in the Solomon Sea by three men who demanded the vessel go to Guadalcanal. The vessel arrived at Honiara several hours after and local police took the three men into cust", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [159.950000000256978, -9.416666699675943] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-156", + "dateofocc": "2000-07-31", + "subreg": "53", + "hostility_": "ACTIVISTS", + "victim_d": "AQUITANIA", + "descriptio": "FRANCE:French commandos on 31 Jul arrested six Greenpeace activists who had occupied the 13,519-ton, Cypriot-flag cargo ship (AQUITANIA) for 27 hours to prevent offload of itscargo of timber allegedly harvested illegally in Cameroon. The activists had oc", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [4.332777800118265, 43.44277779982724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-157", + "dateofocc": "2000-07-26", + "subreg": "54", + "hostility_": "HIJACKER", + "victim_d": "ERATO", + "descriptio": "GREECE:A gunman who had commandeered a yacht chartered by a Swiss family was shot dead 26 Jul by Greek coastguard divers who had been trying to speak with the unidentified gunman. The yacht (ERATO), with is five passengers and captain had been hijacked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [23.175555600423365, 39.046666700344588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-158", + "dateofocc": "2000-07-31", + "subreg": "57", + "hostility_": "MILITANTS", + "victim_d": "OIL RIGS", + "descriptio": "NIGERIA:Ijaw militants in Nigeria's Bayelsa State seized two oil rigs operated by Royal Dutch Shell 31 Jul and held 165 employees hostage. 60 persons operating from boats stormed the rigs in mangrove swamps demanding jobs for local youths. On 3 Aug agr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-159", + "dateofocc": "2000-07-12", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MEDEMSAND", + "descriptio": "NIGERIA:The 2,028-ton, Panamanian-flag refrigerated cargo ship (MEDEMSAND) was boarded 12 Jul (reported 27 Jul) while discharging cargo at Lagos. Three uniformed men boarded the ship and went to the captain's cabin where they threatened him with knives", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.416666700237272, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-160", + "dateofocc": "2000-07-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MAD EXPRESS", + "descriptio": "SOMALIA:The ship hijacked 10 Jul off Bargaal, Northern Somalia has been identified as the 949-ton French-flag fishing vessel (MAD EXPRESS). Some of the gunmen who had been holding the ship and its crew were arrested 11 Jul after fleeing the ship. Assis", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.091388899768049, -11.27416669962588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-161", + "dateofocc": "2000-07-10", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified roll-on, roll-off container ship was boarded 10 Jul (reported 2 Aug) at Chittagong Anchorage. Two intruders threatened and robbed a cadet and then entered the accommodation. When the alarm was raised the intruders fled the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.81361109977496, 22.315000000127213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-163", + "dateofocc": "2000-07-24", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker was boarded 24 Jul at 2210 local time in position 00-35.7N 103-51.7E off Eastern Sumatra by ten persons armed with guns. The crew were held hostage until 0810 26 Jul when the thieves escaped in a fishing boat with crew b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.861666700151886, 0.59500000028811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-164", + "dateofocc": "2000-07-24", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship was boarded 24 Jul and 2005 local time via the bow while berthed at Belawan container terminal. Two persons boarded using a grappling hook, broke into the ship's store and stole items despite the alarm having be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-165", + "dateofocc": "2000-07-15", + "subreg": "93", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:An unidentified container ship was boarded 15 Jul at 0001 local time while at anchor Nouadhibou Bay. Intruders operated from small speedboats and stole ship's stores and equipment before the crew mustered and the intruders escaped in their boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.783333299751007, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-388", + "dateofocc": "2000-11-08", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 8 NOV AT 1730 UTC WHILE AT CHITTAGONG 'A' ANCHORAGE. TWO PERSONS BOARDED OVER THE STERN BUT ESCAPED BACK TO THEIR WAITING BOAT WHEN ALARM RAISED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-389", + "dateofocc": "2000-11-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 NOV AT 0340 LOCAL TIME WHILE UNDERWAY IN POSITION 01-46N 102-27E. FIFTEEN PIRATES FROM TWO SPEEDBOATS STOLE CASH, DOCUMENTS, SHIP'S PROPERTY AND CREW VALUABLES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.449999999746467, 1.766666700074268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-390", + "dateofocc": "2000-11-13", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED TANKER WAS BOARDED 13 NOV WHILE BERTHED AT C.I.B. NO. 2, CILACAP. THREE PERSONS ARMED WITH KNIVES WERE SPOTTED BY ANTI-PIRACY PATROL AND JUMPED OVERBOARD TO ESCAPE WHEN ALARM RAISED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.000000000273076, -7.733333299783339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-391", + "dateofocc": "2000-11-12", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED CHEMICAL TANKERS WAS BOARDED AND ROBBED 12 NOV AT 1220 LOCAL TIME AT TANJUNG PRIOK ANCHORAGE. FIVE PERSONS ARMED WITH LONG KNIVES STOLE ENGINE SPARES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-392", + "dateofocc": "2000-11-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "RYTAS", + "descriptio": "EQUATORIAL GUINEA:THE 5,783-TON LITHUANIAN-FLAG FISHING VESSEL (RYTAS) WAS INTERCEPTED AND BOARDED 15 NOV OFF MALABO BY \"DRUNKEN SAILORS\" WHO DESTROYED THE SHIP'S RADIO AND TRANSFERRED ITS CATCH TO THEIR OWN BOAT. ON ARRIVAL AT PORT THE CAPTAIN AND 7 OF", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.666666699667871, 3.35000000040867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-393", + "dateofocc": "2000-11-16", + "subreg": "61", + "hostility_": "PURSUING BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN-SOMALIA:AN UNIDENTIFIED CARGO SHIP REPORTS BEING PURSUED 16 NOV BETWEEN 0700 AND 0900 UTC BY A SUSPICIOUS SUPPLY BOAT-TRAWLER TYPE VESSEL IN POSITION 04-21N 049-49E ABOUT 80 MILES OFFSHORE. PURSUING BOAT, DESCRIBED AS GREY HULL AND WHITE UP", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.816666699694622, 4.350000000441014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-394", + "dateofocc": "2000-11-14", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "BARGE IN TOW", + "descriptio": "INDIA:A BARGE IN TOW OF AN UNIDENTIFIED TUG WAS BOARDED 14 NOV AT 1040 LOCAL TIME IN POSITION 08-05.8N 077-02.6E, OFF CAPE COMORIN BY FOUR PERSONS WHO STOLE EMERGENCY TOWING WIRE AND FLED AT 1105 WHEN DISCOVERED. SAME PERSONS TRIED TO REBOARD AT 1155 HO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [77.0433332997207, 8.096666700108074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-395", + "dateofocc": "2000-11-17", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 17 NOV AT CHITTAGONG BY ONE PERSON OF EIGHT IN A BOAT WHICH APPROACHED THE SHIP'S STERN. STORES WERE STOLEN AND THE BOARDER THREATENED THE CREW WHEN CONFRONTED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-396", + "dateofocc": "2000-11-15", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CHEMICAL TANKER WAS ROBBED OF ZINC ANODES FROM ITS RUDDER 15 NOV AT 1115 UTC WHILE BERTHED AT VOTT VEGETABLE OIL JETTY NO. 3, CHITTAGONG. DUTY ENGINEER HEARD KNOCKING SOUND AT STERN AND ALERTED CREW AND THIEVES FLED WHEN CREW", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-397", + "dateofocc": "2000-11-12", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED AT MONGLA ANCHORAGE 12 NOV BY PERSONS WHO TRIED TO BOARD FROM FOUR WOODEN BOATS, EACH CARRYING 5 TO 6 PEOPLE. CREW AND ANTI-PIRACY SHORE GUARDS PREVENTED BOARDING BUT ZINC ANODES WERE STOLEN FROM HULL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.599999999825513, 22.433333299960111] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-398", + "dateofocc": "2000-11-16", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS CLOSELY APPROACHED 16 NOV AT 1400 UTC BY SEVERAL PERSONS IN FOUR FISHING BOATS WHO ATTEMPTED TO BOARD. ATTEMPT WAS BROKEN OFF WHEN ALERTED CREW MUSTERED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.149999999646809, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-399", + "dateofocc": "2000-11-18", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE:AN UNIDENTIFIED TANKER WAS APPROACHED 18 NOV BY AN UNLIT BOAT WHICH CAME ALONGSIDE AT 2156 LOCAL TIME IN POSITION 01-16N 104-07E. BOAT WITHDREW WHEN CREW SWITCHED ON ALDIS LAMP.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-400", + "dateofocc": "2000-11-18", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 18 NOV AT 0130 LOCAL TIME AT THE PANJANG PILOT STATION. EIGHT PERSONS FROM A SMALL BOAT BOARDED OVER THE FORECASTLE AND ENTERED THE ENGINE ROOM. THEY TIED UP THE DUTY OILER, STOLE ENGINE SPARES AND ESC", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-1", + "dateofocc": "2000-12-23", + "subreg": "21", + "hostility_": "Pirates or Narcotics Smugglers", + "victim_d": "Shrimp Fishing Boats", + "descriptio": "GUATEMALA (WEST COAST):This report is from a newspaper article in the Guatemalan news paper \"Prensa Libre (Free Press)\" date 29 December 2000. The article reports a series of assults on 16 shrimp fishing boats along the Pacific coast. The last reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-90.74999999966667, 13.749999999665818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-229", + "dateofocc": "2001-07-25", + "subreg": "62", + "hostility_": "HIJACKERS", + "victim_d": "BAHARI KENYA", + "descriptio": "SOMALIA:THE HIJACKED KENYAN TRAWLER (BAHARI KENYA) AND ITS CREW OF 22 WHO ARE BEING HELD HOSTAGE HAVE BEEN AT THE PORT OF EYL, 150 KM EAST OF GAROWE, NOMINAL CAPITAL OF PUNTLAND AS OF 1 SEP ARE EXPECTED TO BE \"FINED\" BETWEEN $100,000 AND $200,000 AND REL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.000000000163652, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-230", + "dateofocc": "2001-08-01", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP WAS SUBJECT TO ATTEMPTED BOARDING 1 AUG AT 0030 LOCAL TIME WHILE ANCHORED AT CHITTAGONG. ABOUT SIX PERSONS IN A MOTORBOAT CAME ALONGSIDE AT STERN BUT WITHDREW WHEN SEARCHLIGHTS WERE SHINED ON THEM.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.688333299982958, 22.206666699907885] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-231", + "dateofocc": "2001-08-03", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED TANKER WAS BOARDED 3 AUG AT 0050 LOCAL TIME WHILE AT BELAWAN ANCHORAGE. SIX PERSON ARMED WITH KNIVES ASSAULTED THE WATCHMAN AND TIED HIM UP, STOLE HIS VALUABLES AND STORES FROM THE FORECASTLE. WHEN CREW WAS ALERTED THI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-232", + "dateofocc": "2001-07-31", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "FISHERMEN", + "descriptio": "INDONESIA-SUMATRA:NINE FISHERMEN FROM NORTH SUMATRA WERE REPORTED KILLED 31 JUL IN A RAID BY UNKNOWN PERSONS ARMED WITH KNIVES WHO ATTACKED THEIR THREE SHRIMP TRAWLERS BETWEEN 0200 AND 0300 LOCAL TIME AT SEA BETWEEN KUALA PERUPUK BEACH AND TANJUNG TIRAM.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.999999999949637, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-233", + "dateofocc": "2001-08-02", + "subreg": "91", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:An unidentified cargo ship reports being circled by 7 to 9 speed boats 2 Aug between 1200 and 150 local time while underway off north east Luzon in position 14-55N 119-45E. Persons in the boats ordered the ship to stop and brandished what lo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.750000000395858, 14.916666700094822] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-234", + "dateofocc": "2001-08-07", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT SHIP", + "descriptio": "GHANA:AN UNIDENTIFIED SHIP WAS BOARDED 7 AUG BETWEEN 0150 AND 0230 LOCAL TIME WHILE AT TEMA ANCHORAGE. DUTY OILER ON WATCH ON FORECASTLE WAS THREATENED WITH GUNS AND KNIVES, ROBBED AND LEFT BOUND HAND AND FOOT. DUTY OFFICER SENT TEAM TO INVESTIGATE WHEN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-235", + "dateofocc": "2001-07-24", + "subreg": "63", + "hostility_": "LTTE REBELS", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SRI LANKA:LTTE REBELS ATTACKED SRI LANKA INTERNATIONAL AIRPORT IN THE EARLY HOURS OF 24 JUL DESTROYING OR DAMAGING MILITARY AND CIVILIAN AIRCRAFT. THE ATTACK OCCURED ON THE ANNIVERSARY OF THE START OF THE TAMIL WAR FOR A SEPARATE HOMELAND WITHIN SRI LANK", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.866666699632219, 6.966666699702841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-236", + "dateofocc": "2001-08-11", + "subreg": "62", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 11 AUG AT 1955 UTC WHILE AT UMM QASR PILOT STATION. THIEVES BOARDED FROM A WOODEN BOAT, BROKE INTO FORWARD LOCKER, AND ESCAPED WITH SHIP'S STORES. THIS IS THE SECOND INCIDENT REPORTED AT UMM QASR SINCE 28", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.733333300001277, 29.649999999550516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-237", + "dateofocc": "2001-08-10", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAITS:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 10 AUG AT 0622 LOCAL TIME WHILE UNDERWAY IN POSITION 01-24N 104-28E. SIX PERSONS ARMED WITH LONG KNIVES HELD THE SECOND AND THIRD OFFICER, AN ENGINEER AND DUTY SEAMEN HOSTAGE WHILE ROBBING THEIR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.466666699708298, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-238", + "dateofocc": "2001-08-10", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAITS:AN UNIDENTIFIED SHIP WAS APPROACHED 10 AUG AT 0010 LOCAL TIME WHILE UNDERWAY IN POSITION 01-28N 104-32E BY TWO SMALL WOODEN BOATS, EACH CONTAINING FOUR PERSONS. ONE BOAT EACH APPROACHED THE PORT SIDE AND STARBOARD QUARTER BUT REDUCED S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.533333299647438, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-239", + "dateofocc": "2001-08-14", + "subreg": "71", + "hostility_": "SEPARIST REBELS", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDONESIA-NORTHERN SUMATRA:THE NAVY ANNOUNCED 14 AUG THAT IT WOULD LAUNCH AN OPERATION TO CUT OFF SEABORNE SUPPLIES TO SEPARATIST REBELS IN ACEH PROVINCE. ADMIRAL INDROKO STATED THE NAVY BELIEVES REBELS ARE ENGAGED IN PIRACY IN THE STRAIT OF MALACCA BUT", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.999999999917293, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-166", + "dateofocc": "2000-08-10", + "subreg": "44", + "hostility_": "RIGHT-WING EXTREMISTS", + "victim_d": "NORWEGIAN DREAM", + "descriptio": "GERMANY:Extra police protection was provided to the 50,764-ton Bahamas flag cruise ship (NORWEGIAN DREAM) during its 10 Aug call at Rostock, Germany. A clash had occurred between the ship's multi-racial crew and right-wing extremists in Warnemunde in Ju", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "I" + }, + "geometry": { + "type": "Point", + "coordinates": [12.121111100370058, 54.093333299742937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-167", + "dateofocc": "2000-08-01", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified tanker was boarded 1 Aug at anchor, Cochin, by eight persons via the anchor chain. Watch spotted them and alarm sounded. The intruders escaped with a mooring line.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.536666699824764, 11.021111099704967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-168", + "dateofocc": "2000-08-02", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified container ship was boarded 2 Aug at anchor, Chittagong, by two men from a fishing boat. The two escaped when spotted by duty officer and no loss reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.81361109977496, 22.315000000127213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-169", + "dateofocc": "2000-07-29", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified cargo ship at anchor at Chittagong was the victim of three attempts by ten persons armed with knives to board over bow and stern 29 Jul beginning at 1645 UTC. The would-be boarders reportedly threw stones at the crew during th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.813888900349809, 22.315277799802743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-170", + "dateofocc": "2000-07-29", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:An unidentified bulk carrier was boarded 29 Jul at 0200 local time at Chittagong Alpha anchorage. About 20 persons armed with long knives overpowered and tied up two local watchmen and robbed ships stores. Duty officer raised alarm and robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814444399876095, 22.315833300228348] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-171", + "dateofocc": "2000-07-29", + "subreg": "63", + "hostility_": "GUNMEN", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAY OF BENGAL-MYANMAR:An unidentified cargo ship was reportedly chased and fired at by persons in a boat 29 Jul at 1342 UTC while underway from Singapore to Bangladesh in position 20-13N 092-22E. Pursuit reportedly lasted two hours. Calls to rescue cent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [92.366666699586801, 20.216666700356143] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-172", + "dateofocc": "2000-08-01", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:An unidentified tanker reported being chased 1 Aug at 0442 UTC in the Southern red Sea in position 13-44.2N 042-57.8E by speedboats. One boat, containing six persons, reportedly tried to block the tanker's passage but crew maneuvered past.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.96555560019101, 13.73666669982282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-173", + "dateofocc": "2000-07-29", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:An unidentified bulk carrier reported being approached by four unlit boats 29 Jul at 2250 UTC in the Southern Red Sea in position 13-11.5N 043-01.0E. The boats withdrew when illuminated by the ship's searchlight.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.016666699834445, 13.191666699746747] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-174", + "dateofocc": "2000-08-08", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "ALI EKINCI", + "descriptio": "STRAIT OF MALACCA:The 23,436-ton, Turkish-flag bulk carrier (ALI EKINCI) was boarded while underway by five persons armed with long knives in position 01-54N 102-21E at 0240 local time while on a voyage from Singapore to Italy. The thieves reportedly st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.35000000001304, 1.899999999777265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-175", + "dateofocc": "2000-08-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "SHUENN MAN NO. 12", + "descriptio": "STRAIT OF MALACCA:The master of the Taiwan-flag fishing vessel (SHUENN MAN NO. 12) was reported shot dead 8 Aug when his vessel was stormed by pirates at 1330 local time. The incident reportedly occurred 224 km north east of Singapore when a vessel \"dis", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.720000000008895, 4.117222199631613] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-176", + "dateofocc": "2000-07-31", + "subreg": "71", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier detected approach of a boat while underway on 31 Jul in position 02-01.4N 102-02.9E. When boat was .5 miles from the bulk carrier the third officer directed a searchlight toward it and the boat then withdre", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.048333299886337, 2.023333299866636] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-177", + "dateofocc": "2000-08-03", + "subreg": "71", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified container ship was approached by two speedboats from port bow and port beam 3 Aug at 0224 local time while underway in 00-11N 103-38E. Boats withdrew when alarm raised and crew alerted.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 0.183333299915034] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-178", + "dateofocc": "2000-08-04", + "subreg": "93", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:An unidentified bulk carrier was approached by two speed boats close along the starboard side 4 Aug at 1645 UTC while underway in position 10-45.8N 111-27.8E. Crew raised alarm, activated water jets, and alerted other vessels on VHF Chan", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.46333329988056, 10.76333330031116] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-179", + "dateofocc": "2000-07-31", + "subreg": "93", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:An unidentified roll-on, roll-off ship was approached by two high-speed boats, one to either side 31 Jul while underway in position 10-47.0N 109-56.4E. The ship fired signal rockets and activated high-pressure hoses and the boats withdre", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.93999999992576, 10.783333300437732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-2", + "dateofocc": "2000-11-25", + "subreg": "61", + "hostility_": "THIEF", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MOZAMBIQUE:CREW OF AN UNIDENTIFIED SHIP DISCHARGING CARGO 25 NOV AT 1400 UTC AT NACALA DISCOVERED A STEVEDORE ARMED WITH A KNIFE LOWERING SHIP'S STORES INTO THE SEA. HE WAS CAUGHT AND TURNED OVER TO POLICE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.666666699803386, -14.550000000439979] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-3", + "dateofocc": "2000-11-28", + "subreg": "63", + "hostility_": "KIDNAPPERS", + "victim_d": "FISHERMEN", + "descriptio": "INDIA-BAY OF BENGAL:65 INDIAN FISHERMEN WERE REPORTED KIDNAPPED 28 NOV AS THEY PUT TO SEA AT THE MOUTH OF THE THAKURANI RIVER IN THIRTEEN TRAWLERS. THE FISHERMEN WERE TAKEN TO AN ISOLATED ISLAND AND FIVE WERE SENT BACK WITH A RANSOM DEMAND OF $11,000 FO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.827222200128119, 21.161388899690451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-4", + "dateofocc": "2000-11-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BARGE UNDER TOW", + "descriptio": "INDIA:AN UNIDENTIFIED BARGE UNDER TOW WAS BOARDED 22 NOV AT 0230 UTC OFF SOUTHWEST INDIA IN POSITION 08-49N 076-13E. PERSONS FROM FIVE SPEEDBOATS STOLE SPARE PARTS AND RETURNED AN HOUR LATER WITHOUT STEALING ANYTHING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.216666700368535, 8.816666700167332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-5", + "dateofocc": "2000-11-26", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "SAILING YACHT", + "descriptio": "RED SEA:AN UNIDENTIFIED FRENCH SAILING YACHT AVERTED BOARDING 26 NOV AT 0530 UTC WHEN TWICE APPROACHED BY SEVEN PERSONS IN TWO SPEEDBOATS IN POSITION 12-17N 044-52E.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.866666700298936, 12.283333300036531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-6", + "dateofocc": "2000-11-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED 20 NOV AT 2335 LOCAL TIME WHILE UNDERWAY IN POSITION 01-47.2N 102-25.3E BY ABOUT FIFTEEN PERSONS WHO HELD THE MASTER, CHIEF ENGINEER, AND RADIO OFFICER HOSTAGE WHILE RANSACKING THE ACCOMMODATION AND ST", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.42166670003337, 1.786666700200783] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-7", + "dateofocc": "2000-11-23", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS PURSUED 23 NOV AT 0330 LOCAL TIME WHILE UNDERWAY IN POSITION 05-44N 095-17E, THREE MILES OFF PULAU WE AT THE NORTHERN TIP OF SUMATRA. THREE SPEEDBOATS WITH RED AND BLUE STRIPES CAME CLOSE TO THE VESSEL'S BOW ON E", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [95.283333300022775, 5.733333300409299] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-8", + "dateofocc": "2000-11-22", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOLOMON ISLANDS:THE TAIWAN-FLAG FISHING VESSEL (WIN FAR 616) WAS BOARDED 22 NOV AT HONIARA ANCHORAGE BY 8 ARMED MEN WHO FIRED WARNING SHOTS AND LOBBED TEAR GAS INTO THE VESSEL'S ACCOMMODATION. THE BRIDGE WAS STRIPPED OF REMOVABLE ITEMS AND CREW EFFECTS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [159.950000000256978, -9.466666700441976] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-9", + "dateofocc": "2000-12-02", + "subreg": "24", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL:WATCH ON AN UNIDENTIFIED BULK CARRIER AT ANCHOR SANTANA, SPOTTED PERSONS ARMED WITH KNIVES AND GUNS ON FORECASTLE 2 DEC AT 0410 LOCAL TIME. PORT CONTROL INFORMED, NO ACTION TAKEN. THIEVES ESCAPED WITH SHIPS STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.892499999769086, -5.401666699676525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-10", + "dateofocc": "2000-11-05", + "subreg": "24", + "hostility_": "THIEVES", + "victim_d": "STOLT KENT", + "descriptio": "BRAZIL:THE 12,141-TON, ISLE OF MAN FLAG CHEMICAL TANKER (STOLT KENT) WAS BOARDED ABOUT 5 NOV (REPORTED 4 DEC) WHILE AT COPESUL TERMINAL, RIO GRANDE. THE MASTER, OTHER OFFICERS AND CREW WERE THREATENED WITH GUNS WHILE THEIR CABINS WERE RANSACKED AND VAL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-52.133333300140009, -32.049999999656961] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-11", + "dateofocc": "2000-12-01", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON:UNIDENTIFIED SHIP BERTHED AT OWENDO PORT DISCOVERED PERSONS ON FORECASTLE 1 DEC AT 0130 LOCAL TIME. ALARM RAISED AND THIEVES JUMPED OVERBOARD WITH SHIP'S STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.483333300305731, 0.350000000311695] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-12", + "dateofocc": "2000-12-03", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN-GULF OF ADEN:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 3 DEC AT 0320 UTC IN POSITION 12-31.5N 045-00.0E BY FIVE BOATS, EACH CONTAINING TWO PERSONS. CREW MUSTERED AND BOATS WITHDREW TOWARD ADEN.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.00000000000199, 12.524999999783631] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-13", + "dateofocc": "2000-12-07", + "subreg": "62", + "hostility_": "KIDNAPPERS", + "victim_d": "FISHING BOAT", + "descriptio": "SOMALIA:A YEMENI FISHING BOAT WAS ATTACKED 7 DEC AND ITS CREW OF THREE TAKEN HOSTAGE OFF THE NORTHERN SOMALI VILLAGE OF HEIS. THE ATTACK WAS REPORTEDLY CARRIED OUT BY FIVE ARMED MEN WHO HAVE TAKEN THE HOSTAGES DEEP INTO THE INTERIOR OF THE BREAKAWAY REG", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.00000000006662, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-14", + "dateofocc": "2000-11-28", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "UAE:FOUR PERSONS IN A SMALL BOAT ATTEMPTED TO BOARD AN LPG CARRIER 28 NOV AT 1530 UTC WHILE THE SHIP WAS AT ANCHOR 5.8 NM FROM KALBA BREAKWATER. CREW MUSTERED ON DECK AND DIRECTED HIGH PRESSURE WATER JETS AT THE CRAFT, DESCRIBED AS 7-8 M LONG, 2M WIDE A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.333333300426887, 25.083333300090771] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-15", + "dateofocc": "2000-11-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Strait of Malacca:An unidentified tanker was boarded 30 Nov at 2118 utc while underway in position 01-42n 102-34e. The thieves stole cash and ship's stores before escaping in a small boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.566666700276357, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-16", + "dateofocc": "2000-11-05", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "THOR KIRSTEN", + "descriptio": "STRAIT OF MALACCA:THE 1,167 TON DANISH-FLAG CARGO SHIP (THOR KIRSTEN) WAS BOARDED 5 NOV AT 0510 LOCAL TIME (REPORTED 5 DEC) WHILE UNDERWAY ABOUT 20 NM SOUTH WEST OF SINGAPORE. GENERAL ALARM WAS SOUNDED AND A CREW MEMBER REPORTEDLY FIRED A WARNING BLAST", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-240", + "dateofocc": "2001-08-13", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 13 AUG AT 0030 LOCAL TIME WHILE AT TANJUNG PRIOK ANCHORAGE. FOUR PERSONS STOLE SHIP'S STORES AND JUMPED OVERBOARD TO ESCAPE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-241", + "dateofocc": "2001-08-09", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 9 AUG AT 0220 LOCAL TIME WHILE AT BELAWAN ANCHORAGE. EIGHT TO 10 PERSONS ARMED WITH LONG KNIVES ASSAULTED THE DUTY SEAMAN WHO ALERTED THE WATCH. DESPITE THE ALARM BEING RAISED STORES WERE BR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-242", + "dateofocc": "2001-08-04", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Kalimantan:An unidentified general cargo ship was subject to an attempted boarding 4 Aug at 0230 local time while anchored at Balikpapan inner roads. Hired police constables observed the attempt and one fired warning shots after which one of t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.866666699929397, -1.216666699950338] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-243", + "dateofocc": "2001-08-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MAURICE EWING", + "descriptio": "GULF OF ADEN:31 AUGUST 2001, 1410 GMT, U.S. RESEARCH VESSEL MAURICE EWING ATTACKEDBY 4-6 ARMED PERSONS OPERATING A SMALL CRAFT IN THE GULF OF ADEN.THE RV MAURICE EWING WAS CONDUCTING OCEANOGRAPHIC RESEARCH NEAR11-08N AND 043-53E, OFF-SHORE NORTHERN SOMAL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.883333300339018, 11.133333300404047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-244", + "dateofocc": "2001-08-12", + "subreg": "21", + "hostility_": "ATTACKERS", + "victim_d": "YACHT", + "descriptio": "MEXICO:A canadian yachtsman was assaulted and robbed 12 Aug while motoring 5 miles off shore near Santa Rosalia in Baja California. Two young men in a boat approached the yachtsman and asked for water. They then boarded the yacht demanding money and, whe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-112.333333299748631, 27.333333300388347] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-245", + "dateofocc": "2001-08-20", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 20 AUG AT 0510 LOCAL TIME WHILE DRIFTING 20 NM OFF LAGOS. SIX PERSONS ARMED WITH LONG KNIVES STOLE TWO MOORING LINES BEFORE ESCAPING. MASTER NOTIFIED PORT CONTROL AND OTHER SHIPS IN THE VICINITY.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.000000000442355, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-246", + "dateofocc": "2001-08-16", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:AN UNIDENTIFIED MULTI-PURPOSE CARGO SHIP WAS BOARDED 16 AUG AT 0200 LOCAL TIME WHILE AT DAR ES SALAAM OUTER ANCHORAGE. TWENTY PERSONS IN TWO BOATS STOLE SHIP'S STORES OVER A TWENTY-MINUTE PERIOD ALTHOUGH ANTI-PIRACY MEASURES WERE IN PLACE. INC", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.299999999907584, -6.850000000280886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-247", + "dateofocc": "2001-08-15", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT:AN UNIDENTIFIED TANKER WAS APPROACHED 15 AUG AT 1900 LOCAL TIME WHILE UNDERWAY IN POSITION 02-18N 101-38E BY AN UNLIT BOAT MAKING 12 KNOTS. SHIP ILLUMINATED BOAT WITH SEARCHLIGHTS AND IT WITHDREW.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.633333300183153, 2.299999999610293] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-248", + "dateofocc": "2001-08-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 18 AUG AT 0200 LOCAL TIME WHILE UNDERWAY IN POSITION 01-40N 104-30E, NEAR HORSBURGH LIGHT. TWELVE PERSONS ARMED WITH LONG KNIVES HELD THE MASTER AND FIVE CREW WHILE THEY ROBBED THE SHIP OF CRE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.499999999677868, 1.666666700340784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-249", + "dateofocc": "2001-08-13", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS APPROACHED 13 AUG AT 2337 BY AN UNLIT BOAT WHILE UNDERWAY IN POSITION 09-01S 115-02E, SOUTH OF BALI. ANTI-PIRACY WATCH SIGHTED APPROXIMATELY 25-METER BOAT APPROACHING STERN RAILING. SEARCHLIGHTS WERE DIRECTED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.033333300436652, -9.016666699842858] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-250", + "dateofocc": "2001-08-17", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPORTS BEING FIRED ON FROM A BOAT WITH FIVE PERSONS WHO \"ASKED\" THE MASTER TO STOP HIS ENGINES 17 AUG AT 0810 UTC WHILE UNDERWAY IN POSITION 04-35N 095-05E. MASTER INCREASED SHIP'S SPEED AND BOAT WITHDREW AFTER FOLLOWIN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [95.083333299656601, 4.583333299877495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-251", + "dateofocc": "2001-08-09", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MAGNA ENERGY", + "descriptio": "THAILAND:THE PANAMANIAN FLAG BULK CARRIER (MAGNA ENERGY) WAS BOARDED 9 AUG AT 1600 LOCAL TIME WHILE BERTHED AT WHARF 21D, BANGKOK. THIEVES STOLE 2 GPS UNITS AND A PAIR OF BINOCULARS BEFORE BEING APPREHENDED BY THE CREW AND POLICE. THE THIEVES BROKE FRE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.500000000447812, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-252", + "dateofocc": "2001-08-15", + "subreg": "25", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC:AN UNIDENTIFIED TANKER WAS BOARDED 15 AUG AT 0110 LOCAL TIME WHILE MOORED AT RIO HAINA. TWO TEAMS OF THIEVES, ONE AT THE FORECASTLE AND ONE AT THE POOP USED GRAPLING HOOKS TO BOARD. CREW RESPONDED IMMEDIATELY AND THIEVES FLED AFTER S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-253", + "dateofocc": "2001-08-23", + "subreg": "51", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE:AN UNIDENTIFIED RO-RO SHIP WAS BOARDED 23 AUG AT 0500 LOCAL TIME WHILE BERTHED AT FREETOWN BY PERSONS ARMED WITH KNIVES WHO THREATENED THE DUTY SEAMAN. A CONTAINER WAS BROACHED AND PART OF ITS CARGO STOLEN BEFORE THE THIEVES ESCAPED WHEN SP", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.250000000307978, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-180", + "dateofocc": "2000-08-02", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship was boarded 2 Aug while underway in the Banka Strait by six persons. The Third Engineer informed the bridge and alarm was sounded. The intruders escaped in their boat and nothing was reported stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.802222199621951, -3.646111100237249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-181", + "dateofocc": "2000-07-28", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 28 Jul at 1700 UTC while anchored at Adang Bay. Three persons boarded via anchor chain and attempted to break into forecastle stores. Watch alerted the bridge and alarm was sounded whereupon the intrude", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.499999999839588, -8.500000000379202] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-182", + "dateofocc": "2000-08-09", + "subreg": "63", + "hostility_": "INTRUDERS", + "victim_d": "AMETHYST", + "descriptio": "BANGLADESH:The 1,200-ton Panamanian flag cargo ship (AMETHYST) was raided 9 Aug at 0100 local time at Chittagong outer anchorage by armed intruders who tried to gain access from small boat. While crew and hired guards were repelling the attack two crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-183", + "dateofocc": "2000-08-19", + "subreg": "54", + "hostility_": "YUGOSLAV MILITARY GUNBOAT", + "victim_d": "M/V DELAWARE BAY", + "descriptio": "The U.S.-flagged vessel, M/V Delaware Bay, was boarded and detained near the port of Bar, Montenegro (42-05N 019-05E) by a Yugoslav gunboat. The vessel, owned by First American Bulk Corporation (FABC) and on charter to Farrell Lines, was carrying USAID f", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [19.016666699957625, 42.099999999638385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-184", + "dateofocc": "2000-08-15", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA:On 15 Aug at 0400 local, nine persons armed with shotguns in a wooden boat attempted to board a bulk carrier at anchor 26 miles south of Conakry, Guinea in position 09-05N013-49W. The duty officer raised the alarm and sounded the whistle. The cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.816666699638404, 9.083333299573326] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-185", + "dateofocc": "2000-08-14", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified tanker was boarded 14 Aug at anchor, Cochin, by three persons who took the duty seaman hostage and threatened him with a knife. The duty officer on the bridge suspected something was wrong when he could not communicate with the sea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.536666699824764, 11.021111099704967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-186", + "dateofocc": "2000-08-21", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:Four persons in a small wooden boat attempted to steal zinc anodes welded to the rudderpost of a chemical tanker and anchor in Chittagong Bravo anchorage 21 Aug. The crew spotted them and the alarm was raised. The thieves fled and port autho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.233333299593937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-187", + "dateofocc": "2000-08-09", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:On 9 Aug, at 0130 in the outer anchorage of Chittagong, armed thieves attacked a general cargo ship. One crewmember and watchman were shot. The other crewmembers resistedand the thieves retreated. Other ships also came to help. Port author", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-188", + "dateofocc": "2000-08-11", + "subreg": "62", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:Four persons in a small boat attempted to block the passage of a bulk carrier on 11 Aug at 1450 local time in the Straits of Bab El Mandeb in position 12-13N 042-29E. The boat reportedly followed close to the ship with the intent to board until", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.483333299574269, 12.216666700097448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-189", + "dateofocc": "2000-08-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "GIA DIHN", + "descriptio": "INDONESIA:The 985-ton, Vietnamese flag cargo ship (GIA DIHN) enroute Indonesian waters was attacked 18 Aug by 15 heavily armed pirates from a speedboat flying a Malaysian flag. The crew was robbed of cash and personal possessions but were unharmed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.802222199621951, -3.646111100237249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-190", + "dateofocc": "2000-08-18", + "subreg": "71", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:On 18 Aug at 1115 local time, in position 01-48N 102-25E, a bulk carrier was approached by two unlit speedboats from the stern. The speedboats fled when the ship shined an Aldis lamp at the boats.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.416666699776897, 1.800000000043781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-191", + "dateofocc": "2000-08-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:On 15 Aug at 0950 local, in posit 05-35N 097-38E, four high-speed boats approached a tanker from both sides. The master raised the alarm and sounded the whistle. The crew charged the fire hose and notified ships in the vicinity. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.633333300053835, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-192", + "dateofocc": "2000-08-11", + "subreg": "93", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA:On 11 Aug at 1718 UTC, in position 11-00N 110-46E, a speedboat approached a general cargo ship on the starboard side to within 3 nm. The duty officer switched on all deck lights and the speedboat retreated.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.766666700001963, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-17", + "dateofocc": "2000-11-30", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED TANKER WAS BOARDED 30 NOV AT 0245 LOCAL TIME AT PANJANG ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES WERE SPOTTED BY WATCH WHO RAISED ALARM. INTRUDERS THEN FLED IN SMALL BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-18", + "dateofocc": "2000-12-09", + "subreg": "61", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA:AN UNIDENTIFIED TANKER REPORTED A MAN CUT TWO LINES MOORING SHIP TO DOLPHIN 9 DEC AT 0125 LOCAL TIME, ATKIPEVU OIL TERMINAL, MOMBASSA. MOMBASSA PORT AUTHORITY INFORMED AND POLICE ARRIVED 0310.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.666666699771042, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-19", + "dateofocc": "2000-12-05", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED IN MOMBASSA 5 DEC AT 0545 LOCAL TIME BY A MAN ARMED WITH A KNIFE WHO ATTACKED THE SHIP'S WATCHMAN. DUTY OFFICER RESPONDED AND DISCOVERED SOME SHIP'S EQUIPMENT STOLEN. WATER POLICE CONTACTED BY VHF AND THI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.666666699771042, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-20", + "dateofocc": "2000-12-11", + "subreg": "62", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:A GENERAL CARGO SHIP UNDERWAY IN POSITION 12-51.1N 046-02.2E REPORTED SUSPICIOUS APPROACH BY SPEEDBOAT CONTAINING THREE MEN 11 DEC AT 0650 UTC. SHIP TOOK EVASIVE ACTION AND BOAT WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.036666700057992, 12.851666700293322] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-21", + "dateofocc": "2000-12-10", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:A REFRIGERATED CARGO SHIP REPORTED APPROACH BY TWO HIGH SPEED BOATS, EACH CONTAINING TWO MEN IN MILITARY UNIFORM 10 DEC AT 0742 LOCAL TIME. SHIP'S ANTI-PIRACY CREW MUSTERED ON DECK AND BOATS WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.066666699765847, 12.283333300036531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-22", + "dateofocc": "2000-12-10", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:UNIDENTIFIED TANKER BOARDED 10 DEC AT 2330 UTC VIA ANCHOR CHAIN WHILE ANCHORED AT COCHIN. SHIPS STORES STOLEN BY THIEVES WHO ESCAPED IN SMALL WOODEN BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-23", + "dateofocc": "2000-12-11", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED 11 DEC AT 1930 LOCAL TIME WHILE BERTHED AT CRUSE OIL JETTY, COCHIN. SIX PERSONS ARMED WITH CROWBARS, KNIVES AND OTHER WEAPONS (NFI) CUT AND STOLE FORWARD MOORING LINE AND ESCAPED. THE SAME SHIP WAS ATTACKED 10 D", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-24", + "dateofocc": "2000-12-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED AND ROBBED 12 DEC AT 2130 LOCAL TIME WHILE UNDERWAY IN EASTBOUND LANE OF TRAFFIC SEPARATION SCHEME. TWELVE PERSONS ARMED WITH KNIVES AND GUNS TOOK PART. THEY THREATENED THE CREW AND LOCKED THEM IN TH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.118333299944254, 1.252499999839472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-25", + "dateofocc": "2000-12-10", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED BY THIEVES 10 DEC AT 0125 LOCAL TIME WHILE ANCHORED IN POSITION 01-06.6N 103-28.8E. ALERT CREW FOILED ATTEMPT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.480000000418272, 1.109999999724721] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-26", + "dateofocc": "2000-12-09", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "JASMIN 1", + "descriptio": "STRAIT OF MALACCA:(JASMIN 1), A HONDURAN-FLAG CARGO SHIP WITH A $342,000 CARGO OF SUGAR IS MISSING SINCE ITS 29 NOV DEPARTURE FROM BATAM BOUND FOR PENANG. ON 9 DEC SHIP'S AGENT REPORTED IT MAY HAVE SUNK OR BEEN PIRATED, BUT COMMUNITY ESTIMATES ARE THAT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749166699615557, 4.943611100032285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-27", + "dateofocc": "2000-12-08", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CAR CARRIER WAS PURSUED 8 DEC AT 1507 LOCAL TIME WHILE IN POSITION 00-18.0N 108-15.0E BY ABOUT 8 PERSONS IN A SPEEDBOAT. MASTER TOOK EVASIVE ACTION AND SPEEDBOAT WITHDREW IN DIRECTION OF ISLAND OF PENGIKIK BESAR, INDONESIA.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.2499999995743, 0.300000000444982] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-28", + "dateofocc": "2000-12-07", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified tanker was boarded 7 Dec at 1515 utc while anchored at Santan, East Kalimantan. Intruders used the vessel's anchor chain but were spotted by watchman and fled when alarm sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.500000000098225, -0.01666669955182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-29", + "dateofocc": "2000-12-08", + "subreg": "73", + "hostility_": "CHRISTIANS", + "victim_d": "MUSLIM REFUGEES", + "descriptio": "INDONESIA-MOLUCCAS-HALMAHERA:AN UNKNOWN NUMBER OF MUSLIM REFUGEES WERE KILLED OR INJURED WHEN THEIR BOAT, CARRYING ABOUT 80 PERSONS, WAS ATTACKED BY A CHRISTIAN GROUP 8 DEC AT KAHATOLA ISLAND IN THE MOLUCCAS.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [127.483333299625201, 1.65000000044364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-30", + "dateofocc": "2000-12-11", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SARAWAK:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 11 DEC AT 0130 WHILE LOADING AT TANJONG MANIS ANCHORAGE, SARAWAK. WATCHMAN OBSERVED SIX INTRUDERS ON FORECASTLE AND SOUNDED ALARM WHEREUPON THE THIEVES JUMPED OVERBOARD WITH SHIP'S STORES. AUTHORI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.445833299914511, 3.045833300153731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-31", + "dateofocc": "2000-12-09", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "NIKOLAY KANTEMIR", + "descriptio": "IVORY COAST:THE 3,988-TON RUSSIAN-FLAG CARGO SHIP (NIKOLAY KANTEMIR) WAS BOARDED AND ROBBED 9 DEC AT 1755 LOCAL TIME WHILE BERTHED AT ABIDJAN. TEN ARMED PERSONS BOARDED FROM THE QUAY WHICH WAS LEVEL WITH THE SHIP'S DECK AND STOLE TWO OF THE SHIP'S CARGO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.016666700371843, 5.316666699604468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-202", + "dateofocc": "2000-08-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TIGER BRIDGE", + "descriptio": "STRAIT OF MALACCA:The 16,135 ton, Cyprus flag container cargo ship (TIGER BRIDGE) was attacked on 29 Aug. The master suffered deep cuts to his hand after six pirates boarded the ship at 0300 local. The pirates handcuffed the master and duty officer bef", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.466666700445899, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-32", + "dateofocc": "2000-12-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED CARGO WAS BOARDED 19 DEC AT LAGOS ANCHORAGE BY PERSONS ARMED WITH KNIVES. SHIP WEIGHED ANCHOR AND PROCEEDED TO THE OPEN SEA WITH TWO INTRUDERS STILL ON BOARD. THE TWO THREATENED THE MASTER WITH DEATH WHEN HIS SHIP ENTERS PORT AN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.466666700039298, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-254", + "dateofocc": "2001-08-20", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST:AN UNIDENTIFIED TANKER WAS BOARDED 20 AUG AT 0330 LOCAL TIME AT ABIDJAN ANCHORAGE. A CREWMEMBER WAS THREATENED AND HIS WALKIE TALKIE AND WRISTWATCH STOLEN. THE THIEVES ESCAPED AFTER TAKING SHIP'S STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.016666700371843, 5.316666699604468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-255", + "dateofocc": "2001-08-26", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CARGO SHIP BEING MOVED UNDER TOW WAS BOARDED 26 AUG AT 1400 UTC WHILE IN POSITION 20-22N 171-23E. PERSONS FROM TWO FISHING BOATS STOLE SHIP'S STORES AND ESCAPED DESPITE EFFORTS BY THE TUG'S CREW TO THWART THE ROBBERY. ON 28 AUG AT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.383333299879382, 20.366666699956284] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-256", + "dateofocc": "2001-08-26", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHERMEN", + "descriptio": "PHILIPPINES-MINDANAO:SIX FISHERMEN WERE KILLED AND THEIR BOATS STRIPPED OF ENGINES BY PIRATES ARMED WITH MACHINE GUNS, 26 AUG OFF ALICIA, ZAMBOANGA, MINDANAO.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.03333329976374, 6.966666699702841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-257", + "dateofocc": "2001-08-23", + "subreg": "22", + "hostility_": "BOARDERS", + "victim_d": "CSAV MANZANILLO", + "descriptio": "Ecuador:The Antigua-flag container ship (sav Manzanillo) was approached 23 Aug (reported 5 Sep) at 0350 local time by a boat with approximately 10 armed persons. Ship was about 10 miles off data sea buoy waiting for pilot to proceed into Guayaquil. Sec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.000000000443208, -2.249999999952252] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-258", + "dateofocc": "2001-08-29", + "subreg": "57", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST:AN UNIDENTIFIED CARGO SHIP WAS SUBJECT TO ATTEMPTED BOARDING 29 AUG AT 2315 LOCAL TIME WHILE AT BERTH 67, ABIDJAN. TWO PERSONS TRIED TO CLIMB ABOARD USING A HOOKED POLE BUT ESCAPED IN THEIR BOAT WHEN CREW RESPONDED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.316666699604468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-259", + "dateofocc": "2001-08-31", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA-GULF OF ADEN:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 31 AUG AT 0915 LOCAL TIME WHILE UNDERWAY IN POSITION 12-43N 043-19E, ABOUT 5 NM NW OF PERIM ISLAND. PERSONS IN FOUR FAST FIBERGLASS BOATS APPROACHED AS IF TO BOARD. SHIP RAISED ALARM, INCRE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.316666699934046, 12.716666699663961] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-260", + "dateofocc": "2001-09-02", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS SUBJECTED TO AN ATTEMPTED BOARDING 2 SEP AT 0142 LOCAL TIME WHILE ANCHORED TWO MILES NW OF COCHIN PORT. ANTI-PIRACY WATCH SPOTTED PERSONS IN TWO UNLIT BOATS ATTEMPTING TO CLIMB ABOARD, WHEREUPON THE ALARM WAS RAISED AND", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-261", + "dateofocc": "2001-09-03", + "subreg": "71", + "hostility_": "FREE ACEH MOVEMENT", + "victim_d": "ALL SHIPS", + "descriptio": "MALACCA STRAIT-INDONESIA:THE FREE ACEH MOVEMENT ANNOUNCED 3 SEP THAT ALL VESSELS PASSING BETWEEN SUMATRA AND MALAYSIA MUST GET THE MOVEMENT'S PERMISSION. INDONESIAN VESSELS ARE ALREADY INTENSIFYING PATROLS OF THE AREA TO PREVENT REBEL RESUPPLY AND IT IS", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.999999999917293, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-262", + "dateofocc": "2001-08-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 30 AUG AT 0230 LOCAL TIME WHILE UNDERWAY IN POSITION 01-24.2N 104-39.8E BY ABOUT 8 TO 10 PERSONS ARMED WITH KNIVES. MASTER AND CHIEF ENGINEER REPORTED INJURED AND PIRATES ROBBED CREW BELONGINGS A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.663333300020327, 1.403333300440124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-263", + "dateofocc": "2001-08-31", + "subreg": "73", + "hostility_": "GUNMEN", + "victim_d": "SPEEDBOAT", + "descriptio": "INDONESIA:A SOLDIER AND A POLICEMAN WERE KILLED 31 AUG AND EIGHT OTHERS INJURED WHEN GUNMEN OPENED FIRE ON A SPEEDBOAT OPERATING I CENTRAL MALUKU. THE BOAT WAS CARRYING SECURITY FORCES AND MUSLIMS TO LEIHITU DISTRICT, SERAM ISLAND.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [127.999999999988177, -2.999999999751708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-264", + "dateofocc": "2001-09-01", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED LPG CARRIER WAS PURSUED 1 SEP AT 0300 LOCAL TIME BY TWO SPEEDBOATS WHICH APPROACHED FROM THE PORT QUARTER WHILE THE VESSEL WAS UNDERWAY IN POSITION 03-00S 107-30E IN THE GELASA STRAITS. THE LPG CARRIER ALTERED COURSE BUT WAS FO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.4999999997749, -2.999999999751708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-265", + "dateofocc": "2001-08-29", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Kalimantan:An unidentified bulk carrier was boarded 29 Aug at 0430 local time while at Balikpapan inner anchorage. Watch noticed two long boats near ship's side and three persons on the poop lowering mooring line into the water. Crew chased t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.866666699929397, -1.216666699950338] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-266", + "dateofocc": "2001-08-25", + "subreg": "71", + "hostility_": "HIJACKERS", + "victim_d": "OCEAN SILVER", + "descriptio": "INDONESIA:THE HONDURAS-FLAG COAL CARRIER (OCEAN SILVER) WAS HIJACKED 25 AUG BY ARMED MEN OPERATING FROM A SPEEDBOAT WHO TOOK THE SHIP AND ITS CREW TO A SMALL PORT ON ACEH'S EAST COAST. SIX OF THE CREW WERE RELEASED WHILE ANOTHER SIX, ALL INDONESIAN, ARE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.999999999949637, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-267", + "dateofocc": "2001-09-05", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 5 SEP AT 0400 LOCAL TIME SOON AFTER DROPPNG ANCHOR AT LAGOS ROADS. AN UNKNOWN NUMBER OF PERSONS STOLE CREW PROPERTY AND STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-268", + "dateofocc": "2001-09-09", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON:AN UNIDENTIFIED CARGO SHIP DISCHARGING CARGO AT DOUALA WAS BOARDED 9 SEP AT 0510 LOCAL BY 8 TO 10 PERSONS ARMED WITH KNIVES WHO ARRIVED IMMEDIATELY AFTER STEVEDORES WENT ASHORE. THE INTRUDERS THREATENED DUTY OFFICER AND TWO CREW AND STOLE THEIR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-90", + "dateofocc": "2001-03-10", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 10 MAR AT 1130 LOCAL TIME IN CHITTAGONG WHILE AT AMMONIA BERTH AND ROBBED OF STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-193", + "dateofocc": "2000-08-18", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:On 18 Aug thieves boarded a container ship from the starboard side while it was at anchor at Tanjung Priok, Jakarta. The crew was attending to customs on the port side and the pirates broke padlocks and stole safety equipment and stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-194", + "dateofocc": "2000-08-17", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:While anchored in Belawan on 17 Aug at 0320, a tanker was boarded by thieves who stole ship's stores and injured a crewmember. The attack occurred while the ship was discharging its cargo.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-195", + "dateofocc": "2000-08-15", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:While anchored in Pulau Laut, position 03-12S 116-17E, on 15 Aug, a bulk carrier was boarded and robbed of a life raft and pump. The thieves were spotted by the duty seaman and managed to escape.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.283333299802621, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-196", + "dateofocc": "2000-08-13", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:On 13 Aug at Anyer anchorage, Indonesia, the duty oiler on a bulk carrier noticed three persons in the engine room. He notified the bridge duty officer who raised the alarm. The intruders fled, probably through an open gallery door used to gai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.499999999839588, -8.500000000379202] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-197", + "dateofocc": "2000-08-10", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:On 10 Aug, a container ship was boarded while at anchor at Laem Chabang anchorage. Thieves broke into a paint locker, but were discovered and fled when the alarm was raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.893888900247759, 13.067499999731467] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-198", + "dateofocc": "2000-08-19", + "subreg": "93", + "hostility_": "THIEF", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM:On 19 Aug at 2050 local, in position 10-14N 107-04E, the crew of a tanker anchored in Vung Tau spotted a single person attempting to lower a rope to a waiting boat. When they raised the alarm, the thief fled down the rope and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-199", + "dateofocc": "2000-08-07", + "subreg": "54", + "hostility_": "YUGOSLAV NAVY", + "victim_d": "DEA AND KABAN", + "descriptio": "MONTENEGRO:At least three ships have been stopped by elements of the Yugoslav navy while approaching the harbor at Bar, Montenegro. The three ships known to have been stopped are: (DEA), 1,798 tons, Croatian flag, 7 Aug; (DELAWARE BAY), 31,920 tons, U.S", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [19.087777799727576, 42.100555599888764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-200", + "dateofocc": "2000-08-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified bulk carrier was boarded 24 Aug at 2000 UTC in the outer anchorage at Kandla, India. Three pirates boarded the vessel via the forecastle. They fled when theduty officer raised the alarm and mustered the crew on deck.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-201", + "dateofocc": "2000-08-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:Five pirates boarded an unidentified bulk carrier while at anchor on 23 Aug at 2300 LT in Chittagong, Bangladesh. The crew and stevedores spotted the pirates chased them from the boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.333333300226684] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-203", + "dateofocc": "2000-08-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:On 26 Aug, in position 02-03N 102-08E at 1550 local, pirates boarded an unidentified container ship. The crew spotted the pirate's boat and directed fire hoses into it. The two pirates who boarded the vessel jumped overboard and escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.133333299749665, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-204", + "dateofocc": "2000-08-25", + "subreg": "71", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:On 25 Aug, in position 02-11S 108-57E, at 1430 UTC, two unlit speedboats approached a tanker at 27 knots. At 2 nm the speedboats split and one headed to the bow and one to the stern. The tanker then switched on its deck lights and alt", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.950000000406305, -2.183333300188394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-205", + "dateofocc": "2000-08-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:On 24 Aug, in position 01-45N 102-32E, at 0140 local, a pirate boat approached a tanker. The tanker directed search lights at the pirates who then fled. The pirates are believed to be the same pirates who attacked the M/V (ANTARA DUA)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.53333329958275, 1.750000000177067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-206", + "dateofocc": "2000-08-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "ANTARA DUA", + "descriptio": "STRAIT OF MALACCA:On 24 Aug, in position 01-46N 102-27E, at 0030 local, the 1,976 ton, Malaysian flagged Ro-Ro (ANTARA DUA) was boarded by nine armed pirates. The crew was captured and forced into a stateroom while the pirates stole cash and other valua", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.449999999746467, 1.766666700074268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-207", + "dateofocc": "2000-08-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:On 14 Aug, an unidentified 7,169 ton Cypriot container vessel berthed in Belawan was boarded and robbed. Despite the presence of a three man anti-piracy watch, pirates stole one breathing aparatus and eight drums of paint between 1912 and 2050", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.666666699880466, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-33", + "dateofocc": "2000-12-14", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED BY PERSONS IN A SPEEDBOAT WITH APPARENT INTENT TO BOARD 14 DEC AT 0520 LOCAL TIME IN POSITION 01-46N 102-28E. CREW DIRECTED SEARCHLIGHT AT BOAT WHICH WITHDREW.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.466666699643611, 1.766666700074268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-34", + "dateofocc": "2000-12-13", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 13 DEC AT 2310 LOCAL TIME BY FOUR PERSONS ARMED WITH LONG KNIVES. INTRUDERS FLED WHEN THEY SAW ALERTED CREW ON DECK.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.233333300382412, 1.966666700440442] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-35", + "dateofocc": "2000-12-20", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER WAS FOLLOWED WITH APPARENT INTENT TO BOARD 20 DEC AT 0435 LOCAL TIME IN POSITION 01-15.1N 103-19.3E BY AN UNLIT BOAT WITH FOUR PERSONS. BOAT APPROACHED WITHIN TEN METERS OF SHIP'S STERN BUT WITHDREW WHEN CREW SHINED SEAR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.321666700332287, 1.251666699738337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-36", + "dateofocc": "2000-12-19", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified bulk carrier was boarded 19 Dec at 1000 local time while at Kota Baru anchorage. Five persons armed with knives stole a life raft from the forecastle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.249999999832994, -3.249999999984595] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-37", + "dateofocc": "2000-12-18", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED TANKER WAS BOARDED 18 DEC WHILE BERTHED AT CILACAP BY AT LEAST THREE PERSONS ARMED WITH LONG KNIVES WHO TIED UP THE MECHANIC ON DUTY IN THE ENGINE ROOM AND ESCAPED WITH ENGINE SPARES. PORT CONTROL DID NOT RESPOND TO SHIP C", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.000000000273076, -7.733333299783339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-38", + "dateofocc": "2000-12-24", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 24 DEC AT 0210 AT KIPEVU OIL TERMINAL BY PERSONS WHO APPROACHED IN TWO CANOES CONTAINING SIX PERSONS EACH. SHIPS STORES WERE STOLEN BEFORE THE ANTI-PIRACY WATCH CHASED THEM AWAY.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.99999999984027, -3.999999999784052] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-39", + "dateofocc": "2000-12-24", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 24 DEC AT 0130 AT CHENNAI ANCHORAGE BY PERSONS WHO FLED WHEN SPOTTED BY DUTY OFFICER.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-40", + "dateofocc": "2000-12-31", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "SOUTH PACIFIC; PACIFICA 1", + "descriptio": "STRAIT OF MALACCA-MALAYSIA:THE SIERRA LEONE FLAG (SOUTH PACIFIC) AND PANAMA-FLAG (PACIFICA 1) (NOT LISTED IN SHIPPING SOURCES) WERE ATTACKED 31 DEC BY ABOUT 20 PERSONS ARMED WITH PISTOLS AND MACHETES. THE ATTACKERS ROBBED THE CREWS OF THE TWO SHIPS OF V", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.000000000014325, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-41", + "dateofocc": "2000-12-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED 30 DEC AT 0050 LOCAL TIME WHILE UNDERWAY IN POSITION 01-19N 103-18E. BY FOUR PERSONS ARMED WITH KNIVES WHO ENTERED THE BRIDGE AND ROBBED THE THIRD OFFICER OF CASH. THE FOUR ESCAPED WHEN SHIP'S ALARM W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.30000000017867, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-42", + "dateofocc": "2000-12-29", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP REPORTS AN ATTEMPTED BOARDING 29 DEC AT 2235 LOCAL TIME WHILE UNDERWAY IN POSITION 01-17.6N 103-22.2E. THE BOARDING WAS ATTEMPTED FROM A SMALL BOAT AT THE STARBOARD QUARTER BUT WAS ABORTED WHEN THE ANTI-P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.370000000171899, 1.293333300193751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-43", + "dateofocc": "2000-12-29", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECTED TO TWO ATTEMPTED BOARDINGS 29 DEC AT 2235 AND 2353 LOCAL TIME WHILE UNDERWAY IN POSITION 01-18.6N 104-16.3E. ALERT CREW CAUSED BOTH ATTEMPTS TO BE ABORTED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.271666699598597, 1.310000000090895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-44", + "dateofocc": "2000-12-25", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified tanker was subjected to attempted boarding 25 Dec at 0345 local time while at Balikpapan anchorage. Duty officer spotted the intruders and raised alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.833333300135109, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-45", + "dateofocc": "2000-12-24", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 24 DEC AT 0130 LOCAL TIME IN POSITION 01-18.2N 103-21.4E. DUTY OFFICER NOTICED EIGHT PERSONS ARMED WITH LONG KNIVES, RAISED THE ALARM AND MUSTERED THE CREW. THE INTRUDERS JUMPED OVERBOARD AND ESCAPED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.356666700328901, 1.303333299807377] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-46", + "dateofocc": "2000-12-24", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 24 DEC AT 0210 LOCAL TIME AT CIGADING. THE DUTY OILER WAS TIED UP IN THE ENGINE ROOM AND SHIP'S STORES STOLEN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.966666700206474, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-47", + "dateofocc": "2000-12-24", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP REPORTED AN ATTEMPT TO BOARD 24 DEC AT 0215 LOCAL TIME WHILE IN POSITION 01-15.3N 103-20.4E. ALERT CREW ILLUMINATED THE SHIP AND THE BOARDING WAS ABORTED. THERE IS NO INFORMATION IF SHIP WAS AT ANCHOR OR UNDERWAY.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.340000000431758, 1.254999999967708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-48", + "dateofocc": "2000-12-22", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED GAS TANKER WAS BOARDED 22 DEC AT 0230 LOCAL TIME VIA THE STERN WHILE MOORED IN POSITION 06-02.1S 105-55.8E. DUTY CREW AND SHORE GUARDS SPOTTED THE INTRUDERS AND THREE WERE ARRESTED BY THE GUARDS, WHILE TWO ACCOMPLICES IN A WAIT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.930000000182758, -6.034999999845354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-269", + "dateofocc": "2001-09-08", + "subreg": "62", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAB EL MANDEB:AN UNIDENTIFIED CARGO SHIP REPORTS THAT IT WAS SUBJECT TO AN ATTEMPTED BOARDING 8 SEP AT 0720 LOCAL TIME WHILE UNDERWAY IN POSITION 12-48N 043-15E. SEVERAL SPEED BOATS, EACH CONTAINING 5 TO 8 PERSONS APPROACHED BUT TOOK NO FURTHER ACTION A", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.250000000170189, 12.800000000399564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-270", + "dateofocc": "2001-09-08", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 8 SEP AT JAKARTA ANCHORAGE BY FOUR PERSONS WHO BROKE INTO SHIP'S STORE AND STOLE EQUIPMENT. WHEN CHALLENGED THEY ASSAULTED ONE CREW MEMBER AND ESCAPED OEVRBOARD.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-271", + "dateofocc": "2001-09-14", + "subreg": "51", + "hostility_": "SPEEDBOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA:Persons in two fast speedboats attempted to board an unidentified bulk carrier 14 Sep at 2200 local time in position 09-11.3N 014-31.3W off Conakry Guinea. Alarm and whistle sounded and flares fired at boats; boarding aborted.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.521666699827563, 9.188333299563226] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-272", + "dateofocc": "2001-09-11", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON:An unidentified cargo ship was boarded 11 Sep at 0115 local time while anchored at Pilot Station, Douala. Watch noticed three men armed with long knives lowering mooring line into water and was threatened when the men were challenged. Alarm ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-273", + "dateofocc": "2001-09-16", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "SAINT JUDE", + "descriptio": "INDIAN OCEAN:The yacht (SAINT JUDE) reported that an attempt was made to board 16 Sep at 1825 UTC while in position 07-53.4S 091-00.3E. Yacht contacted Darwin Radio and boarding attempt was broken off.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.004999999947415, -7.889999999666998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-274", + "dateofocc": "2001-09-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:An unidentified container ship was boarded 24 Sep at 0510 local time in Lagos by three persons armed with guns and knives operating from a speedboat that came alongside as the ship waited to berth. Duty watch raised the alarm and the thieves fle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-275", + "dateofocc": "2001-09-18", + "subreg": "51", + "hostility_": "BOARDERS", + "victim_d": "KASSOS", + "descriptio": "GUINEA:The 11,582 ton Cyprus flag log carrier, Kassos, was subject to attempted boarding 18 Sep while underway in position 09-11N 014-32W, off Conakry, by twelve persons in each of two fishing boats. Alert crew foiled the attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.533333299643516, 9.183333300206129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-276", + "dateofocc": "2001-09-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified cargo ship under tow in the Gulf of Cambay in position 20-32N 071-21E was boarded and robbed of stores 19 Sep at 0530 local time. Fifteen persons from eight fishing boats took part in the theft which is at least the second reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.349999999909812, 20.53333329962885] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-277", + "dateofocc": "2001-09-24", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:An unidentified container ship was reported 24 Sep to have been boarded at 1430 UTC while underway in position 14-15N 042-41E. According to the report five armed persons were involved. The master's requests for help were monitored by other ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.6833332999405, 14.250000000131649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-278", + "dateofocc": "2001-09-18", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was subject of attempted boarding 18 Sep at 1140 local time while at Bontang anchorage. Three persons attempted to board via the forecastle but were foiled by alert crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.516666699995426, 0.083333300181607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-279", + "dateofocc": "2001-09-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified cargo ship was boarded 27 Sep at 0730 local time wile under tow in the Gulf of Cambay in position 20-25N 071-21E. Twenty-six persons in six fishing boatsstole ship's stores. This is the second attack on a ship under tow in this a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.349999999909812, 20.416666699822997] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-280", + "dateofocc": "2001-09-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified chemical tanker was boarded 25 Sep at 0300 local time and robbed of stores while berthed at Deep Draft Southern Pier, Kakinada. Crew spotted thieves lowering supplies into water and sounded alarm whereupon the thieves jumped into", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.499999999865736, 16.500000000429281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-281", + "dateofocc": "2001-09-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MAYANG SARI", + "descriptio": "INDONESIA-NATUNAS ISLANDS: The Malaysian flag tug (MAYANG SARI) was hijacked 18 Sep at 2345 local time while underway off Pulau Subi Besar, Indonesia on a voyage from Kota Kinabalu. Between 12 and 17 pirates armed with guns and operating from a speedbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.000000000273076, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-282", + "dateofocc": "2001-09-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded and robbed 30 Sep at 2000 local time while loading cargo from barges alongside at Sebuku anchorage. The three intrudersstole a life raft and escaped down the anchor chain to their boat. Ship's c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.400000000332511, -3.616666699848111] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-283", + "dateofocc": "2001-09-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 30 Sep at 0120 local time while anchored at Senakin, Kota Baru. Thieves stole two life rafts before crew raised alarm and thieves escaped in a speedboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.19999999996628, -3.033333299721278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-208", + "dateofocc": "2000-08-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:On 28 Aug between 0200-0400 local, pirates boarded a general cargo ship in Sandakan, Malaysia and stole stores and equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.050000000430828, 5.866666699937014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-209", + "dateofocc": "2000-08-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:On 27 Aug, in position 05-25N 100-21E in Penang port, Malaysia, at 0430, three pirates were spotted on the forecastle by the duty A/B. The alarm was raised and the crew mustered on deck. The pirates then fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.349999999948352, 5.416666700237272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-210", + "dateofocc": "2000-08-27", + "subreg": "93", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: On 27 Aug at 2315 in Vung Tau anchorage, Vietnam, a single pirate boarded a bulk carrier via the anchor chain. The duty A/B spotted the pirate and raised the alarm causing the pirate to flee.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-211", + "dateofocc": "2000-09-08", + "subreg": "82", + "hostility_": "GUADALCANAL MILITANTS", + "victim_d": "GRANGER", + "descriptio": "SOLOMON ISLANDS:M/V Granger received small arms fire 08 Sep from militants on the island of Guadalcanal off Sally Point resulting in the death of one crewmember and the wounding of another. Vessels are advised to remain clear of the south coast of Guada", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [160.000000000123691, -9.999999999978058] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-212", + "dateofocc": "2000-01-17", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "NASIA", + "descriptio": "BRAZIL:The 4,909-ton, Cyprus-flag cargo ship (NASIA) was boarded 17 Jan at Sepetiba Anchorage by 5-6 men armed with knives and guns. The boarders stole money and crew valuables. Total of ship s money lost was $3,600 and total for crew losses still being", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-45.750000000010061, -25.500000000029672] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-213", + "dateofocc": "2000-01-12", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:A boarding attempt was reportedly made 12 Jan against an unidentified ship in 12-59N 100-46E shortly after it departed Ko Sichang, Thailand. Pirates from an unlit boat attempted to board but were repelled by crew using high pressure fire hoses.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.766666699678581, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-214", + "dateofocc": "2000-01-12", + "subreg": "71", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:Five attackers armed with guns and knives attempted to board an unidentified ship 12 Jan in position 01-46N 102-41E. Crew raised general alarm; attack averted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.683333300082211, 1.766666700074268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-215", + "dateofocc": "2000-01-16", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified ship was boarded 16 Jan in position 06-09N 093-42E between 0001 and 0600 local time. Ship's stores stolen. Although unstated in report, ship assessed to have been at anchor at time of boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [93.699999999688316, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-216", + "dateofocc": "2000-01-05", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:Unidentified ship boarded via after deck 5 Jan (reported 18 Jan) at Lawi-Lawi Anchorage. Watchman reported six men with long knives. Intruders escaped with ship's stores after alarm raised and crew mustered.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-217", + "dateofocc": "2000-01-04", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:Seven or eight men armed with long knives boarded an unidentified ship at Muara Karang, Jakarta 4 Jan (reported 18 Jan) and tied up duty engineer and oiler. When dutyengineer freed himself he discovered theft of spare engine parts.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.799999999842157, -6.11666670037863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-218", + "dateofocc": "2000-08-29", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA:AN UNIDENTIFIED BULK CARRIER BERTHED AT CONAKRY, GUINEA WAS SUBJECTED TO FIVE UNSUCCESSFUL BOARDING ATTEMPTS DURING THE NIGHT OF 29 AUG BEFORE A SIXTH ATTEMPT SUCCEEDED AT 0600 LOCAL TIME. THREE MASKED AND ARMED PERSONS BOARDED VIA STERN MOORING", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-219", + "dateofocc": "2000-08-29", + "subreg": "57", + "hostility_": "INTRUDERS", + "victim_d": "DAWN", + "descriptio": "GHANA:THE 8,909-TON, PANAMANIAN FLAG CARGO SHIP (DAWN) WAS SUBJECT OF ATTEMPTED BOARDING 29 AUG AT 2345 LOCAL TIME BY TEN PERSONS, TWO OF WHOM TRIED TO CLIMB THE ANCHOR CHAIN. WHEN CREW SOUNDED AN ALERT THE INTRUDERS LEFT THE AREA.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.99999999968702, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-220", + "dateofocc": "2000-08-28", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "NORDSTRENGTH", + "descriptio": "TOGO:THE 57,148-TON, CYPRUS-FLAG TANKER (NORDSTRENGTH) WAS BOARDED 28 AUG AT 0030 LOCAL TIME (REPORTED 5 SEP). WATCH SPOTTED PERSONS ON THE FORECASTLE AND RAISED THE ALARM. IT WAS DISCOVERED THAT THE LOCK TO THE FORECASTLE HAD BEEN FORCED WITH A CROWBA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.216666699741666, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-221", + "dateofocc": "2000-08-30", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "ARDEAL", + "descriptio": "BANGLADESH:THE 6,036-TON ROMANIAN FLAG CARGO SHIP (ARDEAL), LYING SINCE APRIL 1999 AT MONGLA BANGLADESH AND WITH CREW UNPAID SINCE APRIL 2000, WAS REPORTED 30 AUG TO HAVE BEEN LOOTED BY THIEVES WHO HAVE ALSO STOLEN ALL OF THE CREW'S BELONGINGS. IN SEP 1", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.616666699722657, 22.283333300359971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-222", + "dateofocc": "2000-08-29", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 29 AUG AT 0600 LOCAL TIME WHILE ANCHORED AT CHITTAGONG ANCHORAGE C. SEVEN PERSONS USING GRAPPLING HOOKS BOARDED FROM A SMALL BOAT BUT FLED WHEN THEY WERE SPOTTED AND CREW MUSTERED ON DECK.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.333333300226684] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-223", + "dateofocc": "2000-09-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 2 SEP AT 2215 LOCAL TIME WHILE UNDERWAY IN POSITION 01-04N 104-54E. PERSONS ARMED WITH MACHETES AND KNIVES ENTERED THE MASTER'S CABIN, TIED HIM UP, AND STOLE $22,000 FROM THE MASTER'S SAFE. W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.900000000410273, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-49", + "dateofocc": "2001-01-08", + "subreg": "71", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPORTED BEING APPROACHED 8 JAN AT 0320 LOCAL TIME BY AN UNLIT BOAT WHILE UNDERWAY IN POSITION 01-08N 105-02E. WHEN BOAT APPROACHED WITHIN FIVE METERS OF STERN CREW RAISED ALARM AND TURNED ON DECK LIGHTS WHEREUPON THE BO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.03333330011327, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-50", + "dateofocc": "2001-01-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 8 JAN AT 0500 IN POSITION 00-51.7N 105-06.9E BY FIFTEEN PERSONS ARMED WITH LONG KNIVES AND OTHER UNSPECIFIED WEAPONS. BOARDERS TOOK CONTROL OF THE SHIP, HIT THE CREW AND STOLE STORES AND CREW VALUABL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.114999999747226, 0.861666700418198] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-51", + "dateofocc": "2001-01-06", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified tanker was boarded 6 Jan at 0400 local time at Balikpapan. The two boarders jumped overboard when spotted by watch and escaped in a boat waiting nearby.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.833333300135109, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-52", + "dateofocc": "2001-01-09", + "subreg": "57", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED TANKER WAS BOARDED 9 JAN AT 0200 LOCAL TIME WHILE ANCHORED. THE INTRUDERS ENTERED VIA THE HAWSE PIPE BUT FLED WHEN THE ALARM WAS SOUNDED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.99166670008583, 4.15000000007484] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-53", + "dateofocc": "2001-01-10", + "subreg": "57", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 10 JAN AT 0115 LOCAL TIME WHILE ANCHORED AT TEMA. TWO PERSON BOARDED THROUGH THE HAWSE PIPE BUT FLED WHEN ALARM WAS SOUNDED AND ESCAPED IN A SMALL CANOE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.01666669955182, 5.66666669957084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-54", + "dateofocc": "2001-01-12", + "subreg": "63", + "hostility_": "BOARDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:A BOARDING WAS ATTEMPTED OF AN UNIDENTIFIED TANKER 12 JAN AT 2355 LOCAL TIME 4.5 MILES NW OF THE FAIRWAY BUOY, COCHIN ROADS. WATCH NOTICED A PERSON ON THE ANCHOR CHAIN AND RAISED THE ALARM. INDIVIDUAL ESCAPED IN A BOAT WITH ABOUT 10 ACCOMPLICES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-55", + "dateofocc": "2001-01-09", + "subreg": "63", + "hostility_": "INTRUDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 JAN AT 1905 LOCAL TIME WHILE AT COCHIN ANCHORAGE. WHEN CONFRONTED BY ANTI-PIRACY WATCH HE JUMPED OVERBOARD AND ESCAPED IN AN UNLIT BOAT CONTAINING ABOUT NINE ACCOMPLICES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.250000000338105, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-56", + "dateofocc": "2001-01-13", + "subreg": "71", + "hostility_": "INTRUDER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 13 JAN AT 0245 WHILE AT ANCHOR AT JAKARTA. ONE INTRUDER WAS OBSERVED LOWERING A ROPE TO HIS ACCOMPLICES WHEN ALARM SOUNDED AND HE JUMPED OVERBOARD TO ESCAPE IN A BOAT WITH ABOUT TEN ACCOMPLICES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.896666700245532, -6.051666699742498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-57", + "dateofocc": "2001-01-09", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:Thieves in Balikpapan port employed a possible new tactic in robbing an unidentified tanker 9 Jan. Crew of the berthed vessel noticed a small boat approach the bow at 0400 local time. When they shined ship's lights on it the boat moved", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.833333300135109, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-58", + "dateofocc": "2001-01-08", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED TANKER WAS BOARDED 8 JAN AT 0400 LOCAL TIME WHILE ANCHORED AT SANDAKAN, SABAH. SHIP'S STORES STOLEN. SAME SHIP BOARDED 9 JAN AT 0100 WHILE AT BERTH 3, SANDAKAN AND TRIED TO STEAL STORES, BUT FLED WHEN SPOTTED AND ALARM RA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.111666699938269, 5.820000000299729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-59", + "dateofocc": "2001-01-17", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 17 JAN AT ITS BERTH AT DOUALA. DUTY OFFICER THREATENED WITH LONG KNIFE AND SHIP'S STORES STOLEN. POLICE AND HARBOR MASTER'S OFFICE NOTIFIED BUT DID NOT RESPOND.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.716666699566929, 4.066666700238557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-60", + "dateofocc": "2001-01-20", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "TORM ALEXANDRA", + "descriptio": "IVORY COAST:THE 3,972-TON MALTA-FLAG CARGO SHIP (TORM ALEXANDRA) WAS BOARDED 20 JAN AT 0415 LOCAL TIME AT ITS BERTH, ABIDJAN. SEVERAL PERSONS ARMED WITH KNIVES AND PIPES BROKE INTO A CONTAINER AND STOLE TWO BAGS OF COCOA. SHOUTS FROM THE CREW AND THE P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.316666699604468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-61", + "dateofocc": "2001-01-17", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS SURROUNDED 17 JAN AT 0855 LOCAL TIME BY ARMED MEN IN SEVERAL FISHING BOATS AT KAKINADA INNER ANCHORAGE. ONE MAN BOARDED THE TANKER, STOLE SHIP'S STORES AND JUMPED OVERBOARD.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.333333300368395, 16.983333300098593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-62", + "dateofocc": "2001-01-18", + "subreg": "63", + "hostility_": "ATTACKERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 18 JAN AT 2037 LOCAL TIME BY TWO PERSONS ARMED WITH LONG KNIVES. THE INTRUDERS ATTACKED FOUR SHORE WATCHMEN AND TWO CREW. DUTY OFFICER SOUNDED ALARM AND THE TWO ESCAPED IN TWO BOATS.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.999999999658598, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-296", + "dateofocc": "2001-10-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAI OF MALACCA: An unidentified container ship reports being followed 21 Oct at 1930 local time by three unlit boats while underway in position 01-26N 103-06E. No attempt to board took place.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.099999999812439, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-63", + "dateofocc": "2001-01-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "MYANMAR:THAI POLICE ON 18 JAN ARRESTED 20 ALLEGED PIRATES FOLLOWING AN 11 JAN ATTACK ON THE THAI FLAG FISHING BOATS (NONG BOW) AND (AU THONGLAY). THE ATTACK TOOK PLACE OFF MERGUI, MYANMAR. THE BOATS WERE ATTACKED BY PERSONS IN TWO TRAWLERS WHO FORCED T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [98.566666700147039, 12.433333299636729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-284", + "dateofocc": "2001-09-26", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified VLCC was boarded and robbed 26 Sep at 0400 local time while transshipping cargo at Balikpapan anchorage. Two person were spotted on the forecastle lowering stores into their boat. Thieves fled In their boat when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.266666699817108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-285", + "dateofocc": "2001-10-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified tanker was boarded 6 Oct at 0200 UTC while anchored at Abidjan Roads. Four persons came alongside the anchor chain and two persons armed with long knives boarded and stole ship's stores before escaping in their boat when al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-286", + "dateofocc": "2001-10-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: An unidentified general cargo ship was boarded 4 Oct at 2300 local time while unloading cargo at Douala. A locker at the base of the stack was broken into and \"safety equipment\" stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-287", + "dateofocc": "2001-10-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG tanker was subject to an attempted boarding 7 Oct at 0420 local time while at Redeco jetty no. 1, Merak. Four persons from a small boat threw a grappling hook over a railing boat pulled away without boarding when a search", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.400000000009129, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-288", + "dateofocc": "2001-10-05", + "subreg": "94", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TAIWAN STRAIT: An unidentified container ship was subject to attempted boarding 5 Oct at 0200 local time from an unlit speedboat while underway in position 24-31.5N 119-08E. Attempt was aborted when alarm sounded. Same ship reports a similar attempt fou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.133333300299455, 24.525000000171701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-289", + "dateofocc": "2001-10-11", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE: The 2,384ton, Bolivian-flag bunkering tanker (CAPE GEORJEAN) was boarded 11 Oct at 0120 UTC by at least thieves armed with Kalashnikov rifles. The ship's superintendant fired on the intruders with a pump-action shotgun and may have killed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.300000000174748, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-290", + "dateofocc": "2001-10-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 6 Oct at 0001 local time while at Mongla Port. Thieves stole ship's stores from the steering gear flat and zinc anodes from the rudder.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.599999999825513, 22.483333299826825] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-291", + "dateofocc": "2001-10-13", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified bulk carrier reports an attempt to board 13 Oct at 0230 local time while underway at Cartagena. Eight persons approached in a small boat and attemptedto gain access via the ship's ladder which was over the side. Alarm raised a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.416666700398935] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-292", + "dateofocc": "2001-10-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 22 Oct at 0205 UTC while at Lagos Anchorage by three persons armed with knives and operating form a speedboat. The thieves stole ship's stores, crew property and a VHF radio.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-293", + "dateofocc": "2001-10-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: An unidentified bulk carrier was boarded 17 Oct at 0130 UTC while anchored at Owendo. Six persons armed with guns boarded at the forecastle and stole ship's equipment and stores despite crew attempts a thwarting them.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.500000000202874, 0.283333299648461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-294", + "dateofocc": "2001-10-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified tanker was boarded 19 Oct at 0045 local time while at anchorage 1, Dar es Salaam. Two groups of three persons armed with knives boarded at the forecastle and poop deck, from a group of twenty in a boat. Crew raised alarm and t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.283333300010383, -6.833333300383742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-295", + "dateofocc": "2001-10-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 18 Oct at 1135 local time at Mongla anchorage. Five persons armed with long knives gained access via the anchor chain and attacked the watchman. When crew responded the intruders jumped overboard an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.599999999825513, 22.483333299826825] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-297", + "dateofocc": "2001-10-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 21 Oct at 0005 local time while at Belawan anchorage. Seven persons armed with knives gained access via the anchor chain and three assaulted the watchman, stabbing and severely injuring him. A seco", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.983333300052493, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-298", + "dateofocc": "2001-10-21", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified tanker was boarded 21 Oct at 0330 local time while at PTSC oil terminal, Vung Tau. One person armed with a knife boarded at the stern from a small unlit boat that approached with three other persons aboard. Watch raised alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-299", + "dateofocc": "2001-10-21", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MARIE THERESE", + "descriptio": "BRAZIL: The 3,113 ton Antigua flag cargo ship MARIETHERESE was boarded 21 Oct at 0430 local time while berthed at Belem. Three persons armed with knives broke into a storeroom and stole ship's stores before fleeing to their boat when spotted by watchma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.499999999874149, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-1", + "dateofocc": "2000-01-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "A BIMCO report states:Using at least five boats in their attack, pirates boarded a container vessel awaiting entry to the port of Colombo (06-57N 079-51E).Upon detection of the approaching pirates, the ship's crew notified the navy and the harbor police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.849999999735076, 6.949999999805641] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-224", + "dateofocc": "2000-09-02", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED AND ROBBED OF UNSPECIFIED CASH AND VALUABLES 2 SEP AT 0045 LOCAL TIME WHILE UNDERWAY IN POSITION 00-58N 105-02E. AFTER THE ROBBERY THE SIX ARMED PERSONS ESCAPED BY BOAT IN THE DIRECTION OF INDON", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.03333330011327, 0.966666700408098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-225", + "dateofocc": "2000-08-30", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 30 AUG AT 1630 UTC WHILE UNDERWAY IN POSITION 01-42N 102-36E BY SEVEN ARMED PERSONS WHO FORCED THE MASTER TO OPEN THE SAFE, TAKING ALL THE MONEY AS WELL AS PERSONAL POSSESSIONS OF THE CREW. TH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.600000000245927, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-226", + "dateofocc": "2000-09-01", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED VEHICLE CARRIER WAS BOARDED 1 SEP AT 0200 LOCAL TIME WHILE AT SAMARINDA MUARA ANCHORAGE. NINE PERSONS IN A SMALL SPEEDBOAT ATTEMPTED TO BOARD VIA THE ANCHOR CHAIN. WHEN SPOTTED BY THE WATCH, THE JUMPED OVERBOARD AND ESCAPED IN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.183333300101481, -0.483333300223364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-227", + "dateofocc": "2000-08-31", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED LIVESTOCK CARRIER WAS BOARDED 31 AUG AT 0200 LOCAL TIME BY FIVE PERSONS ARMED WITH LONG KNIVES ACCOMPANIED BY TWO OTHERS WHO REMAINED IN THEIR BOAT. ALERT WATCH SPOTTED THE INTRUDERS WHO FLED WITHOUT TAKING ANYTHING WHEN THE CR", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.183333300101481, -0.483333300223364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-228", + "dateofocc": "2000-08-30", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER WAS BOARDED 30 AUG AT 0245 LOCAL TIME AT BELAWAN PORT. SEVEN PERSON ARMED WITH LONG KNIVES GAINED ACCESS TO THE SHIP, THREATENED AND ROBBED A PUMPMAN AND FLED WHEN SPOTTED BY DUTY OFFICER WHO RAISED THE ALARM.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-229", + "dateofocc": "2000-09-01", + "subreg": "71", + "hostility_": "SPEEDBOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA:DUTY OFFICER OF AN UNIDENTIFIED CONTAINER SHIP AT PENANG INNER ANCHORAGE NOTICED A RADAR ECHO APPROACHING THE SHIP 1 SEP AT 0030 LOCAL TIME. A BOAT CONTAINING FOUR PERSONSAPPROACHED FROM THE STERN AND CIRCLED THE SHIP SEVERAL TIMES BUT MOVED OF", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.250000000214925, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-230", + "dateofocc": "2000-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:An unidentified supply vessel was reported boarded by \"pirates\" carrying rifles, six miles from Funiwa, Nigeria, at 0400 15 Jan. The boarders stole food, personal belongings, the life raft, a computer and radio equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.841666699554025, 4.416666700204928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-231", + "dateofocc": "2000-01-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "RED MARTIN 1", + "descriptio": "NIGERIA:The 1,930-ton, St. Vincent flag supply vessel (RED MARTIN 1) was boarded 0115 26 Jan in posit. 04-03N 05-56E off the Niger Delta. Seven men armed with machine guns stole a\"large amount\" of equipment and crew's possessions and the vessel's master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.933333299876153, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-232", + "dateofocc": "2000-01-19", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "SMIT-LLOYD 31", + "descriptio": "NIGERIA:The 1,089-ton, Bahamas-flag supply vessel (SMIT-LLOYD 31) was boarded at 0340 19 Jan near Olibiri, Nigeria. Three crew suffered cuts and bruises.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.299999999739669, 4.669999999767924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-233", + "dateofocc": "2000-01-22", + "subreg": "57", + "hostility_": "ATTACKERS", + "victim_d": "SEABULK LINCOLN 6", + "descriptio": "NIGERIA:The 137-ton, St. Vincent-flag supply vessel (SEABULK LINCOLN 6) was chased by would-be boarders 0400 22 Jan from a position 6 miles offshore from FIniwa, Nigeria. Shots fired at the vessel struck its starboard side and portable Diesel fuel tank.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.841666699554025, 4.416666700204928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-234", + "dateofocc": "2000-01-20", + "subreg": "57", + "hostility_": "HIJACKERS", + "victim_d": "HOVERCRAFT", + "descriptio": "NIGERIA:On 20 Jan an unidentified Shell Oil Co. hovercraft with 5 staff was hijacked near Bugama Flow Station near Port Harcourt. Hostages released 24 Jan but craft still held as of 27 Jan.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-235", + "dateofocc": "2000-01-18", + "subreg": "57", + "hostility_": "LETUGBENE COMMUNITY", + "victim_d": "TUGS", + "descriptio": "NIGERIA:Two tugs (NFI) carrying 9 crew from Shell Oil Co. Opukushi Flow Station were seized by the Letugbene Community of Bayelsa State 18 Jan. No information on the craft or their crew was available as of 27 Jan.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-236", + "dateofocc": "2000-01-22", + "subreg": "61", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA:Unidentified chemical tanker boarded at Mombasa Inner Anchorage 22 Jan. Boarders operated form two canoes and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.675277799932473, -4.053055600029381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-237", + "dateofocc": "2000-01-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:Unidentified container ship boarded 20 Jan while underway in 04-37N 098-43E in the Strait of Malacca. Five intruders armed with swords attacked the bridge and master's office, assaulted the master, and stole his belongings and an unrep", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.716666699747179, 4.616666699671782] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-238", + "dateofocc": "2000-01-17", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified general cargo vessel was boarded 17 Jan while underway in 01-41N 102-39E in the Strait of Malacca. Five intruders robbed the master of ship's cash andhis personal belongings.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.650000000112641, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-239", + "dateofocc": "2000-01-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "IBNU", + "descriptio": "STRAIT OF MALACCA:The 22,367-ton, Panamanian-flag product tanker (IBNU) was boarded 0350 16 Jan while underway in position 01-43N 102-37E. Four intruders, armed with knives and a crowbar boarded undetected and surprised the Chief mate in his cabin. Aft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.616666700143071, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-64", + "dateofocc": "2001-01-20", + "subreg": "62", + "hostility_": "SMALL BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA-BAB EL MANDEB:AN UNIDENTIFIED TANKER WAS APPROACHED BY \"ABOUT\" EIGHT SMALL BOATS WITH SIX TO SEVEN MEN IN EACH 20 JAN AT 0730 UTC IN POSITION 12-29.8N 043-36.6E. THE BOATS APPROACHED TO WITHIN 30 METERS AND THEN FOLLOWED THE TANKER AT A DISTANCE", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.609999999750187, 12.496666700070534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-65", + "dateofocc": "2001-01-20", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:THREE ARMED PERSONS BOARDED AN UNIDENTIFIED SHIP 20 JAN AT 0030 LOCAL TIME AT PANJANG ANCHORAGE. THE SECOND OFFICER WAS SEIZED AND STRUCK ON THE HEAD BUT ALERTED OTHER CREW ON HIS WALKIE-TALKIE. THE ALARM WAS RAISED AND THE INTRUDERS JUMPED O", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-66", + "dateofocc": "2001-01-18", + "subreg": "72", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified tanker was approached 18 Jan at 0300 local time by several persons armed with crowbars operating in a small boat. Duty officer raised the alarm and shined search lights on the boat which then departed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.833333300135109, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-67", + "dateofocc": "2001-01-22", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "PETRO NAVIGATOR", + "descriptio": "PAPUA NEW GUINEA-ADMIRALTY ISLANDS: THE 1,711-TON, PAPUA NEW GUINEAFLAG CHEMICAL TANKER (PETRO NAVIGATOR) WAS BOARDED 22 JAN AS ITAPPROACHED THE BERTH AT LORENGAU, MANUS ISLAND. FIFTEEN ARMED MENASSAULTED THE CREW OF THIRTEEN WHO PUT UP RESISTANCE AND", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [147.249999999936222, -2.016666699616508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-68", + "dateofocc": "2001-01-30", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS \"CHASED\" 30 JAN AT 0436 LOCAL TIME IN POSITION 01-19N 103-19E. ALERT CREW PREVENTED ATTEMPTED BOARDING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.316666700075814, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-69", + "dateofocc": "2001-01-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED DREDGER WAS BOARDED 26 JAN AT 0400 LOCAL TIME WHILE UNDERWAY IN POSITION 01-12N 103-23E IN THE EASTBOUND TRAFFIC SEPARATION LANE. TEN PERSONS ARMED WITH KNIVES DEMANDED MONEY AND SLASHED THE MASTER AND TWO CREW MEMBERS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.383333300014954, 1.199999999844522] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-70", + "dateofocc": "2001-01-27", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CEMENT CARRIER WAS BOARDED 27 JAN AT 0420 LOCAL TIME AT PISAI JETTY, BELAWAN, BY FOUR PERSONS OPERATING FROM A SPEEDBOAT. THE FOUR JUMPED OVERBOARD WITH SHIP'S STORES AFTER BEING DISCOVERED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.786666700265471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-71", + "dateofocc": "2001-01-23", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 23 JAN AT 0120 LOCAL TIME WHILE UNDERWAY IN POSITION 01-15.9N 103-24.1E. THE FIVE PERSONS WERE SPOTTED BY CREW AND FLED WITHOUT TAKING ANYTHING.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.401666699939142, 1.264999999581335] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-72", + "dateofocc": "2001-02-05", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "INCAT 033", + "descriptio": "RED SEA-BAB EL MANDEB:THE 3,889-TON, BAHAMAS FLAG FAST FERRY (INCAT 033) WAS APPROACHED 5 FEB AT 0530 LOCAL TIME IN POSITION 12-40N 043-18E BY TWO INFLATABLE BOATS, EACH WITH TWO PERSONS ABOARD AND POSSIBLY ARMED WITH TRIPOD-MOUNTED WEAPONS. THE BOATS D", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.300000000036903, 12.666666699797247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-73", + "dateofocc": "2001-02-02", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER REPORTS FOILING ATTEMPTED BOARDING 2 FEB AT 0535 LOCAL TIME IN POSITION 01-21.2N 103-16.8E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.280000000052098, 1.353333299674091] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-74", + "dateofocc": "2001-02-02", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP REPORTS FOILING ATTEMPTED BOARDING 2 FEB AT 0535 LOCAL TIME IN POSITION 01-20.8N 103-17.9E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.298333300151569, 1.346666700114611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-75", + "dateofocc": "2001-02-03", + "subreg": "93", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 3 FEB AT 0105 UTC WHILE ANCHORED AT BANGKOK BAR ANCHORAGE. EIGHT ARMED PERSONS BOARDED FROM A SMALL CRAFT AND USED CROWBARS TO BREAK INTO A CONTAINER. WHEN CREW SOUNDED ALARM THE INTRUDERS JUMPED OVER", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.603333300410668, 13.341666700246208] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-76", + "dateofocc": "2001-02-06", + "subreg": "71", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO AN ATTEMPTED BOARDING 6 FEB AT 0010 LOCAL TIME WHILE UNDERWAY IN POSITION 05-05.8N 097-53.0E BY TEN ARMED PERSONS IN A HIGH SPEED BOAT. DUTY AB RAISED THE ALARM AND DUTY OFFICER TRANSMITTED A", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.883333300286722, 5.096666700011042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-77", + "dateofocc": "2001-02-06", + "subreg": "72", + "hostility_": "THIEF", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Indonesia-Borneo:An unidentified tanker was boarded 6 Feb at 2000 utc while at anchor at Lhotuan pilot station. One person boarded the ship and broke into store room while an accomplice waited in their boat. Crew spotted the intruder and sounded alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.573333300320996, 0.129999999818949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-300", + "dateofocc": "2001-10-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified cargo ship was boarded 29 Oct at 0403 UTC 5.5 nm from the south mole signal station at Lagos. Six persons boarded from a small boat and escaped with stores andsafety equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-301", + "dateofocc": "2001-10-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:An unidentified chemical tanker reports being approached by two boats with \"several\" persons on board. When crew was alerted boats turned away after firing four shots, none of which struck the tanker, which then turned to a course farther offsho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.383333299970218, 2.333333299579863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-302", + "dateofocc": "2001-10-25", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified bulk carrier was boarded 25 Oct while underway in position 06-04N 126- 12.4E east of the Philippines. Duty officer noticed movement on the forecastle while ship was maneuvering in busy fishing ground. When floodlights were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [126.20666669967386, 6.066666700303244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-303", + "dateofocc": "2001-11-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:An unidentified bulk carrier reports an attempted boarding 4 Nov at 2245 local time while drifting in position 06-01.7N 003-37E off Lagos. The crew spotted a small boat that was illuminated by searchlight and which then left the area.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.616666699639438, 6.028333300252484] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-304", + "dateofocc": "2001-11-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified cargo ship was boarded 4 Nov at 0410 local time by six persons who stole a life raft and ship's stores. Ship was drifting in position 06-06N 003-37E, 20 miles south of fairway buoy.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.616666699639438, 6.100000000272814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-305", + "dateofocc": "2001-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified cargo ship was fired upon 5 Nov at 1055 local time while casting off and preparing to sail from Kismayu. At least 20 rounds from machine gun struck thesuperstructure shattering windows. Incident reported to harbor master and sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.550000000237503, 0.366666700208839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-306", + "dateofocc": "2001-11-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "YEMEN: An unidentified bulk carrier reports attempted boarding 5 Nov at 0715 UTC while underway in position 12-29N, 044-43E five nm from Aden. Ship began evasive maneuvers and attempt to board was abandoned.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.716666699799475, 12.483333300402762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-307", + "dateofocc": "2001-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker was subject to attempted boarding 3 Nov at 0410 local time while underway in position 01-49.7N 102-31.5E. Small fishing boat nearby switched off lights and approached. Crew raised alarm and attempt wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.524999999996226, 1.828333299756878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-308", + "dateofocc": "2001-11-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified chemical tanker reports an attempt to board 6 Nov at 0150 local time while anchored at Dar es Salaam. Six persons operating form a small black wooden boatwere noticed in the attempt and \"drifted away\" when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.353333300003669, -6.725000000164414] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-309", + "dateofocc": "2001-11-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports approach 11 Nov at 0606 local time by a suspicious boat while underway in position 02-02N 101-57E. Lookout noticed two masked men, armed with rifle and carrying grapnel hooks. Alarm was raised and boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.950000000179955, 2.033333300379581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-310", + "dateofocc": "2001-11-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified supply ship was boarded 17 Nov at 0615 local time while berthed at Belawan. Thieves broke a porthole glass and stole crew personal belongings and cash. Watchman saw thieves running away along quay.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-311", + "dateofocc": "2001-11-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified ship was boarded 15 Nov between 1330 and 1430 local time while at Pulau Laut anchorage. Thieves entered via the hawse pipe stealing a life raft and ship'sstores. The theft reportedly took place during heavy rain.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.933333299577498, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-312", + "dateofocc": "2001-11-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "INDONESIA: An unidentified log carrier was boarded 8 Nov at 0450 local time while alongside wharf 201 by seven persons armed with knives and iron bars. Duty seaman taken hostage while paint store robbed. The seven escaped with ship's stores when alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.000000000305363, 1.49999999994418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-313", + "dateofocc": "2001-11-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified general cargo ship was boarded 26 Nov at 0415 UTC while anchored about 5.5 miles from mole signal station, Lagos. The intruders escaped without stealing anything when spotted by watch.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-314", + "dateofocc": "2001-11-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 23 Nov at 0550 local time while discharging at Haldia port. Thieves cut four mooring lines and escaped with them and other stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.083333300329514, 22.016666700054657] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-315", + "dateofocc": "2001-11-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 25 Nov at 0315 local time by about 12 persons armed with long knives which ship was anchored off Kutubdia Island, Chittagong. Intruders threatened duty seaman with knife and stole ship's stores. Thieves e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-316", + "dateofocc": "2001-11-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 22 Nov at 1300 UTC while anchored at Mongla anchorage. Persons armed with long knives boarded via the stern and escaped with ship's property when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 22.466666699754398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-20", + "dateofocc": "2000-03-28", + "subreg": "28", + "hostility_": "ASSAILANTS", + "victim_d": "HAYAT", + "descriptio": "CARIBBEAN SEA:The son of the owner of the Dutch yacht, HAYAT, was shot and wounded 28 Mar. Assailants, who appeared to be fishermen boarded the craft by invitation while it was anchored at Half Moon Cay, about fifty miles east of the Nicaragua-Honduras b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.999999999608576, 15.500000000396938] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-21", + "dateofocc": "2000-04-26", + "subreg": "24", + "hostility_": "BOARDERS", + "victim_d": "SPEAR", + "descriptio": "BRAZIL:The 37,955-ton Panamanian-flag bulk carrier, SPEAR, was boarded 0700 UTC 26 Apr while alongside the terminal at Sepetiba, Brazil. Master and crew \"attacked\" but no one was injured and there is no report of loss.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-43.000000000145974, -23.000000000398472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-22", + "dateofocc": "2000-04-13", + "subreg": "61", + "hostility_": "VANDALS", + "victim_d": "ASIAN SUN", + "descriptio": "KENYA:According to 13 Apr report, Kenyan authorities are investigating vandalism of 133 of a cargo of 600 vehicles on board vehicle carrier, ASIAN SUN. Radios and power windowswitches were stolen while vehicles were still aboard.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.500000000306102, -2.999999999751708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-23", + "dateofocc": "2000-04-24", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:Six thieves attempted to board an unidentified container ship at Chennai (Madras) anchorage 0245 local time 24 Apr. The would-be intruders used the anchor chain and grappling hooks but were prevented from boarding by alert crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.266666700364624, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-24", + "dateofocc": "2000-04-19", + "subreg": "22", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: A 7,000-ton container ship was boarded at 0455 as it lay at anchor off Guayaquil. Thieves gained access via the anchor chain and stole paint and mooring line from the forecastle store. Ship's alarm was sounded and the thieves fled leaving the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.433333300245806, -2.783333300387653] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-25", + "dateofocc": "2000-05-01", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: A watchman on an unidentified bulk carrier at anchor Chennai anchorage, Madras (13-06N 080-18E) observed approach of a suspicious unlit craft at 0120 local time. Watchman alerted second watchman at vessel's stern who came forward to help whereupo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.000000000234536, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-26", + "dateofocc": "2000-05-01", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR:An unidentified 9,700-ton, Bahamas-flag, refrigerated cargo ship was boarded at midnight while anchored 4.5 miles off the Data Sea Buoy (02-44S 080-25W) at Guayaquil. Five thieves armed with knives and handguns boarded the ship and drove the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.416666700173437, -2.73333329962162] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-89", + "dateofocc": "2001-02-27", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER WAS CHASED WITH APPARENT INTENT TO BOARD 27 FEB AT 2345 LOCAL TIME WHILE UNDERWAY IN POSITION 05-17.5N 097-58.4E. DUTY OFFICER RAISED ALARM, CREW MUSTERED AND SHIP ALTERED COURSE. THE PURSUING BOAT WITHDREW AFTER 20 MIN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.973333300406523, 5.2916667001208] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-27", + "dateofocc": "2000-04-23", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR:An unidentified 14,000-ton, Cyprus-flag, container ship was boarded and a container broached by at least three individuals. At the time of the attack, the ship was navigating the Estero Salado channel, near buoys 29 and 31, approaching the port h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.166666699940492, -2.599999999918623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-240", + "dateofocc": "2000-01-21", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker anchored in position 01-13.25N 103-33.85E reported six persons attempted to board from a dark colored motor boat at the stern on 21 Jan. Crew anti-piracy watch prevented the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.564166700180465, 1.220833300072229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-241", + "dateofocc": "2000-01-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 20 Jan while at anchor at Kota Bharu Inner Anchorage, Kalimantan. About ten persons armed with guns and knives boarded and tied up and threatened to kill the duty lookout if other crew intervened. Larg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.802222199621951, -3.646111100237249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-242", + "dateofocc": "2000-01-19", + "subreg": "72", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified bulk carrier was boarded at anchor during cargo loading operations 19 Jan at Adang Bay. Ship stores reported stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.802222199621951, -3.646111100237249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-243", + "dateofocc": "2000-01-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified 10,000-ton bulk carrier was boarded and robbed 17 Jan while lying off Kota Bharu, Kalimantan. A group of more than ten thieves boarded in the early morning, bound a deckhand and held him at gunpoint while the boatswain's store", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.802222199621951, -3.646111100237249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-244", + "dateofocc": "2000-01-09", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified, Japanese-controlled 25,000-ton bulk carrier was boarded while at anchor Tanjung Priok port on 9 Jan, reported 26 Jan). Intruders fled after being spotted and no loss was reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-245", + "dateofocc": "2000-01-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "PARIS", + "descriptio": "INDONESIA:The 18,000-ton, Liberian-flag container ship (PARIS) was boarded during the night of 6 Jan (reported 27 Jan) at Tanjung Priok anchorage, about three miles from the breakwater. Pirates boarded undetected despite posting of a piracy watch. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-246", + "dateofocc": "2000-01-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GONE TROPPO", + "descriptio": "YEMEN:An Australian woman was injured when five armed attackers assaulted the yacht (GONE TROPPO) carrying her and her family 27 Jan in position 13-03N 048-41E in the Gulf of Aden. After firing a barrage of shots the attackers boarded the yacht, ransac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.683333300134507, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-247", + "dateofocc": "2000-01-27", + "subreg": "62", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EGYPT:An unidentified container ship was boarded 27 Jan in the Suez outer anchorage. Three attackers operating from a motor boat were discovered removing stores from the forecastle locker via the anchor chain. When discovered the three fled and nothing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [33.68277780012312, 27.544166700294113] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-248", + "dateofocc": "2000-01-26", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified cargo ship berthed at Dumai Port, Indonesia was boarded 26 Jan by three robbers armed with knives. The three entered the engine room and tied up the duty oiler who was reported injured. When spotted by the ship's crew the thre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.447499999585887, 1.688611100345213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-249", + "dateofocc": "2000-01-28", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:A boarding was attempted on an unidentified bulk carrier 28 Jan at anchor at Belawan. Three assailants armed with long knives were spotted by the security watch and fled when the ship's alarm was sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.691388899688604, 3.787500000366663] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-250", + "dateofocc": "2000-09-04", + "subreg": "22", + "hostility_": "THIEVES", + "victim_d": "PELLA", + "descriptio": "PERU:The 22,102-ton Cyprus-flag tanker (PELLA) was boarded 4 Sep (reported 14 Sep) and robbed of mooring line, life buoys, and fire hoses while moored at Callao discharging cargo. The thieves escaped in a waiting fishing vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-251", + "dateofocc": "2000-09-02", + "subreg": "22", + "hostility_": "GUNMAN", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR:An unidentified refrigerated cargo ship was attacked 2 Sep (reported 13 Sep) at 0100 local time while navigating in position 02-03S 080-21W, by an unknown person who fired a single shot at the ship from a small boat passing on its starboard side.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.350000000409523, -2.049999999586078] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-252", + "dateofocc": "2000-09-01", + "subreg": "51", + "hostility_": "ATTACKERS", + "victim_d": "L'OBJECTIF LUNE", + "descriptio": "EASTERN ATLANTIC-MADEIRA:A French yachtsman reported 10 Sep that he had been boarded 1 Sep about 200 miles north of Funchal while sailing alone from the Brittany coast to Madeira. According to the report several young men boarded the yacht (L'OBJECTIF L", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.947500000209516, 35.567500000009431] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2000-253", + "dateofocc": "2000-09-05", + "subreg": "57", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON:An unidentified cargo ship was boarded 5 Sep at 0530 local time while at Douala berth 11. Four persons were observed by the duty cadet passing drums of lube oil over the side. When the cadet alerted other crew the intruders jumped over the sid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.680833299644348, 4.023055600080511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-78", + "dateofocc": "2001-02-13", + "subreg": "63", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED 13 FEB AT KAKINADA ANCHORAGE. ALTHOUGH SPOTTED BY WATCHMAN WHO RAISED ALARM, THIEVES ESCAPED WITH SHIP'S STORES.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.383333300235108, 17.033333299965363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-79", + "dateofocc": "2001-02-15", + "subreg": "63", + "hostility_": "TUG BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MYANMAR:AN UNIDENTIFIED TANKER REPORTS BEING CHASED 15 FEB FROM 0400 TO 0500 LOCAL TIME FOR OVER AN HOUR BY A TUG OFF THE COAST OF MYANMAR IN POSITION 19-42N 092-27E. THE TANKER REPORTED THE TUG ATTEMPTED TO COME ALONGSIDE AND ASKED FOR LAST PORT AND CA", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [92.450000000322405, 19.699999999993167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-80", + "dateofocc": "2001-02-15", + "subreg": "71", + "hostility_": "SPEED BOAT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:MALAYSIAN NAVAL FORCES REPORT SCARING OFF A BOAT FOLLOWING AN UNIDENTIFIED BULK CARRIER FOR OVER AN HOUR 15 FEB AT 1500 LOCAL TIME IN POSITION 01-49N 101-03E. A MALAYSIAN WARSHIP OBSERVED THE BOAT'S MOVEMENTS AND APPROACHED IT AS A RES", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.049999999881038, 1.816666699940981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-81", + "dateofocc": "2001-02-16", + "subreg": "72", + "hostility_": "INTRUDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 16 FEB AT 1815 LOCAL TIME VIA THE ANCHOR CHAIN BY THREE PERSONS, WHICH THE SHIP WAS LOADING AT SPA OIL PIER, SANDAKAN, SABAH. CREW RUSHED FORWARD AND THE THREE PERSONS ESCAPED IN A MOTOR BOAT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-82", + "dateofocc": "2001-02-23", + "subreg": "62", + "hostility_": "UNSPECIFIED", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN:AN UNIDENTIFIED SHIP REPORTED BEING \"CHASED\" IN A MAYDAY MESSAGE 23 FEB. THE MESSAGE REPORTED THE INCIDENT OCCURRED AT 0347 UTC IN POSITION 13-47N 048-12E. IT DID NOT IDENTIFY THE SHIP BEING CHASED, WHOSE CALL WAS PICKED UP BY ANOTHER SHIP", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.199999999565875, 13.783333299635387] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-83", + "dateofocc": "2001-02-22", + "subreg": "62", + "hostility_": "SPEED BOATS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:AN UNIDENTIFIED BULK CARRIER REPORTED 22 FEB THAT IT WAS CHASED AT 1120 LOCAL TIME IN POSITION 13-29.8N 043-01E BY TWO HIGH SPEED BOATS. SHIP RAISED ALARM AND COMMENCED EVASIVE MANEUVERING WHEREUPON THE BOATS BROKE OFF PURSUIT AND APPROACHE", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.016666699834445, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-84", + "dateofocc": "2001-02-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TUG WAS BOARDED AND ROBBED 22 FEB AT 2320 LOCAL TIME WHILE UNDERWAY IN POSITION 00-56.6N 103-39.1E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.651666700172086, 0.94333330022738] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-85", + "dateofocc": "2001-02-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TUG WAS BOARDED AND ROBBED 21 FEB AT 2130 LOCAL TIME WHILE UNDERWAY IN POSITION 00-58N 103-41E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 0.966666700408098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-86", + "dateofocc": "2001-03-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 2 MAR AT 0245 AT ANCHOR 7 NM FROM THE LAGOS BREAKWATER. THREE PERSONS ARMED WITH KNIVES AND MACHETES BOARDED THE SHIP FROM A BOAT CONTAINING SIX PERSONS. ALTHOUGH THE ALARM WAS SOUNDED THE THIEVES CUT ONE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.466666700039298, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-87", + "dateofocc": "2001-03-05", + "subreg": "63", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP REPORTEDLY WAS SUBJECTED TO THREE ATTEMPTED BOARDINGS WHILE AT CHITTAGONG OUTER ANCHORAGE \"C\". ALL THREE ATTEMPTS WERE LAUNCHED FROM THE SAME BOAT AND INVOLVED THREE PERSONS ON THE FIRST TWO OCCASIONS AND EIGHT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-88", + "dateofocc": "2001-02-27", + "subreg": "71", + "hostility_": "BOARDERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 27 FEB AT 0130 LOCAL TIME BY SIX PERSONS ARMED WITH LONG KNIVES WHILE UNDERWAY IN POSITION 03-20.0S 105-34.0E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.566666700373389, -3.333333299820879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-91", + "dateofocc": "2001-03-12", + "subreg": "71", + "hostility_": "THIEVES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED SHIP WAS BOARDED 12 MAR AT 0520 UTC WHILE ANCHORED AT JAKARTA ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES BOARDED FROM A LONG BLUE BOAT WITH CANVAS HOOD AND ESCAPED WITH ENGINE SPARES DESPITE BEING ROUTED BY CREW.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.749999999975444, -6.133333299551737] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-92", + "dateofocc": "2001-03-08", + "subreg": "71", + "hostility_": "PIRTATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 8 MAR AT 0445 LOCAL TIME WHILE UNDERWAY IN POSITION 01-05N 105-13E. A GROUP OF ABOUT EIGHT PIRATES ARMED WITH LONG KNIVES AND GUNS BROKE OPEN AN ACCOMMODATION BLOCK DOOR AND WENT TO THE BRIDGE WHERE THEY", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.216666700407018, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-317", + "dateofocc": "2001-11-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MAYANMAR: An unidentified container ship was chased 25 Nov at 0530 local time by two fishing boats while underway in position 09-52N 097-41E. Gun shots were reportedly fired at the ship which increased speed and mustered crew on deck, whereupon the boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [97.683333299920548, 9.866666700066389] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-318", + "dateofocc": "2001-11-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was subject to attempted boarding 25 Nov at 0045 via anchor chain by six person operating from a small boat while ship was at anchor, Belawan. Anti-piracy watch sounded alarm and activated flares whereupon attempt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-319", + "dateofocc": "2001-11-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 22 Nov at 0520 local time via the forecastle by three persons operating from a small motor boat. Ship was at Muara Berau anchorage, Samarinda. Crew sounded alarm and thieves escaped with ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.300000000372677, 1.366666700241183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-320", + "dateofocc": "2001-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 19 Nov at 0545 local time while underway in the Durian Strait in position 00-43N 103-36.5E. Six persons armed with long knives entered the accommodation and took elec. Engineer, chief mate and cadet", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.608333299864853, 0.71666670017521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-321", + "dateofocc": "2001-11-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified bulk carrier was boarded 22 Nov between 2200 and 2400 local time while at anchor, Sandakan, Sabah. Thieves boarded during heavy rain and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [95.316666699817063, 5.88333330000944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-322", + "dateofocc": "2001-11-26", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified general cargo ship was boarded 26 Nov at 0520 local time by a single person who gained access while ship approached pilot station at Vung Tau. When spotted, intruder jumped overboard and was retrieved by boat trailing the ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-323", + "dateofocc": "2001-11-22", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: The Antigua-flag container ship (MAERSK LA GUAIRA) was boarded 22 Nov by three men operating from a speedboat while the ship was between buoys 48 and 44 leaving Guayaquil. The men broke the seals of two containers and threatened the deck watch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-324", + "dateofocc": "2001-11-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: A Ro-Ro was boarded 14 Nov at 0345 via the ship' stern ramp at Bonny Town, Nigeria anchorage (reported 4 Dec). The thieves were armed and stole mooring rope. The Bonny Town Port Control was notified, but the thieves had left the scene by the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-325", + "dateofocc": "2001-11-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 28 Nov at 0130 local time in position 06-00.5S 106-54.4E at Jakarta anchorage. Ten thieves, armed with long knives, boardedvessel from a wooden boat. When the watch raised the alarm, the tanker's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.906666699859159, -6.008333300334584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-326", + "dateofocc": "2001-11-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: A Panamanian \"handy-size\" ship was boarded and robbed 18 Nov at 0430 by four attackers carrying long knives. The intruders used hooked poles to climb on board the ship which was located at the Jakarta anchorage. The ship was illuminated at t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-327", + "dateofocc": "2001-11-29", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: An unidentified bulk carrier was subject to attempted boarding 29 Nov at 0130 local time in position 12-59N 100-44.5E. The vessel was underway in the Gulf of Thailand, when a red-hulled wooden boat approached from astern. About three or four", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.741666700194855, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-328", + "dateofocc": "2001-12-06", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "ECUADOR: An unidentified container ship was boarded 6 Dec at 0455 local time by seven thieves while underway at Guayaquil pilot station, Ecuador. The crew mustered on the bridge when the alarm sounded. However, the intruders, armed with guns and knives", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-329", + "dateofocc": "2001-12-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "BRAZIL: America's Cup yachting winner, Sir Peter Blake was shot and killed late 5 Dec aboard his yacht (SEAMASTER) anchored near Macapa at the mouth of the Amazon. Two other crew were wounded. Watches, cameras and an inflatable boat were stolen by the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.066388899593676, 0.033888899665953] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-47", + "dateofocc": "2003-02-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 6 Feb at midnight local time while at berth 9, Chittagong. Two persons armed with knives broke into the forecastle store and attempted to steal stores. One man was caught by crew and turned over to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-48", + "dateofocc": "2003-02-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 8 Feb at 2340 local time in position 06 00S, 105 56E, Banten Roads. Six persons boarded but were driven off when watch sounded alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.933333300412187, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-49", + "dateofocc": "2003-02-09", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC: An unidentified tanker was boarded 9 Feb at 0350 local time while at berth No. 1-2, Rio Haina. About ten persons armed with knives boarded simultaneously fore and aft and stole ship's stores before being driven off by crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-50", + "dateofocc": "2003-02-06", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: The tanker (MEKHANIK KARASYOV) was boarded 6 Feb at day break, while anchored in inner harbor, Santos. Thieves boarded from a boat and stole personal effects, electronics and other items. When discovered on deck by crew members, the intruders re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.300000000342607, -23.949999999664783] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-51", + "dateofocc": "2003-02-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified bulk carrier was subject to attempted boarding 13 Feb while in position 03-20N, 111-25E off Matu, Sarawak. Alert crew prevented boarding (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.416666700067935, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-52", + "dateofocc": "2003-02-11", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 11 Feb at 0350 local time while anchored at Halong Bay, Haiphong anchorage. Three persons armed with knives boarded the ship, discharging cargo, using grappling hooks. They broke into paint store before", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.683333300211586, 20.866666700422115] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-53", + "dateofocc": "2003-01-31", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified tanker was subject to attempted boarding 31 Jan at 0300 local time while at Nha Be Terminal, Ho Chi Minh City. Three persons with grappling hooks were scared off by crew who recovered the hooks and lines (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.716666700005874, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-54", + "dateofocc": "2003-02-20", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified cargo ship was boarded via the stern 20 Feb at 2130 local time in Cartagena inner roads by persons armed with guns. They bound three watchmen and forced them into the hold, but fled when spotted by ship's crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.416666700398935] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-55", + "dateofocc": "2003-02-24", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified container ship was boarded 24 Feb at 0030 local time in Dakar Roads as it approached port. Ship's stores were stolen from the poop (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-56", + "dateofocc": "2003-02-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified Ro/Ro was boarded 13 Feb at 0210 local time at Mtwara port. Watchman spotted one person on board who passed ship stores to two others in a boat. Port policeinformed and on arrival they fired warning shots. Thieves fled and s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.200000000206444, -10.266666700108146] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-57", + "dateofocc": "2003-02-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified chemical tanker reports being fired upon 22 Feb between 1310 and 1405 UTC while underway in position 09 56N, 051 43E off Somalia's northeast coast. Seven persons in two 6-meter white open speedboats were armed with machine guns", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.716666700025883, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-58", + "dateofocc": "2003-02-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Feb at 0115 local time at Sebuku anchorage, East Kalimantan. Two persons boarded the ship during discharge via hawse pipe. Crew raised alarm and intruders jumped overboard and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.416666700229598, -3.249999999984595] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-59", + "dateofocc": "2003-02-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 18 Feb at 0830 local time while at old wharf No. 2, Dumai. Two persons armed with long knives arrived alongside on a motorbike and boarded from the quay. Watch raised alarm and crew mustered. The intruder", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-60", + "dateofocc": "2003-03-01", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified container ship was subject to attempted boarding 1 Mar at 0326 local time at Buenaventura. Nine persons attempted to board form a wooden boat on the port side, using a wooden ladder against the side. Crew switched on lights a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-61", + "dateofocc": "2003-02-22", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified ship was boarded 22 Feb at 2215 local time while at berth 5C, Callao. The intruders broke open forecastle locker and escaped with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-62", + "dateofocc": "2003-02-27", + "subreg": "54", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified liquefied gas carrier was boarded 27 Feb at 0455 local time at anchor, Lagos Roads. A lone individual armed with knife and machete threatened duty seaman and escaped with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [25.133333299957485, 40.999999999872614] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-264", + "dateofocc": "2003-08-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified ship was reportedly approached 4 Aug at 0220 while underway in position 13 00N, 047 28.9E. Several boats \"intended to board\" but were driven off by crew preventive measures and the assistance of unspecified \"coalition warsh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.483333299735989, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-265", + "dateofocc": "2003-08-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified tanker was approached 3 Aug at 2340 local time while underway in position 12 55N, 047 35E. Before abandoning the chased, three fast boats pursued the tanker for over an hour during which the tanker altered course, sounded i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.583333300368736, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-266", + "dateofocc": "2003-07-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 29 Jul at 1045 UTC while at Chittagong anchorage Alpha. Fifteen persons in four boats, armed with knives and crowbars, boarded at stern. Crew sounded alarm and mustered while 12 shore watchmen who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-267", + "dateofocc": "2003-07-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports attempt to board 30 Jul at 0840 local time while underway in position 05 36N, 097 34E. Four persons in two boats attempted board from port and starboard side. Crew sounded whistle and activated fire hose", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.566666700114695, 5.599999999806982] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-268", + "dateofocc": "2003-07-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified liquefied gas carrier reports attempt to board 31 Jul at 0645 UTC while underway in position 05 59.4N, 96 10.8E off the northern tip of Sumatra. Five fast boats approached with two on either beam while the fifth criss-crossed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.183333300321692, 5.983333299742867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-269", + "dateofocc": "2003-08-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The Indonesian flag tug (HAMCO BINTANG) and its barge (HAMCO MULIA) with their crew of 8 are reported hijacked sometime after last reported contact 23 Jun (reported 4 Aug) while on voyage between Surabaya to Tanjung Setor (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.733333300272307, -7.200000000247258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-270", + "dateofocc": "2003-08-08", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified bulk carrier was boarded 8 Aug at 0400 local time while at berth 29, Puerto Cabello. Intruders broke open a paint locker but fled empty handed when crew foiled their theft (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.000000000055138, 10.483333300338074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-271", + "dateofocc": "2003-08-10", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified chemical tanker reports attempt to board 10 Aug at 0430 local time while at Belem anchorage. A single individual tried to climb anchor chain but fled when seaman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.499999999874149, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-272", + "dateofocc": "2003-08-11", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified container ship was boarded 11Aug underway after dropping pilot off Dakar. Thieves escaped with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-273", + "dateofocc": "2003-08-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified general cargo ship reports attempt to board 9 Aug at 0220 local time while anchored in position 06 38S, 039 28E, Dar es Salaam. Four persons in a small boat came close aboard and attempted to board using grappling hook. Crew ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.466666700304188, -6.633333300017568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-274", + "dateofocc": "2003-08-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: The 740-ton, Malaysian flag tanker (PENRIDER) was attacked 10 Aug at 1330 local time by heavily armed pirates while 12 nm off Port Klang in the northbound lane of the traffic separation scheme bound from Singapore to Penang with 1,000", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.133333299717322, -2.750000000418083] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-275", + "dateofocc": "2003-08-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: The 2,912-ton Taiwan flag refrigerated fishery cargo ship (DONG YIH) was attacked 9 Aug at about 1725 local time while underway in position 05 43N, 097 44E. More than 200 rounds reportedly hit the ship during the chase and the Captain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.733333299787262, 5.716666700336873] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-106", + "dateofocc": "2004-04-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Unidentified fishing boat was boarded 25 Apr at midnight at Pulau Kendi off Pulau Pangkor. Seven persons armed with M16s boarded form a speedboat. They took two crew hostage but subsequently released one after robbing him (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.183333299551691, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-107", + "dateofocc": "2004-04-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:Deep sea diving support ship (OCEAN WINSERTOR) was boarded about 26 Apr while underway near the Lingga Islands, southwest of Bintan and Batam, bound for Singapore160 km away. Pirates armed with knives and guns boarded while about half the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.000000000111356, 0.833333299981007] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-108", + "dateofocc": "2004-04-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified chemical tanker was boarded 25 Apr at 0335 local time while underway in position 03 00.0N-105 17.4E east of Bintan Island. Eight pirates armed with guns and knives assaulted duty officer and took him as hostage to master's and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.289999999730412, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-109", + "dateofocc": "2004-04-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified cargo ship boarded 24 Apr at 1530 UTC while underway in position 02-51.8S 105-59.7E. Five persons armed with guns and long knives threatened the crew and stole cash, before escaping at 1550 UTC (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.994999999919571, -2.863333299994565] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-110", + "dateofocc": "2004-04-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified container ship boarded 24 Apr at 0700 local time while at Tanjung Priok anchorage. Two person broke open the seal on a container but jumped overboard and escaped empty handed when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.058333300201298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-111", + "dateofocc": "2004-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified container ship boarded 22 Apr at 1510 UTC while underway in position 03-06.0S 106-58.0E in Gelasa Strait. Persons armed with guns and daggers held master and six crew at gunpoint and escaped with cash and crew belongings at 1615", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.829999999614699, -1.328333300399095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-112", + "dateofocc": "2004-04-22", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier detected stationary craft 4.5 nm ahead, on radar 22 Apr at 0030 local time, while underway in position 01-19.7S 107-49.8E. Craft approached to 6 cables, switched off its lights and began pursuing the bulk carrier.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.829999999614699, -1.328333300399095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-113", + "dateofocc": "2004-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker boarded 22 Apr at 0236 local time while anchored in position 01-42.61N 101-27.83E at Dumai. Two persons armed with long knives threatened duty seaman who informed Duty Officer who raised alarm and mustered crew. The intr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.4638888998075, 1.71027779959951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-114", + "dateofocc": "2004-04-20", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Unidentified tug spotted unlit high speed craft on its radar at a range of 4 miles 20 Apr at 2325 local time while underway in position 05-12S 112-12E in the Java Sea. Craft crossed bow and then turned toward tug coming within 0.3 cables. C", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.199999999836905, -5.20000000018257] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-115", + "dateofocc": "2004-04-25", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: Unidentified container ship boarded 25 Apr at 1612 UTC while at Laemchabang anchorage. Five persons gained access via the forecastle, stole ship's stores, and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.775000000164425, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-116", + "dateofocc": "2004-05-02", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MAURITANIA: Unidentified refrigerated cargo ship boarded 2 May at 0110 UTC while at inner anchorage, Nouadhibou. Ten persons armed with knives gained access via the anchor chain. They threatened duty seaman and stole his walkie talkie, then broke into s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.033333300174036, 20.891666699905841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-117", + "dateofocc": "2004-03-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker reports attempt to board 29 Mar at o330 UTC while anchored in position 06 12.9N 003 20E, Lagos. Three persons in a boat withdrew when watchman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.214999999876341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-118", + "dateofocc": "2004-05-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker boarded 3 May at 0300 local time at Dumai inner anchorage. Four persons armed with long knives entered engine room and took two hostages. They broke into store room but escaped empty handed when duty seaman raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.724999999794079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-119", + "dateofocc": "2004-04-27", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier reports being chased 27 Apr at 0310 local time while underway in the Makassar Strait. Two speedboats doing 28 knots followed on port and starboard sides for 30 minutes but moved away when crew switched on deck light", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.999999999664738, -2.999999999751708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-189", + "dateofocc": "2002-07-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was robbed of zinc anodes at its stern 4 Jul at 0700 while the ship drifted during pilot pick up.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-190", + "dateofocc": "2002-07-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Jul at 0500 local time at Santan anchorage. Thieves armed with long knives threatened duty seaman and tied his hands. Alarm was raised and thieves jumped overboard with crew valuables.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.533333300067852, -6.299999999948341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-191", + "dateofocc": "2002-07-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 4 Jul at 0235 local time while ship was at Muara Berau anchorage, Samarinda. Thieves broke open forecastle locker and stole ship's stores and a life raft before escaping when alarm sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.635833299929459, -0.241666700301039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-192", + "dateofocc": "2002-07-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was subject to attempted boarding 3 Jul at 0500 local time while berthed at the Pertamina-Citra Jetty, Belawan. Four persons attempted to gain access via the starboard side but were foiled by the cadet and duty seaman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-193", + "dateofocc": "2002-07-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 3 Jul at 0100 local time while at Surabaya anchorage. Two persons Armed with long knives boarded at the forecastle but escaped empty-handed when spotted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.733333300272307, -7.200000000247258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-194", + "dateofocc": "2002-07-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 2 Jul at 0100 UTC while at berth 105, Belawan. Six persons boarded from a small boat and took ship's stores. Another group broke into engine room and took spare parts. The attack occurred despite", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-195", + "dateofocc": "2002-07-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship was boarded 9 Jul at 0620 local time while underway two nm off Manta, Ecuador. Three persons with guns threatened crew which retreated into accommodation. Mater alerted port and police boat escorted ship to do", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.716666700273038, -0.949999999820307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-196", + "dateofocc": "2002-07-09", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified container ship was boarded 9 Jul at 0500 local time while underway at Dakar pilot station. Four persons gained access via the poop and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-197", + "dateofocc": "2002-07-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was subject to attempted boarding 13 Jul at 0140 local time while at anchor off Chennai. Six persons in a wooden boat tried to board via the stern before being scared off.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.512222199867381, 13.003055600245034] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-198", + "dateofocc": "2002-07-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was robbed of 14 zinc anodes from its stern post 12 Jul at 1800 UTC while berthed at No. 2 berth, Chittagong. The thieves operated from four wooden pump boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-199", + "dateofocc": "2002-07-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified ro-ro was boarded 14 Jul at 1500 UTC while at Muara Berau loading anchorage, Samarinda. Five persons armed with knives boarded form an unlit craft, broke open forecastle store and stole three coils of mooring line.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.116666700162341, -0.516666700017652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-200", + "dateofocc": "2002-07-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 14 Jul at 0210 local time while at Santan anchorage. Five persons approached in a small oat and one gained access via the anchor chain. Alarm raised by crew and thieves fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.289166699887915, -3.746388899646206] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-201", + "dateofocc": "2002-07-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Jul at 1930 local time while at Tanjung Merangas anchorage, east of Kalimantan, during cargo operations. Six persons armed with long knives took master hostage despite presence of police personnel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.738333300367117, -0.31222219982061] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-202", + "dateofocc": "2002-07-14", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 14 Jul at 2240 local time while at Haiphong anchorage. Our persons armed with long knives gained access via the forecastle and lowered ship's stores into waiting boats. Crew raised alarm and thieves ju", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.683333300211586, 20.866666700422115] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-203", + "dateofocc": "2002-07-18", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified ship was boarded 18 Jul at 2115 local time at Guayaquil outer anchorage. Ten persons armed with guns boarded near the data pilot buoy and broke into a container on deck. Master reported to pilot station and a patrol boat was s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-204", + "dateofocc": "2002-07-17", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified tanker was boarded 17 Jul at 2200 local time while anchored at the port of La Libertad. Thieves boarded via the anchor chain and stole a liferaft and supplies.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.916666699739949, -2.216666699982682] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-205", + "dateofocc": "2002-07-20", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified ship was boarded 20 Jul at Pertigalete Bay, Guanta. Persons with guns stole cash and crew personal effects and escaped in a motorboat. Master called port authorities but received no response.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-276", + "dateofocc": "2003-08-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "PHILIPPINES: An unidentified tug and the research ship it was escorting report being fired on 6 Aug at 0645 local time from a steel hulled boat underway in position 04 11.7N, 120 00.1E in the Celebes Sea, south of Tawi Tawi. Tug increased speed and bega", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.999999999729425, 4.199999999941554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-277", + "dateofocc": "2003-08-18", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HONDURAS: An unidentified container ship was boarded 18 Aug at 0001 local time while anchored in Puerto Cortes Roads. Two persons armed with knives climbed anchor chain but fled empty handed when seaman sounded alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.949999999935869, 15.833333299566789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-278", + "dateofocc": "2003-08-05", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PANAMA: Container ship (APL ALMANDINE) reports attempt to board 5 Aug at 2315 local time (reported 15 Aug). Ship was at anchor, Cristobal outer anchorage when a boat containing an undetermined number of persons approached anchor chain with apparent int", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.916666699707605, 9.349999999703414] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-279", + "dateofocc": "2003-08-17", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CARIBBEAN-JAMAICA: An unidentified general cargo ship reports attempt to board 17 Aug at 2343 local time while underway in position 17 29.6N, 077 25W, south of Kingston. Unlit speedboat with two men on deck and two hidden inside came close but withdrew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.416666700076405, 17.499999999562306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-280", + "dateofocc": "2003-08-18", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship was boarded 18 Aug at 0225 local time while anchored at Bonny Roads. About ten persons, armed with knives, took duty seaman hostage, stole all five mooring lines from forecastle, and escaped. Bonny signal statio", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-281", + "dateofocc": "2003-08-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker reports attempt to board 17 Aug at 2110 local time while in position 22 10N, 091 46E, Anchorage C, Chittagong. About fifteen persons tried to gain access via anchor chain. Watchman spotted them and they jumped into w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-282", + "dateofocc": "2003-08-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tug was boarded 12 Aug at 0145 local time while anchored in position 22 15N, 091 43E, Anchorage B, Chittagong. Fifteen to 20 persons from 3 or 4 motorized boats boarded armed with knives and bolos. One crew member injured d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-283", + "dateofocc": "2003-08-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports attempt to board 18 Aug at 1930 UTC while underway in position 06 07N, 097 33E. Persons in three boats attempted board but ship increased speed and undertook evasive maneuvers while crew activate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.550000000217551, 6.116666700169958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-284", + "dateofocc": "2003-08-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDONESIA: An unidentified trawler was chased 12 Aug at 0230 local time while underway in position 04 50N, 108 02E. Persons in pursuing boat opened fire, killing the captain. They then boarded the boat, stole cargo and ship's equipment (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.033333300210302, 4.833333300110382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-285", + "dateofocc": "2003-08-24", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified tanker was boarded 24 Aug at 0100 local time while berthed at the Coal Terminal, Cartagena. Persons armed with knives gained access at the forecastle, assaulted and tied up a crew member, stole ship's stores and escaped. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.416666700398935] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-286", + "dateofocc": "2003-08-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified container ship was boarded 19 Aug at 0005 local time while anchored in Tema Roads. Four persons armed with long knives stole ship's stores before crew raised alarm and the thieves escaped in an unlit boat. Master informed other", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.000000000345324, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-287", + "dateofocc": "2003-08-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 21 Aug at 1130 local time while underway in position 05 47.8N, 005 20.5E, Deli Creek, Sapele. Groups armed with firearms boarded from speedboats, ordered the ship to anchor and open all cargo holds. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.349999999574038, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-288", + "dateofocc": "2003-08-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: An unidentified reefer ship was boarded 20 Aug at 0530 local time while at Douala. Four persons broke the seal on number four hatch but escaped empty handed when crew sounded alert (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-69", + "dateofocc": "2003-02-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Feb at 0005 local time in the outer roads, Balikpapan. Thieves stole stores from forecastle locker (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-289", + "dateofocc": "2003-08-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports approach by ten persons, armed with machine guns, in two speedboats 24 Aug at 1735 local time while underway in position 08 44S, 115 43E, Lombok Strait. One boat came within one cable and tried to interse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.716666700296969, -8.733333299815683] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-290", + "dateofocc": "2003-08-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 22 Aug at 2130 UTC while underway in position 00 57N, 105 03E off Bintan Island. Three persons armed with knives and crowbars escaped empty handed when the second engineer raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.050000000010414, 0.949999999611634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-291", + "dateofocc": "2003-08-21", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified container ship reports being chased 21 Aug at 2015 local time while underway in position 09 12.9N, 120 28E in the Sulu Sea. A speedboat making more than 17 knots approached but pulled away at 2215 when ship raised alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.466666700225687, 9.216666700000417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-292", + "dateofocc": "2003-08-30", + "subreg": "25", + "hostility_": "pirates", + "victim_d": "TUG", + "descriptio": "DOMINICAN REPUBLIC: An unidentified ocean going tug was boarded 30 Aug at 0230 local time while moored at San Pedro de Macoris. Four persons armed with knives came aboard from an unlit boat alongside but fled when watch called for assistance from guard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.316666700084227, 18.449999999727879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-293", + "dateofocc": "2003-08-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 25 Aug at 2235 local time while at Lagos SBM. Five persons stole a mooring line and held off duty seaman by brandishing empty glass bottles (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-294", + "dateofocc": "2003-08-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 31 Aug at 0115 local time at Chennai anchorage. One person had gained access with three others attempting to, when alarm raised. Port control and port police informed and police boat arrived at 0215 (IM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.300000000334137, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-295", + "dateofocc": "2003-09-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier had zinc anodes stolen 1 Sep at 0730 while at berth 6, Chittagong (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-296", + "dateofocc": "2003-08-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 28 Aug at 0001 local time while at Chittagong Roads anchorage. Ship was boarded as it approached anchorage. Alarm raised and deck lights switched on causing intruders to flee in a high speed boat (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-297", + "dateofocc": "2003-08-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports an attempt to board 31 Aug at 0500 while underway in position 00 47.9N, 105 19.9E. Six persons in a wooden boat came close to the port quarter but turned away when alarm raised and crew mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.333333300212871, 0.800000000011494] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-298", + "dateofocc": "2003-08-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship reports attempt to board 30 Aug at 0446 local time while underway in position 01 03.4N, 105 06.5E off Bintan Island. Five persons in a speedboat made the attempt but turned away after ten minutes when crew activate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.116666699774271, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-299", + "dateofocc": "2003-08-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 29 Aug at 2330 local time while underway in position 00 56N, 105 08E off Bintan Island. Six persons armed with guns and long knives attempted to board from a speedboat, using grappling hoo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.133333299846697, 0.933333299714491] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-300", + "dateofocc": "2003-08-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Aug at 2250 local time while underway in position 00 46N, 105 14E off Bintan Island. Six masked pirates armed with guns and knives boarded from a speedboat. They went to bridge and tied up duty se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.233333299580124, 0.766666700041924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-301", + "dateofocc": "2003-08-27", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 27 Aug at 0430 UTC while underway in position 05 37.5N, 097 30.9E off northern Sumatra. Several speedboats approached but moved away when master raised alarm and crew activated fire ho", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.516666700247981, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-302", + "dateofocc": "2003-08-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 26 Aug at 0500 local time while underway in position 01 20N, 104 58E, about 50 nm N.E. of Bintan Island. Eight masked pirates armed with guns and long knives tied up duty seaman on deck and chief engi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.96666670017413, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-303", + "dateofocc": "2003-08-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 22 Aug at 2330 local time while underway in position 01 36.6N, 105 22.5E. Nine persons armed with guns knives stole ship's cash and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.383333300079585, 1.616666699574751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-304", + "dateofocc": "2003-09-02", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified bulk carrier was boarded 2 Sep at 0130 local time while at berth 5C, Callao. One person boarded the ship while two accomplices waited in their boat. Second officer raised alarm and intruder jumped overboard and escaped in the boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-345", + "dateofocc": "2001-12-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: The Belize-flag tanker (YAULIE ISLAND 70) was discovered adrift without crew 12 Dec in position 01-18.22N 104-10.5E and initial reports state ship was reported hijacked on a voyage from Taiwan to Vietnam. Subsequent reports indicate c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.175000000094542, 1.303333299807377] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-346", + "dateofocc": "2001-12-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified container ship reports an attempted boarding 15 Dec at 0235 local time while underway in position 01-03.0N 103-39.1E. Fourteen persons, armed with rifles and long knives, in a dark yellow boat were spotted by duty officer who d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.651666700172086, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-347", + "dateofocc": "2001-12-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 17 Dec at 0300 local time while at Sandakan's working anchorage. A lone thief broke open the paint store but jumped overboard and escaped when spotted by anti-piracy watch.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.999999999664738, 5.808333299759681] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-348", + "dateofocc": "2001-12-11", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:An unidentified container ship was subject to attempted boarding 11 Dec at 2310 while the ship was at Laem Chabang anchorage. Anti-piracy watch raised alarm and activatedfire hoses after which intruders fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.916666700178041, 12.616666699930477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-349", + "dateofocc": "2001-12-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship reports attempt to board 20 Dec at 0345 local time while ship was anchored in Lagos Roads. Six persons in boat were spotted by watch who raisedalarm and activated ire hoses before boat moved off.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-350", + "dateofocc": "2001-12-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship reports attempt to board 22 Dec at 1945 local time while ship was anchored at Rangatala Crossing, Hugli River. Three persons in a wooden boatWere spotted by watch and driven off when alarm sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.066666700257088, 21.86666669955514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-351", + "dateofocc": "2001-12-21", + "subreg": "63", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "YACHT", + "descriptio": "SRI LANKA: An unidentified yacht reports suspicious following 21 Dec at 1120 UTC while underway 70 nm east of Galle in position 05-53N 081-25E. Yacht took evasive action when it noteda wooden fishing boat matching its course. Boat eventually departed.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [81.416666699997108, 5.88333330000944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-352", + "dateofocc": "2001-12-22", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 22 Dec at 2310 local time while ship was anchored at Banjarmasin, South Borneo. Watch noted seven persons in a small boat attempting to climb the anchor chain. Alarm raised and crew must", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.150000000099567, -3.299999999851309] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-353", + "dateofocc": "2001-12-22", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported attempt to board 22 Dec at 0345 local time while underway in Alice Channel in position 04-41N 118-54E. A green speedboat approachedvery closely and ordered the master to stop. Instead master raised alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.899999999963711, 4.683333299610922] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2001-354", + "dateofocc": "2001-12-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified tanker was boarded 24 Dec at 0100 local time while anchored at Vung Tau. Six persons armed with long knives boarded using a grappling hook, stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-1", + "dateofocc": "2002-01-08", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: The container ship (CSAV ATLANTA) was boarded 8 Jan at 2258 local time while dropping pilot on departure Guayaquil. Two small boats observed at port side and crew alerted to search ship. Two men observed running and jumping overboard on starbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-2", + "dateofocc": "2002-01-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: An unidentified cargo ship was boarded 4 Jan at 0440 local time while anchored at Libreville. About 10 to 15 persons armed with long knives boarded at forecastle. Crew mustered on main deck and fired signal rockets but thieves opened four conta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.450000000336161, 0.383333300281265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-3", + "dateofocc": "2002-01-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:An unidentified container ship was boarded 4 Jan at 0300 local time by three persons operating form a wooden boat. The alarm was raised and the intruders escaped with one mooring line.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.336666699931243, -6.758333300133984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-4", + "dateofocc": "2001-12-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carriers reports attempted boarding 24 Dec at 0735 local time while underway in position 12-30N 044-49E, 13 nm south of Little Aden. Six persons inan unreported number of wooden boats attempted to board but ship altere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.816666700432222, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-5", + "dateofocc": "2002-01-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 6 Jan at 1415 UTC while at Bedford Anchorage, Hoogly River. Three persons armed with knives boarded from a wooden boat and cut a mooring line. They threatened the watchman but jumped overboard and escaped in t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.173611100124901, 22.020555599635088] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-255", + "dateofocc": "2002-08-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG carrier was boarded 27 Aug between 0100 and 0200 while berthed at Balikpapan. Six persons armed with long knives were spotted by the watch loweringstores from the forecastle to a wooden boat. Crew suspects shore watchm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-256", + "dateofocc": "2002-08-28", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "PAPUA NEW GUINEA: The fifty-foot Australian ketch (SPIRIT OF WYCHWOOD) was boarded 28 Aug at 1615 UTC while in position 05 28S, 154 41E, about 2 nm south of Buka Passage. Five persons armed with machine guns held the two owners hostage while they ran", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [154.683333299965284, -5.466666700312658] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-257", + "dateofocc": "2002-08-29", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: U. S. flag yacht (MISS T) was boarded and ransacked, one crew member injured 29 Aug between 0715 UTC and 1415 UTC. Yacht was anchored in Carnero Bay in position 10 31.65N, 066 05.9W. Five persons, two or more of whom may have been in mili", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-66.099999999723877, 10.533333300204788] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-258", + "dateofocc": "2002-09-12", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 12 Sep at 0130 local time from the water side while berthed at Guanta. Five persons armed with knives boarded from a small boat using a hook on a pole. Two patrolling watchmen retreated into accommoda", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-259", + "dateofocc": "2002-09-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "IVORY COAST: An unidentified tug was boarded 13 Sep at 0305 local time in position 05 13N, 004 00W, outer roads, Abidjan. Eight persons armed with long knives boarded from two boats and stole ship's stores before escaping when alarm was sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.999999999784052, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-260", + "dateofocc": "2002-09-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: According to a 13 Sep report 10 persons died when two rival gangs, consisting of about 30 persons, total, tried to simultaneously rob a small wooden coastal vessel of its cargo of salt. One speed boat of each group arrived at the scene", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 21.833333299760852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-261", + "dateofocc": "2002-09-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 11 Sep at 0345 local time by five persons who gained access via the stern. Duty officer raised alarm and sounded whistle and the thieves fled without taking anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-262", + "dateofocc": "2002-09-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 2 Sep between 0310 and 0340 at Chittagong anchorage. About 14 persons armed with long knives and steel bars boarded over the port bow from two unlit wooden boats during heavy rain. The thieves took", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-263", + "dateofocc": "2002-09-08", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Tanker (BOW CARDINAL) reports approach by suspicious vessel 8 Sep at 1205 local time while underway in position 13.8N, 042.7E in southern Red Sea near area referred to by seamen as \"Gate to Hell\". Small armed boat without number or", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.699999999837644, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-264", + "dateofocc": "2002-09-10", + "subreg": "71", + "hostility_": "SUSPCIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified cargo ship reports attempt to board 10 Sep at 0130 local time while underway in position 1 25N, 104 30E in vicinity of Horsburgh Light, Tanjung Berakit, Singapore Strait. High speed boat with 7 to 10 persons attemp", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.499999999677868, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-265", + "dateofocc": "2002-09-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 14 Sep at 0215 local time by two persons armed with guns wile at Balikpapan anchorage. Duty seaman held at gunpoint while thieves stole three life rafts and ship's stores. Alarm raised and thieves escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-109", + "dateofocc": "2003-04-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG carrier was boarded 7 Apr at 0810 local time while at Tanjung Priok tanker anchorage awaiting a pilot. Two persons boarded the ship while two accomplices waited in their boat below. The crew sounded alarm and the intruders", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-110", + "dateofocc": "2003-04-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 6 Apr at 0110 local time while underway in position 00 57N, 105 04E. Four persons armed with guns and long knives took two crew hostage. Alarm was raised but crew were tied up, ship's speed reduced, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.066666699907557, 0.949999999611634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-111", + "dateofocc": "2003-04-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Four persons operating from an aluminum colored boat attempted to board and unidentified VLCC 4 Apr at 2200 UTC while the tanker was underway in position 02 58.2S, 107 18.5E, near Selat Baur, Gaspar Strait. Crew sounded alarm, activated fire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.316666700205133, -2.966666699782138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-112", + "dateofocc": "2003-03-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 31 March at 2200 local time while underway in position 02 56S, 107 17.4E in the Gaspar Strait. Five persons armed with long knives boarded amidships and went to the bridge, where they held the quart", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.283333300410845, -2.933333299987794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-113", + "dateofocc": "2003-04-05", + "subreg": "92", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified cargo ship was chased 5 Apr at 2200 UTC by three speedboats while underway in position 05 23.3N, 119 43.3E, 16 nm NW of Tawi Tawi Island. Crew activated fire hoses and directed searchlights at the boats which then withdrew", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.716666700426345, 5.383333300442928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-114", + "dateofocc": "2003-04-13", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC: An unidentified bulk carrier was boarded 13 Apr at 0400 local time while at berth 6A, Rio Haina. Six armed persons took two watchmen and one crew member hostage. They stole ship's property, crew personal effects and cash before escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-115", + "dateofocc": "2003-04-11", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 11 Apr at 1320 local time at berth Puerto Cabello. Several persons armed with knives broke open paint locker and stole stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.000000000055138, 10.483333300338074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-116", + "dateofocc": "2003-04-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified cargo ship was boarded 12 Apr at 0430 local time at Cochin anchorage. Intruders boarded from a 25 ft boat and one was chased of forecastle attempting to cut mooring lines while two others were intercepted aft. The thieves were dri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.233333300440904, 9.966666699799816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-117", + "dateofocc": "2003-04-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker was boarded 13 Apr at 1510 UTC while underway in position 02 14.2N, 101 54.5E. Nine persons armed with guns and long knives boarded the ship but left empty handed after crew sounded alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.916666700210385, 2.233333299846436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-118", + "dateofocc": "2003-04-08", + "subreg": "71", + "hostility_": "SIUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified cargo ship reports being approached 8 Apr at 0400 UTC while underway in position 02 17N, 101 49E. Two fast boats making about 20 knots came within 50 meters on starboard quarter before moving away when crew sounded al", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.816666699577638, 2.283333299713149] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-119", + "dateofocc": "2003-04-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified cargo ship was boarded 11 Apr at 0505 local time while in position 01 25N, 103 05E. The intruders took second engineer hostage and took him to captain's cabin to ask him to open door. Master instead phoned duty offic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.083333299915296, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-120", + "dateofocc": "2003-04-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified fishing boat was hijacked 10 Apr at 2010 local time while 70 nm of Luau Pangkor. Heavily armed pirate boarded the vessel, shot and killed one crew member and injured two others. The pirates took the fishing boat and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.999999999981981, 4.500000000041211] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-121", + "dateofocc": "2003-04-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 8 Apr at 2010 local time in position 04 01.7S, 116 00.5E, South Pulau Laut anchorage. Five persons armed with long knives attempted to take duty seaman hostage but duty officer raised alarm, crew must", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.016666700396627, -4.033333299753622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-122", + "dateofocc": "2003-04-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was fired upon 8 Apr at 1730 local time by persons in three fishing boats while underway in position 04 21.7N, 098 43.6E. Master was forced to stop and sent distress message. Thieves boarded ship and gathered all", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 4.366666700338214] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-348", + "dateofocc": "2003-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG tanker was boarded 3 Nov. at 1200 local time while underway in position 03 16.5N, 105 21.9E. Master, second officer and duty seaman were held hostage by persons armed with long knives while ship's cash and crew belongings", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.366666700007215, 3.283333299745493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-349", + "dateofocc": "2003-11-03", + "subreg": "74", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 3 Nov at 0115 local time while underway in position 12 00.5S, 108 26.2E. Five persons armed with long knives boarded at the stern from a wooden boat containing two accomplices. They went to bridge and ti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [108.43333330004333, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-350", + "dateofocc": "2003-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 3 Nov at 0010 local time while underway in position 03 16N, 105 24.4E. Nine pirates armed with knives took third officer and second officer hostage and forced them to call master to bridge. When master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.399999999976785, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-351", + "dateofocc": "2003-11-03", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker reports suspicious approach 3 Nov at 0225 local time while underway in position 02 01S, 108 29E. Two unlit speedboats were detected ahead of the tanker and one approached to within five cables at 20 knots. Ship", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.483333299910043, -2.016666699616508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-352", + "dateofocc": "2003-11-03", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tug towing a barge reports suspicious approach 3 Nov at 0430 local time while underway in position 02 39N, 105 03E. A speedboat with six persons approached but withdrew after fifteen minutes when crew switched on searchlights", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.050000000010414, 2.649999999576664] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-353", + "dateofocc": "2003-11-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 2 Nov at 2130 local time while underway in position 03 05N, 105 21E. Eight persons armed with knives, swords and bamboo sticks took three crew hostage and took them to crew lounge where they tied up ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.350000000110072, 3.083333300278639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-354", + "dateofocc": "2003-11-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The Indian flag tanker (JAG PRANAM) was boarded 2 Nov at 0400 local time while underway in position 01 13N, 105 10E off Bintan Island. Duty officer was held hostage to force master to open his cabin where they stole ship's cash. The cabins of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.166666699640984, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-355", + "dateofocc": "2003-10-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 29 Oct at 2248 local time while underway in position 01 03.3N, 105 13.8E, 22.75 miles off Pulau Mapor. Four persons in a speedboat attempted to gain access from stern but aborted attempt w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.233333299580124, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-356", + "dateofocc": "2003-10-28", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 28 Oct at 2035 UTC while underway in position 01 01.3N, 105 15.6E east of Bintan Island. Duty officer spotted a speedboat making 15 knots which passed the ship then came about to approa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.266666700273788, 1.016666700274811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-357", + "dateofocc": "2003-10-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "INDONESIA: An unidentified self-propelled barge was hijacked 27 Oct while underway off Tanjung Jabung, Selat Berhala, with a cargo of palm oil. Palm oil and diesel oil are among cargo thieves' favorite targets in SE Asia (IMB, ONI).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.499999999677868, -0.99999999968702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-358", + "dateofocc": "2003-10-26", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship was boarded 26 Oct at 2200 local time, by three persons disguised as stevedores, while moored to buoy RQ2, Ho Chi Minh port. One intruder threatened duty seaman with a knife while the others entered engine room and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.716666700005874, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-359", + "dateofocc": "2003-11-10", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified refrigerated cargo ship was boarded 10 Nov about 1.5 miles from Dakar pilot station while underway inbound. Persons armed with knives were chased by crew who mustered when alarm sounded. Dakar port control provided a police bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-360", + "dateofocc": "2003-11-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 9 Nov at 2248 UTC while in position 06-20.2N 003-22.8E in Lagos Roads. Thieves boarded at stern from a speedboat and stole ship's stores, before crew raised alarm and they escaped (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.396666700046012, 6.336666699763384] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-45", + "dateofocc": "2002-02-09", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND:Forecastle store lock of unidentified vessel broken open during cargo discharge operations 9 Feb at 1700-1730 local time while at Kosichang anchorage, Thailand. The ship's crewhanded over suspects to local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.816666700444614, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-46", + "dateofocc": "2002-02-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier was approached by a speed boat 13 Feb at 2100 local time while underway in position 13-15N 049-20E, Gulf of Aden. When the boat attempted to come alongside, the duty officer raised the alarm, increased speed, z", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.333333300006473, 13.250000000099305] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-47", + "dateofocc": "2002-02-13", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reported three vessels acting suspiciously 13 Feb at 0043 UTC while underway in position 03-14.47S 107-19.6E off Simedang Island, Indonesia. The three boats emerged from the island, and headed straight for the c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.326666699818759, -3.241666700398071] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-48", + "dateofocc": "2002-02-12", + "subreg": "73", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was chased by a suspicious vessel 12 Feb at 0102 local time, while underway in position 07-40S 121-24E in the Flores Sea, Indonesia. Whenthe small boat approached from off the port bow, the container ship altere", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.399999999594911, -7.6666666998442] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-49", + "dateofocc": "2002-02-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified cargo barge under tow off India in position 08-16N 076-24E was boarded 21 Feb at 1039 UTC by person operating from seven small high-speed boats. Tug captain tried evasive maneuvers and fired signal flares but thieves sole batteries", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.399999999938245, 8.266666699834786] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-50", + "dateofocc": "2002-02-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA:An unidentified tanker was boarded 21 Feb at 0415 local time while anchored in position 17-00N 082-21E in the Kakinada fairway. Crew raised alarm and thieves escaped in theirboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.350000000265538, 16.999999999995794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-51", + "dateofocc": "2002-02-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 19 Feb at 0515 local time while anchored in position 17-01N 082-21E in the Kakinada fairway. Five person armed with knives boarded at theforecastle but escaped in their boat when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.350000000265538, 17.016666699892937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-52", + "dateofocc": "2002-02-15", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker was boarded 15 Feb at 0105 local time while at Balikpapan anchorage. Five person wearing orange boiler suits boarded at the forecastle. Crew raised alarm and thieves escaped with life saving equipment including a life r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.833333300135109, -1.283333299889478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-54", + "dateofocc": "2002-02-28", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: The cargo ship HORNESRAND was ordered to stop and fired upon 28 Feb at 0600 while in position 09-11N 014-33W off Conakry. Eight persons armed with unspecified guns chased the ship for one hour and broke off the chase at 0710 after crew switched", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.550000000439979, 9.183333300206129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-55", + "dateofocc": "2002-02-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "SUSPICIOUS CRAFT", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reported a suspicious approach 25 Feb at 1200 UTC while underway in position 02-25N 101-43E. Seven persons in a small motorboat approached and then stopped. Bulk carrier altered course and alerted crew a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.716666699844211, 2.41666670014024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-56", + "dateofocc": "2002-02-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified chemical tanker was boarded 27 Feb at 0130 local time while alongside berth unloading cargo. The intruders boarded form the water side, broke open the forecastle store and stole ships stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.833333300142726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-57", + "dateofocc": "2002-03-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 4 Mar at 0015 local time while anchored at Belawan port. Thieves armed with knives boarded via the forecastle, broke open padlocks and stole ship's stores. Ship's crew raised alarm; thieves jumped ove", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-58", + "dateofocc": "2002-03-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified tanker was boarded 3 Mar at 2021 local time while anchored at Balikpapan. Three or four persons armed with knives boarded from a boat via the anchor chain and stole two mooring lines. Anti-piracy watch threatened with knife bef", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.973333300121681, -1.343333300269137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-59", + "dateofocc": "2002-03-04", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOLOMON ISLANDS: The Thailand-flag freighter (ANYA MANJI) was boarded 4 Mar at 1315 UTC shortly after arriving at the anchorage, Honiara. A single armed man (NFI), who had apparentlyboarded via the anchor chain, forced crew to lower accommodation ladder", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [159.966666700154178, -9.416666699675943] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-266", + "dateofocc": "2002-09-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 12 Sep at 030 local time while at Tanjung Priok anchorage. Persons armed with knives and crowbars boarded via the stern. They stole a large quantity of engine spares and escaped in their boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-267", + "dateofocc": "2002-09-09", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 9 Sep at 1830 UTC while anchored in position 01 20.6S, 116 57E, Balikpapan. Four persons boarded via forecastle on starboard side from two unlit boats. Duty officer raised alarm and thieves escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.949999999765737, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-268", + "dateofocc": "2002-09-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "INDONESIA: An unidentified tug and barge with a cargo of palm oil were reported hijacked 6 Sep at 1930 local time in position 01 35.40N, 101 54.40E in vicinity of Bengkalis Strait. Eleven persons participated in the robbery. Malaysian authorities a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.900000000313241, 1.583333299780463] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-269", + "dateofocc": "2002-09-14", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified refrigerated cargo ship was subject to attempted boarding 14 Sep at 0400 local time while at Davao anchorage. One person from a boat with two accomplices attempted to gain access via the anchor chain during cargo operations", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.616666699987604, 7.066666700335588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-270", + "dateofocc": "2002-09-18", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "DOMINICAN REPUBLIC: An unidentified cargo ship was boarded 18 Sep at 0235 local time while berthed at Rio Haina. Five persons armed with long knives tried to break into bridge and chased duty seaman and 2nd mate, who retreated into accommodation. A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-271", + "dateofocc": "2002-09-20", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified cargo ship reports attempt to board 20 Sep at 0415 local time at inner anchorage, Buenaventura. Three persons attempted to gain access using a long pole but fled in a small wooden boat when alarm raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.083333300214804, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-272", + "dateofocc": "2002-09-06", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified cargo ship was boarded 6 Sep at 0430 local time while at inner anchorage, Buenaventura. Three persons armed with machetes boarded using a long pole with hooks and stole ship's stores. Coast Guard informed but only arrived af", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-273", + "dateofocc": "2002-09-07", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: A 1,213-ton Danish flag cargo ship was boarded 7 Sep at 0445 local time while berthed at St. Laurent port. Three persons armed with iron bars and handguns beat several crew, including the master. Chief mate slipped away and notified police who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.03333329957195, 5.500000000073555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-274", + "dateofocc": "2002-09-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified bulk carrier was boarded 21 Sep at 0215 local time while in position 05-48.9N, 118-06E at inner loading anchorage, Sandakan. One person boarded during rain but jumped overboard and escaped when crew alerted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.100000000297541, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-275", + "dateofocc": "2002-09-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 17 Sep while in position 03 10N, 112 52.5E at Kuala Semanok anchorage, Bintulu, Sarawak. Two persons operating from a speedboat and armed with knives boarded via the forecastle, broke into the locker an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.883333299872447, 3.16666669993964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-276", + "dateofocc": "2002-09-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "INDONESIA: An Indonesian tug and barge were hijacked 17 Sep at 0200 at Kuala Gaung, Sumatra. The 639-ton (BES 04) and 94-ton (USDA JAYA) had loaded a cargo of 1,500 tons of palm oil. The crew were released unharmed at Pulau Lingka (some reports say t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, -0.033333299624246] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-277", + "dateofocc": "2002-09-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified ship was boarded 24 Sep at 0130 local time while at Alpha outer anchorage, Chittagong. Three boats approached stern, bow and midship section starboard. Four persons boarded aft and one tried to climb to forecastle. Alarm rai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-278", + "dateofocc": "2002-09-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The 1,699-ton Malaysian-flag tanker (NAUTICA KLUANG) was hijacked 28 Sep at 0300 local time while underway off Indonesia in the vicinity of Pulau Iyu Kecil at the southern tip of the Strait of Malacca. The pirates, armed with guns and machet", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.350000000045384, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-371", + "dateofocc": "2003-11-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker was boarded 14 Nov at 0550 local time while at Lawi-Lawi SBM anchorage. Three armed persons boarded from a black motorboat and broke into forecastle locker. They stole ship's stores and threatened duty seaman with iron bar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.766666700195969, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-372", + "dateofocc": "2003-11-17", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Five persons boarded an unidentified container ship 17 Nov at 2300 local time while underway about 6 nm off Ho Chi Minh City (NFI). Crew raised alarm and intruders fled empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.716666700005874, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-373", + "dateofocc": "2003-11-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 22 Nov at 2300 local time at Lagos anchorage. Thieves stole ship's stores before escaping in a waiting trawler (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-374", + "dateofocc": "2003-11-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 23 Nov at 0400 local time at Chittagong anchorage. Six persons armed with long knives stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-375", + "dateofocc": "2003-11-22", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "RESEARCH VESSEL", + "descriptio": "MALAYSIA: A suspicious unlit craft was noticed on radar by the duty officer of an unidentified research ship 22 Nov at 2120 local time while the ship was in position 05 51.2S, 118 53.4E off Sandakan. When craft approached to 2.5 miles ship's crew switch", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.883333300066511, -5.850000000248542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-376", + "dateofocc": "2003-11-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Nov a 0630 local time while anchored in position 01 21.1N, 117 01E, 14 nm off Balikpapan. Three persons armed with guns and knives boarded via the hawse pipe, took deck watch hostage, and stole stores and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.016666700428914, 1.350000000344039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-60", + "dateofocc": "2002-03-09", + "subreg": "55", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BULGARIA: An unidentified bulk carrier was boarded 9 Mar at 2030 local time by eight persons who broke into crew cabins and stole cash and personal belongings. Crew raised alarm and port authorities arrested the intruders.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [27.549999999752401, 42.50000000037079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-61", + "dateofocc": "2002-03-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST:An unidentified cargo ship was boarded 5 Mar at 0225 UTC while anchored in the Abidjan outer anchorage. Two persons armed with knives stole ship's stores before alarm wasraised whereupon they jumped overboard and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.083333299620335, 5.225000000356943] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-62", + "dateofocc": "2002-03-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TOGO: An unidentified container ship was subject to an attempt to board 6 Mar at 0445 while anchored in Lome Roads. Five persons in a motorized fishing boat tried to gain access at the stern. Watchman sounded ship's whistle and directed searchlights at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 6.133333300242384] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-63", + "dateofocc": "2002-03-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports an attempt to board 11 Mar at 0540 local time while underway in position 02-35N 101-30E. Three persons in a speedboat, described as six meters long with white hull, approached the starboard quarter but w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 2.583333299812807] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-64", + "dateofocc": "2002-03-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports attempt to board 10 Mar at 2200 local time while underway in position 04-10N 099-26E. Persons in a speedboat doing 21.5 knots attempted to board via the port side. Duty officer raised alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.433333299752292, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-65", + "dateofocc": "2002-03-09", + "subreg": "72", + "hostility_": "PIRATERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:An unidentified cargo ship was boarded 9 Mar at 0325 local time while at outer anchorage, Banjarmasin. Armed pirates (NFI) broke into forward stores and stole supplies.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.599999999734678, -3.333333299820879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-66", + "dateofocc": "2002-03-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tug and barge were boarded 8 Mar at 0445 local time while anchored at Tanjung Balai, Karimun.Seven persons armed with swords and knives tied up the six crew and forced five into a speedboat when they were taken to a nearby isla", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.300000000016951, 4.033333300444269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-67", + "dateofocc": "2002-03-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified \"special purpose vessel\" was underway 5 Mar at 0300 local time in position 05-10S 118-45E when three boats were noticed ahead. As the boats were passed they increased speed and came alongside with one person preparing to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.750000000363571, -5.166666700213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-68", + "dateofocc": "2002-03-14", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR:Watch on an unidentified bulk carrier found three unauthorized persons near paint locker 14 Mar at 0715 UTC while ship was alongside at Manta. He raised alarm upon sightingthree more persons on forecastle. Thieves jumped overboard with ship's s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.733333300345464, -0.933333299923163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-69", + "dateofocc": "2002-02-13", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA-BISSAU: An unidentified ship was pursued and fired upon 13 Feb (reported 18 Mar) while underway in position10-42-59N 16-28-04W outside the islands offshore of Guinea Bissau. A speedboat containing five armed men in military uniform started to com", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.467777800445049, 10.716388899923743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-70", + "dateofocc": "2002-03-08", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE: Fishing vessel (SAWA II) was reported to have been attacked 8 Mar (reported 14 Mar) off Yelibouya Island, three miles from Guinean waters. Two patrol boats sent by the Maritime Wing of the Rep. of Sierra Leone Armed Forces came under sust", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.29666669994532, 8.940000000256703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-71", + "dateofocc": "2002-03-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 15 Mar at 0230 local time while at Lagos anchorage. Four persons armed with long knives held a seaman hostage. Second officer raised alarm and drove off the thieves with help of two watchmen. Thieves f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-72", + "dateofocc": "2002-03-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA:An unidentified container ship was boarded 13 Mar at 0240 local time while berthed at container terminal, Dar es Salaam. Thieves armed with knives threatened to kill five dutywatchmen. Duty officer raised alarm and thieves jumped overboard wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.283333300010383, -6.800000000414173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-73", + "dateofocc": "2002-03-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was boarded 18 Mar while at anchor, Kalpi anchorage, Hooghly River. Four persons armed with knives stole ship's stores but jumped into river and escaped when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.203333300189513, 22.091666700304359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-74", + "dateofocc": "2002-03-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 15 Mar at 0755 local time while anchored in Pussur River below Mongla. The \"armed\" thieves stole a wire rope and escaped. At 0900 local time three armed persons boarded from a small boat via the anch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 22.466666699754398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-280", + "dateofocc": "2002-09-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 Sep at 2345 local time while at Balikpapan coal terminal. Six armed persons broke open paint store and stole a large quantity of ship's stores. Watchman noticed the breakin but was taken hostage by t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-281", + "dateofocc": "2002-09-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified cargo ship was boarded 27 Sep at 0130 local time while in position 10 16.5N, 107 04E, Vung Tau outer roads anchorage. Intruders boarded via forecastle, broke into bosun's store and stole ship's stores. Alarm raised and thieves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.2833332999719] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-282", + "dateofocc": "2002-09-29", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified cargo ship was boarded 29 Sep at 0305 local time while in position 24 05.42S, 046 21.23W at No. 3 Santos outer anchorage. Six persons, four of whom were armed with guns and long knives, boarded from a small speedboat. Watch so", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.35000000020932, -24.0833333002671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-283", + "dateofocc": "2002-10-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified chemical tanker was boarded 3 Oct during the early morning hours while berthed at Santana (Macapa). Thieves stole an outboard motor from a lifeboat and ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.050000000271382, 0.033333300314894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-284", + "dateofocc": "2002-10-01", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A cargo ship underway 1 Oct in position 12 18N, 004 06E reports attempt to close by three persons in a small unlit boat. Crew directed searchlights at boat which withdrew.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.549999999564534, 12.416666699564303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-285", + "dateofocc": "2002-10-06", + "subreg": "62", + "hostility_": "POSSIBLE TERRORISTS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "YEMEN: The 157,833 ton, French Antarctic Territory flag ultra large crude carrier (LIMBURG) was damaged by explosion in the morning hours of 6 Oct as it picked up the pilot before mooring at al Shihr in position 14 42N, 049 32E. One crew member is dead", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.53333329966739, 14.699999999831448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-286", + "dateofocc": "2002-10-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 3 Oct at 1400 local time while anchored at Chittagong. Four armed thieves boarded while four accomplices waited in their boat. The thieves stole two mooring lines before escaping when alarm was sounded and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-287", + "dateofocc": "2002-10-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker was boarded 1 Oct at 0425 local time while underway in position 01 26N, 104 42.5E, 20 nm from Horsburgh lighthouse. Eight persons armed with guns and long knives boarded via the stern while two accompl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.716666699941186, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-288", + "dateofocc": "2002-10-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified ship was boarded 5 Oct at 1945 local time while departing Pulau Laut, Kota Baru. Thieves boarded at main deck and stole two life rafts", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.216666699863481, -3.233333300087452] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-289", + "dateofocc": "2002-10-05", + "subreg": "92", + "hostility_": "POSSIBLE TERRORISTS", + "victim_d": "FERRY", + "descriptio": "PHILIPPINES; The interisland passenger-cargo ferry (LADY ADZRA) was hit by explosion of a home made bomb 5 Oct while docked at Bongao port, Tawi Tawi. The bomb blew a one meter hole in the vessel's bow. Police are attempting to determine if the bomb", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.766666700293058, 5.033333299577237] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-290", + "dateofocc": "2002-10-02", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified bulk carrier was boarded 2 Oct at 0315 local time while at Davao port. Two persons armed with long steel bars gained access via the anchor chain and were spotted by security patrol trying to open manhole cover. Alarm raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.616666699987604, 7.066666700335588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-291", + "dateofocc": "2002-10-02", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship averted boarding 2 Oct at 0530 local time while at anchor off Vung Tau. Duty seaman saw a man climbing aboard from a small blue boat containing three other men and raised alarm. Intruders attempted second boardin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-292", + "dateofocc": "2002-10-11", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified container ship was boarded 11 Oct at 2140 local time at port of Callao. Two persons armed with knives attacked local watchman, stole ship's stores and escaped. Master raised alarm and informed authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-293", + "dateofocc": "2002-10-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 14 Oct at 1950 local time while at Wharf No. 1A, Sandakan. Two persons broke the seal on a container on deck but fled empty handed in their speedboat when duty seaman raised alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.833333300142726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-138", + "dateofocc": "2003-04-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was subject to attempted boarding 25 Apr at 2320 local time while underway in position 03 23N, 105 31.5E, 18nm NW of Anambas Islands. Persons in a fast boat attempted to board using bamboo poles but fled when crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.533333299679782, 3.38333330037824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-139", + "dateofocc": "2003-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 22 Apr at 2015 local time while underway in position 01 42.5N, 106 09.6E about 60 nm SE of Anambas Islands. Seven persons armed with knives and guns tied up master and crew and stole personal belongings", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.166666699673328, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-140", + "dateofocc": "2003-04-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 28 Apr between 0045 and 0145 local time while anchored in position 06 19.6N, 003 20.7E 4.3 nm off Lagos port. Three persons boarded from a 14 ft boat and threw empty glass bottles at duty seaman when discover", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.35000000040867, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-141", + "dateofocc": "2003-04-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: The offshore support ship (MAERSK SHIPPER) was boarded 15 Apr and its crew of 16 held hostage off the Nigerian Coast. The vessel's operator paid what is described as a $2.500 ransom in local currency and the hostages were freed beginning 4 May", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-142", + "dateofocc": "2003-04-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified offshore support vessel was subject to attempted boarding 25 Apr at 0835 local time while in position 04 48N, 05 20E. Twelve persons attempted to gain access from a speedboat. Guard on board the vessel fired warning shots and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.333333299676895, 4.800000000140813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-143", + "dateofocc": "2003-04-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified cargo ship was subject to an attempt to board 30 Apr at 0005 local time while anchored at Takoradi. Four persons operating form a small boat tried to board at the stern using a hook on a bamboo pole. Duty seaman raised alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.733333299589276, 4.883333299977096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-144", + "dateofocc": "2003-05-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified tanker was subject to an attempt to board 1 May at 0400 UTC while in the Abidjan pilot waiting area, position 05 13N, 004 02.6W. Two persons armed with knives boarded at the poop using grappling hooks. When crew sounded al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.049999999650765, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-145", + "dateofocc": "2003-04-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified tanker was boarded 30 Apr while in the pilot waiting area, position 05 13N, 004 02.6W. One person armed with a knife threatened crew but jumped overboard and escaped empty handed in his wooden boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.049999999650765, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-146", + "dateofocc": "2003-04-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The Korean-flagged fishing boat (BEIRA 9) was hijacked near Kismayo on 1 April by an unnamed Somali warlord, according to a 4 May report. The boat's 24 crew members are being held by the warlord who is demanding payment of three months fishing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.550000000237503, -0.366666700417511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-385", + "dateofocc": "2003-11-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA: An unidentified tug and tow were hijacked 25 Nov at 0315 local time while underway in position 00 39.47S, 103 48.09E, 15 nm off Muara Sabak, Jambi. The tug's crew were forced to jump overboard and all 14 swam safely ashore. The barge with 78", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.799999999745182, -0.666666699617792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-147", + "dateofocc": "2003-04-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified container ship was subject to an attempt to board 28 Apr between 0740 and 0830 UTC while underway in position 13 18N, 049 20E. Three speedboats approached at about 25 knots but gave up chase when ship altered course and wa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.333333300200536, 13.299999999966076] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-148", + "dateofocc": "2003-05-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tug and barge were boarded 2 May at 0100 UTC while underway in position 08 52.2N, 076 25.2E, 8 nm west of Quilon. The thieves stole ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.416666699835389, 8.866666700034045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-149", + "dateofocc": "2003-05-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 2 May at 2100 local time while at Chittagong anchorage. Three persons armed with big knives boarded via the stern. Duty seaman raised alarm and the thieves fled with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-150", + "dateofocc": "2003-05-02", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was approached 2 May at 0100 local time while in position 2 53N, 091 38E at Chittagong anchorage. Persons armed with long knives in three speedboats were foiled by the crew in their attempts to board the ship (IMB", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-377", + "dateofocc": "2003-11-19", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports suspicious approach by unlit small craft 19 Nov at 0330 local time while underway in position 03 12N, 108 47.7E 10 nm off Pulau Subi Kecil. Boat was spotted on radar at a distance of five miles, making five knot", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.799999999906845, 3.19999999990921] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-378", + "dateofocc": "2003-11-22", + "subreg": "25", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "CARIBBEAN: An unidentified yacht reports being chased 22 Nov at 2200 UTC while underway in position 17 45N, 054 31W east of the Leeward Islands. Several persons in a 30 meter vessel were assessed to be preparing to board. Yacht switched off lights and e", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.516666699965356, 17.749999999795193] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-379", + "dateofocc": "2003-11-29", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified cargo ship was boarded 29 Nov at 0730 UTC while in position 03 52N, 077 05W, Buenaventura inner roads. Two persons armed with crowbars gained access, but jumped overboard and escaped when a contract guard employed by the ship f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.866666699872383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-380", + "dateofocc": "2003-11-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified cargo ship was boarded 28 Nov at 0205 local time at Lagos anchorage. Four persons armed with knives gained access from a fishing boat. They threatened duty seaman who received head injuries. The intruders stole 8 mooring lines b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-381", + "dateofocc": "2003-11-24", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: An unidentified bulk carrier was boarded 24 Nov at 0130 UTC while anchored at Conakry. Fifteen persons armed with \"high powered guns\" operating from two motorboats took two crew hostage and entered accommodation via the bridge. They assaulted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-382", + "dateofocc": "2003-12-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: A crew member aboard the Belize-flag offshore support vessel SEA PANTHER was shot dead 2 Dec. Four apparent pirates in a fishing boat demanded the master stop and opened fire when he instead increased speed. SEA PANTHER was on a voyag", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.500000000415469, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-383", + "dateofocc": "2003-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE: An unidentified tanker was boarded 19 Nov at 2325 local time while underway in position 01 17.9N, 104 06.1E at the Eastern Buoy. Seven persons armed with long knives stole ship's cash and escaped. This is a rare instance crime inside Singapor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.099999999844783, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-384", + "dateofocc": "2003-11-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 25 Nov at 2250 local time while underway in position 03 01N, 106 58E, Selat Leplia. Five persons armed with long knives and guns entered the bridge and tied up the duty officer, seaman and a cadet. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.966666700238818, 3.016666700339499] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-386", + "dateofocc": "2003-11-24", + "subreg": "73", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship reports suspicious approach with intent to board 24 Nov at 1115 local time while underway in position 08 36S, 137 14E, 20 nm off False Cape, Lolepon Island, Irian Jaya. Two fishing boats approached the ship which beg", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [137.233333299715696, -8.600000000112686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-387", + "dateofocc": "2003-11-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 24 Nov at 0540 local time while underway in position 00 56.9N, 105 20.4E, 41 nm off Bintan Island. Seven persons armed with guns and knives fired two shots at bridge door, entered and took second of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.333333300212871, 0.949999999611634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-388", + "dateofocc": "2003-11-29", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified tanker was boarded 29 Nov at 0200 local time at anchor at Puerto la Cruz, Venezuela. 3 persons armed with knives took duty seaman hostage and tied him up. They stole ship's stores and safety equipment before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.633333300094591, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-389", + "dateofocc": "2003-12-06", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified chemical tanker was boarded 6 Dec at 0130 as it came to anchor with a pilot on board at Georgetown. Alarm was raised but the thieves escaped with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-390", + "dateofocc": "2003-12-08", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 8 Dec at 0025 local time underway in position 01 11N, 126 52E in the Molucca Sea. 3 persons in a motorboat were spottedand ship raised alarm, directed searchlights and activated fire hoses", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [126.866666700252836, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-75", + "dateofocc": "2002-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified livestock carrier was boarded 14 Mar at 2240 local time while underway in position 01-52N 102-27.5E. Four persons armed with guns fired two shots toward bridge when master raised alarm. Crew were ordered to retreat in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.458333300232312, 1.866666699807695] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-76", + "dateofocc": "2002-03-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 18 Mar at 0400 local time despite duty officer shining searchlight on three boats as they approached the starboard side. Boarding was on port side and thieves stole two life rafts before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.150000000131968, -0.500000000120508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-77", + "dateofocc": "2002-03-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Mar at 0300 local time while anchored at Belawan. A single person boarded over the side and opened hawse pipe cover whereupon five more persons gained access via the anchor chain and attacked duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.800000000108469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-78", + "dateofocc": "2002-03-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA: The tug and barge boarded and hijacked 8 Mar at 0445 local time while anchored at Tanjung Balai, Karimun have been identified as 120-ton, Singapore flag tug (GUAN SENG 12) and 1,404 ton, Singapore flag barge (YUAN CHENG 19). IMB broadcast an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.300000000016951, 4.033333300444269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-79", + "dateofocc": "2002-03-18", + "subreg": "83", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PACIFIC OCEAN: Seychelles flag fishing vessel (FULL MEANS NO. 2) was reported hijacked by its crew 18 Mar while in position 15-24N 154-34W. Crew consists of Taiwanese master and 33 mainland Chinese crew. Vessel reported sailing toward Island of Hawaii", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-154.566666700368074, 15.399999999764191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-80", + "dateofocc": "2002-03-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified cargo ship was boarded 20 Mar at Lagos Anchorage. Two persons boarded via the stern and held duty seaman hostage at gunpoint while they lowered three mooring lines into a waiting boat and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-81", + "dateofocc": "2002-03-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 22 Mar at 0315 local time while at jetty no. 1, Haldia. Thieves boarded at the forecastle and stole six hawsers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.083333300329514, 22.016666700054657] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-300", + "dateofocc": "2002-10-17", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified product tanker was boarded 17 Oct between 0300 and 0400 while berthed at Caltex refinery, Batangas. Thieves boarded at the poop, broke open paint locker and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.016666699658913, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-82", + "dateofocc": "2002-03-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: A fishing boat captain was killed and a crew member injured 16 Mar when a four-man gang dressed in military fatigues robbed their boat off Beluran, near Sandakan. Policelater announced arrest of two Filipinos suspected in the incident and reco", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.500000000098225, 5.500000000073555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-83", + "dateofocc": "2002-03-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 21 Mar at 0300 local time while berthed at jetty 5C, Pertamina terminal, Balikapan. Anti-piracy watch noticed small unlit craft bearing four men with long bamboo poles at stern. Crew mustered and thieves fl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-84", + "dateofocc": "2002-03-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Mar at Balikpapan anchorage. Two persons boarded over the stern And held duty seaman at gunpoint. The thieves lowered a mooring line into a waiting boat and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-85", + "dateofocc": "2002-03-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified VLCC was boarded 19 Mar at 0445 local time while anchored at Balikpapan. Three persons broke into the steering gear room and stole engine spares before being driven off by crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-86", + "dateofocc": "2002-03-22", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 22 mar at 0235 local time while at Vung Tau outer anchorage. Four persons armed with long knives boarded via the anchor chain. Crewraised alarm and the intruders fled without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-87", + "dateofocc": "2002-03-28", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: The Ukraine flag fishing vessel (VOSTOCHNYY) was attacked 28 Mar at an unknown location off the Guinea coast by seven person who robbed it of $13,000 plus audio and video equipment. No crew injuries reported but an electricity cable was shot th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.230555599564866, 9.964722200097242] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-88", + "dateofocc": "2002-03-27", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: The Ukraine flag tanker (SKHIDNYY) was boarded 27 Mar at 0520 UTC while in position 10-04N 016-23.5W in territorial waters near Conakry. Ten persons armed with machine guns stole cash (some accounts say $15,000), TV sets and radios. The thieves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.391666700418625, 10.06666670043262] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-294", + "dateofocc": "2002-10-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 11 Oct at 0445 local time while berthed at Caltex Jetty No. 2, Dumai in position 01 41.3N, 101 27.9E. Three persons armed with knives entered engine room, held duty cadet at knifepoint and demanded locker", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-295", + "dateofocc": "2002-10-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA: An unidentified salvage tug was boarded 9 Oct at 0100 local time while at Panjang anchorage. Five persons armed with long knives were spotted by duty officer and fled when he raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, -5.466666700312658] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-296", + "dateofocc": "2002-10-13", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA: An unidentified salvage tug was boarded 13 Oct. at 0420 local time while anchored in position 07-8.9S 112-39.8E, Surabaya. Three persons armed with knives were spotted by duty officer and escaped with ship's property in a waiting canoe which h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.666666700333167, -7.150000000380544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-297", + "dateofocc": "2002-10-16", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified cargo ship was boarded 16 Oct at 0945 local time while berthed at Georgetown. Seven persons armed with long knives and machetes broke into forward store and stole ship's stores. Alarm raised and thieves escaped in boat after th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-298", + "dateofocc": "2002-10-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 19 Oct. while in position 22-19.2N, 088-06E in the Hooghly River. One person from a six-meter wooden motorboat used a grappling hook to gain access at the stern. Crew raised alarm and intruder jumped o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.100000000226657, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-299", + "dateofocc": "2002-10-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was subject to attempted boarding 18 Oct at 0128 local time while underway in position 01 38N, 105 41E, near Pengibu Island. Seven persons armed with long knives and iron bars were spotted by alert crew who dir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.683333300179243, 1.633333299647177] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-301", + "dateofocc": "2002-10-21", + "subreg": "55", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GEORGIA: An unidentified cargo ship was boarded 21 Oct at 1935 local time while in port Poti. Two persons armed with guns and pretending to be Customs Officers entered captain's cabin and beat him severely, stealing $76,192 in ship's cash. Master bou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [41.583333300174729, 42.150000000404418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-302", + "dateofocc": "2002-10-28", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified VLCC reports suspicious approach 28 Oct at 0100 UTC while underway in position 05 46N, 096 39E, Straits of Malacca. Six high speed boats maneuvered suspiciously but no boarding took place.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.649999999918634, 5.766666700203587] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-303", + "dateofocc": "2002-10-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "STRAIT OF MALACCA: Pirates armed with guns opened fire 25 Oct on a fishing boat operating in position 06 30N, 097 09E in the Straits of Malacca. All nine crew members of the fishing boat were thrown overboard and the boat hijacked. The fishermen spent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.150000000384466, 6.500000000105899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-304", + "dateofocc": "2002-10-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Oct at 0100 local time while at Cigading anchorage. Two persons armed with long knives jumped overboard with a life raft when spotted by crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.950000000309331, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-305", + "dateofocc": "2002-10-22", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 22 Oct at 0510 local time while in position 00 15S, 117 34E at Samarinda anchorage. Five persons armed with knives boarded via the anchor chain and attacked the duty seaman, injuring his hand. Thieves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-306", + "dateofocc": "2002-10-31", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified bulk carrier was robbed of zinc anodes 31 Oct at 1530 local time while at berth 5-C, Callao. Chief officer spotted person in the act and informed the Coast Guard which arrived within 15 minutes. Local security guards hired and onb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-307", + "dateofocc": "2002-10-22", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "VENEZUELA: An unidentified tug was boarded 22 Oct between 0300 and 0600 local time while berthed at Puerto Cabello. Thieves stole stores and crew belongings. Master was advised thatarmed robbery was common and to hire guards.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.000000000055138, 10.483333300338074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-308", + "dateofocc": "2002-10-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship was boarded 28 Oct between 0300 and 0315 local time while at berth no. 16, Apapa, Lagos. Six armed persons threatened ship's crew before escaping in a speedboat. No report of losses.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-309", + "dateofocc": "2002-11-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: Antigua-flag container ship (ALEXANDRA) was boarded 2 Nov at 0300 UTC by between 5 and 7 armed persons while ship was at anchor outside Tema. Alarm raised and intruders escaped in sea-going canoe. Forecastle locker was discovered forced open a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-151", + "dateofocc": "2003-04-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 29 Apr at 2310 local time while in position 22 16N, 091 43.6E proceeding to Alpha anchorage, Chittagong. Two persons stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-152", + "dateofocc": "2003-05-02", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier was approached 2 May at 1258 UTC while underway in position 05 25.90N, 097 43.15E. An unlit speedboat containing several persons came within one cable of the ship and increased speed from 15 knots to 25 k", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.716666699714835, 5.433333300309641] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-153", + "dateofocc": "2003-05-05", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: The Singapore-flag LPG carrier (APOLLO PACIFIC) was chased 5 May at 1400 UTC, about midnight local time, by seven small craft apparently operating in concert with a larger mother ship. The tanker was underway in position 03 37.34N, 111 04.81E", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.08333330017399, 3.616666699639438] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-154", + "dateofocc": "2003-04-29", + "subreg": "71", + "hostility_": "SUSPICIOPUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports being followed 29 Apr at 2300 local time by two unit speedboats while underway in position 00 58N, 105 04.5E. Crew directed searchlights at the boats which moved away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.083333299979984, 0.966666700408098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-155", + "dateofocc": "2003-04-03", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports attempt to board 3 Apr at 2350 local time while underway in position 02 36.7N, 108 53E in the vicinity of the Anambas/Natunas Islands. The threatening boat dropped astern when ship increased speed (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.883333299743128, 2.616666699607094] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-156", + "dateofocc": "2003-04-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 30 Apr at 1645 UTC while underway in position 01 04N, 104 59E, east of Bintan Island. The boarders took the duty officer and seaman hostage and handcuffed them before forcing them to the master's ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.983333300246557, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-157", + "dateofocc": "2003-04-30", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was approached 30 Apr by 3 to 5 persons in a fast moving boat, while underway in position 00 55.8N, 105 05E. Alert seaman raised alarm and the boat withdrew (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.083333299979984, 0.933333299714491] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-158", + "dateofocc": "2003-05-03", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified container ship reports attempt to board 3 May at 0430 local time while at south harbor anchorage, Manila Bay. Three persons armed with guns attempted togain access from an unlit boat but moved away when crew flashed lights a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.966666699792199, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-159", + "dateofocc": "2003-05-07", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified bulk carrier was boarded 7 May at 1830 local time while at berth 5E, Callao. Three persons gained access at the forecastle and fled with a liferaft when duty seaman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-160", + "dateofocc": "2003-05-11", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship reports attempt to board 11 May at 1900 local time while drifting 20 nm off the sea buoy, Guayaquil. Two blue wooden speedboats approached but master took evasive measures and increased speed. Five persons in on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-161", + "dateofocc": "2003-05-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 12 May at 0330 UTC while underway in position 14 20.5N, 050 36.7E. Ship was approached by eight speedboats. Master took evasive action, raised alarm and sent distress messages. Crew a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.616666700260055, 14.349999999865133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-162", + "dateofocc": "2003-05-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 8 May at 0840 UTC while underway in position 13 18N, 050 22E. A mother ship and three speedboats approached and the speed boats increased speed to 25 knots. Master raised alarm, took", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.366666700027167, 13.299999999966076] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-163", + "dateofocc": "2003-05-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: The chemical tanker (SPIC EMERALD) was boarded in the early hours of 6 May in rough weather while at Chennai anchorage. Seven persons armed with crude weapons threatened the crew and began looting crew belongings and ship's property. The Indian", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.300000000334137, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-164", + "dateofocc": "2003-05-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "BAY OF BENGAL: Twenty-seven fishing trawlers operating in the Bay of Bengal were raided 7 May while 12 km off Andar Char, and were looted of fish, nets and other valuables. The looted boats were returning to Bhola and Barisal after deep sea fishing. Sur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.999999999690942, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-391", + "dateofocc": "2003-12-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 3 Dec in the early morning while anchored at Jakarta and a liferaft stolen (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, 6.100000000272814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-392", + "dateofocc": "2003-12-02", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 2 Dec at 0630 UTC by a blue hulled speedboat while underway in position 05 32N, 097 36E, 20 nm north of Tanjung Jamboaye. The boat followed for 10 minutes and moved away when crew muste", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.600000000084265, 5.533333300043068] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-393", + "dateofocc": "2003-12-01", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports 5 persons attempted to board 1 Dec at 0330 local time while ship was working cargo at Balikpapan anchorage. The five attempted to climb anchorchain but were spotted and chased by crew and onboard police who fire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-394", + "dateofocc": "2003-12-12", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports suspicious approach 12 Dec at 2925 local time while underway in position 04-14N 099-17E. An unlit fast boat 35-40 feet in length and with a green hull, making 20 knots, came close aboard but withdrew wh", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.283333300152151, 4.233333299911124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-395", + "dateofocc": "2003-12-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports attempt to board 11 Dec at 0315 local time while underway in position 01-58.3N 102-4.7E. Duty officer raised alarm upon approach of unlit speedboat. Crew mustered and directed searchlights at boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.283333300152151, 1.971666699797595] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-1", + "dateofocc": "2003-12-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier reports attempt to board 11 Dec while anchored at New Mangalore. Crew raised alarm and boarding was aborted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [74.816666699603786, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-2", + "dateofocc": "2003-12-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 16 Dec at 1910 local time while anchored in position 22-12.7N 091-43.2E at Chittagong anchorage 'B'. Nine persons boarded at the forecastle, tied up a cadet and two shore watchmen and held them at kn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.7199999997502, 22.211666700164358] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-3", + "dateofocc": "2003-12-22", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 22 Dec at 0325 UTC while anchored in position 01-05S 117-17E at Samarinda. Thieves gained access via the hawse pipe, broke open forecastle store and stole supplies and safety equipment. Police chased", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.283333299834908, -1.083333300422623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-4", + "dateofocc": "2003-12-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 21Dec at 0400 local time while anchored in position 01-54S 116-37E at Apar Bay. Five persons armed with knives boarded via the hawsepipe from a speedboat. The intruders threatened duty seaman with a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.616666699696566, -1.899999999985937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-5", + "dateofocc": "2003-12-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship reports attempt to board 20 Dec at 0620 local time while underway in position 01 08N, 103 30E, 7 nm NE of Pulau Karimun Besar. Four persons in an unlit boat about 8m long approached from the port quarter bu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-6", + "dateofocc": "2003-12-16", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 16 Dec at 0430 local time while underway in position 09-18S 132-15E. Crew directed searchlight at persons in a long, narrow speedboat which followed the tanker before moving away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [132.250000000350497, -9.300000000045372] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-7", + "dateofocc": "2003-12-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BENIN: An unidentified bulk carrier was boarded 24 Dec at 0357 local time while anchored 3.5 miles south of fairway buoy at Cotonou anchorage. Five persons armed with guns and knives took watchman and chief engineer hostage. They broke into master's c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.433333300212666, 6.349999999606382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-8", + "dateofocc": "2003-12-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports suspicious approach by about five boats 28 Dec at 0215 local time while underway in position 13-45.8N 048-49.0E. About five boats were sighted 4 miles ahead and 2 of these closed in on both sides of th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.816666699662278, 13.763333300408192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-9", + "dateofocc": "2003-12-24", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified vehicle carrier report attempt to board 24 Dec at 1400 UTC while underway in position 20-55N 119-43E. When approach by boat was detected crew switched on light and boat withdrew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.716666700426345, 20.918055599741081] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-10", + "dateofocc": "2003-12-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: The Bangladeshi coastal freighter (BARVINA) was attacked 31 Dec while at Chittagong port and looted of goods while crew were kept hostage at gunpoint. Local operators reportedly refuse to lodge complaints with police fearing retaliatory att", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-89", + "dateofocc": "2002-03-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified cargo ship was boarded 29 Mar at 2030 local time while at berth 18 Abidjan. Thieves boarded from an unlit boat using grappling hooks and escaped with ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-90", + "dateofocc": "2002-03-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified bulk carrier was boarded 30 Mar at 2250 UTC while at Tema anchorage. About thirteen persons boarded from a small wooden boat via the anchor chain. Crew chased them and thy jumped overboard and escaped, apparently without stealing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-91", + "dateofocc": "2002-04-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: The Cyprus flag cargo ship (TORM COTE D'IVOIRE)was boarded during the night of 1-2 Apr while anchored in Port Gentil Roads. About 30 persons boarded and the master was beaten with a rifle butt suffering a broken nose and other injuries. Thieves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.800000000270188, -0.20000000002085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-92", + "dateofocc": "2002-03-31", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified tanker reports suspicious approach 31 Mar at 0900 UTC while underway in position 14-00N 051-52.4E. Three speedboats each with three persons wearing masksattempted to come alongside but abandoned attempt when crew mustered a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.873333300084823, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-93", + "dateofocc": "2002-03-28", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reported a suspicious approach 28 Mar at 2355 local time while underway in position 15-15N 051-40E. Speedboat with four persons approached within eight meters of the starboard quarter but moved away when alarm", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.666666700159169, 15.250000000163993] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-94", + "dateofocc": "2002-03-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was robbed of zinc anodes attached to its hull 29 Mar at 2030 local time while berthed at no. 2 berth Chittagong. Five persons in a boat removedthe anodes and escaped under pier when search light was directed at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-95", + "dateofocc": "2002-04-01", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified vessel reports suspicious approach 1 Apr at 2000 UTC while underway in position 04-22.5N, 099-12.6E. Forecastle watch heard sound of powerful outboard motor and bridge watch directed search light at long fast boat seen", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.209999999929494, 4.374999999924739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-96", + "dateofocc": "2002-03-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 27 Mar at 1812 UTC while anchored at Apar Bay. Seven persons armed with guns and knives took duty seaman hostage, stole his wristwatch and removed mooring lines before escaping in their speedboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.003055599784659, 3.869166700000619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-97", + "dateofocc": "2002-03-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tug was boarded and hijacked 25 Mar at 0100 local time while berthed at Pulau Citlim jetty. Thieves armed with knives et three persons escape by jumping overboard and later released the other three crew. Unlike other hijacki", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.919999999605125, 0.755000000401196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-98", + "dateofocc": "2002-03-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 25 Mar during the middle of the night by three persons armed with knives. Duty seaman alerted crew and raised alarm,whereupon the intruders fled, apparently without taking anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-99", + "dateofocc": "2002-03-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: An unidentified tanker was hijacked 17 Mar at 1320 local time, reported 1 Apr, while underway in position 07-45.9N 097-42.5E. Pirates armed with guns and knives held the ship and later transferred 1,950 metric tons of gas oil to another tanke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [97.708333300303536, 7.76500000024123] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-100", + "dateofocc": "2002-04-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: Container vessel (SEA TIGER) was boarded and robbed 9 Apr at 0100 local time while about 14 miles before its arrival at the data buoy at Guayaquil. Eleven containers were broached and several cartons thrown into the thieves' boat. Master repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.026111099703598, -2.373055600190867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-101", + "dateofocc": "2002-04-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified cargo ship was boarded 3 Apr at 0330 UTC while at Lagos anchorage. Armed persons stole ship's stores and an outboard motor from a lifeboat. Duty seaman was attacked with knives and bottles. When crew sounded alarm thieves esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-102", + "dateofocc": "2002-04-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Militant youths seized a crew boat and ten persons and held them hostage 1 Apr in the Dodo River. The attack involved about 40 persons in 8 boats and was part of anoperation that had begun about two weeks earlier by locals seeking compensation", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.140277800169088, 5.059999999987383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-310", + "dateofocc": "2002-10-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 30 Oct at 1300 UTC while anchored in position 21 41N, 088 01E in the Sagar Roads anchorage, Hooghly River. Thieves armed with long knives boarded at the bow and, while crew dealt with them, a second gang boarde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.016666700390374, 21.683333300160712] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-311", + "dateofocc": "2002-10-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded 30 Oct at 0430 local time while at Bravo Anchorage, Chittagong. Ten persons armed with knives gained access at the stern. They threatened crew, broke open forecastle locker and stole stores. Alarm r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-312", + "dateofocc": "2002-10-30", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified supply ship was approached suspiciously 30 Oct at 0225 local time by an unlit boat while both were underway in position 05 23.4N, 097 37.1E. Duty seaman directed searchlight at boat and crew raised alarm. Shot fired f", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.616666699981408, 5.383333300442928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-313", + "dateofocc": "2002-11-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship (SINAR BATAM) was boarded 4 Nov at 0005 local time while underway in position 00 52.6N, 105 07.1E I vicinity of Bintan Island. Eight persons armed with knives third mate hostage and forced him to call captain to bridge where h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.616666699981408, 0.883333299847777] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-314", + "dateofocc": "2002-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker (MONT BLANC) was boarded 3 Nov at 0130 local time while underway in position 01 04N, 104 56E in vicinity of Bintan Island. Group of about eight persons boarded at stern and took chief engineer hostage, binding him with ropes", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.933333300379843, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-315", + "dateofocc": "2002-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship (CAPE YORK) was boarded 3 Nov at 0110 local time while underway in position 01 03.8N, 104 56.8E off Bintan Island. Eight persons armed with knives entered ship's bridge but fled when crew raised alarm and warned others via shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.950000000276987, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-316", + "dateofocc": "2002-11-01", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified Ro-Ro was boarded 1 Nov at 0500 local time while at Balikpapan outer anchorage. Ship was boarded over starboard quarter but intruders fled in their waiting boat when crew raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-317", + "dateofocc": "2002-10-31", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified Ro-Ro was boarded 31 Oct at 0300 local time while anchored in position 01 21S, 116 57E Balikpapan outer anchorage. Access was gained via anchor chain but crew raised alarm and intruders fled in their waiting boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.949999999765737, -1.349999999653392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-318", + "dateofocc": "2002-10-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Oct at 0100 local time while at Cigading anchorage. Two persons armed with long knives jumped overboard with a life raft when spotted by crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.950000000309331, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-319", + "dateofocc": "2002-11-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship was boarded 1 Nov at 0040 local time while in position 20 38N, 106 55E, Haiphong Pilot Station. Anti-piracy crew spotted a person on forecastle and raised alarm. Intruder escaped empty handed in a wooden motor bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.916666700372105, 20.633333300261654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-320", + "dateofocc": "2002-11-06", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC: An unidentified bulk carrier was boarded 6 Nov at 0340 local time while at pier no.1, east, Rio Haina. Five persons armed with knives and wooden battens boarded via the forecastle, beta and tied the 2nd officer and hit duty seaman", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.900000000386342, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-321", + "dateofocc": "2002-11-05", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified cargo ship reports being chased 5 Nov at 0510 UTC while underway in position 00 04.5N, 045 05.5E, off Somalia. Master increased speed and mustered crew and boats displayed searchlights as a signal to stop. Ship continued on c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.099999999735417, 0.083333300181607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-322", + "dateofocc": "2002-11-04", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified container ship was approached 4 Nov at 0215 local time while underway in position 08 10N, 052 24E off Somalia. An unidentified speedboat approached from port quarter. Ship altered course and increased speed while master muster", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.400000000061425, 8.166666700101359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-323", + "dateofocc": "2002-11-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN-SOCOTRA: An unidentified bulk carrier was attacked 7 Nov at 0001 UTC while underway in position 12 22N, 054 45E. Two pirates armed with knives boarded from a boat, ransacked the master's cabin, held him hostage, and demanded money and the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.750000000092427, 12.366666699697589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-165", + "dateofocc": "2003-05-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker reports suspicious approach 10 May between 2040 and 2110 local time while underway in position 04 30S, 107 20E in the Java Sea. A speedboat making 25 knots approached from the starboard bow and followed at a r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.333333300277559, -4.500000000249884] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-166", + "dateofocc": "2003-05-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 8 May at 0340 local time while underway in position 00 48.79N, 105 06.10E off Bintan Island. Seven pirates armed with guns and knives boarded from a speedboat. Duty crew were attacked on deck and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.099999999877127, 0.816666699908637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-167", + "dateofocc": "2003-05-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 May at 0500 UTC while underway in position 01-04N, 105-06E off Bintan Island. Eight persons armed with guns and knives took master, chief engineer, chief officer and watchman hostage, stole ship's c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.099999999877127, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-168", + "dateofocc": "2003-05-07", + "subreg": "93", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified container ship reports suspicious approach 7 May at 2345 local time while underway in position 05 11N, 104 58.5E in the South China Sea. Two unlit craft were observed off port and starboard bows at a range of 1.2nm whic", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.983333300246557, 5.183333300076754] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-169", + "dateofocc": "2003-05-09", + "subreg": "55", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BULGARIA: An unidentified bulk carrier was boarded 9 May between 1630 and 1915 local time while berthed at Bourgas. Thieves entered the master's cabin and stole ship's cash (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [27.483333299988544, 42.483333299574269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-170", + "dateofocc": "2003-05-18", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier was followed 18 May at 0745 local time by six persons in two speedboats while underway in position 12 21N, 045 12E, 30 mi SE of Aden. The bulk carrier was followed for 45 minutes and when the boats approached", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.200000000368163, 12.349999999800445] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-171", + "dateofocc": "2003-05-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 17 May at 1010 local time while underway in position 12 53.2N, 049 22.5E. Twelve persons in a vessel towing two small boats approached to within 1 nm and then transferred to the small", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.38333330006725, 12.883333300235847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-172", + "dateofocc": "2003-05-17", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports suspicious approach 17 May at 0930 UTC by two speedboats with four persons each while underway in position 13 12N, 048 41E. Ship raised alarm and crew activated fire hoses, whereupon boats moved away (I", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.683333300134507, 13.200000000232592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-132", + "dateofocc": "2002-04-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 26 Apr at 0030 UTC while at working anchorage, Tanjung Manis. The thieves broke into forward storeroom and stole ship's stores. Master reported to local police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.303055599560935, 3.363611099927255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-173", + "dateofocc": "2003-05-17", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified cargo ship reports being chased 17 May at 0750 local time while underway in position 14 42.2N, 051 34E. Three \"well-equipped\" fast craft doing 20 knots pursued the ship for 1 hour 15 minutes before master raised alarm, cre", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.566666700425685, 14.699999999831448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-174", + "dateofocc": "2003-05-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 16 May at 0400 local time while underway in position 12 18N, 047 33E. Six persons in a speedboat followed for one hour before heading for the ship and attempting to board. Crew raised a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.550000000399166, 12.299999999933732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-175", + "dateofocc": "2003-05-15", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified chemical tanker reports being followed 15 May at 1030 local time while underway in position 13 24.8N, 049 09.0E. Five speedboats containing 5 to 6 persons each followed at a distance of 3 nm. When boats approached to withi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.149999999731449, 13.416666699596647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-176", + "dateofocc": "2003-05-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded16 May at 0100 UTC while at Chittagong anchorage 'A'. Five persons armed with steel bars boarded at bow but jumped overboard and escaped empty handed when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-11", + "dateofocc": "2004-01-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 4 Jan at 2230 UTC while anchored in position 01-21S 116-58E at Balikpapan. Five persons gained access via the hawse pipe, entered the bosun's store, and store ship's stores and safety equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.349999999653392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-12", + "dateofocc": "2004-01-10", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified container ship was boarded 10 Jan at 2330 local time while anchored in position 12-12.2S 077-13.0W anchorage 12, Callao. Three persons armed with guns and knives entered engine room and stole spare parts.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.216666699710231, -12.370000000135633] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-13", + "dateofocc": "2004-01-02", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: An unidentified chemical tanker reports detecting two unlit boats 2 Jan at 1330 UTC while underway in position 01-04.3N 103-36.0E. The two boats crossed the tanker's bow, switched on powerful searchlights and approached at high speed.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.071666700397998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-14", + "dateofocc": "2004-01-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The bulk carrier (ROSINA TOPIC) was boarded 12 Jan at 0230 local time while anchored at Samarinda in position 01-02S 117-15E. Four persons armed with long knives and steel bars gained access via the hawse pipe and threatened the duty seaman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.249999999865395, -1.03333329965659] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-15", + "dateofocc": "2004-01-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 10 Jan during the early morning at Tarahan coal terminal. Armed persons entered the engine room and stole spare parts.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.854444400070747, 3.283333299745493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-16", + "dateofocc": "2004-01-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified LPG tanker reports attempt to board 17 Jan at 0330 local time while ship was anchored at Tema. Persons in two boats approached but fled when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.595833300421646, 5.600555600057362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-17", + "dateofocc": "2004-01-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 17 Jan at 2100 local time while at anchorage Alpha, Bangladesh. Four armed persons gained access via the stern but fled empty handed when anti-piracy watch responded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.91499999979527, 21.70833329964438] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-18", + "dateofocc": "2004-01-14", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports suspicious approach 14 Jan at 1423 UTC while underway in position 01-42.6N 105-48.1E. Two speedboats approached and one crossed under bows,but moved away when crew directed searchlights against them.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.801666699836915, 1.706666699694608] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-19", + "dateofocc": "2004-01-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified refrigerated cargo ship reports two attempts to board 22 Jan at 0255 and 0350 local time while anchored at Tema. The first occasion involved seven persons in a single boat, while the second involved about 20 persons in two boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-20", + "dateofocc": "2004-01-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified refrigerated cargo ship was boarded 22 Jan at 0030 UTC while anchored .7 mi. from the Tema breakwater. Three persons stole ship's stores before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-21", + "dateofocc": "2004-01-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Jan at 1215 UTC while anchored in position 01-11S 116-46E, Balikpapan. Ten persons armed with knives assaulted the duty seaman and tied him up while they stole ship's property and escaped down the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, -1.18333330015605] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-22", + "dateofocc": "2004-01-27", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified container ship reports attempt to board 27 Jan at 0350 local time while in position 18-33.8N 072-22.9W, anchorage 'd', Port au Prince. Four persons armed withknives tried to board using grappling hooks but fled when duty seaman r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.381666699918071, 18.563333300203681] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-23", + "dateofocc": "2004-01-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: An Italian yacht captain was shot dead 28 Jan after he and two companions had been robbed in the early morning hours while the South African-flag yacht (JOE'S DOG) was about 50 km from Isla Margarita on a voyage from St. Vincent to Puerto la", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.792777799749729, 11.092777799725297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-24", + "dateofocc": "2004-01-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "NIGERIA: An unidentified supply vessel was boarded 28 Jan at 1515 local time while berthed at Ohne Port. Three persons tried to steal ship's stores but jumped into their canoe and fled when duty seaman raised alarm. Seaman was slightly injured in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.095277799724215, 4.182499999943218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-25", + "dateofocc": "2004-01-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "YEMEN: An unidentified cargo ship reports \"several\" attempts to board 29 Jan at 0555 local time while underway in position 14-34.6N 049-33.5E, 7.5 nm from Ash Shihr Oil Terminal.Four persons, armed with shotguns, made passes at the ship until crew sound", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.558333300050435, 14.576666699742077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-103", + "dateofocc": "2002-03-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: The Liberian flag cargo ship (SEA BRILLIANCE) was one of two ships attacked during the night of 31 Mar-1 Apr at Owendo mooring station. Master and chief mate were injured and the mate hospitalized. The ship's safe was emptied.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.500000000202874, 0.283333299648461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-104", + "dateofocc": "2002-03-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: The Cyprus-flag cargo ship (TIM BUCK) was one of two ships attacked during the night of 31 Mar-1 Apr at Owendo mooring station. Master reported seriously injure din machete attack. This marks three attacks accompanied by significant violence in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.500000000202874, 0.283333299648461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-105", + "dateofocc": "2002-04-05", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified cargo ship reports being \"chased closely\" 5 Apr at 0330 UTC while underway in position 00-07N 043-58E off Somalia. Five speedboats with six or seven armed persons each approached form both sides. Ship altered course and incre", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.966666700000076, 0.116666699975895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-106", + "dateofocc": "2002-04-04", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified tanker reports suspicious approach 4 Apr at 0745 UTC while underway in position 14-21N 050-41E. Five speedboats each with 3 to 4 persons approached on the starboard beam at a distance of about five miles. The five boats pos", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.683333300199195, 14.349999999865133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-107", + "dateofocc": "2002-04-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified barge under tow in position 08-55N 076-05E was boarded and robbed 3 Apr at 0230 UTC off Quilon port. Three persons boarded the barge from two boats with four persons each. The thieves stole mooring lines.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.083333299941444, 8.916666699900759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-108", + "dateofocc": "2002-04-07", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTERN RED SEA: An unidentified special purpose ship reports suspicious approach 7 Apr at 0950 UTC by towboats with three men each. Ship was underway in position 13-16.5N 043-07.7Ewhen boats were observed on reciprocal course. At one mile boats revers", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.128333300283145, 13.274999999583031] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-109", + "dateofocc": "2002-04-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded and robbed 5 Apr at 0100 local time while anchored at Belawan. Three persons climbed the anchor chain, broke into the forward locker and stole ship's stores. When crew was alerted the thieves jumpe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.775000000099737, 3.925000000224941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-110", + "dateofocc": "2002-03-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "GHANA: An unidentified bulk carrier was boarded 30 Mar at 2250 UTC while at Tema anchorage. About thirteen persons boarded from a small wooden boat via the anchor chain. Crew chased them and they jumped overboard and escaped, apparently without stealing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-111", + "dateofocc": "2002-04-10", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT SHIP", + "descriptio": "SOMALIA: An unidentified Ro-Ro reports suspiciousapproach 10 Apr at 1200 UTC while underway in position 00-56S 043-41E 70 miles from Chisimayo. Three white boats approached from the port side and followed when the ship altered course. Two other white", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.683333299972844, -0.933333299923163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-112", + "dateofocc": "2002-04-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "An unidentified cargo ship was boarded 12 Apr at 0430 local time while anchored at Chittagong. Four persons armed with knives stole ship's stores before watch raised alarm and the intruders escaped in a motorboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-113", + "dateofocc": "2002-04-12", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier reported suspicious approach 12 Apr at 2140 UTC while underway in position 04-38N 098-42E by a boat off its starboard side. Crew directed searchlight at the boat which withdrew after ten minutes", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 4.633333299744208] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-114", + "dateofocc": "2002-04-09", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG carrier was boarded 9 Apr at 0200 local time while anchored at Bontang. Thieves boarded via the anchor chain, broke into forecastle and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.483333300201139, 0.100000000078751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-115", + "dateofocc": "2002-04-12", + "subreg": "94", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EAST CHINA SEA: An unidentified chemical tanker reports suspicious approach 12 Apr at 0100 local time while underway in position 25-22.7N 120-19.4E. A very fast craft approached abeam.Ship's master altered course, switched on all lights, and directed A", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.323333300185027, 25.378333299933956] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-116", + "dateofocc": "2002-04-16", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU:An unidentified bulk carrier reported attempt to board 16 Apr at 0800 UTC while anchored at Callao. Two persons in speedboat approached and one tried to board via anchor chain but fled when crew alerted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-117", + "dateofocc": "2002-04-23", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship was boarded 23 Apr at 0155 local time while approaching the pilot buoy at Guayaquil. Four persons were spotted on deck near container bay 15 by a guard at whom they fired two shots before jumping over side and fl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-324", + "dateofocc": "2002-11-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 6 Nov at 0145 local time while in position 13 05.8N, 080 21.8E, Chennai anchorage. Three persons from a speedboat used grappling hooks to gain access. Alert watch sounded alarm and the intruders jumped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.366666700098051, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-325", + "dateofocc": "2002-11-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: U. S. flag roll-on/roll-off ship (MAERSK CONSTELLATION) was boarded 18 Nov at 2130 local time while anchored off Dar es Salaam anchorage no. 2. Thieves armed with knives boarded at bow via anchor chain and took bosn hostage. Thieves stole bos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.299999999907584, -6.816666700311316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-326", + "dateofocc": "2002-11-16", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN-SOCOTRA: An unidentified bulk carrier reports being called on VHF 16 Nov at 1616 UTC by persons in a small boat who attempted to get vessel to alter course toward the boat under the ruse that it would run into fishing nets. Bulk carrier wa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.566666699623397, 11.550000000134276] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-327", + "dateofocc": "2002-11-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 18 Nov at 0210 local time while at anchor off fairway buoy, Cochin. One person boarded at forecastle while four accomplices remained in their boat. Duty seaman raised alarm and intruder jumped overboar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.233333300440904, 9.966666699799816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-328", + "dateofocc": "2002-11-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was approached 17 Nov at 0550 local time while anchored in position 22 15N, 091 45E, Chittagong. Duty officer raised alarm and boats moved away, but at 0640 thieves in a boat stole all the zinc anodes from rudde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-329", + "dateofocc": "2002-11-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 7 Nov at 0205 local time at Chittagong anchorage. Seven persons armed with knives, crowbars and large hooks boarded at the stern and threatened duty cadet with a knife. Duty seaman raised alarm and int", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-330", + "dateofocc": "2002-11-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified VLCC was boarded 12 Nov at 1845 UTC while anchored in position 01 21.5S, 116.58E at Balikpapan. Five persons climbed anchor chain but escaped when spotted and alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.366666699550535] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-331", + "dateofocc": "2002-11-14", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified bulk carrier was subject to attempted boarding 14 Nov at 2115 UTC while underway in position 17 51.5N, 120 08E, about 15 nm off Luzon's west coast. Several unlit boats approached of which two moved toward the ship at high s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.133333300331742, 17.86666670032514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-332", + "dateofocc": "2002-11-22", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC: An unidentified LPG carrier was boarded 22 Nov at 0030 local time while moored at buoys, Rio Haina by six persons, one armed with a rifle. Duty seaman sounded alarm and thieves jumped into the sea. Crew later discovered safety equi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-333", + "dateofocc": "2002-11-19", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports being approached 20 Nov at 1810 UTC by two large speedboats. Ship was underway in position 12 05N, 051 40E at time. Boats approached to within 4 m and increased speed from 5.5 knots to 15.5 knots. Mast", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.666666700159169, 12.083333299670358] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-334", + "dateofocc": "2002-11-19", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN-SOCOTRA: A bulk carrier reports that 19 Nov at 2250 UTC, while underway in position 13 04N, 057 07E, east of Socotra, persons aboard a large boat called via VHF and ordered master to alter course toward them. Master ignored the call, illum", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.11666670002063, 13.066666699630275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-335", + "dateofocc": "2002-11-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAB-EL-MANDEB: An unidentified bulk carrier reports suspicious approach 21 Nov at 0503 UTC while underway in position 12 41N, 043 20E. Eight persons in two white speedboats \"attemptedto board\" (NFI) but crew raised alarm and pressurized fire hoses and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.333333300006473, 12.683333299869616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-336", + "dateofocc": "2002-11-17", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: According to a 24 Nov report two fishermen were robbed of their outboard engines a week prior by a group of pirates armed with M16s. The thieves fled in the direction of the southern Philippines. Malaysian forces have added boats to patrol th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.999999999664738, 6.999999999672355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-337", + "dateofocc": "2002-11-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: An unidentified fishing boat was fired upon 17 Nov at 0130 local time while casting nets 67 nm off Pantai Remis, Perak. One crew member was struck by a bullet before the captain steered the boat toward the coast.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.500000000033651, -2.500000000185196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-177", + "dateofocc": "2003-05-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 15 May at 1850 UTC while at Chittagong anchorage 'A'. Two persons boarded at the stern but escaped empty handed when duty seaman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-178", + "dateofocc": "2003-05-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports attempted boarding 12 May at 0445 local time while underway in position 05 12N, 098 33E. Ship increased speed and took evasive maneuvers when approached by persons in three speedboats. Crew dire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.550000000249838, 5.199999999973898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-179", + "dateofocc": "2003-05-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 17 May at 0050 local time while underway in position 03 07N, 105 10E in the Anambas Islands. Three small craft were observed on radar to increase speed from 15 to 35 knots and head directly to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.166666699640984, 3.116666700072926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-180", + "dateofocc": "2003-05-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 16 May at 1940 UTC while in position 01 42.1N, 101.26.9E, Dumai anchorage. Three persons armed with long knives stole engine spares and escaped when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-181", + "dateofocc": "2003-05-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 14 May at 0230 local time while underway in position 01 35S, 117 16.8E, 25 miles from the outer buoy, Balikpapan. The pirates stole two life rafts and a mooring line. Earlier that day five persons", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.283333299834908, -1.583333299989135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-182", + "dateofocc": "2003-05-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was pursued and fired upon by machine gun fire 13 May at 0545 UTC while underway in position 04 31N, 098 23E off Kuala Langsa, Sumatra. Four persons dressed in military style uniforms and armed with machine guns w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.383333299853234, 4.516666699938355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-183", + "dateofocc": "2003-05-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 13 May at 0445 local time while underway in position 01 25N, 105 25E off Bintan Island. Five persons armed with knives and guns boarded at stern and took a crew member hostage. They went to the bri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.416666699873929, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-184", + "dateofocc": "2003-05-15", + "subreg": "91", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified cargo ship reports being chased 15 May at 0845 local time while underway in position 16-25.7N 119-38.8E, 10 nm off Luzon. Three speedboats with 4 to 5 persons each were spotted by crew who mustered and sounded ship's whist", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.649999999763168, 16.416666699693678] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-185", + "dateofocc": "2003-05-12", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 12 May at 0340 local time while anchored off buoy no. 24, Buenaventura. Four persons armed with long knives boarded at the forecastle, took duty seaman hostage and tied him up. They broke into forecast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-186", + "dateofocc": "2003-05-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified chemical tanker reports being followed 20 May at 0600 UTC while underway in position 14 14.5N, 050 29.7E. Two speedboats paralleled the tanker's course for 30 minutes until crew mustered and activated fire hoses, whereupon", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 14.250000000131649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-187", + "dateofocc": "2003-05-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 21 May at 1945 local time while at Chittagong anchorage 'B'. One person armed with a steel bar gained access at the forecastle but jumped overboard and escaped in a boat with three accomplices whe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-188", + "dateofocc": "2003-05-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 25 May at 0200 local time while underway in position 01 02.3N, 105 00.3E off Pulau Bintan. Twelve persons armed with guns and knives stole ship's cash and equipment and crew's belongings before leaving", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.583333299966853, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-189", + "dateofocc": "2003-05-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 24 May at 0315 local time while in position 02 57S, 118 35E in the South Makassar Strait. The thieves boarded at the forecastle and stole a life raft. Boarding via the forecastle suggests ship was at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.583333299966853, -2.949999999884994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-190", + "dateofocc": "2003-05-23", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship was boarded 23 May at 2315 local time while anchored in position 1016.0N, 107 05.2E, 3 nm south of Vung Tau. Two persons armed with knives were spotted by duty officer who raised alarm, directed lights at their wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.083333300044671, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-26", + "dateofocc": "2004-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: The Romanian flag bulk carrier (CAPE HARALAMBOS) was boarded 29 Jan at 0135 local time while underway in position 01-10.6N 103-27.2E. Three persons armed with knives assaulted the master and tied him in his cabin. The pirates stole c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.491666700059, 1.136666700134811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-27", + "dateofocc": "2004-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: The Romanian flag bulk carrier (CAPE HARALAMBOS) was boarded 29 Jan at 0135 local time while underway in position 01-10.6N 103-27.2E. Three persons armed with knives assaulted the master and tied him in his cabin. The pirates stole c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.453333300008183, 1.176666700387898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-28", + "dateofocc": "2004-01-30", + "subreg": "71", + "hostility_": "PRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker reportsattempted boarding 30 Jan at 1530 UTC while underway in position02 02S, 108 33E, south of Karang Ontario light house, Karimata Strait. Four boats approached the tanker; one each from port and starboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.549999999673958, -2.033333299688934] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-29", + "dateofocc": "2004-01-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 30 Jan at 0330 local time while underway in position 01 23.5N, 117 10.0E, 23 nm from Balikpapan. Four persons armed with long knives stole two life rafts and fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.166666700029054, 1.391666699724851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-30", + "dateofocc": "2004-02-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "VIETNAM: Two fishing boats were attacked by gunfire and hijacked 1 Feb off Kien Giang Province. Three pirates pulled alongside the two boats and opened fire, forcing the eighteen crew to jump into the water. The pirates then stole the boats and fled i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.128888899678884, 12.302222200386439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-31", + "dateofocc": "2004-02-02", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified LPG tanker was boarded 5 Feb at 0815 UTC while in position 01-24-09S 048-30-18W at Belem inner anchorage. Four persons operating form a small boat stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.505000000130622, -1.402499999648342] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-32", + "dateofocc": "2004-02-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "DERELICT VESSEL", + "descriptio": "BANGLADESH: The Mongolian flag (STAR 4) was boarded 7 Feb at 0300 local time while at Chittagong inner anchorage by a gang which stole property from the ship which was awaiting scrapping. Two watchmen who tried to resist the thieves were injured and la", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-33", + "dateofocc": "2004-01-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "SOUTHERN RED SEA: An unidentified supply vessel was challenged and stopped 30 Jan by 8 persons armed with automatic weapons operating from an 18-foot unmarked high-powered launch. 5 persons wore military uniforms. 6 person boarded the supply vessel, h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [40.267777799747023, 17.348611099610594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-34", + "dateofocc": "2004-02-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "MALACCA STRAIT: An unidentified tug, with barge in tow, was fired upon 9 Feb at 1900 UTC while underway in position 04-37N 099-28E in the Northern Malacca Strait. Ten persons in a wooden fishing boat opened fire with automatic weapons and the tug's cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.466666700445899, 4.616666699671782] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-35", + "dateofocc": "2004-02-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: An unidentified bulk carrier was boarded 3 Feb at 1955 local time while underway in position 01-05.42N-103-34.03E, west of Phillip Channel. Crew raised alarm and the single intruder fled empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.090277800172998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-36", + "dateofocc": "2004-02-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 4 Feb at 1550 UTC while underway in position 02-43N 118-34E, Celebes Sea. Ten persons armed with knives and crowbars and operating in three speedboats ten meters in length were deterred w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.56666669989454, 2.716666700239841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-37", + "dateofocc": "2004-02-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Four crew members of the 640-ton tanker (CHERRY 201) were reported shot dead 5 Feb following the failure of negotiations for payment of ransom in a previously unreported 5Jan hijack of the ship with a cargo of 1,000 tons of palm oil off Aceh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.398333299658646, 3.785555599589486] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-38", + "dateofocc": "2004-02-12", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was approached 12 Feb at 0744 UTC while drifting in position 05-09N 004-21E off Lagos by five persons armed with guns in a tugboat. Master raisedalarm and ship gathered speed whereupon the tug moved away toward Esc", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.350000000441014, 5.150000000107184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-118", + "dateofocc": "2002-04-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: The refrigerated carrier (FRIO JAPAN) was boarded 20 Apr at 0200 while berthed at Port Harcourt. Six persons armed with clubs and machetes overpowered two security guards, injuring one. While crew locked themselves in the accommodation block", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-119", + "dateofocc": "2002-04-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified special purpose ship reports suspicious approach 18 Apr at 0848 local time while in position 12-22.6N 044-12.9E. Six men in a seven-meter boat approached to a distance of about 3 cables but withdrew when fire hoses were di", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.215000000205919, 12.376666700210535] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-120", + "dateofocc": "2002-04-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: An unidentified bulk carrier reports attempt to board 17 Apr at 1030 local time while underway in position 14-08N 049-39E off Mukalla. Crew activated fire hoses at six fast boats which withdrew after about 30 minutes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.650000000197281, 14.133333299601759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-121", + "dateofocc": "2002-04-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "STRAIT OF MALACCA: At 0630 local time 17 Apr pirates armed with rifles seized four fishing trawlers and their crew of twelve and took them to Sumatra where they were held for ransom of RM 30,000 (approx $7,400). Crew released when ransom paid then lodg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.006666700265555, 3.171111099945733] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-122", + "dateofocc": "2002-04-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: An unidentified fishing trawler was hijacked 10 Apr after departing Kuching, Sarawak. Trawler was taken to Pemangkat, Kalimantan where its owners were negotiating release.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.81666669990102, 2.283333299713149] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-123", + "dateofocc": "2002-04-18", + "subreg": "72", + "hostility_": "PRIATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 18 Apr at 2315 local time while anchored at Adang Bay. One person armed with a knife escaped with ship's stores when crewraised alarm and fled in a waiting boat containing three accomplices", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.654999999922552, -5.714999999619181] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-124", + "dateofocc": "2002-04-22", + "subreg": "93", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EAST CHINA SEA: An unidentified bulk carrier reports suspicious approach 22 Apr at 2000 local time while underway in position 10-46N 111-12E 130 miles off the coast of Vietnam. Two unlit boats making 25 knots came up from astern and approached to withi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.199999999804618, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-125", + "dateofocc": "2002-04-25", + "subreg": "21", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PANAMA (PACIFIC):An unidentified fishing vessel was attacked 25 Apr in the Bay of Panama about 1 nm from Brujas. Six persons armed with revolvers and automatic weapons stole 1,200 lb of fish product. Captain was shot in stomach, engineer was shot six t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.541944400075977, 8.590555599641448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-126", + "dateofocc": "2002-04-27", + "subreg": "22", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified refrigerated cargo ship reported suspicious approach 27 Apr at 0230 UTC while underway at 21 knots off Guayaquil. A speedboat containing four persons passed close abeam. When crew switched on lights and sounded alarm boat with", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-127", + "dateofocc": "2002-04-25", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship reported an attempt to board 25 Apr while underway in position 01-10S 081-20W 21 nm west of Isla de la Plata. Three persons in a speedboat came within three meters of ship but withdrew when crew mustered and swit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.333333299645403, -1.166666700083624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-128", + "dateofocc": "2002-04-24", + "subreg": "22", + "hostility_": "24-APR-2002", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: The Antigua flag container ship (MAERSK LA GUAIRA) was boarded early 24 Apr as it entered Manta harbor. Thieves broke in a container at that time. Later the same day as the ship was entering Guayaquil persons boarded the ship at the entrance", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.716666700273038, -0.949999999820307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-129", + "dateofocc": "2002-04-23", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship was boarded 23 Apr at 0155 local time while approaching the pilot buoy at Guayaquil. Four persons were spotted on deck near container bay 15 by a guard at whom they fired two shots before jumping over side and fl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-130", + "dateofocc": "2002-04-28", + "subreg": "62", + "hostility_": "SUSPICICIOUS APPROACH", + "victim_d": "MERCHANET VESSEL", + "descriptio": "SOUTHERN RED SEA: An unidentified bulk carrier reports suspicious approach 28 Apr at 1030 local time while underway in position 14 50N, 041 55E. A boat with twenty persons aboard approached and followed the bulk carrier for twenty minutes during which", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.916666700068674, 14.833333300433765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-131", + "dateofocc": "2002-04-26", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified tanker was boarded 26 Apr at 0400 local time while at IOI berth, Sandakan. Thieves broke into forward storeroom and stole ship's stores before escaping in a boat. Storeroom had anti-piracy lock (not specified) but thieves remo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.833333300142726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-338", + "dateofocc": "2002-11-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 Nov at 2030 UTC while anchored in position 03 12S, 116 20E at Pemancingan. Six persons armed with knives boarded via the anchor chain from a wooden boat. Duty officer raised alarm, crew mustered, an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.333333299669334, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-339", + "dateofocc": "2002-11-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 20 Nov between 1000 and 1100 UTC while anchored in position 01 24.0S, 116 56.8E at Balikpapan. Six persons armed with long knives and crowbars came up the anchor chain, broke open forward store and stole sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.949999999765737, -1.400000000419425] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-340", + "dateofocc": "2002-12-02", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified cargo ship was boarded 2 Dec between 0100 and 0130 local time while inbound to Georgetown. Thieves stole stores from forecastle locker and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-341", + "dateofocc": "2002-11-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "NIGERIA: A Nigerian fishing trawler was attacked 28 Nov while anchored at the Fairway Buoy, East Mole, Lagos. About 20 masked and painted thieves approached the boat in two high-speed motorboats and stole part of their catch. Some of the fishing boat'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-342", + "dateofocc": "2002-12-01", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "STRAIT OF MALACCA: An unidentified yacht reports being intercepted and followed 1 Dec during the night while underway in position 01 27.5N, 104 37.3E. Three boats made the intercept. One directed its searchlight aT the yacht while following for 40 minu", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-343", + "dateofocc": "2002-12-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "INDONESIA: An unidentified tug and barge were hijacked 1 Dec at 2030 local time while anchored in position 01 03.46N, 103 23.54E. Eight persons armed with guns assaulted the second engineer and tied him to a barge anchored nearby before escaping in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.399999999912097, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-344", + "dateofocc": "2002-11-26", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified ro-ro ship was boarded 26Nov at 2150 UTC while anchored in position 00 14.7S, 117 32.8E at Samarinda anchorage. Three persons gained access via the stern andtried to steal a life raft. Crew raised alarm and the three fled em", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-345", + "dateofocc": "2002-11-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified ro-ro vessel was boarded 25 Nov at 0100 UTC while anchored in position 00 14.7S, 117 32.8E at Samarinda anchorage (presumably same vessel as in #20020344). Persons posing as stevedores broke into bosun's stores, stole safety", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-346", + "dateofocc": "2002-11-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 Nov at 2030 UTC while anchored in position 03 12S, 116 20E at Pemancingan. Six persons armed with knives boarded via the anchor chain from a wooden boat. Duty officer raised alarm, crew mustered, an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.333333299669334, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-347", + "dateofocc": "2002-09-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAITTen pirates armed with guns and long knives approached a chemical tanker undersay. Eight pirates boarded from stern while two remained in long boat with two outboard engines. Pirates took master and all officers hostage. They stole crew's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.716666699941186, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-348", + "dateofocc": "2002-11-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIAOn 2 Nov. at 1810Z pirates armed with long knives boarded container ship while underway. They entered bridge and threatened duty officer, who sounded alarm. Pirates escaped empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.950000000276987, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-349", + "dateofocc": "2002-11-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA. At 1830Z on 2 Nov. about eight pirates armed with long knives boarded chemical tanker at stern. Pirates tried to break open captain's safe but failed. They then took Ch. Engineer hostage, tied his hands, assaulted him, and robbed his personal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.933333300379843, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-350", + "dateofocc": "2002-12-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified bulk carrier was subject to attempted boarding 9 Dec at 0120 local time while underway 1 nm west of sea buoy at Buenaventura outer roads. Seven persons in a wooden motorboat attempted to board using grappling hooks but were re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-351", + "dateofocc": "2002-12-05", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: An unidentified cargo ship reported suspicious approach 5 Dec at 2355 local time while underway in position 16 24.9N, 061 24.2E. An unlit vessel was spotted on radar 8 nm ahead, proceeding at 5 knots. Unknown vessel increased speed to 25", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.400000000352463, 16.416666699693678] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-191", + "dateofocc": "2003-05-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified roll-on/roll-off ship was boarded 30 May at 0330 local time while anchored in position 06 17N, 003 22E at Lagos. Four persons armed with knives and wooden clubs assaulted duty seaman who nonetheless raised alarm. The thieves s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-192", + "dateofocc": "2003-05-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 30 May at 1950 local time while at Chochin anchorage. Ten persons boarded at the forecastle but jumped overboard and escaped when crew sounded alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.233333300440904, 9.966666699799816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-193", + "dateofocc": "2003-06-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was raided 2 Jun at 1030 local time while preparing to depart Mongla, with pilot on board. Twenty persons armed with long knives and axes threatened the crew, stole ship's property and stores, and left after 30", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 22.466666699754398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-194", + "dateofocc": "2003-05-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified livestock carrier reports interdiction 30 May at 0515 while underway in position 01 18.2N, 104 07.3E in the Johor Port pilot boarding ground. Two unlit boats with 4 to 7 persons each were sighted 6.5 cables (about .65 nm) ahead", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-195", + "dateofocc": "2003-05-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 31 May at 2355 while underway in position 01 03S, 107 17E near Mendanau Island, Gelasa Strait. Four persons armed with long knives took two crew hostage and held them at knifepoint. The remaining crew muster", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.283333300410845, -1.049999999553734] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-196", + "dateofocc": "2003-06-04", + "subreg": "25", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TRINIDAD & TOBAGO: An unidentified ro/ro was approached several times 4 Jun at 0605 UTC while underway in position 12 01.6N, 059 43.5W near Tobago Island. Five persons in a unlit fast craft came alongside several times but ship maneuvered evasively to", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.725000000079774, 12.026666700244164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-197", + "dateofocc": "2003-05-04", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "LIBERIA: The Antigua-flag cargo ship (ST. PAULI) was boarded 4 May (reported 4 Jun) at 0615 while awaiting pilot outside breakwater at Monrovia. Eight persons in fatigue uniforms demanded to board the ship from a big canoe, declaring they were part of a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.816666700440692, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-198", + "dateofocc": "2003-06-03", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TUG", + "descriptio": "GULF OF ADEN: An unidentified tug towing a tanker was shadowed 3 Jun while underway in position 12 45N, 045 38E. Two boats with seven men each were kept at bay when crew mustered and activated fire hoses. Twenty minutes later the same two boats approa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.633333300170818, 12.74999999963353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-199", + "dateofocc": "2003-05-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified fishing trawler was boarded 28 May at 1630 local time while underway off Pangkor Island, Perak. Pirates armed with guns shot and injured the master and kidnapped two crewmembers. Raids of this kind in the region gene", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.333333300051208, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-49", + "dateofocc": "2004-02-23", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN: An unidentified yacht reports being followed suspiciously 23 Feb at 1900 UTC while underway in position 13-45N 049-50E. Yacht's master took evasive action and boat moved away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.833333299767048, 13.749999999665818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-200", + "dateofocc": "2003-06-03", + "subreg": "74", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "SOUTH PACIFIC: An unidentified yacht reports suspicious approach by a grey colored fishing boat 3 Jun at 1315 local time while underway in position 11 32.6S, 116 49.2E between Christmas Island and Darwin, Australia, 190 nm south of Bali. Yacht attempted", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -11.550000000342948] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-201", + "dateofocc": "2003-06-13", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 13 Jun at 0140 local time while at the inner anchorage, Kingston. Four persons were spotted on the forecastle; duty officer raised alarm and the intruders fled empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.783333300082802, 17.966666700058568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-202", + "dateofocc": "2003-06-09", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 9 Jun at 0415 local time while five miles from the sea buoy, Kingston, awaiting a pilot. Duty officer sounded alarm and the thieves escaped with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.783333300082802, 17.833333299631477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-39", + "dateofocc": "2004-02-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "NDONESIA: Three trawlers with a total crew of 12 persons were boarded 2 Feb at 1100 local time at Pulau Jerajak. Twelve persons approached under the pretext of buying fish and when they got close five persons armed with M16 rifles took the 10 hostage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.314999999951738, 5.339722200284882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-40", + "dateofocc": "2004-02-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA: The Indonesian flag tug (SINGSING MARINER) and its barge (KAPUAS 68) with a cargo of 3,000 tons of palm oil were attacked 9 Feb at midnight on passage from Satui, Kalimantan for Butterworth, Malaysia. Four pirates boarded the barge, kidnappe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.057777800167685, -2.355277799617681] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-41", + "dateofocc": "2004-02-03", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified tanker was boarded 3 Feb between 0300 and 0400 while in position 20- 50.40N 107-08.20E at Hongay inner anchorage. Five persons stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.136666699965531, 20.840000000012026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-42", + "dateofocc": "2004-02-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 19 Feb at 0220 UTC while at Guanta port. Two armed persons threatened the bosun with knives but escaped empty handed when alarm was sounded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.511111099781886, 10.25055560025271] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-43", + "dateofocc": "2004-02-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: An unidentified Egyptian fishing vessel was hijacked in January by gunmen working for the Somali fishing firm Raas in what was termed a commercial dispute. Twenty-three of the24-person crew were freed 23 Feb at Beravo, about 150 km south of Mo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.91416670003747, 0.863333299721205] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-44", + "dateofocc": "2004-02-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 15 Feb at 0245 local time while at Dumai outer anchorage. Duty officer raised alarm; crew directed searchlights at boat withseveral persons, and manned charged fir hoses and boarding was abandon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-45", + "dateofocc": "2004-02-19", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "THAILAND: An unidentified yacht was boarded 19 Feb at 2005 local time while anchored off PV Island off Northern Kolanta, y two persons armed with big knives. Yacht master informed theIMB which in turn notified local authorities who arrived on the scene", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.111388899680605, 9.500555599553934] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-46", + "dateofocc": "2004-02-23", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified container ship was boarded 23 Feb at 0230 local time while at anchorage 'F', Port Au Prince. One persons boarded but fled empty handed, with 3 accomplices in aboat, when duty officer raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.350000000150828, 18.550833299562498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-47", + "dateofocc": "2004-03-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 29 Feb at 2300 UTC at Lagos anchorage. Four persons threw glass bottles and pieces of metal at crew as they stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-48", + "dateofocc": "2004-02-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN: An unidentified yacht was boarded 27 Feb at 1530 local time by persons armed with automatic rifles and big knives, while underway in position 13-25N 047-30E. The thieves stole cash and valuables from the yacht's crew and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.499999999633133, 13.416666699596647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-50", + "dateofocc": "2004-02-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NORTH ARABIAN SEA: An unidentified chemical tanker reports attempt to board 29 Feb at 0625 UTC while underway in position 24-43.6N 061-55.0E. Four persons in two speedboats moved away when alarm raised and crew mustered with activated fire hoses.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.916666699816119, 24.7266666996656] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-51", + "dateofocc": "2004-02-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "BANGLADESH: Seven trawlers were looted and one crew member is missing after pirates struck 27 Feb off Bangladesh's Patharghata Coast. Three trawlers were attacked at noon 30 km s. e. ofPatharghatta and 4 were attacked that night. The pirates reportedl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.333333299727769, 21.534999999688296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-52", + "dateofocc": "2004-02-29", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA-BAB EL MANDEB: An unidentified container ship reports suspicious approach 29 Feb at 1700 local time while underway at the \"Bab el Mandeb Traffic Separation Scheme\". Two speedboats came within 1.5 nm but moved away, possibly due to roug", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [38.341666700155372, 21.097777800305209] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-133", + "dateofocc": "2002-04-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Apr at 0210 local time while at Senipah anchorage. Two persons stole a life raft, lifejackets and ship's stores. When crew mustered thieves jumped overboard and escaped in a small boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.216666699895768, -1.049999999553734] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-134", + "dateofocc": "2002-04-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 27 Apr at 1300 UTC while anchored at Chittagong anchorage 'A'. Armed persons were discovered and jumped overboard escaping with safety equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-135", + "dateofocc": "2002-04-23", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified LPG carrier reports suspicious approach 23 Apr at 0500 local time while underway in position 01-41.4S, 102-51E. Five persons in a boat followed the ship but moved away after crew were alerted.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.849999999579552, -1.684444400398604] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-136", + "dateofocc": "2002-05-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 5 May in the early morning while at anchor at Tanjung Priok. The thieves entered the engine room, tied up the 4th engineer and stole his radio as well as engine spares and escaped before alarm was raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-137", + "dateofocc": "2002-05-02", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 2 May at 2359 while at Jorong anchorage. About 15 to 20 persons were spotted already aboard by the anti-piracy watch which raised alarmand mustered crew. Thieves left after stealing ship's stores. Cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.977222199637481, -4.40722220032626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-138", + "dateofocc": "2002-04-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified tanker was subject to attempted boarding during the night of 2 May while anchored at Golden Grove on the Demerara River, Georgetown, Guyana. Boarding was aborted when crew raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-139", + "dateofocc": "2002-05-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified chemical tanker was boarded 2 May at 0200 local time while anchored at Accra. Ship's stores stolen before alarm raised and port control informed. Police patrol boat detained one boat with stolen stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.20000000002085, 5.533333300043068] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-140", + "dateofocc": "2002-05-11", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports suspicious approach 11 May at 2100 local time while underway in position 12-30 N, 046-23E. An unlit boat approached from the port bow and crossed ahead to try to approach from the starboard side. Crew", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.383333299970218, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-141", + "dateofocc": "2002-05-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 12 May at 1555 UTC while underway in position 00-55N 105-11E near the Berhala Strait. Seven pirates armed with long knives broke open accommodation f\\door and took a cadet hostage at knifepoint forc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.183333299713411, 0.916666699642064] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-15", + "dateofocc": "2002-12-31", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified bulk carrier reports attempt to board 31 Dec at 2310 local time while at outer anchorage, Guayaquil. Five men in a wooden boat were spotted during attempt and withdrew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.883333299913261, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-142", + "dateofocc": "2002-05-11", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports three warning shots being fired at it by \"pirates\" 11 May at 2140 local time while ship was anchored in position 01-19S 127-45E in the Molucca Sea. Ship weighed anchored as pirates kept firing at bridge.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [127.749999999755232, -1.316666699683822] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-143", + "dateofocc": "2002-05-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 10 during \"hours of darkness\" while at berth PT ISAB Wharf, Panjang. Thieves boarded unobserved and broke into forecastle stores stealing a large quantity of ship's stores. Crew suspect ship was boarded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, -5.466666700312658] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-144", + "dateofocc": "2002-05-09", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified cargo ship was boarded unnoticed 9 May at 2315 local time while at anchorage E2 off Mui Vung Tau. Thieves boarded form two boats and stole a quantity of ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-145", + "dateofocc": "2002-05-09", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Six persons in two boats attempted to board an unidentified cargo ship 9 May at 0635 local time at anchorage off Mui Vung Tau. Alert crew prevented boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-146", + "dateofocc": "2002-05-13", + "subreg": "22", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified cargo ship reports suspicious approach and probable attempt to board 13 May at 0220 UTC while underway in position 00-52S 081-16W off Isla de la Plata. A fast speedboat with four persons came alongside and remained there as ship", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.266666699706263, -0.866666699984023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-352", + "dateofocc": "2002-11-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: An unidentified Indonesian fishing trawler was attacked 28 Nov at 2230 local time while off Bukit Tinggi, Tuaran, Sabah. Two assailants armed with M-16 rifles boarded from a small boat and demanded the captain turn over his identification doc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.99999999960005, 6.999999999672355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-353", + "dateofocc": "2002-12-09", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported being followed 9 Dec between 1000 and 1100 local time by a small speed boat while underway in position 05 51N, 096 20E. Two persons in boat were described as wearing big hats and with their faces partly", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.333333299921833, 5.85000000003987] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-354", + "dateofocc": "2002-12-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 Dec at 2300 local time while anchored at Semarang. Persons posing at stevedores hid behind a cargo of plywood on a barge alongside the ship before trying to board. Boarding averted when they were s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.416666700035591, -6.950000000014313] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-355", + "dateofocc": "2002-11-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SINGAPORE STRAIT. Four pirates boarded a fishing trawler. One threatened the captain at gun point and with one other pirate took him to a secluded island while two pirates remained aboard vessel. Pirates told captain to telephone his family and ask for r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.499999999613181, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-356", + "dateofocc": "2002-12-15", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship was boarded 15 Dec between 0500 and 0545 local time while at the fairway buoy, Kingston. Thieves stole ship's property and broke into a container, stealing cargo.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.783333300082802, 17.966666700058568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-357", + "dateofocc": "2002-12-06", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified tanker was boarded 6 Dec at 0110 UTC while anchored in position 10 19.2N, 075 31.5W Bahia de Cartagena. Five persons climbed up anchor chain and broke into Bosun's store. Crew sounded alarm and thieves jumped overboard, escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-358", + "dateofocc": "2002-12-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier reported attempT to board 11 Dec at 1805 local time while at Lagos anchorage. Six persons armed with M16s attempted to climb the anchor chain from a speedboat but aborted the attempt when confronted with an alert c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-359", + "dateofocc": "2002-12-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: An unidentified container ship was boarded 10 Dec at 2300 local time while anchored 4 nm from Colombo port. Armed persons broke open four containers but fled empty handed when crew sounded alarm and mustered.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.849999999735076, 6.949999999805641] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-360", + "dateofocc": "2002-12-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 17 Dec at 0530 local time while at Samarinda anchorage. Five persons armed with knives boarded on the starboard side. Duty seaman was injured while escaping after sounding alarm. The intruders jumped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.116666700162341, 0.51666669980898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-361", + "dateofocc": "2002-12-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: A liquefied gas carrier was boarded 16 Dec at 0610 local time at Jakarta anchorage. Four persons stole safety equipment and escaped in a wooden boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-362", + "dateofocc": "2002-12-15", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 15 Dec at 1805 local time while anchored in position 04 01.7S, 115 59.97E, 2.3 nm from IBT anchorage, Pulau Laut. Two persons from a high speed boat attempted to climb the anchor chain bu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.99999999960005, -4.033333299753622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-363", + "dateofocc": "2002-12-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Dec at 1320 local time while anchored at Jakarta. Armed person from a small boat stole ship's property and stores before escaping in their boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-364", + "dateofocc": "2002-12-09", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported being followed 9 Dec between 1000 and 1100 local time by a small speed boat while underway in position 05 51N, 096 20E. Two persons in boat were described as wearing big hats and with their faces partly", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.333333299921833, 5.85000000003987] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-1", + "dateofocc": "2002-11-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: An unidentified Indonesian fishing trawler was attacked 28 Nov at 2230 local time while off Bukit Tinggi, Tuaran, Sabah. Two assailants armed with M-16 rifles boarded from a small boat and demanded the captain turn over his identification docu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.99999999960005, 6.166666700036672] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-2", + "dateofocc": "2002-12-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "INDONESIA: An unidentified tug and barge were hijacked 22 Dec at 0400 local time from Tanjung Uban, Batam. The hijackers took the master and mate toward shore in a speedboat and later released the mate who made a report at Tanjung Pinang, Bintan. The tu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-203", + "dateofocc": "2003-05-25", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified cargo ship was robbed 25 May (reported 17 Jun) while at South Pier, Port Au Prince. Forecastle store was broken into and ship's stores stolen along with bagged cargo either by stevedores r persons who boarded with them (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.350000000150828, 18.550000000360683] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-204", + "dateofocc": "2003-06-12", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 12 Jun at 2300 local time while at Barranquilla anchorage. Three persons n a boat gained access at the forecastle using grappling hooks. Crew raised alarm and intruders escaped, apparently empty handed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.799999999915315, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-205", + "dateofocc": "2003-06-10", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified cargo ship was boarded 10 Jun at 1950 local time while at Berth No. 5, Buenaventura. Two persons went to the boat deck while a third went into the engine room. Safety equipment was stolen from two life rafts and the thieves es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-206", + "dateofocc": "2003-06-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF GUINEA: An unidentified bulk carrier reports attempt to board 13 Jun at 0730 UTC while underway in position 09 05S, 015 35W about 90 nm west of the Guinea Coast. 15 to 20 persons in a wooden boat apparently abandoned their attempt when duty offic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [-15.583333300441893, -9.083333299781998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-207", + "dateofocc": "2003-06-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF GUINEA: An unidentified bulk carrier reports being boarded and robbed 12 Jun between 2200 and 0600 UTC while underway between 10 53S, 017 17W and 09 38N, 016 05W about 60 to 90 nm west of Guinea. Ship's stores are reported stolen by persons who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.283333300406923, -10.883333300379832] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-208", + "dateofocc": "2003-06-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA: An unidentified supply vessel was boarded 13 Jun between 0300 and 0600 local time while anchored in Luanda Bay. Thieves stole ship's equipment (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.250000000099305, -8.799999999579541] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-209", + "dateofocc": "2003-06-13", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GLUF OF ADEN: An unidentified cargo ship reports being followed in a suspicious manner 13 Jun at 0001 UTC while underway in position 13 29.6N, 049 11.7E, south of Mukalla, Aden. Two speedboats moved away when ship altered course, switched on lights and", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-210", + "dateofocc": "2003-06-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was boarded 16 Jun at 0200 local time while at Chennai anchorage. Three persons boarded at the forecastle, broke open a locker and stole ship's stores. Thieves escaped into a waiting boat when spotted and when alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.300000000334137, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-211", + "dateofocc": "2003-06-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was boarded 14 Jun at 1310 local time while at Chennai anchorage. Three persons broke into forecastle locker and stole ship's equipment. The thieves escaped in a boat containing six accomplices (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.300000000334137, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-212", + "dateofocc": "2003-06-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 11Jun about 2130 local time while at fertilizer jetty, Chittagong. Three persons injured two watchmen and stole ship's stores. Thieves escaped in a boat containing seven accomplices (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-213", + "dateofocc": "2003-06-13", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAB EL MANDEB: An unidentified bulk carrier reports attempt to board 13 Jun at 2245 local time while underway in position 12 46N, 043 15E. Duty officer raised alarm upon approach of fast boat and turned searchlights in its direction, whereupon boat mov", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.250000000170189, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-214", + "dateofocc": "2003-06-21", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SENEGAL: An unidentified container ship reports attempt to board 21 Jun at 2105 local time while underway off Dakar. Crew raised alarm and attempt was abandoned (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.516666699668122, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-215", + "dateofocc": "2003-06-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded 23 Jun at 0330 local time while in position 22 03.8N, 091 40.3E off Chittagong anchorage area. Two armed persons boarded in a heavy rain and stole ship's stores before escaping when crew raised alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 22.06666669992137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-216", + "dateofocc": "2003-06-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified LPG carrier reports being obstructed in its passage of the Pussur River on 22 Jun at 1618 local time while underway in position 22 23N, 089 37.4E near Mongla. About ten persons in small fishing boats first attempted to obstruc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.616666699722657, 22.383333300093398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-217", + "dateofocc": "2003-06-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 18 Jun at 0330 local time while at Chittagong anchorage. Three persons armed with long knives boarded from two boats and escaped with ships stores when spotted. The same persons reportedly later made a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-218", + "dateofocc": "2003-06-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE: The Singapore Shipping Association issued a warning after a member vessel was attacked 24 Jun between 2320 and 0010 local time while underway in position 01 07N, 105 05E about 60 nm from Horsburgh Lighthouse. Eight persons robbed the crew of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.083333299979984, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-53", + "dateofocc": "2004-02-27", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA-BAB EL MANDEB: An unidentified container ship reports two unlit speedboats lay in wait in the vicinity of the \"Bab el Mandeb Traffic Separation Scheme\" and attempted to board 27 Feb at 1900 local time. Ship increased speed to 25 knots", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [38.311388899840381, 21.080833299833159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-54", + "dateofocc": "2004-02-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The bulk carrier (SINAR ANDALAS) was chased and fired upon 24 Feb at 0220 UTC while underway in position 05-35N 096-30E off the coast of Indonesia's Aceh Province. The ship suffered bullet holes in windows and paneling, but no personnel casu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.500000000318494, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-55", + "dateofocc": "2004-03-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 1 Mar at 2315 UTC while anchored in position 06-02S 106-54E at Jakarta Roads. Five persons armed with knives stole a liferaft and escaped in a motor boat when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.033333299818253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-230", + "dateofocc": "2003-07-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 2 Jul during the morning hours while berthed at Haldia. Ship's stores were stolen (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.12000000035323, 22.009999999771082] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-56", + "dateofocc": "2004-03-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified tanker was boarded 5 Mar at 2110 local time while anchored at Mamonal inner anchorage in approximate position 10-19N 075-31W. Three persons armed with knives threatened the chief officer and duty seaman before escaping with a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-57", + "dateofocc": "2004-02-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: An unidentified yacht was boarded 28 Feb at 2215 local time anchored in position 10-43N 062-34W at Punta Pargo. Several persons armed with guns boarded the yacht and master sent mayday message o VHF as well as firing flares. The intruders f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.566666700090764, 10.716666699599273] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-58", + "dateofocc": "2004-03-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: A local boat, identified as (AVIJAJA), loaded with scrap, was attacked 5 Mar after it anchored at Takoradi in approximate position 04-53N 001-44W for repairs. About 200 persons, operating from canoes dismantled the vessel's communications, stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.733333299589276, 4.883333299977096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-59", + "dateofocc": "2004-03-08", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified tanker reports observing five boats drifting 8 Mar at 0700 in position 12-27N 044-42E at a distance of about 5 nm. Boats suddenly accelerated to within one mile of vessel's stern before moving away as crew mustered and ac", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.699999999902332, 12.450000000433192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-60", + "dateofocc": "2004-03-03", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified vehicle carrier reports small boat with powerful engine and containing four persons followed from astern 3 Mar at 0330 while underway in position 14-42N 050-56E. Ship altered course toward open sea and boat withdrew.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.933333300432139, 14.699999999831448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-61", + "dateofocc": "2004-03-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified tanker reports encountering two boats with a line strung between them 2 Mar at 0315 local time while underway in position 21-33.7N 091-35.5E east of Maiskhal Island. As tanker passed between the boats the boats wee drawn into i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.591666700303676, 21.561666700098385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-62", + "dateofocc": "2004-03-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 6 Mar at 0640 local time at a Tajung Priok berth in approximate position 06-06S 106-53E. Three persons armed with knives and battens beat up duty officer injuring his stomach, back and legs, but escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-63", + "dateofocc": "2004-03-05", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG tanker reports approach 5 Mar at 1430 UTC by an unlit boat while underway in position 01-48S 108-04E. When boat got within 20 meters crew raised alarmand boat moved away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.066666700004589, -1.800000000252453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-64", + "dateofocc": "2004-03-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was approached 3 Mar at 0400 UTC while at anchor, Tanjung Priok, in approximate position 06-06S 106-53E by 3 boats under the pretext of doing business. Crew ordered boats to move away but later discovered that", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-65", + "dateofocc": "2004-03-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempted boarding 13 Mar at 1620 local time while underway in position 04-51.2N 098-19.5E off the east coast of Aceh Province. Eight persons armed with machine guns attempted to board from a fishing boat. Shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.325000000399996, 4.853333300236955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-147", + "dateofocc": "2002-05-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: An unidentified refrigerated cargo ship was boarded 20 May at 0550 UTC while berthed at Douala Port. Persons armed with knives boarded but were spotted by watch which raised alarm. The intruders escaped by jumping over the side; no mention o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-148", + "dateofocc": "2002-05-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified cargo ship reports suspicious approach 20 May at 1330 local time while underway in position 14-32N 049-39E. A blue colored boat kept coming closer despite the ship altering course. When fire hoses activated boat moved awa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.650000000197281, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-149", + "dateofocc": "2002-05-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified gas carrier was boarded 15 May at 0410 local time while underway in the inner roads port of Rome. Thieves armed with knives stole ship's stores and escaped. A second attack was made at 0435 while ship was mooring and thieves sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.549444399781578, 6.770833299667174] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-150", + "dateofocc": "2002-05-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 May at 0250 local time while at Isab wharf, Panjang. Six persons armed with knives entered engine room, tied up duty oiler, stole alarge amount of engine spares and escaped through the emergency door", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, -5.466666700312658] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-151", + "dateofocc": "2002-05-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified Netherlands flag dredger was attacked by gunfire from a small boat 22 May at 2250 local time while underway in position 01-08.13N 103-45.4E. Dredger took evasive action and reported to Vessel Traffic Information System befor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.756666700161986, 1.135555600358089] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-152", + "dateofocc": "2002-05-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified Panamanian flag dredger was pursued 22 May at 2140 local time while underway in position 01-07.7N 103-45.7E by a small craft with flashing yellow light. A second boat joined the first and both attempted to stop the dredge by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.795000000388029, 1.155000000234281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-153", + "dateofocc": "2002-05-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempted boarding 20 May at 0300 local time while at Belawan anchorage. Intruders armed with long knives attempted to gain access via the anchor chain but duty watch raised alarm and boarding was aborted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-154", + "dateofocc": "2002-05-29", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 29 May at 2320 local time while anchored at Barranquilla. Ten persons broke into forward lockers and stole a large quantity of ship's store before escaping in a big speedboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.799999999915315, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-155", + "dateofocc": "2002-05-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MADAGASCAR: An unidentified cargo ship was boarded 29 May at 0140 local time while berthed at Diego Suarez. Four armed persons boarded from a small boat and broke open the forward locker room which they took ship's stores. Anti piracy watch threatened", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.300000000230966, -12.266666700172834] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-156", + "dateofocc": "2002-05-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MADAGASGAR: Armed thieves boarded an unidentified cargo ship 24 May at its berth at Diego Suarez. Thieves stole safety equipment from lifeboats before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.300000000230966, -12.266666700172834] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-157", + "dateofocc": "2002-06-01", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified tanker reports approach 1 Jun at 0745 local time while underway in position 13-14.8N 042-56.5E about 25 nm from the northern entrance to the Bab el Mandeb. \"Several\" speedboats closed in and suddenly increased speed. Tank", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.941666699584687, 13.246666699869934] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-158", + "dateofocc": "2002-06-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified cargo ship was boarded 3 Jun at 0620 while at outer anchorage, Kakinada. Armed persons boardedvia the anchor chain, broke into the forecastle locker, and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.249999999632792, 16.93333330023188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-159", + "dateofocc": "2002-06-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified chemical tanker was boarded 5 Jun at 2300 local time while berthed at Barranquilla. Three persons broke into portside locker but jumped over board and escaped with watch sounded alarm. No information on losses.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.799999999915315, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-160", + "dateofocc": "2002-06-09", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified general cargo ship was boarded 9 Jun at 0500 local time while berthed at Georgetown. Thieves stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-231", + "dateofocc": "2003-06-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 28 Jun by an unauthorized person from a service boat while the ship was berthed at Chennai. Ship's stores were stolen (IMB),", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.300000000334137, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-3", + "dateofocc": "2002-12-21", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship reports approach by two boats 21 Dec at 1020 local time while underway in position 05 48.1N, 096 27.3E off Aceh Province. The two boats, each with three persons, came within .1km and were not fishing boats accordin", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.449999999552404, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-4", + "dateofocc": "2002-12-21", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship reported being followed 21 Dec at 1030 local time while underway in position 05 24N, 097 30.7E off Aceh Province. A motorboat with four armed persons approached to within 50 meters and one person pointed a rifle to", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.516666700247981, 5.400000000340071] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-5", + "dateofocc": "2002-12-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 21 Dec at 0455 local time while at anchor at Anyer. Duty motorman spotted three persons armed with guns and long knives near the engine room store. The motorman was bound hand and foot but freed himself and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.916666700339761, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-6", + "dateofocc": "2002-12-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 18 Dec at 0200 local time while anchored in position 03 42S, 116 24E at Sebuku. Five persons armed with knives climbed the anchor chain, broke open the paint locker and stole ship's stores before esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.400000000332511, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-7", + "dateofocc": "2002-12-19", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PHILIPPINES: Philippine-flag fishing trawler (MUNANG) was reported hijacked 19 Dec off Tongquil, Jolo Province. Four crew were taken hostage with the boat by the six attackers who released eight of the trawler's crew near Basilan Province.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.999999999794113, 6.166666700036672] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-8", + "dateofocc": "2002-12-30", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: The 9,981-ton fruit juice tanker (ORANGE STAR) was boarded 30 Dec at 0030 local time while at Santos anchorage No. 4 in position 24 07.5S, 46 17.2W. Approximately 10 persons armed with shotguns, handguns and knives smashed a radio room port t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.283333300445463, -24.116666700061444] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-9", + "dateofocc": "2002-12-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified cargo ship was boarded 27 Dec at 0220 UTC while at outer roads, Tema. Five persons armed with long knives attacked duty seaman on forecastle but fled in waiting boat when alarm raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-10", + "dateofocc": "2002-12-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "MALAYSIA: Two unidentified speedboats, towing a barge, were hijacked 23 Dec at 0730 local time at Batik Kelambu Islands off Semporna, Sabah. Three persons armed with M-16 rifles left the boats' crew of five adrift on the barge where they were later res", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.999999999697138, 4.500000000041211] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-11", + "dateofocc": "2002-12-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 27 Dec at 0850 local time while at Balikpapan anchorage. Three persons boarded via the anchor chain, bending the hawse pipe cover. They stole a life raft and escaped in their boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.083333300422623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-12", + "dateofocc": "2002-12-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Dec at 1930 local time while at Balikpapan inner anchorage. Three persons boarded via anchor chain and hawse pipe and stole a liferaft. Thieves were chased by a crewmember and jumped overboard, es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-13", + "dateofocc": "2002-12-23", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PHILIPPINES: Philippine trawler (PRINCE WARREN) was hijacked 23 Dec off Pangutaran, Sulu Archipelago. At least four men armed with automatic weapons chased the boat and opened fire upon it late on the 23rd. Two fishermen jumped overboard and were resc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.500000000195314, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-14", + "dateofocc": "2002-12-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: An unidentified bulk carrier was approached 24 Dec at 2145 local time by unlit boat while underway in position 12 56N, 100 44E, approaching Ko Si Chang. One person using grappling hook climbed aboard and tried to tie off boat to ship's rail.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.733333299884237, 12.933333300102561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-16", + "dateofocc": "2003-01-05", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified container ship was robbed of a mooring line 5 Jan, apparently when it encountered a small boat shortly after leaving Dakar. The boat shone a strong light as it moved close. Ship's master suspects it was signaling accomplices a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-219", + "dateofocc": "2003-06-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Jun at 0230 local time while underway in position 0057N, 105 06E near Bintan Island. About 12 persons armed with guns and knives took 2 crew hostage and used them to force master to open his cabin d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.099999999877127, 0.949999999611634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-220", + "dateofocc": "2003-06-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 22 Jun at 0520 local time while underway in position 00 43.8N, 105 27.2E off Bintan Island. Two persons armed with guns tied off their boat at the ships stern. Crew raised alarm and mustered. The int", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.449999999843499, 0.73333330024758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-221", + "dateofocc": "2003-06-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 21 Jun at 2105 local time while underway in position 00 51N, 105 05.1E off Bintan Island. Eight persons armed with guns and knives boarded at the starboard quarter form a speedboat. Master, duty off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.083333299979984, 0.849999999878207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-222", + "dateofocc": "2003-06-24", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified cargo ship was boarded 24 Jun at 0405 local time while at pier 5C, Callao. Two persons wearing masks tried to steal ship's stores but jumped overboard and escaped when discovered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-223", + "dateofocc": "2003-06-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: 1 German and 2 Filipino contractors working for Shell Nigeria were kidnapped 23 Jun from their tug off the Forcados Export terminal. On 26 Jun the unidentified abductors sent a ransom demand for $2 million plus a smaller sum for feeding the host", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.433333300309641, 5.366666700370558] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-224", + "dateofocc": "2003-06-26", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified cargo ship reports suspicious approach 26 Jun at 0100 local time while underway in position 12 30N, 045 25E. A fast speedboat followed the ship and kept chasing when the ship took evasive maneuvers. When boat came within 1", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.416666699732161, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-225", + "dateofocc": "2003-06-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified fishing trawler reports being fired on 23 Jun at 1530 local time while underway in position 05 46N, 097 50.4E. The firing came from a black hulled tug. One crew member was wounded and hospitalized ashore; trawler suffe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.833333300420009, 5.766666700203587] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-226", + "dateofocc": "2003-06-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 30 Jun at 0700 local time at Tanjung Priok anchorage. Four persons armed with long knives entered pump room and stole engine stores. Crew raised alarm and thieves fled (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-227", + "dateofocc": "2003-06-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The 13,852 ton Malaysian flag bulk carrier (ECO CHARGER) was approached 29 Jun at 0320 local time while underway in position 01 13N, 105 03E off Bintan Island. A high speed craft approached to within 25 m of the ship before it was spotted by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.050000000010414, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-228", + "dateofocc": "2003-06-24", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified tanker was boarded 24 Jun at 0250 local time while at Batangas anchorage. Two persons armed with metal bars boarded from fishing boats but, seeing crew alertness, jumped overboard and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.016666699658913, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-229", + "dateofocc": "2003-06-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA: An unidentified chemical tanker was boarded 27 Jun at 2300 local time at Zhanjiang anchorage. Five persons stole ship's property before crew raised alarm and they fled in their boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.400000000138448, 21.199999999592023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-232", + "dateofocc": "2003-07-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 1 Jul at 0255 local time while at anchorage 'A', Chittagong. Chief officer observed 4 persons armed with long knives try to steal hawsers and raised alarm. The thieves threatened crew with 18-inch knives be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-66", + "dateofocc": "2004-03-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "SINGAPORE STRAIT: An unidentified tug was boarded 16 Mar at 2340 local time while anchored outside Singapore Port Limit in position 01-14.13N 103-34.7E. Armed persons took five crew hostage at knifepoint and forced the master to admit them to his cabin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.578333300124655, 1.235555600091573] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-67", + "dateofocc": "2004-03-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 22 Mar at 1730 UTC while drifting, undergoing engine repairs, in position 04-02S 106-38E, Gelasa Strait. Six persons armed with knives and guns forced duty seaman to make master open his cabin door wher", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.633333300344873, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-68", + "dateofocc": "2004-03-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 17 Mar at 0240 local time while at Tanjung Priok anchorage. One person, using a grappling hook, gained access but escaped empty handed when discovered by crew. Later inspection revealed a single strapsecur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-69", + "dateofocc": "2004-03-26", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "TRINIDAD AND TOBAGO: A Trinidadian fisherman was shot and killed 26 Mar within Trinidad's territorial waters 13 miles off Soldado Rock, Cedros. The assailants rammed the fishing boat, shot one crew member when he sat up from his sleeping position, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.694722199829471, 10.673888900441739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-70", + "dateofocc": "2004-03-21", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified LPG tanker was boarded 21 Mar between 0030 and 0100 local time while underway off Dakar. The pirates stole ship's stores before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.000000000204466, 14.250000000131649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-71", + "dateofocc": "2004-03-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker reports attempt to board 29 Mar at o330 UTC while anchored in position 06-12.9N 003-20E, Lagos. Three persons in a boat withdrew when watchman raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.214999999876341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-72", + "dateofocc": "2004-03-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was ordered to stop 23 Mar at 1013 UTC while underway in position 05-33.4N 005-24.4E in the Warri River. Armed persons in 6 boats ordered the tanker to pump part of its gasoline cargo into a barge and about 650 mt of car", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.406666699724326, 5.556666700223786] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-73", + "dateofocc": "2004-03-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports attempt to board 28 Mar at 1900 local time while underway in position 03 03N, 100 47E, One Fathom Bank. Three speedboats with about four persons armed with firearms in each, approached but were pr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.783333299751007, 3.050000000309069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-74", + "dateofocc": "2004-03-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified vehicle carrier reports attempted boarding 28 Mar at 0048 while underway in position 02-37.4N 101-27.7E. An unlit boat with several persons approached the ship but the captain mustered crew, switched on lights, direct", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.461666700254113, 2.623333300065894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-75", + "dateofocc": "2004-03-29", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "RESEARCH VESSEL", + "descriptio": "INDONESIA: An unidentified research vessel reports suspicious approach 29 Mar at 0204 local time while underway in position 01 0.1N, 103 3`.9E. An unlit boat approached the port quarter but retreated and rejoined other small craft when the research shi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.064999999815825, 1.18499999997448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-169", + "dateofocc": "2002-06-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 14 Jun at 0300 local time during transshipment operations at Balikpapan anchorage. Thieves gained access via forward anchor chain in heavy rain and broke into forward lockers. They stole ship's stores and a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-24", + "dateofocc": "2003-01-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 10 Jan at 2135 local time while at Lawi Lawi anchorage. Thieves boarded via anchor chain, stole ship's stores, and fled when alarm was raised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.766666700195969, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-76", + "dateofocc": "2004-03-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports being ordered to stop 27 Mar at 1040 UTC while underway in position 05-42.8N 097-49E of Aceh Province. The order came from a supplyboat and persons aboard fired on the bulk carrier's poop deck and bridge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.816666700347582, 5.713333300282727] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-77", + "dateofocc": "2004-03-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship reports attempted boarding 26 Mar at 1000 local time while underway in position 01-39S 104-50E about 34 miles from Selat Berhala. Six persons in a grey-colored fishing type boat with fishing gear attempted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.833333299747039, -1.649999999752993] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-161", + "dateofocc": "2002-06-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: Persons from a boat boarded an unidentified general cargo ship 3 Jun at 2300 local time as it approached the port of Georgetown with pilot on board and stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-162", + "dateofocc": "2002-06-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: The third officer of an unidentified bulk carrier was threatened by several persons with knives 2 Jun at 0620 local time while ashore reading ship's draft while ship was moored at jetty no. 7. Officer's walkie-talkie stolen. The previous day", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-163", + "dateofocc": "2002-06-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was subject to attempted boarding 4 Jun at 2025 local time while anchored in Bontang pilot boarding ground. Seven persons in a motor boat tried to gain access via the forecastle but alarm was raised and crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.483333300201139, 0.100000000078751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-164", + "dateofocc": "2002-06-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified cargo ship was boarded 15 Jun at 2200 local time by five armed persons while at Belem inner anchorage. Duty seaman was tied up and blindfolded while thieves stole ship's stores, departing when alarm was sounded by another seaman", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.499999999874149, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-165", + "dateofocc": "2002-06-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship was subject to attempted boarding 15 Jun at 0205 local time at Lagos anchorage. Intruders tried to gain access via anchor chain but were spotted by watch and escaped n wooden boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-166", + "dateofocc": "2002-06-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON: An unidentified cargo ship was boarded 14 Jun at 1000 local time during cargo operations at Port Gentil. Several persons armed with knives threatened the captain and duty crew and tried to make them open ship's stores without success. The intru", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.800000000270188, -0.20000000002085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-167", + "dateofocc": "2002-06-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The 14,921-ton Cyprus flag bulk carrier (PANAGIA TINOU) was seized by boarders one mile off the Somali coast 15 Jun at 0930 UTC and its crew of 23 held hostage on the ship with their passports sent ashore. The ship is reportedly in position 11", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 11.749999999601187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-168", + "dateofocc": "2002-06-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was robbed 12 Jun at 140 local time while mooring at Chittagong. Mooring gang requested ship pay out more line fore and aft, which it did. When ship was all fast crew noted that lengths of 100 m were cut out", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-170", + "dateofocc": "2002-06-17", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: The Singapore-flag tug (SM-88) was stopped 17 Jun while underway in position 06- 16.4N 121-30.6E off Jolo Island by 11 armed men in military style uniforms. The assailantsremoved the tug's Indonesian Captain, Chief Officer, Second Officer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.509999999841284, 6.273333300228899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-171", + "dateofocc": "2002-06-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 22 Jun at 0330 local time while at Chittagong anchorage. Watch spotted man armed with rifle on after deck and sounded alarm. Manescaped in a boat with three accomplices.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-172", + "dateofocc": "2002-06-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was subjected to attempted boarding 20 Jun at 2300 local time while at Chittagong anchorage. Six persons armed with knives tried to board at the stern but alert crew prevented the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-173", + "dateofocc": "2002-06-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 28 Jun at 2005 while at Chittagong anchorage 'B'. Three persons of ten in a boat that came alongside boarded before the duty watch raised the alarm and mustered crew, whereupon the intruders jumped ove", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-174", + "dateofocc": "2002-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified bulk carrier was boarded 28 Jun at 0330 local time while anchored at Bintulu. Thieves broke into forecastle store and stole ship's stores. Duty watch spotted them and sounded alarm whereupon the thieves fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.133333300105392, 3.050000000309069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-17", + "dateofocc": "2003-01-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 1 Jan at 2055 UTC while anchored in position 20 59.3N, 088 14.7E, Sandheads anchorage, in the Hooghly River. About ten persons boarded at stern from an unlit motor boat and assaulted duty seaman before stealing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.249999999826855, 20.983333300227969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-18", + "dateofocc": "2003-01-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 6 Jan at 0200 local time while at Samarinda anchorage. Five persons armed with long knives boarded via the hawse pipe and threatened the duty seaman. Crew raised alarm and mustered; thieves jumped ov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.116666700162341, -0.516666700017652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-19", + "dateofocc": "2003-01-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified ro-ro ship was boarded 4 Jan at 0620 local time while in position 00 59.8S. 117 17.6E, Samarinda anchorage. Eight persons armed with knives took Second Officer and duty seaman hostage before breaking into bosun locker and ste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.283333299834908, -0.01666669955182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-20", + "dateofocc": "2003-01-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 2 Jan at 0400 local time while at Cigading anchorage. Four persons armed with knives took duty oiler hostage and threatened him with a knife. Oiler freed himself and sounded alarm whereupon the thiev", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.950000000309331, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-21", + "dateofocc": "2003-01-09", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified chemical tanker was boarded 9 Jan at 0225 local time at anchor at Kingston. Several persons from two motor boats about 10 meters long climbed the anchor chain and were discovered in the master's office. Alarm raised and intrud", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.783333300082802, 17.966666700058568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-22", + "dateofocc": "2003-01-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: The 6,285-ton cargo ship (CEC MEADOW) was boarded 11 Jan at 0300 local time by about twenty armed robbers, while the ship was discharging at berth 4. The intruders began beating the stevedores and their foreman, while the ship's crew fled into", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.400000000372415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-23", + "dateofocc": "2003-01-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The Singapore-flag tug (BINA OCEAN 2) was hijacked 11 Jan at about 0500 local time off Bintan Island. About ten persons armed with knives and guns forced or allowed the crew of 6 to jump overboard from the tug anchored off Tanjung Uban. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.499999999677868, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-25", + "dateofocc": "2003-01-08", + "subreg": "83", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 8 Jan at 0625 local time while in position 01 03S, 177 16E at Samarinda anchorage. Four persons armed with knives gained access at the stern and stole life rafts and stores before fleeing when alarm sou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [177.266666699904249, -1.049999999553734] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-26", + "dateofocc": "2003-01-08", + "subreg": "74", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "AUSTRALIA-INDONESIA: Australian authorities recovered the Taiwanese-flag fishing vessel (HAI AN NO. 6) 8 Jan about 80 nm northeast of Rowley Shoals offshore of Broome. The vessel, drifting without crew, was spotted apparently abandoned 4 Jan. The lifeb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [120.500000000195314, -16.166666699669406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-27", + "dateofocc": "2003-01-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MOZAMBIQUE: An unidentified container ship was boarded 13 Jan at 2045 UTC at Nacala anchorage. Duty seaman spotted person lowering mooring line through hawse pipe and sounded alarm whereupon the intruder fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.666666699803386, -14.533333299643516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-28", + "dateofocc": "2003-01-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 19 Jan at 0100 local time at Taboneo anchorage, Banjarmasin, by one of five persons who approached in a small boat. The intruder, armed with a long knife, boarded via the hawse pipe but was driven off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.749999999551108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-29", + "dateofocc": "2003-01-15", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified tanker was boarded 15 Jan at 0700 local time while anchored at Vung Tau. The intruders used a grappling hook to gain access via the poop deck, but duty seaman raised alarm and they fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-30", + "dateofocc": "2003-01-17", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 17 Jan at 0120 local time while anchored 1.3 nm west of Pigeon Island. Four persons from an unlit boat boarded via the anchor chain. They broke open the forecastle locker and escaped with ship's propert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.116666699976747, 17.799999999661907] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-233", + "dateofocc": "2003-07-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 1 Jul at 0255 local time via the poop while at anchorage 'A', Chittagong. Four persons armed with long knives arrived in two large motorboats and one smaller boat. The intruders lowered ship's mooring lin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-234", + "dateofocc": "2003-07-02", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 2 Jul at 2300 local time while at Merak anchorage. Crew mustered and activated fire hoses when they spotted an unlit boat, which withdrew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.000000000176044, 5.916666699803784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-235", + "dateofocc": "2003-07-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 1 Jul at 0130 while underway in position 01 05N, 105 00E, near Bintan Island by persons using grappling hooks over starboard quarter. Ten masked persons armed with knives and guns took a seaman and seco", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.0000000001437, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-236", + "dateofocc": "2003-07-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded 1 Jul at 1210 local time while underway in position 00 41N, 105 12.5E near Bintan Island. Eight persons armed with knives and guns took second officer hostage and then held master at gunpoint while the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.216666700407018, 0.683333300380866] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-237", + "dateofocc": "2003-06-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 30 Jun at 2230 local time while at Belawan anchorage. About five persons operating form a small fishing boat were driven off when crew mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-238", + "dateofocc": "2003-06-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Jul at 0315 local time while anchored in position 00 00, 117 35E at Bontang. Two persons armed with knives boarded at forecastle and fled with life raft when spotted by duty seaman (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, 0.000000000345324] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-239", + "dateofocc": "2003-07-11", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 11 Jul in the early morning while berthed at Guanta. The intruders broke padlocks on storerooms but fled when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-240", + "dateofocc": "2003-07-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier reports attempt to board 14 Jul at 1400 local time while at Chittagong anchorage. Eleven persons in a boat came alongside and three, armed with knives, attempted to climb the anchor chain. Watch raised alarm and t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-241", + "dateofocc": "2003-07-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded 9 Jul at 0030 local time while at berth in Chittagong anchorage. Seven persons armed with knives boarded at forecastle, took duty crew hostage, and escaped with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-242", + "dateofocc": "2003-07-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG & BARGE", + "descriptio": "INDONESIA: The Singapore flag tug (BINTAN 1200) and its barge (BINTAN GOLDEN 2301) are reported hijacked 10 Jul while underway near Dabo Sinkep, Sinkep Island. A fast boat came alongside and armed men boarded the tug, binding and blindfolding its crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, -0.583333299956792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-243", + "dateofocc": "2003-07-11", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: An unidentified bulk carrier was boarded 11 Jul at 0245 local time while underway 5 miles NW of Ko Khram Island near Kosichang. Duty crew raised alarm and the intruders fled in a boat with three accomplices (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.666666699945154, 12.74999999963353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-244", + "dateofocc": "2003-07-10", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified container ship was boarded 10 Jul at 1819 local time while at Callao during cargo operations. A single man armed with a knife assaulted a security guard and then escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-245", + "dateofocc": "2003-07-18", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified container ship was boarded 18 Jul at 0830 local time during cargo operations at Puerto Cabello. Safety equipment was stolen form aft store (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.000000000055138, 10.483333300338074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-246", + "dateofocc": "2003-07-17", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified bulk carrier was boarded 17 Jul at 0320 UTC while berthed at Guanta. A single armed individual stole safety equipment from a liferaft and escaped. Authorities did not respond to attempted contact (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 14.999999999931106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-247", + "dateofocc": "2003-07-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified container ship reports attempt to board 15 Jul at 0130 local time while at berth 29A, Puerto Cabello. Four darkly dressed persons in a boat attempted to gain access using a grappling hook but alert crew drove them off by dire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.000000000055138, 10.483333300338074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-248", + "dateofocc": "2003-07-20", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified tanker was boarded 20 Jul at 0130 local time while at Dakar anchorage. Thieves broke into bosun's stores and stole ship's supplies. When contacted, Port Control advised they were unable to assist (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-78", + "dateofocc": "2004-03-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempted boarding 24 Mar at 0505 local time while anchored at Balikpapan. Two persons climbed the anchor chain while two others waited in their boat. Crew raised alarm and the four fled.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-79", + "dateofocc": "2004-04-02", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified tanker was boarded 2 Apr at 0300 local time while berthed at the Port Kaiser alumina jetty. Two persons armed with knives threatened duty seaman and escaped with ship's stores. Port control informed and security personnel boar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.593333300261918, 17.86666670032514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-80", + "dateofocc": "2004-03-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: An unidentified yacht was boarded 28 Mar at 0300 local time while at Polamar, Isla Margarita. An outboard motor was stolen from the yacht's dingy. Yacht master reported several attempted thefts during the week.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.846666700096193, 10.95444439994111] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-81", + "dateofocc": "2004-04-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TOW", + "descriptio": "INDIA: An unmanned vessel under tow was boarded 5 Apr at 0400 UTC while in position 08 12.3N, 076 46.4E, 20nm from Trivendram aero light. Persons from eight boats stole property from the ship and left at 0435 UTC.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.77333330026056, 8.205000000327402] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-82", + "dateofocc": "2004-04-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDIA: An unmanned tug under tow was boarded 2 Apr at 0650 local time in position 08 06N, 076 43E off Trivendram. Pirates form six boats stole tug's stores and property before the arrival of coast guard boats and an aircraft from Cochin.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.716666699935047, 8.100000000337502] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-101", + "dateofocc": "2004-04-14", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHAMT VESSEL", + "descriptio": "CHINA: Unidentified bulk carrier was boarded 14 Apr at1530 UTC in position 21-28.10N 108-20.10E at Fang Cheng. The intruders stole ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.335000000337004, 21.468333299924382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-83", + "dateofocc": "2004-04-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SHATT AL ARAB: Thefts and extortion are report 3 and 4 Apr and 27 Mar from ships exiting the Shatt al Arab following calls at Abu Flus. The attacking boats used the same tactic in all cases; fishing nets were strung across the waterway and at least som", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.700000000031707, 29.899999999783404] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-84", + "dateofocc": "2004-03-30", + "subreg": "74", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 30 Mar at 2120 UTC while underway in position 12-58S, 106-58.3E in Selat Leplia. Two persons armed with guns and long knives forced open wheelhouse starboard door but fled empty handed when duty sea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [106.971666699595971, -12.96666670010552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-85", + "dateofocc": "2004-03-17", + "subreg": "74", + "hostility_": "NAVAL PERSONNEL", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The master of an unidentified cargo ship reports he was fired upon, stopped, and questioned by the Indonesian naval vessel (KAI YOUTEFA) 17 Mar while in position 12-18.5S 104-38.5E off Jayapura, Irian Jaya. (reported 7 Apr).Master and third", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [104.641666699691484, -12.308333299728929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-86", + "dateofocc": "2004-04-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Unidentified tanker attacked by five persons armed with machine guns 7 Apr at 0104 local time while anchored in position 05-28N 005-05E, Escravos anchorage. Anti-piracy crew raised alarm and directed foam monitor at boat. Attackers opened fir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.083333300343327, 5.466666700103985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-87", + "dateofocc": "2004-04-08", + "subreg": "61", + "hostility_": "MILITIAMEN", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOMALIA: According to 8 Apr report, activity at port of Kismaayo has been halted by threat of militiamen allied with Juba Valley Alliance to attack vessels entering or leaving port with anti-aircraft missiles with which they are armed. Three ships have", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.550000000237503, -0.366666700417511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-88", + "dateofocc": "2004-04-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Unidentified tanker boarded 8 Apr at 2200 local time while underway in position 01 40N, 102 10E. Pirates armed with guns stole ship's property and crew cash ands damaged radio equipment before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.166666700443329, 1.666666700340784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-89", + "dateofocc": "2004-04-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker boarded 8 Apr during early morning hours at Balikpapan anchorage. Despite presence of 2 armed security guards and 4 anti-piracy crew, the intruders escaped with ship's property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-90", + "dateofocc": "2004-04-11", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "SULU SEA-PHILIPPINES-MALAYSIA: Malaysian tug (EAST OCEAN 2) and barge (SARINTO 1), sailing from Sabah to Solomon Islands with construction material, was attacked 11 Apr at 1900 local time near Taganak Island by 8 to 10 heavily armed gunmen in black unif", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.316666699661596, 6.050000000406101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-175", + "dateofocc": "2002-06-30", + "subreg": "71", + "hostility_": "REBELS", + "victim_d": "SUPPLY VESSEL", + "descriptio": "INDONESIA: Nine crew from the offshore supply boat (KM PELANGI) (NFI) were taken hostage 30 Jun after probable rebels operating form two fishing boats intercepted their vessel and forced them ashore in Aceh Province. Two of the eleven crew were left b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.377222199755408, 3.819166700133849] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-176", + "dateofocc": "2002-06-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was subject to attempted boarding 27 Jun at 0130 local time at Tanjung Priok anchorage. Watch saw eight persons armed with long knives approach in an unlit boat and attempt to fasten a grapping hook to the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-177", + "dateofocc": "2002-06-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Jun at 1848 UTC while anchored in Apar Bay. Fifteen persons boarded at the forecastle using grappling hooks and threatened the crew which had mustered. The thieves broke open forecastle locker and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.649999999666079, -1.883333300088736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-178", + "dateofocc": "2002-06-24", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach by a boat 24 Jun at 1639 UTC while underway in position 06-46S 117-39E. Boat was detected at five mile on radar and closed to within .4 miles after increasing speed at one mile out. C", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.64999999969848, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-179", + "dateofocc": "2002-06-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Jun at 2145 local time while at Samarinda anchorage. Five persons threatened duty seaman with a knife, broke into forecastle locker, and stole ship's stores and a life raft. Master did not succee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.116666700162341, -0.516666700017652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-180", + "dateofocc": "2002-06-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Jun at 0145 local time while at Sebuku anchorage. Five persons gained access via the anchor chain, broke into the forecastle locker, stole ship's stores and a life raft and escaped in their wooden", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.416666700229598, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-181", + "dateofocc": "2002-06-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was subjected to attempted boarding 18 Jun at 0145 while at Bontong pilot boarding ground when five persons in a speedboat tried to climb the anchor chain. Crew raised alarm and intruders fled. A second attempt at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.483333300201139, 0.100000000078751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-182", + "dateofocc": "2002-06-30", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified cargo ship was boarded 30 Jun at 2345 local time while at the Vung Tau outer anchorage. Six armed persons gained access via the anchor chain, attacked seaman on watch, stole ship's stores and escaped in a wooden boat. Port autho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-183", + "dateofocc": "2002-06-30", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified bulk carrier was subject to an attempt to board 30 Jun at 1145 local time while underway in position 17-33N 119-58E off Luzon Island. Pirates armed with long knives and wearing masks operating from seven boats attempted to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.966666699759912, 17.550000000328339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-184", + "dateofocc": "2002-07-07", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Chilean-flag container ship (PACIFIC RIDER) was boarded 7 Jul at 0115 local time while berthed at Callao. Master was at work in his office when he noticed a gun pointed at him through the office porthole. A second thief dropped a bag though anot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-185", + "dateofocc": "2002-07-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified container ship was subject to attempted boarding 3 Jul at 0300 local time while in Rio Magdalena channel at anchor. A high speed boat with 5 or 6 persons was repelled by alert crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.799999999915315, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-186", + "dateofocc": "2002-07-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified cargo ship was boarded 3 Jul at0740 local time while at anchor in Demerara River. Two persons boarded at the forecastle but fled empty-handed when spotted by crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-187", + "dateofocc": "2002-07-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified cargo ship was subject of attempted boarding 3 Jul at 0305 local time while in Demerara River anchorage. Ship's crew spotted four persons using grappling hooks and duty officer drove them away by firing flares at them.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2002-188", + "dateofocc": "2002-07-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: The Third Officer of an unidentified cargo ship at Berth 3, Chittagong, was assaulted 8 Jul at 2200 local time when he left the ship to checks its draft. Seven persons armed with long knives attempted to grab the mates gold chain and watch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-31", + "dateofocc": "2003-01-26", + "subreg": "27", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "CUBA: An unidentified yacht was boarded 26 Jan at night while anchored in the channel at Nueva Gerona, Isla de Juventud. Crew and yacht property stolen. Crew reports local authorities unresponsive to report of the theft.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.800000000174009, 21.916666700321173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-32", + "dateofocc": "2003-01-22", + "subreg": "27", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CUBA: An unidentified bulk carrier was robbed 22 Jan at 0600 local time during cargo operations in the port of Havana. Intruders broke open the forecastle store and stole ship's supplies. Authorities were informed but no action was taken.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.333333299677747, 23.133333299892797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-33", + "dateofocc": "2003-01-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified cargo ship was subject to attempted boarding 24 Jan between 0454 and 0600 local time while anchored at Tema. Alert crew repelled the attempt but the twelvepersons in a wooden boat then attempted to gain access to another anchored", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-34", + "dateofocc": "2003-01-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified LPG tanker was boarded 23 Jan at 0405 local time while aT Bonny Town anchorage, Port Harcourt. One of three persons operating form a small boat gained access at the forecastle, unreported by the contract watchman. Crew spotted t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-35", + "dateofocc": "2003-01-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified survey ship was boarded 25 Jan at 1800 UTC at Goa. Two persons operating form a canoe stole ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [73.799999999674299, 15.433333299733704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-36", + "dateofocc": "2003-01-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 27 Jan at 2100 UTC in heavy rain while at Lawi-Lawi anchorage. Thieves armed with long knives escaped with a life raft and ship's stores after crew raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.766666700195969, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-37", + "dateofocc": "2003-01-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: A cargo ship heaving anchor was boarded 25 Jan at 2305 UTC while in position 01 00S, 117 17E, Samarinda anchorage. Six persons stole a liferaft before escaping. Pilot tried to contact shore police without response.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.283333299834908, -0.99999999968702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-38", + "dateofocc": "2003-02-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship was boarded 1 Feb at 0230 local time at container berth 11, Dar es Salaam. Ship was preparing to depart and 5 shore watchmen did not report the intruders. When spotted by crew the thieves jumped overboard and es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.299999999907584, -6.816666700311316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-39", + "dateofocc": "2003-01-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 29 Jan at 2345 local time while at outer anchorage, Chittagong. Crew shouted at the intruders and reported to the bridge and thieves jumped overboard with ship's stores. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-40", + "dateofocc": "2003-02-01", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 1 Feb at 0245 local time while anchored at Adang Bay. As ship was preparing to depart thieves, suspected by master of receiving aid from local stevedores, stole two 20-person life rafts which had been", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.500000000065938, -1.71666670041617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-41", + "dateofocc": "2003-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 29 Jan between 2200 and 2300 at Panjang Port. About eight persons mixed with local stevedores, broke padlocks on stores' lockers and tried to steal ship's stores. They jumped overboard when crew raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, -5.466666700312658] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-42", + "dateofocc": "2003-01-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA: The 142-ton tug (BW WISDOM) was hijacked 28 Jan between 1900 and 2000 local time while anchored at Batu Ampar, Batam. Ten persons armed with parangs and steel pipes boarded the tug and sailed it away, abandoning the barge (BAYSWATER 228), wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.983333300214213, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-43", + "dateofocc": "2003-01-31", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified tanker was subject to attempted boarding 31 Jan at 0300 local time while at Nha Be Terminal, Ho Chi Minh City. Three persons with grappling hooks were scared off by crew who recovered the hooks and lines (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.716666700005874, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-44", + "dateofocc": "2003-02-08", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified chemical tanker was boarded 8 Feb at 0430 local time while in position 05 03-5S, 081-07W at Portuario de Paita Terminal. A person armed with a knife boarded via the poop from a small boat. Watch raised alarm and Coast Guard appre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.116666700106123, -5.066666699580253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-45", + "dateofocc": "2003-02-09", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified refrigerated cargo ship was boarded 9 Feb at 0400 local time in Dakar Roads, 2 nm southeast of Ile de Goree. To persons armed with knives boarded via the stern but were chased off by alert crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.433333300007064, 14.683333299934304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-246", + "dateofocc": "2006-10-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Bangladesh:Four robbers boarded a bulk carrier, at Chittagong anchorage 'a' at 0234 LT. One robber armed with a knife attempted to enteraccommodation. Alert crew closed all entrance doors and raised alarm. Robbers jumped into a waiting boat and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-46", + "dateofocc": "2003-02-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TOGO: An unidentified tanker reports attempted boarding 7 Feb at 2315 UTC while anchored in position 06 04N, 001 21E at Lome. Eight persons armed with knives attempted to board using a grappling hook. When crew thwarted attempt persons in boat threw a s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.350000000344039, 6.066666700303244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-249", + "dateofocc": "2003-07-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was boarded 14 Jul at 2000 UTC while anchored in position 13 05N, 080 25E, Chennai. Two persons stole ship's stores and escaped in a boat with ten accomplices (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.416666699964765, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-250", + "dateofocc": "2003-07-20", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports attempt to board 20 Jul at 2135 local time while underway in position 01 38.4N, 103 58E. Alert crew switched on deck lights when approached by unlit speedboat. Speedboat moved away in direction o", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 1.633333299647177] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-251", + "dateofocc": "2003-07-17", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports suspicious approach 17 Jul at 2320 local time while underway in position 01 22N, 103 14.3E. Two speedboats were detected and illuminated by searchlights. The boats then moved away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.233333300414756, 1.366666700241183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-252", + "dateofocc": "2003-07-15", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 15 Jul at 1400 UTC while underway in position 00 13N, 107 56E off Indonesia. An unlit boat approached at 35 knots but withdrew when crew mustered and turned on lights (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.933333299577498, 0.216666699709378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-253", + "dateofocc": "2003-07-16", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship was boarded 16 Jul at 0530 local time while at Vung Tau anchorage. Six persons broke into the paint store but escaped empty handed when discovered by crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.349999999735758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-254", + "dateofocc": "2003-07-24", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified bulk carrier reports attempt to board 24 Jul at 0815 local time while underway in position 00-23N, 082-33W. Three speedboats with a total of fifteen persons dressed in black were spotted by alert crew who mustered and activated", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.549999999941122, 0.383333300281265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-255", + "dateofocc": "2003-07-25", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified container ship was boarded 25 Jul at 0045 local time while underway near Barranquilla. Persons armed with knives stole ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.799999999915315, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-256", + "dateofocc": "2003-07-22", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified container ship reports attempt to board 22 Jul at 2235 local time while underway in Maracaibo Channel near Isla Pescadores. Persons in five speedboats were detected by alert crew who switched on deck lights, activated hose, f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.616666700248572, 10.916666699965447] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-257", + "dateofocc": "2003-07-26", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified bulk carrier was boarded 26 Jul at 0600 local time while at Berth 16, Santos, engaged in cargo operations. Armed persons damaged bridge door and provision storeroom door and stole ship's equipment and stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.300000000342607, -23.949999999664783] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-258", + "dateofocc": "2003-07-26", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified container ship was boarded 26 Jul at 0305 UTC while at Berth 11, Belem. Two persons armed with guns attacked duty seaman, broke into paint locker and stole ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.499999999874149, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-259", + "dateofocc": "2003-07-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 24 Jul while at TSP jetty, Chittagong. Master reports gangway stolen and states that since arrival they ship had been boarded a number of times, losing stores and equipment (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-260", + "dateofocc": "2003-07-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified LPG tanker reports attempt to board 28 Jul at 1605 UTC by several persons in a high speed boat. Tanker was underway in position 01 59.4N, 102 07.7E. Crew directed searchlights at the boat which moved off (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.133333299749665, 1.983333299613548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-245", + "dateofocc": "2006-10-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "BANGLADESH: Duty watchman reported robbery 9 Oct, at 0324 local time at Chittagong anchorage, Bangladesh. Duty watchman sighted four robbers cutting mooring ropes. The duty watchman was assaulted by the robbers, after attempting to stop them. Duty of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-261", + "dateofocc": "2003-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports being fired upon 26 Jul at 1020 UTC while underway in position 05 45N, 097 51E. Master increased speed and due to rough sea boat could not close. Master reports attacking boat was blue, flew Indone", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.850000000317152, 5.750000000306443] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-262", + "dateofocc": "2003-07-30", + "subreg": "25", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CARIBBEAN-ST. LUCIA: An unidentified tanker reports being chased 30 Jul at 0630 local time while underway in position 14 04N, 062 30W, SW of the island of St. Lucia. A white speedboat with orange interior, named MANADA BAY and containing two persons, w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.500000000326907, 14.066666699662619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2003-263", + "dateofocc": "2003-07-30", + "subreg": "25", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CARIBBEAN-ST. LUCIA: An unidentified bulk carrier reports a speedboat came close aboard 30 Jul at 0030 UTC while underway in position 14.00N, 062 30W and the persons on board asked for help. They refused to explain the help needed and continued to foll", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.500000000326907, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-91", + "dateofocc": "2004-04-11", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified vehicle carrier reports attempt to come alongside 11 Apr at 1945 UTC while underway in position 20-18N 114-14E. Unlit craft fled when ship's crew raised alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.233333299871219, 20.300000000192426] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-92", + "dateofocc": "2004-04-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified fishing vessel boarded 9 Apr between 0040 and 0100 local time while underway in position 03-00.5N 105-06.5E, off Anambas Island. Eight persons, armed with long knives, stole ship's cash and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.108333300362972, 3.058333299895594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-93", + "dateofocc": "2004-04-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified tanker boarded 8 Apr at2300 local time while underway in position 02 58.60N, 105 16.20E off Anambas Islands. Ten pirates armed with guns and long knives boarded via the stern, stole cash and property, and escaped. Somecre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.26999999960384, 2.976666700086412] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-94", + "dateofocc": "2004-04-19", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: Unidentified container ship reports attempt to board 19 Apr at 0520 local time while underway in the Buenaventura River. Twelve persons in two high speed boats attempted to board using grappling hook, but fled when crew raisedalarm, switched", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-95", + "dateofocc": "2004-04-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Unidentified cargo ship reports attempt to board 18 Apr at 1750 local time while underway in position 15-35.9N 055-41.3E. Persons tried to board from three boats, but fled when ship began evasive maneuvers, switched on floodlights, and cal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.688333299718067, 15.59833330010332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-96", + "dateofocc": "2004-04-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA-INDIA: A chemical tanker under tow was boarded 15 Apr at 0645 UTC while underway in position 20-15.5N 071-27.1E of India's west coast. Persons from three boats involved. Alerted by the IMB, Indian Coast Guard units apprehended one of the b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.451666699670341, 20.258333299912238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-97", + "dateofocc": "2004-04-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier subject to attempted boarding 17 Apr at 1745 UTC while underway in position 06-38.2S, 119-18.3E in the Flores Sea. When pirates attempted to gain access at the poop, using a grappling hook, crew sounded alarm, muste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.305000000053269, -6.636666700071714] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-98", + "dateofocc": "2004-04-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier was boarded 16 Apr at 1740 UTC while at coal berth, Balikpapan. The intruders stole ship's property and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.766666700195969, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-99", + "dateofocc": "2004-04-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified container ship was boarded 16Apr at 1630 UTC while underway in position 00 50N, 105 18E east ofBintan Island. About 10 pirates armed with guns and knives boarded from an orange-colored high speed boat. Master, Chief Engineer an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.300000000243301, 0.833333299981007] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-100", + "dateofocc": "2004-04-17", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PHILIPPINES: Two fishermen were killed and four are missing after a probable pirate attack during the weekend of 17-18 Apr in the Celebes Sea off General Santos City. The fishing boat (JAMES BOND) was found drifting with the bodies of the two dead men.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.183333300360232, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-102", + "dateofocc": "2004-04-05", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "EASTERN PACIFIC: Unidentified sailing vessel was boarded 5 Apr (reported 20 Apr) at 1500 local time while underway in position 03-20N 084-44W nw of Ecuador. Five masked persons armedwith guns and knives tied up the captain and another crew member and s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-84.73333329957552, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-103", + "dateofocc": "2004-04-23", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: Unidentified tanker was boarded 23 Apr at 0310 local time while at Rocky Point inner anchorage. Thieves boarded via the bow, stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.300000000445834, 17.766666699692337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-104", + "dateofocc": "2004-04-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: Unidentified container ship boarded 20 Apr at 2020 UTC while at Abidjan container terminal. Duty seaman raised alert and single thief jumped into water and escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.027777799970806, 5.320833299935032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-105", + "dateofocc": "2004-04-20", + "subreg": "71", + "hostility_": "SUSPICOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT: Unidentified general cargo ship reports approach 20 Apr at 1720 UTC by boat with about ten persons wearing black masks, while underway in position 02-06..0N 101-57.5E. Duty officer raised alarm and boat moved away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.95833329976648, 2.100000000143439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-237", + "dateofocc": "2006-10-10", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: General cargo ship boarded and robbed 10 Oct, at 0300 local time, at Conakry anchorage. Robbers threw drums on deck overboard. Alert crew raised alarm and crew mustered.Robbers jumped overboard and escaped. No response from port control. Becaus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.79999999974126, 9.466111099982925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-238", + "dateofocc": "2006-10-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Oilfield supply vessels attacked 02 Oct, in Cawthorne Channel, Rivers state, Niger Delta. At least three soldiers protecting the convoy were killed, when about 70 gunmen in speedboats attacked the barges carrying fuel and other supplies to sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.100000000305158, 4.458333299761023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-239", + "dateofocc": "2006-10-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Bulk carrier surrounded by six boats,7 Oct at 2145 local time, in position 05-04.7N 098-25.7E. Crew mustered and activated anti-piracy measures. Some of the boats closed within 20 meters. At 2345 local time, there were two boats each", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.428333300362794, 5.078333300086854] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-240", + "dateofocc": "2006-10-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded 14 Oct, at 0400 local time in position 01-15.3S 116:47.7E, Balikpapan inner anchorage, Indonesia. Four robbers, in a small merchandised unlit dinghy, approached a bulk carrier during cargo operations. One robber boarde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.794999999909123, -1.255000000176381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-241", + "dateofocc": "2006-10-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded 9 Oct, at 0405 localtime, Tarahan anchorage, Indonesia. Three armed pirates boarded abulk carrier at poop deck. Alert duty watchman raised alarm but robbers escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, -5.516666700179371] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-242", + "dateofocc": "2006-10-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: General cargo ship reported attempted boarding 12 Oct, at 0500 local time in position 06-42.7S 039-28.3E, 10nm east of Dar Es Salaam pilot station, Tanzania. Three robbers armed with long knives attempted to board the general cargo ship, usi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.471666699661341, -6.711666700321416] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-243", + "dateofocc": "2006-10-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded and robbed 7 Oct, at 0140 local time in position 06-45.1S 039-19.9E, Dar Es Salaam anchorage area no. 2, Tanzania. Five robbers armed with knives boarded the container ship. The robbers held up one crew member and tied", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.33166669967477, -6.751666699675184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-244", + "dateofocc": "2006-10-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded 10 Oct, at 0234 local time in position 22-17.4N 091-44.1E, Chittagong anchorage a, Bangladesh. Four robbers boarded the bulk carrier. One robberarmed with knife attempted to enter accommodation. Alert crew closed all", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.7349999996203, 22.289999999744168] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-247", + "dateofocc": "2006-10-20", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Bulk carrier boarded 20 Oct at 0045 UTC in position 12-01S 077-11W, Callao anchorage 1a, Peru. Robbers boarded the bulk carrier via hawse pipe and stole from the ship's stores. The incident was reported to local authorities but no help arrived", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-248", + "dateofocc": "2006-10-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "BANGLADESH: Product tanker reported suspicious 21 Oct, at 0730 local time in position 22-11.31N 091-43.50E, Chittagong b anchorage, Bangladesh. A group of suspected robbers were spotted near the propeller of a product tanker. The crew chased them awa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725000000006673, 22.18861109965917] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-249", + "dateofocc": "2006-10-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Container ship boarded 21 Oct, in position 21-41.46N 088-01.13E, .8 miles north of CSF buoy, Sagar roads anchorage in Hugli river, Calcutta, India. Three robbers boarded thecontainer ship at poop deck and tried to steal from the ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.018888899943761, 21.691111100220894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-250", + "dateofocc": "2006-10-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Product tanker robbed 19 Oct, at 0700 local time in position 22-12.10N 091-40.50E, Chittagong b anchorage, Bangladesh. Robbers were detected at stern stealing zinc anodes from the product tanker. The ship's crew threw empty bottles and mo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.67500000013996, 22.201666699651412] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-4", + "dateofocc": "2004-12-22", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 22 Dec at 0310 local time, while at Campha anchorage. Eight persons armed with iron bars assaulted duty seaman. The robbers stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.316666700205133, 21.016666700022313] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-5", + "dateofocc": "2004-11-15", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified tanker reports being trailed on 15 Nov between 0100 and 0300 local time, while underway, in position 01-57.7S 044-47.8E, off the SE Somali Coast. A boat of about 60 meters in length came within one cable of ship's side before p", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.796666700305707, -1.961666700392641] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-6", + "dateofocc": "2004-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified multi-purpose cargo ship was boarded on 11 Nov at 2140 local time, while at Chittagong anchorage. Two people armed with knives gained access at the forecastle, broke open locker, and stole ship's stores. The Master raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-7", + "dateofocc": "2004-11-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded on 23 Nov at 0400 local time, at Chittagong anchorage. Six people armed with long knives stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-8", + "dateofocc": "2004-11-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded on 10 Nov at 0400 local time, at Chittagong anchorage B. Thieves stole ship's stores and safety equipment.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-9", + "dateofocc": "2004-11-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded on 7 Nov at 2330 local time, while at Chittagong anchorage. A group of about 10 to 15 people, armed with swords and knives, boarded the ship,and despite the crew firing distress rockets at them,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-10", + "dateofocc": "2004-11-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "BANGLADESH: More than 100 trawlers were reported looted during the night of 1-2 Nov on the Meghna River estuaries of Manpura, Tazmuddin, Daulatkhan of Bohia, and Dhal Char. In one case, a fisherman fought back and detained some of the pirates, whereupon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.933333299927085, 22.333333300226684] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-11", + "dateofocc": "2004-11-22", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "RESEARCH VESSEL", + "descriptio": "MALAYSIA: A suspicious unlit craft was noticed on radar by the duty officer of an unidentified research ship on 22 NOV at 2120 local time, while the ship was in position 05-51.2N 118 -53.4E off Sandakan. When craft approached to 2.5 miles, ship's crew s", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.890000000350028, 5.853333300269298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-12", + "dateofocc": "2004-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE: An unidentified tanker was boarded on 19 Nov at 2325 local time, while underway in position 01-17.9N, 104-06.1E, at the Eastern Buoy. Seven people armed with long knives stole ship's cash and escaped. This is a rare instance of crime inside", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.101666699871885, 1.298333299550904] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-13", + "dateofocc": "2004-11-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded on 24 Nov at 0630 local time, while anchored in position 01-21.1S 117-01E, 14nm off Balikpapan. Three people armed with guns and knives boarded via the hawse pipe, took deck watch hostage, and stole stores a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.016666700428914, -1.351666699680436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-14", + "dateofocc": "2004-11-19", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports suspicious approach by unlit small craft on 19 NOV at 0330 local time, while underway in position 03-12N 108-47.7E, 10nm off Pulau Subi Kecil. Boat was spotted on radar at a distance of 5 miles, making 5 knots.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.794999999650372, 3.19999999990921] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-15", + "dateofocc": "2004-11-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: 6 people attempted to board au unidentified bulk carrier on 17 Nov at 1920 UTC, at Cigading anchorage in position 06-01S 105-54E. Using grappling hooks, they began to climb the forecastle but escaped in a waiting boat, when the alarm was rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.900000000442617, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-16", + "dateofocc": "2004-11-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker reports attempt to board on 16 Nov, at 1055 at Balikpapan anchorage. About nine people were climbing the anchor chain when the crew raised alarm and the intruders fled in a waiting motorboat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.500000000152852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-17", + "dateofocc": "2004-11-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker was boarded on 14 Nov at 0550local time while at Lawi-Lawi SBM anchorage. Three armed people boarded from a black motorboat and broke into forecastle I locker. They stole ship's stores and threatened the duty seaman with i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.758333299885408, -1.500000000152852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-18", + "dateofocc": "2004-11-09", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded on 9 Nov at 0510 local time, while at Balikpapan inner anchorage. Two people armed with knives boarded the ship, while it was being piloted from anchorage to the open sea. The thieves threatened crew,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.758333299885408, -1.266666699817108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-205", + "dateofocc": "2005-06-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified container ship was boarded 25 Jun at 0230 local time, while at Tema anchorage. Three robbers boarded the vessel via the hawse pipe. They cut forward store lock but were unable to open the door. Crewman on duty raised alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-206", + "dateofocc": "2005-06-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The general cargo ship (SEMLOW) was hijacked 27 Jun somewhere between Haradhere and Hobyo, approximately 190 miles northeast of Mogadishu. Hijackers are demanding $500,000 to free the vessel and ten crewmen. The vessel was under charter of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.341666700381779, 2.019444400286204] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-207", + "dateofocc": "2005-06-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship reported an attempted boarding 26 Jun at 0230 local time, while at Chittagong anchorage 'C'. Robbers in a boat attempted to board using a hook attached to ropes. Anti-piracy watch spotted them, raised alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-208", + "dateofocc": "2005-06-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: M/T (NEPLINE DELIMA) was hijacked 13 June at 2100 UTC, while underway off Langkawi Island. Ten armed pirates boarded from a speedboat. One crew member managed to escape in the pirates' boat, landed at Langkawi, and notified police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.766666699646237, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-209", + "dateofocc": "2005-06-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 24 Jun at 0230 local time while at Jakarta anchorage. They stole a life raft and escaped in a speedboat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.875000000091916, -6.075000000098441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-210", + "dateofocc": "2005-06-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jun at 0550 local time, while in position 01-27.2S 116-42.0E, Lawi-Lawi oil terminal anchorage, Balikpapan. Two robbers boarded the vessel at the forecastle. Alarm was raised and crew mustered. Robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.700000000432169, -1.45333329961619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-211", + "dateofocc": "2005-06-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAIT: An unidentified tug reported an attempted boarding at 1015 local time, while underway in position 01-17N 104-12E on 20 June. Persons wearing dark clothes in four speedboats, 6-8 meters in length with open tops, approached the tug. B", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.19999999957821, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-212", + "dateofocc": "2005-06-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "IRAQ-N.ARABIAN GULF: The U.S. flag tug (THUNDER) and integrated barge (LIGHTNING) was boarded 30 June early morning local time, while approaching Iraqi waters enroute Umm Qasr, with reconstruction aid material. The pirates held crew at gunpoint, fired", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.866666700428311, 29.833333300019547] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-213", + "dateofocc": "2005-07-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 04 Jul at 0310 local time in position 06-19.5N 003-22.0E, anchored 4nm from the breakwater, Lagos. Five robbers tied up and assaulted duty crewman. They stole ship's equipment and stores. They then escaped a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.325000000122714] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-214", + "dateofocc": "2005-06-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The general cargo ship (SEMLOW) was hijacked 26 Jun while underway, in position 04-47.6N 048-12.0E, off Hobyo. Hijackers are demanding $500,000 to free the vessel and ten crewmen. The vessel was under charter of the UN World Food Program and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.199999999565875, 4.793333299857295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-215", + "dateofocc": "2005-07-06", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship was boarded 06 July at 0550 UTC, while at Kingston anchorage. Five robbers, armed with long knives, threatened the crewmember on duty, broke locks off storerooms, and opened a container on deck. Alert crew raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-217", + "dateofocc": "2005-07-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was boarded 06 Jul at 0300 local time, while anchored 1.2 miles NE of fairway buoy, Ennore anchorage. Alert crew raised alarm after three robbers boarded the vessel. Robbers escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.389999999554675, 13.699999999799104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-39", + "dateofocc": "2006-02-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 1 Feb at 0130 local time, while anchored in position 05-52.7S - 106-00.3E, Merak anchorage. Five armed robbers boarded via the poop deck and entered engine room. They attacked and tied up", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.005000000432517, -5.878333299961639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-40", + "dateofocc": "2006-02-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified RO RO ferry was approached 8 Feb at 0450 UTC, while underway in position 15-21.7N 052-34.1E. Several speedboats approached the ferry at forward and stern. Boats came within 400m at stern. Several persons in each boat had", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.568333299825724, 15.361666700437468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-41", + "dateofocc": "2006-02-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: An unidentified chemical tanker was approached 7 Feb at 0120 local time, while underway in position 01-15N 104-07E. An unlit speedboat approached the tanker at port bow. Master altered course and took evasive maneuvers. However anot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-42", + "dateofocc": "2006-02-18", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An offshore barge was boarded and hostages taken 18 Feb in a pre-dawn raid, along the Escravos coast. Militants in speedboats stormed the barge and abducted nine people. Militants also blew up two nearby oil and gas pipelines, and set fire to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.94999999974101, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-43", + "dateofocc": "2006-02-18", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified RO-RO ship was followed 18 Feb at 0720 local time, while underway in position 00-11.48N - 052-45.59E, 400nm off the coast. A boat doing 12 knots followed the vessel. Ship took evasive maneuvers, increased speed, and proceeded", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.759722199965836, 0.191388899650804] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-44", + "dateofocc": "2006-02-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified bulk carrier reported an attempted boarding13 Feb at 0415 local time, while at anchor off San Pedro. Six boats, with more than fifteen persons, tried to board using hooks and ropes at the stern and near the no.1 hatch, port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.749999999648139, 4.666666700437816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-45", + "dateofocc": "2006-02-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified chemical tanker was surrounded by boats 18 Feb at 0700 UTC, while underway in position 14-24.0N 051-43.6E. Six speedboats doing 20 knots surrounded the vessel. Master altered course, increased speed, raised alarm, and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.726666699639452, 14.399999999731847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-46", + "dateofocc": "2006-02-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified container ship was surrounded by boats 18 Feb at 0430 UTC, while underway in position 13-39N 049-18E. Four crafts, doing 21 knots, surrounded the vessel. Boats came within 0.6 nm and crossed the bow and stern of the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.300000000230966, 13.64999999993239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-47", + "dateofocc": "2006-02-20", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified container ship reported being followed 20 Feb at 0618 UTC, while underway in position 01-55.9N 048-52.2E, 150 nm off the coast. The vessel observed two white speedboats following them, while doing 17 knots. The vessel increa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.86999999975842, 1.931666700443827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-48", + "dateofocc": "2006-02-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified multipurpose ship was boarded and robbed 19 Feb at 1930 local time at anchorage 'B', Chittagong roads. Five robbers in a boat, pretending to have engine trouble, approached the vessel. Three robbers armed with wooden battens", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-49", + "dateofocc": "2006-02-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "RED SEA: An unidentified yacht was boarded and robbed 19 Feb at 0400 local time, while anchored in position 27-33.7N 33-47.0E, Endeavour harbor, Tawila Island. Four robbers, in a six meter blue colored fishing boat, boarded the yacht. Alert skipper", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [33.783333300282209, 27.561666700292392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-50", + "dateofocc": "2006-02-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified RO RO ship was boarded and robbed 20 Feb at 1920 UTC, while in position 05-56.3S 106-06.8E, Pt Cilegon Fabricators jetty,West Java. Robbers in a motorboat boarded by using a hook attached to a rope. They ent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.113333299752469, -5.938333300341299] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-120", + "dateofocc": "2004-05-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: Unidentified product tanker was boarded 4 May at 0125 UTC in position 05-36N 00-01E. Tema outer anchorage by 3 persons armed with knives. Duty seaman raised alarm and thieves stole his walkie talkie and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.599999999806982] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-121", + "dateofocc": "2004-05-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Unidentified tanker was boarded 7 May at 0555 local time while in position 13-05.7N 080 -22.5E at Chennai anchorage. Persons armed with knives boarded at the poop and threatened duty seaman, who had seen them and activated fire hose. Seaman rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.374999999684576, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-122", + "dateofocc": "2004-05-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker boarded 10 May while underway in position 01-24.15N 105-16.05E, east of Bintan Island. Seven persons armed with knives and guns tied up second officer and duty seaman on bridge, entered cabins, and stole cash, personal bel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.267500000374923, 1.402500000338989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-123", + "dateofocc": "2004-05-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE: Unidentified tanker was boarded 9 May at 0115 local time while in position 01-14N 103 -34E at the Outside Port Limits anchorage. Five persons armed with knives took master, chief officer, chief engineer, third officer, two other crew hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-124", + "dateofocc": "2004-05-04", + "subreg": "72", + "hostility_": "SHORESIDE PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Duty officer of unidentified chemical tanker spotted 3 persons trying to break lock on forecastle store 4 May at 0440 local time while ship was at oil berth, Sandakan. Intruders jumped overboard empty handed when alarm raised (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.058333300017352, 5.791666699687312] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-125", + "dateofocc": "2004-05-16", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BRAZIL: Unidentified fishing vessel boarded 16 May in position 24-05S 046-19W at Ilhas Das Palmas (Guaruja), Santos by 3 persons operating from a red and white aluminum boat. The 3 stole ship's equipment, stores and personal property and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.31666670023975, -24.0833333002671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-126", + "dateofocc": "2004-05-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Unidentified chemical tanker was boarded 12 May while engaged in STS operations 10 nm off Lagos (06-27N 003-23E). Intruders assaulted duty seaman who raised alarm, but thieves escaped with stores, equipment and crew personal effects (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-127", + "dateofocc": "2004-05-15", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE: Unidentified bulk carrier reports attempt to board 15 May at 0210 local time while at B1 inner anchorage, Freetown. Duty seaman spotted persons trying to gain access via hawse pipe and raised alarm. Signal station informed and naval patr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.216666700338465, 8.502777799974297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-128", + "dateofocc": "2004-05-16", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Unidentified general cargo ship reports being followed suspiciously 16 May at 0455 UTC while underway in position 12-34N 051-37E off N. E. Somalia. Boat did not continue pursuit when ship increased speed (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.616666700292399, 12.566666700063763] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-129", + "dateofocc": "2004-05-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Unidentified bulk carrier reports attempt to board 16 May at 0715 UTC while anchored in position 13-06N 080-22E, Chennai (Madras) outer roads. Eight persons armed with long knives tried to gain access via the stern, but duty seaman raised alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.366666700098051, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-130", + "dateofocc": "2004-05-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified container ship was boarded 13 May at 0730 UTC while at Tanjung Priok anchorage and stole equipment from a life raft (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-131", + "dateofocc": "2004-05-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Unidentified tug was boarded 8 May at 2200 local time while underway in position 05-35.5S 106-39.67E 20 nm north of Pulau Panjang in the Java Sea. Eleven persons armed with long knives and guns threatened the crew and stole ship's property,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.661111099632308, -5.591666700429073] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-132", + "dateofocc": "2004-05-20", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HONDURAS: Unidentified container ship reports attempt to board 20 May at 0220 local time while anchored at Puerto Cortes. Three persons tried to gain access via anchor chain but fled when alarm was raised (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.951388900287441, 15.836111100269875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-133", + "dateofocc": "2004-05-18", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: Unidentified container ship was boarded 18 May at 0520 local time while anchored at Dakar. Three masked persons from a fishing boat threatened crew and escaped with ship's stores. Port authority notified via VHF (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.408333299624076, 14.677777800151546] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-134", + "dateofocc": "2004-05-02", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier reports boarding 24 May at 1950 UTC while underway in position 01-43S 117-10E, Makassar Strait. Two persons gained access but jumped overboardand fled, when spotted by duty officer who raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.166666700029054, -1.71666670041617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-19", + "dateofocc": "2004-11-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded on 3 Nov at 0245 local time while anchored at Adang Bay. Three people gained access at the forecastle, broke into the storeroom, and stole the ship's stores before escaping in a boat toward Balikpapan", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.466666700096425, -2.083333299555647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-20", + "dateofocc": "2004-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG tanker was boarded on 3 Nov at 0115 local time, while underway in position 03-16.5N 105-21.9E. The Master, second officer, and duty seamanwere held hostage by people armed with long knives, while ship's cash and crew belo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.364999999980114, 3.175000000425541] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-21", + "dateofocc": "2004-11-03", + "subreg": "74", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified cargo ship was boarded on 3 Nov at 0115 local time, while underway in position 12-00.5S 105-24.4E. Five people armed with long knives boarded at the stern, from a wooden boat containing two accomplices. They went to the bridg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [108.436666700097476, -12.008333299629271] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-22", + "dateofocc": "2004-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded on 3 Nov at 0100 local time, while underway in position 03-16N 105-24.4E. Nine pirates armed with knives took the third officer and second officer hostage, to force them to call the master to the bridg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.406666700260303, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-23", + "dateofocc": "2004-11-03", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker reports suspicious approach on 3 Nov at 0225 local time, while underway in position 02-01S 108-29E. Two unlit speedboats were detected ahead of the tanker and one approached to within 5 cables, at 20 knots. The", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.483333299910043, -2.016666699616508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-24", + "dateofocc": "2004-11-17", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Five people boarded an unidentified container ship on 17 Nov at 2300 local time, while underway about 6 nm \"off\" Ho Chi Minh City (NFI). Crew raised alarm and intruders fled empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.70000000010873, 10.749999999568843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-25", + "dateofocc": "2004-12-31", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC: An unidentified LPG tanker was boarded 31 Dec at 0330 local time, while at CBM terminal, Rio Haina. Two persons armed with long knives boarded at the mooring buoys but jumped overboard after one had threatened duty officer, when he", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-26", + "dateofocc": "2005-01-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified general cargo ship was boarded 2 Jan at 2120 UTC, while anchored at Kandla outer anchorage. Robbers broke into forecastle locker and stole ship's stores, escaping in their boat when duty officer raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.116666700441044, 22.833888900043576] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-27", + "dateofocc": "2004-12-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified general cargo ship was boarded 27 Dec, while anchored at Kandla inner anchorage, by robbers operating from a small boat. The robbers stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [73.224999999858028, 20.499999999659281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-28", + "dateofocc": "2004-12-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Eight pirates armed with knives in an unlit boat boarded a bulk carrier 29 Dec at 1720 UTC, while underway in position 22-05N 091-43E, off Chittagong. Alert crew mustered and switched on deck lights but thieves nonetheless broke into aft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-29", + "dateofocc": "2005-01-02", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF HORMUZ: An unidentified container ship reports suspicious approach 2 Jan at 0730 local time by six 6- to 8-meter blue speedboats, while underway in position 26-13.2N 056-52.2E. Each boat held several persons armed with guns and wearing black", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.870000000017114, 26.219999999880258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-30", + "dateofocc": "2005-01-03", + "subreg": "71", + "hostility_": "SUS[ICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports being followed 3 Jan at 0120 local time, while underway in position 01-14N 103-25E in the Phillip Channel by a boat named (GOLDEN SPHERE SC-375). After being followed for 50 minutes, the tanker's master activa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-31", + "dateofocc": "2004-12-30", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES:", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.770833299788933, 12.887500000391128] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-32", + "dateofocc": "2004-12-30", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "PHILIPPINES: The tug (CHRISTIAN) and barge (FLORA) are reported missing 30 Dec after failing to report since 14 Dec, when they were underway in position 05-34N 119-22E in the Sulu Sea, on a voyage from the Philippines to Indonesia. ONI NOTE: In most c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.366666699560596, 5.566666699837413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-33", + "dateofocc": "2005-01-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 6 Jan at 0400 local time, while anchored at Chittagong outer anchorage. \"Several\" robbers, armed with long knives, boarded at the poop deck. Crew activated fire hoses and the robbers fled in a waiting spee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-228", + "dateofocc": "2005-07-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (HANSEDUO) was fired upon 16 Jul at 1325 local time, while underway in position 03-05N 048-05E, east coast of Somalia. Four pirates, armed with guns, fired upon the vessel from a speedboat and tried to board at the starboard quarter. Shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.083333299935248, 3.083333300278639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-216", + "dateofocc": "2005-06-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The general cargo ship (SEMLOW) was hijacked 26 Jun, while underway in position 04:47.6N, 048:12.0E, off Hobyo. Hijackers are demanding $500,000 to free the vessel and ten crewmen. The vessel was under charter of the UN World Food Program (WF", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.199999999565875, 4.793333299857295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-218", + "dateofocc": "2005-07-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ-N.ARABIAN GULF: The M/V (DUBAI PALM) was boarded 10 July at 0230 UTC, while underway in position 29-36.4N 048-57.2. An unknown number of pirates held the crew at gunpoint and took money and personal effects before departing the vessel (Operator).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.953333299594703, 29.60666669996732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-219", + "dateofocc": "2005-07-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker was boarded 12 Jul at 1630 UTC, while underway in position 01-13.34N 103-34.23E. Six pirates, armed with long knives, detained the crew and seized personal belongings, money, and ships property. Pira", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.57055559988919, 1.222222200423801] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-220", + "dateofocc": "2005-07-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "MALAYSIA: The tug (SAMUDRA SINDO VIII) towing barge (AGANDA 7) was boarded 03 Jul at 0005 local time, while awaiting berthing at Tanjung Pengelih port. Eight pirates, armed with guns and long knives and wearing face masks, held master and crew hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.08333329994764, 1.369444400220175] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-221", + "dateofocc": "2005-07-11", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported attempted boarding 11 Jul at 1100 local time, while underway in position 01-17.50S 117-09.50E, Balikpapan. Pirates, armed with long knives, attempted to board the vessel from a 4 meter long speedboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.158333299718493, -1.291666700200096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-222", + "dateofocc": "2005-07-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 06 Jul at 0030 local time, while anchored in position 01-42.3N 101-26.7E, Dumai inner anchorage. Alert crewmember on duty raised alarm after three armed robbers boarded the vessel. Crew mustered and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.44500000035697, 1.704999999667507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-223", + "dateofocc": "2005-07-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 06 Jul at 0100 local time, Surabaya. Robbers stole a life raft and ship's property (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.720833299631181, -7.191666699761356] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-224", + "dateofocc": "2005-07-18", + "subreg": "26", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship was boarded 18 July at 0300 local time, while at Kingston Anchorage. Alert crew raised alarm after a robber, armed with a crowbar, boarded the vessel. The robber jumped overboard and escaped in a boat, waiting w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-225", + "dateofocc": "2005-07-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 15 Jul at 0215 local time, while in position 06-18.2N 003-23.4E, Lagos anchorage. Three robbers, armed with knives, held two duty crew hostage and took their walkie-talkies. They stole ships stores and esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.389999999762495, 6.303333299969097] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-226", + "dateofocc": "2005-07-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified product tanker was boarded 15 Jul at 0315 local time, while in position 06-19.7N 003-22.5E, Lagos anchorage. Three robbers, armed with knives, boarded the vessel during STS operations. Two robbers overpowered a duty crewman a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.374999999892395, 6.328333300352085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-227", + "dateofocc": "2005-07-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship was boarded at 0200 local time, while drifting off port at Dar Es Salaam. Eight robbers boarded the vessel from a motorboat and broke into a container. Alert crew mustered and robbers escaped empty handed (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.399999999641011, -6.716666699678569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-51", + "dateofocc": "2006-02-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 13 Feb at 0430 local time, while in position 06-04.0S 106-53.6E, Tg. Priok anchorage. Seven robbers boarded and tried to enter engine room. Duty engineer raised alarm and crew mustered. Robbers ju", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.893333300191387, -6.066666699612597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-52", + "dateofocc": "2006-02-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:The dhow (Bhaki Sagar), an Indian Vessel, was on route from Kismayo to El-Maan. While underway off Mogadishu at 0530UTC, Pirates, armed with guns in two speedboats, boarded a big wooden vessel (dhow or Bhaki Sagar). They hijacked the vessel and a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.916666700197993, 2.216666699774009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-53", + "dateofocc": "2006-02-23", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:At 1025 local time off Balikpapan, two crafts chased a bulk carrier, that was underway. The master raised alarm, took evasive manoeuvres, crew mustered, and craft moved away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.975000000148725, -1.541666700433041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-54", + "dateofocc": "2006-02-23", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified bulk carrier was boarded and robbed 23 Feb at 1930 local time at Callao anchorage, Peru. Two life rafts and ship's stores were stolen and robbers escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-55", + "dateofocc": "2006-02-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified supply ship reported an attempted boarding 26 Feb at 1300 local time, while underway 8nm off Bonny fairway buoy. Four pirates armed with AK-47 rifles, in a black zodiac rubber dinghy with outboard motor, attempted to board. Ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.216666699838697] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-56", + "dateofocc": "2006-03-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified product tanker was boarded and robbed 4 Mar during early morning, at anchorage off Talara. Seven armed robbers held the master and crew at gunpoint. They stole cash, equipment, and personal belongings of crew and escaped (IMB, LL", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.298333299648789, -4.565833300087832] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-57", + "dateofocc": "2006-03-05", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: An unidentified bulk carrier was approached 5 Mar at 0500 UTC, while underway in position 14-42N - 051-42E. Six fast boats, with a yellow-red colored hull, approached the bulk carrier making more than 20kts. Each boat had four persons on", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.700000000128682, 14.699999999831448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-58", + "dateofocc": "2006-03-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship reported boarding and attempted robbery 5 Mar at 0345 local time, at Chittagong C anchorage. Four country boats approached the vessel. Two boats came close to port side and two boats approached at stern. Twe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-59", + "dateofocc": "2006-03-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship reported boarding and attempted robbery 4 Mar at 2340 local time, while in port at Chittagong C anchorage. Twelve robbers attempted to board at port side. They threatened duty seamen who raised alarm. Crew mu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-60", + "dateofocc": "2006-03-02", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified cargo ship was approached 2 Mar at 1722 local time, while underway in position 01-28N - 052-42E, 350 nm from the east coast. A white-hulled trawler making 12.6 knots followed the vessel. Master took evasive maneuvers and trawl", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.700000000161026, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-61", + "dateofocc": "2006-02-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded and robbed 17 Feb at 2055 local time at Chittagong C anchorage. Ten robbers armed with long knives, rods and battens boarded the vessel. They took hostage a duty crew, assaulted him, tied him, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-62", + "dateofocc": "2006-02-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUGBOATS", + "descriptio": "ARABIAN SEA: Two tugboats (JAWA and JAWA BOSAR) were boarded and robbed 24 Feb, while anchored off the coast near Manora Island. The manager for the tugboats, owner, reported to police that four masked men approached the boats, in two separate vessels.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [66.966666699844552, 24.799999999888314] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-63", + "dateofocc": "2006-02-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOAT", + "descriptio": "BANGLADESH: Unidentified fishing trawlers were attacked 26 Feb off the Sundarban coast. Indian pirates launched a violent attack on 20 trawers. Thirty men were injured and one was killed (LL).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 21.499999999691624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-64", + "dateofocc": "2006-03-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "YEMEN: Unidentified fishing boats were hijacked 6 Mar near Abd al Kuri Islands, Socotra. Somali pirates hijacked four Yemeni fishing vessels with 50 fishermen on board, as they carriedout their daily fishing duties. The four vessels where taken to an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.183333299798051, 12.17499999981726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-135", + "dateofocc": "2004-05-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified container ship reports attempt to board 24 May at 1318 UTC while underway in position 00-54N 105-04E in Selat Berhala. Six to 8 persons, dressed in black, approached in 2 black rubberized boats with twin outboard motors. Duty s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.066666699907557, 0.899999999744921] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-136", + "dateofocc": "2004-05-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified chemical tanker boarded 19 May at 1935 UTC at Belawan anchorage by 3 persons, who stole ship's stores and escaped overboard when chased by crew. Master attempted to contact port authorities without success (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-137", + "dateofocc": "2004-05-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The tanker (AGATE) was boarded 19 May at 0200 local time at Balongan anchorage. Three persons armed with knives held an oiler hostage, while the others ransacked engines stores, and escaped ship's property at about 0200. Oiler uninjured but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.466666699837674, -6.266666699978771] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-138", + "dateofocc": "2004-05-19", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Unidentified bulk carrier reports approach 19 May at 0435 local time while at SPA berth No. 1, Sandakan, by five persons in a light colored boat about 7 m long. Men were carrying long poles with hooks but moved away toward oil jetty when Duty", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.836111099946493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-139", + "dateofocc": "2004-05-19", + "subreg": "71", + "hostility_": "PIRATES / KIDNAPPING", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA-THAILAND: Four Thai fishermen were kidnapped for ransom 19 May at 2100 local time when their boat was boarded 39 nm off Gertak Sanggul, Balik Pulau, Penanang (Pinang) Island, by 6 persons armed with sub machine guns. One crew member was releas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.183333299551691, 5.266666699737755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-140", + "dateofocc": "2004-05-23", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA-HONG KONG: The 91-ton cargo ship (CHUNG HO LIN) was boarded 23 May at 2015 local time while underway in Hong Kong waters, near Lamma Island (Pok Liu Chau), forcing 7 of its crew of 10 to jump overboard. The 5 or 6 \"probable\" Mainland Chinese assa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.105555599775698, 22.274999999874069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-141", + "dateofocc": "2004-05-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Unidentified cargo ship reports attempt to board 27 May during the night while at anchor Chennai anchorage. Crew contacted Coast Guard which apprehended the men armed with knives and swords and turned them over to police (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.374999999684576, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-142", + "dateofocc": "2004-05-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Unidentified container ship was boarded 26 May at 0415 local time, while anchored at Chennai (Madras) Roads. Four armed men boarded using grappling hooks and stabbed one of the crew when alarm was sounded, escaping in their boat with four accompl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.366666700098051, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-143", + "dateofocc": "2004-05-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Unidentified cargo ship was boarded 25 May at 0350 local time while at Chennai (Madras) anchorage, by a single armed man operating from a green boat with a white line containing 3 accomplices. Crew raised alarm and intruder escaped empty handed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.374999999684576, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-144", + "dateofocc": "2004-05-29", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT: Unidentified LPG tanker reports suspicious approach 29 May at 2120 local time, while underway in position 05-05.1N 100-10.2E. Three very fast grey speedboats positioned themselves with one ahead and one on either flank. Crew sounded w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.169999999708693, 5.085000000370371] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-43", + "dateofocc": "2005-01-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "BANGLADESH: Eleven fishing trawlers were looted, 2 fishermen are missing and 27 injured during incidents, over a two day period during Eid-il-Azha according to a 28 Jan report. The incidents are reported in the Bay of Bengal, off the Patharghata coast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.966666699689029, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-145", + "dateofocc": "2004-05-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT: Unidentified cargo ship reports being fired upon and forced to stop 25 May at 1700 local time while in position 03-33.49 099-4.8E off Sumatra. Four persons armed with machine guns and hand grenades went to bridge where they damaged al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.079999999556549, 3.55805559961135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-146", + "dateofocc": "2004-05-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified container ship was boarded 26 May at 0415 local time while underway in position 01-42N 104-40E by 7 persons armed with long knives. Chief officer taken hostage and taken to master's cabin where pirates stole ship's cash.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, 1.53333329991375] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-34", + "dateofocc": "2005-01-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 9 Jan at 0500 local time, while anchored at Tanjung Priok (Jakarta). Five persons armed with knives entered engine room, but crew mustered and fought with the intruders, who then jumped into a bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.894444399968108, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-35", + "dateofocc": "2005-01-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 7 Jan at 1220 local time, while anchored 3 miles off the breakwater at Tanjung Priok (Jakarta) cargo anchorage. Four armed robbers stole engine spares and then escape din a high speed boat (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.894444399968108, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-36", + "dateofocc": "2004-12-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-MALACCA STRAIT: An unidentified container ship reports attempt to board 17 Dec at 2330 local time, while underway in position 03-54N 099-54E. When an unlighted boat approached, crew activated fire houses, switched on lights, and began evasiv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.900000000248554, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-37", + "dateofocc": "2005-01-11", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified tanker was boarded 11 Jan at 0350 local time, while underway at Kingston, Jamaica. Three persons armed with long knives boarded at forecastle, broke into locker and stole supplies. Crew mustered and robbers left at 0415 in a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-38", + "dateofocc": "2005-01-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified general cargo ship was boarded 15 Jan at 0730 UTC, while at Macapa anchorage on the Amazon River. Intruders boarded via anchor chain and stole ship's stores, from forecastle locker. Crew raised alarm and robbers escaped in a spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.050000000271382, 0.019444400221516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-39", + "dateofocc": "2005-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA-OMAN: An unidentified container ship reports attempt to board 12 Jan at 1045 local time, while underway in position 20-47N 059-14E. Four masked person in four white speedboats were driven off by crew, who mustered and activated fire hoses,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.233333299891171, 20.783333299861795] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-40", + "dateofocc": "2004-12-31", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAB EL MANDEB: An unidentified tanker reports suspicious approach 31 Dec at 2300 local time, by an unlit 10-meter fast boat, while underway in position 15-29N 042-29E. Crew directed searchlight at boat, on port quarter, and boat then turned and moved", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.483333299574269, 15.483333299600474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-41", + "dateofocc": "2005-01-13", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 13 Jan at 1550 UTC, at Pulau Laut anchorage. Four persons armed with guns and long knives boarded at the forecastle, stole a life raft, and escaped in a speedboat, when crew sounded alarm and mustered", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.316666699596908, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-42", + "dateofocc": "2005-01-19", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINICAN REPUBLIC: An unidentified tanker was boarded 19 Jan at 0135 local time, while at berth No. 2 (Rio Haina) during cargo operations. Two persons armed with knives were discovered and jumped overboard to escape, when duty seaman raised alarm (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-153", + "dateofocc": "2004-06-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA: An unidentified trawler was boarded 3 Jun at daybreak while anchored at Mombasa by nine persons who stole ship's property and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.859722199602288, 4.133611099853226] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-44", + "dateofocc": "2005-01-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "BANGLADESH: At least 13 trawlers are reported looted in incidents on 1, 2 and 9 Jan according to a 19 Jan report. The incidents took place in the Meghna River, around Bhola district (INFO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.816666700121232, 22.650000000223486] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-45", + "dateofocc": "2005-01-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jan at 0340 local time, while berthed at Panjang. Three persons armed with long knives jumped overboard and escaped empty handed in a speedboat, when duty officer sounded alarm and crew mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.350000000110072, -5.483333300385027] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-46", + "dateofocc": "2005-01-16", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified general cargo ship was boarded 16 Jan at 0010 local time, while anchored in position 20-39N 106-51E at Haiphong. \"Several\" persons boarded at the forecastle,stole ships stores, and fled in an unlit boat when duty seaman raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.849999999708871, 20.650000000158798] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-47", + "dateofocc": "2005-01-19", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified tanker was boarded 24 Jan at 2310 local time, at Callao anchorage. Two robbers armed with knives attempted to steal ship's stores. Alert crew mustered and robbers jumped overboard. Robbers escaped in a boat waiting with other accom", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-229", + "dateofocc": "2005-07-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (PARANA) was fired upon 16 Jul at 1600 local time, while underway in position 04-37.4N 04825.9E, east coast of Somalia. Four pirates, wearing military fatigues and armed with shoulder fired rockets and machine guns, opened fire upon the v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.431666699699292, 4.623333300130582] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-230", + "dateofocc": "2005-07-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified container ship was fired upon 18 Jul at 0300 local time, while underway in position 12-11N 050-27E off Caluula, NE coast of Somalia. Six pirates in two boats, armed with guns, fired upon the vessel in an attempt to board. Sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.449999999863451, 12.183333300303104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-231", + "dateofocc": "2005-07-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified RORO was fired upon 17 Jul at 1830 local time, while underway in position 12-09N 050-52E off Caluula, NE coast of Somalia. Seven pirates in two boats, armed with guns, fired upon the vessel in an attempt to board from the ste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.866666699593679, 12.150000000333534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-232", + "dateofocc": "2005-07-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Singapore Straits:Six pirates armed with long knives and wearing black facemasks boarded a tanker underway, via a speedboat. They took hostage two duty crewmembers and tied them up. They entered accomodation and took captain, oiler , and 2/E as hostages", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.568611100186558, 1.219722200295564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-233", + "dateofocc": "2005-07-18", + "subreg": "26", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship was boarded 18 July at 0300 local time, while at Kingston Anchorage. Alert crew raised alarm after a robber, armed with a crowbar, boarded the vessel. The robber jumped overboard and escaped, in a boat waiting w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-234", + "dateofocc": "2005-07-21", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified bulk carrier was boarded 21 Jul at 2000 local time, while at Callao anchorage no 1. Six robbers in a boat approached the vessel. One robber boarded via the anchor chain. Alert crew raised the alarm and the robber escaped empty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.025000000425791] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-235", + "dateofocc": "2005-07-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 15 Jul at 0215 local time, while in position 06-18.2N 003-23.4E, Lagos anchorage. Three robbers, armed with knives, held two duty crew hostage and took their walkie-talkies. They stole ships stores and esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.374999999892395, 6.303333299969097] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-236", + "dateofocc": "2005-07-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 21 Jul at 1745 local time while underway in position 03-38N 049-30E, east coast of Somalia. Pirates, armed with guns, approached the vessel in a blue and white-hulled speedboat, that was approximate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.49999999969782, 3.633333299711865] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-237", + "dateofocc": "2005-07-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: RORO vessel (JOLLY MARRONE) was fired upon 21 Jul at 1100 local time, while underway in position 03-30N 049-20E, east coast of Somalia. Six pirates, armed with guns, opened fire from two boats in an attempt to board. Crew mustered and ship i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.333333300200536, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-238", + "dateofocc": "2005-07-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: An unidentified general cargo ship reported an attempted boarding 23 Jul at 1030 local time, while underway in position 13-41.53N 042-29.16E, southern Red Sea. Twelve armed persons in, two low profile, white hull speedboats approached the ves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.485833299702506, 13.692222199738865] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-239", + "dateofocc": "2005-07-23", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: An unidentified general cargo ship reported an attempted boarding 23 Jul at 1650 local time, while underway in position 12-32.3N 043-26.6E, SE lane of Bab El Mandeb TSS, southern tip of the Red Sea. Six persons, armed with guns in a low profi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.443333300252846, 12.538333299626629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-240", + "dateofocc": "2005-07-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified fishing vessel was fired upon 21 Jul at 2030 local time, while underway 12nm off Muar, Johor. Pirates, armed with guns, opened fire on the vessel, and wounded two crewmembers. Crewmembers were later taken ashore for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.508333300099025, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-65", + "dateofocc": "2006-03-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was approached 5 Mar at 0605 local time, while underway in position 03-01.5S - 107-18.5E, Gelasa straits. Six masked pirates with long knives in a speedboat approached the vessel. D/O raised alarm and crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.308333299894571, -3.025000000134696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-66", + "dateofocc": "2006-03-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDONESIA: An unidentified motor yacht reported an attempted boarding 2 Mar at 2155 local time, while underway in position 00-54.31N - 105-53.18E. Several persons in two fishing boats attempted to board. First boat approached at port bow on collision", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.886388900024713, 0.905277799676924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-67", + "dateofocc": "2006-03-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "MALAYSIA: An unidentified motor yacht was boarded and robbed 1 Mar at 2245 local time, off Tioman islands. Robbers boarded and stole cash, personal belongings, and other portable items. Police arrested three suspects and have recovered some of the sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.066666699875213, 2.833333300045695] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-68", + "dateofocc": "2006-02-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported boarding and attempted robbery 28 Feb at 0330 local time, at Samarinda anchorage. Robbers boarded vessel, broke storeroom locks, and attempted to steal ship's stores and property. Alert crew foiled atte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.153611100036869, -0.502222199673895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-69", + "dateofocc": "2006-02-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 27 Feb at 0255 local time, while in position 03-12S - 116-20E, North Pulau Laut outer anchorage. Three robbers armed with guns and knives boarded the vessel via anchor chain. They took hos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.333333299669334, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-70", + "dateofocc": "2006-02-21", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "MALAYSIA: An unidentified motor yacht reported boarding and attempted robbery 21 Feb, at 2000 local time off Tioman islands. Robbers boarded and stole cash, personal belongings, and other portable items. Local police arrested three suspects and have re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.066666699875213, 2.833333300045695] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-71", + "dateofocc": "2006-03-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "MALAYSIA:An unidentified motor yacht was boarded and robbed at 2245 LT off Tioman Islands, Malaysia. The robbers boarded and stole cash, personnel belongings, and other portable items. Police arrested 3 suspects and have recovered some of the stolen item", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.833333299714695, 2.45000000010981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-72", + "dateofocc": "2006-02-21", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "MALAYSIA:Robbers boarded a yacht at 2000LT off Tioman Islands and stole cash, personnel belongings, and other portable items. Police arrested 3 suspects and have recovered some of the stolen items. Suspects are under investigation and soon will be charge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.833333299714695, 2.45000000010981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-258", + "dateofocc": "2006-10-13", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: Yacht boarded and robbed 13 Oct at 0400 local time, in position 10:28.7N-064:08.5W, Navimca, Cumana. Robbers boarded a yacht at anchor and stole two outboard engines (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.141666699939378, 10.478333300081601] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-73", + "dateofocc": "2006-03-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Product tanker (ISABEL BARRETO) boarded and robbed while at anchor, waiting to berth at the Northern Peruvian Refinery of Petro Peru in Talara. Seven armed men boarded the vessel in the early hours of Mar 4. Master and crew held at gunpoint. Ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.291666700089309, -4.55500000037307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-74", + "dateofocc": "2006-03-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO: Unidentified refrigerated cargo ship reported boarding and attempted robbery 13 Mar at 0130 local time, Ikungulu anchorage, Matadi,Congo river. Two robbers boarded the vessel. Alert crew raised alarm and robbers escaped empty handed. Robbers ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.054166699888469, -5.866111099895306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-75", + "dateofocc": "2006-03-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO: Unidentified container ship boarded and robbed 9 Mar at 0150 local time, Boma anchorage Congo river. Two robbers boarded the vessel, broke open containers, and stole cargo. Alarm was raised and crew mustered. Robbers escaped with stolen cargo (", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.054166699888469, -5.866111099895306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-76", + "dateofocc": "2006-03-07", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified chemical tanker approached 7 Mar at 0900 UTC, while underway in position 14-42N - 052-08E. About fifteen small boats followed the vessel. Ship increased speedand chase was aborted. French maritime forces at Djibouti were no", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.133333299931337, 14.699999999831448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-77", + "dateofocc": "2006-03-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Unidentified cargo ship chased 13 Mar at 0930 local time, while underway in position 01-21N - 044-40.32E, off Marka. Armed pirates in a boat chased the vessel and fired shots at bridge, lifeboat, and superstructure, which caused bullet holes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.505277800367423, 1.350000000344039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-78", + "dateofocc": "2006-03-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified container ship boarded and robbed 8 Mar at 0120 local time at anchorage B, Chittagong. Three robbers, armed with long knives, boarded at stern and stole ship's stores. Duty crew raised alarm and robbers jumped overboard They esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-79", + "dateofocc": "2006-03-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Unidentified tugboat reported attempted boarding and robbery 8 Mar at 1502 UTC, while underway in position 07-56S - 117-34E, Bali sea. Pirates attempted to attack the tugboat. Tug took evasive maneuvers and boarding was averted (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -7.933333300149513] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-147", + "dateofocc": "2004-05-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified product tanker was boarded 31 May at 0225 local time while underway in position 01-32N 104-38E, by 2 persons who entered engine room and broke into stores. Duty engineer raised alarm and the two jumped overboard and escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.53333329991375] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-148", + "dateofocc": "2004-05-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified bulk carrier was boarded 26 May at 0230 local time while underway in position 01-37N 104-37E, by 7 persons armed with pistols and knives. Four crew taken hostage while pirates stole ship's cash from master's cabin and crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.616666699574751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-149", + "dateofocc": "2004-06-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified cargo ship reports attempt to board 4 Jun at 2115 local time while at Salaverry anchorage by four persons who tried to climb anchor chain. Crew raised alarmand the intruders escaped in a boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.005555600018397, -8.233333300249171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-150", + "dateofocc": "2004-06-04", + "subreg": "71", + "hostility_": "UNIDENTIFIED ATTACKER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT: Unidentified LPG tanker reports suspicious approach 29 May at 2120 local time while underway in position 05-05.1N 100-10.2E. Three very fast grey speedboats positioned themselves with one ahead and one on either flank. Crew sounded wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.686666700006981, 4.975000000123998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-151", + "dateofocc": "2004-06-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 6 Jun at 0200 local time while in position 03-55.1N 098-47.1E at Belawan anchorage. Four persons armed with guns and knives gained access at the forecastle and stole ship's stores, before escaping in a boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.784999999713364, 3.918333299941423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-152", + "dateofocc": "2004-06-01", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified livestock carrier reports suspicious approach 1 Jun at 2325 local time, while underway in position 01-12N 104-50E east of Bintan Island. Seven persons in a black rubber boat came close under the stern but withdrew when crew", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.833333299747039, 1.199999999844522] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-154", + "dateofocc": "2004-06-07", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: An unidentified bulk carrier reports being chased 7 Jun at 1940 UTC while underway in position 12-30N 048-38E by an unlit boat. Crew sounded alarm and boat withdrew (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.633333300267793, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-155", + "dateofocc": "2004-06-04", + "subreg": "71", + "hostility_": "UNIDENTIFIED ATTACKER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT: Offshore support vessel (QATIF) reports being fired on 4 Jun at 1025 local time, while underway in position 04-58.5N 098-41.2E. Attackers were in a blue fishing boat and withdrew when crew mustered and activated fire hoses. Offshore su", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.686666700006981, 4.975000000123998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-156", + "dateofocc": "2004-06-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker reports attempt to board 12 Jun at 0530 local time while anchored in position 05-58.3S 105-58.6E at Merak. Seven persons armed with long knives fled when crew sounded alarm and mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.9766666998201, -5.971666700135643] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-157", + "dateofocc": "2004-06-11", + "subreg": "71", + "hostility_": "UNIDENTIFIED ATTACKER", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship reports being fired upon 11 Jun at 0310 local time while underway in position 04 03.18N, 099 21.34E. Unknown assailants injured two crew before alarm was raised and boat withdrew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.355555600422861, 4.053055599820709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-158", + "dateofocc": "2004-05-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA: The tug (MARCO POWER) and its barge (BINTANG 9) were hijacked 19 May (believed previously unreported) by suspected Aceh rebels while underway in position 04-48.15N 098-35.50E off Tanjung Langsa at night. Tug and barge were freed but Captain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.591666699630707, 4.802500000269049] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-159", + "dateofocc": "2004-06-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 8 Jun at 0800 local time while underway off Pulau Berhala, by about 20 persons believed to be Aceh rebels. Twelve crew members jumpedoverboard and were rescued by fishing boats. Captain and Chief Eng", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.399999999944441, -0.866666699984023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-160", + "dateofocc": "2004-05-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Unidentified container ship was boarded 26 May at 0415 local time while underway in position 01-42N 104-40E by 7 persons armed with long knives. Chief officer taken hostage and taken to master's cabin where pirates stole ship's cash.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-48", + "dateofocc": "2005-01-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified general cargo ship was boarded 29 Jan at 0200 local time, while anchored at Kandla outer anchorage. Eight robbers, armed with iron bars, boarded from a fishing vessel. Duty officer raised alarm and robbers escaped empty handed,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-49", + "dateofocc": "2005-02-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "BANGLADESH: Nine fishing trawlers were robbed of cash and fish according to a 03 Feb report. The robbers injured 13 fishermen, after the fishermen offered resistance. The incidents are reported in the Bay of Bengal, off the Patharghata coast of Barguna", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.966666699689029, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-50", + "dateofocc": "2005-01-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jan at 0340 local time, while berthed at Panjang. Three persons armed with long knives jumped overboard and escaped empty handed in a speedboat, when duty officer sounded alarm and crew mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.350000000110072, -5.483333300385027] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-51", + "dateofocc": "2005-01-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified container ship was boarded 20 Jan at 0235 local time, while anchored at Sandakan anchorage. Two robbers broke into a container on deck and stole cargo. Crew raised alarm and robbers jumped overboard. The robbers escaped in a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-52", + "dateofocc": "2005-01-31", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF THAILAND-VIETNAM: An unidentified chemical tanker was boarded 31 Jan at 1852 UTC, while underway in position 09-15N 103-10E. Three persons armed with guns and long knives raided master's cabin, stole cash from ship's safe, and master's personal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.166666699576297, 9.249999999969987] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-53", + "dateofocc": "2004-12-30", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "PHILIPPINES-MALAYSIA: The tug (CHRISTIAN) and barge (FLORA), reported missing 30 Dec, after failing to report since 14 Dec. They were underway in position 05-34N 119-22E in the Sulu Sea on a voyage from the Philippines to Indonesia and were found at Ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.366666699560596, 5.566666699837413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-54", + "dateofocc": "2005-02-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT:Masked pirates armed with handguns and swords boarded a tanker underway, non damage.Vessels requested to be caution advised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-55", + "dateofocc": "2005-02-07", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 07 Feb at 0400 local time, while anchored at Buenaventura inner anchorage number three. Two robbers boarded a bulk carrier at forecastle and broke padlocks on store rooms. Crew raised alarm and robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.12166670023322, 3.856666700258756] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-56", + "dateofocc": "2005-02-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Nigerian military reports 1 person was killed during the occupation of an oil terminal near Warri, in Nigeria's southern Delta region on 04 Feb. On 05 Feb, nine people were reported kidnapped and later killed after their boat was ambushed by m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.695000000183256, 5.538333300299541] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-57", + "dateofocc": "2005-02-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified bulk carrier was robbed 02 Feb at 0350 local time, while anchored at Kandla. Two robbers armed with long knives boarded the vessel at the forecastle. Duty officer raised alarm and crew mustered. Robbers jumped overboard and esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-58", + "dateofocc": "2005-01-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified general cargo ship was boarded 29 Jan at 0200 local time, while anchored at Kandla outer anchorage. Eight robbers armed with iron bars boarded from a fishing vessel. Duty officer raised alarm and robbers escaped empty handed, by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-59", + "dateofocc": "2005-02-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 02 Feb at 0130 local time, while anchored at Chittagong. Seven robbers armed with long knives stole the ship's stores and escapedin an unlit boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-60", + "dateofocc": "2005-02-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAITS: An unidentified tanker was boarded while underway on 02 Feb at 0245 local time. Ten masked pirates armed with guns and long knives tried to break the bridge windows,but did not succeed and escaped empty handed. Master raised alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.952500000372879, 1.232222200037427] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-241", + "dateofocc": "2005-07-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Jul at 2110 local time, while at Balikpapan inner anchorage. Alert crew raised alarm while three robbers were in the process of boarding the vessel. Robbers jumped back into the water and escaped in a m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.791666699679695, -1.258333300405809] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-242", + "dateofocc": "2005-07-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:On July 21at 8:30GMT, one Italian Merchant Vessel in navigation off Somalia shores, in position LAT: 03:31.5N LONG: 049:23.7E, has been hijacked by two fiberglass fast boats six meters in length with three persons on board each. Pirate boats ha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.39499999970792, 3.525000000391856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-243", + "dateofocc": "2005-07-26", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified container ship was boarded 26 Jul at 2000 local time, while departing the port of Georgetown. Five robbers, armed with guns, boarded the vessel as it was departing port, with the pilot on board. They held crew at gunpoint and b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.17333329968784, 6.805555599813033] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-244", + "dateofocc": "2005-07-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERSCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 28 Jul at 0415 UTC, while underway in position 04-08.5N 049-49.3E, off the east coast of Somalia. Six pirates, armed with guns, approached the vessel in a white hulled speedboat and opened fire. Ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.821666699951095, 4.141666699588995] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-245", + "dateofocc": "2005-07-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 29 Jul at 1445 local time while underway in position 12:24N, 050:30E, off Caluula, NE coast of Somalia. A white speedboat with five pirates, armed with guns, approached the vessel and opened fire. C", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-247", + "dateofocc": "2005-07-29", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 29 Jul at 0300 local time in position 01-27.39S 116-45.76E, during cargo operations at SPM terminal, Lawi-Lawi, Balikpapan. Robbers broke into three storerooms and stole safety equipment and property and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.762777799716218, -1.456388899994806] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-248", + "dateofocc": "2005-07-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Tanker (CIELO DI MILANO) was fired upon 26 Jul at 1110 UTC, while underway in position 03-09N 048-47E, off the east coast of Somalia. Two speedboats, each with four pirates armed with machine guns and RPGs, approached the tanker. One boat ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.783333299867991, 3.150000000042496] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-249", + "dateofocc": "2005-08-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified general cargo ship was boarded 04 Aug at 0250 local time, while at anchorage no. 2, Ilo. Two robbers, armed with long knives, boarded at forecastle and stole ships stores. Robbers escaped in an awaiting fishing boat. Master call", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.369444399994677, -17.616666700300868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-250", + "dateofocc": "2005-08-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified tanker was boarded 04 Aug at 0006 local time, while at Callao anchorage area no. 8. Three robbers climbed the anchor chain, broke padlocks off forward locker, stole ships stores, and escaped. Master informed port authorities and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.175000000329362, -11.991666699556902] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-251", + "dateofocc": "2005-08-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship reported an attempted boarding 03 Aug at 0212 local time, while underway off Dar Es Salaam, Tanzania. Ten persons in a white boat attempted to board the ship; however, the crew mustered and the suspects aborted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.266666699938014, -6.800000000414173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-252", + "dateofocc": "2005-08-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Chemical tanker (TAKIS) reported an attempted boarding 03 Aug at 1600 UTC, while underway in position 13-24N 049-25E, approximately 40 NM south of Al Mukalla, Yemen. The vessel was trailed by persons with guns in two speedboats, at a rang", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.416666699861537, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-253", + "dateofocc": "2005-07-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was approached by robbers in a small boat 25 Jul at 2100 local time, while in port Chittagong, Bangladesh. The robbers stole zinc anodes welded to the hull using crowbars. The crew signaled the alarms, but the r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-254", + "dateofocc": "2005-07-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 15 Jul at 0400 local time, as approaching anchor off Chittagong. Four robbers boarded the vessel; one held the watchman at knifepoint, while others broke into the aft locker and stole the ships store", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-80", + "dateofocc": "2006-03-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified cargo ship boarded and robbed 12 Mar at 0100 local time, while underway in position 01-43.3S - 117-07.7E, 32 degrees SE of Balikpapan. Two pirates armed with knives boarded the vessel from a speedboat. They stole two life rafts", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.128333299978294, -1.721666699773323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-81", + "dateofocc": "2006-03-07", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Unidentified container ship reported boarding and attempted robbery during night of 7 Mar, while in position 10-19.7N - 107-02E, Vung Tau anchorage. Robbers boarded the vessel unnoticed. They tried to break open locks on forward storerooms bu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.328333299582141] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-82", + "dateofocc": "2006-03-19", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified vehicle carrier approached 19 Mar at 0600 UTC, while underway in position 12-42.7N - 045-46.2E. Three speedboats approached the vessel. One boat came within five cables and master raised alarm. Boats moved away after follow", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.769999999927961, 12.711666700306807] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-83", + "dateofocc": "2006-03-14", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified general cargo ship followed 14 Mar at 2300 local time, while preparing to anchor at Chittagong anchorage. Three boats followed the vessel. Alarm was raised and crew mustered. Boats came within 3 cables and then moved away (IM", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-84", + "dateofocc": "2006-03-14", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Unidentified LPG tanker reported being followed 14 Mar at 1150 UTC, while underway in position 06-12N - 054-56E. A craft, blue hull and white accommodation, followed the vessel. Master took evasive maneuvers and increased speed. Craft reduce", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.933333299662138, 6.200000000006241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-85", + "dateofocc": "2006-03-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified container ship boarded and robbed 17 Mar at 2140 local time, Chittagong anchorage area. While preparing to anchor, robbers in four boats armed with long knivescame alongside the vessel. Alarm was raised and crew mustered but r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-86", + "dateofocc": "2006-03-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: Unidentified cargo ship boarded and robbed14 Mar at 0315 local time while in position 30:06.60N - 047:55.73E, Khawr Az Zubayr roads. Armed robbers boarded the vessel via anchor chain. They broke in to forward locker and stole ship's stores. Duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.928888900329014, 30.109999999763261] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-87", + "dateofocc": "2006-03-25", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Unidentified container ship boarded 25 Mar at 0145 local time at, quarantine anchorage no.2, Santos Roads. Four robbers boarded the vessel via anchor chain. Duty officer raised alarm and crew mustered. Robbers escaped empty handed in an unlit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.333333300312177, -24.05000000029753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-88", + "dateofocc": "2006-03-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified general cargo ship boarded and robbed 24 Mar at 2230 local time, Chittagong anchorage. Robbers armed with long knives in three boats came alongside the vessel, while preparing to anchor. Alarm was raised, crew mustered, and po", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-89", + "dateofocc": "2006-03-26", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Unidentified tanker reported suspicious approach 26 Mar at 1435 local time, while underway in position 15-03N 041-58E. Two speedboats, with white hulls, approached the vessel. Duty officer took evasive maneuvers and crew mustered. Boats mo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.966666699935388, 15.049999999797819] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-90", + "dateofocc": "2006-03-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Tanker hijacked 29 Mar mid-day in Somali territorial waters, shortly after departing Ceel-Adde port, in northern Mogadishu. The tanker is reported to have recently unloaded diesel in the port. Sources at the port are unaware if ransom demands", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.35277779977207, 2.027777799697446] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-91", + "dateofocc": "2006-04-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: South Korean fishing vessel (DONG WON No 628) hijacked 04 Apr, while operating 60 miles off the east coast of Somalia. Coalition warships, USS Roosevelt and HNLMS Zeven Provencien, responded to distress calls but were unable to persuade the hi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-161", + "dateofocc": "2004-06-15", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DOMINCAN REPUBLIC: An unidentified bulk carrier was boarded 15 Jun during the night by six men armed with knives while berthed at Puerto Plata. Crew raised alarm, secured the accommodation and chased the intruders, who jumped into the water and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.698333300025411, 19.802777800429681] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-162", + "dateofocc": "2004-06-19", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified bulk carrier was boarded 19 Jun at 0615 local time while anchored in position 14-41.24N 017-23.36W at Dakar anchorage. Three persons armed with long knives held duty seaman hostage and stole ship's stores. Crew raised alarm a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.389166700322733, 14.687222200414112] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-163", + "dateofocc": "2004-06-13", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CAMEROON: An unidentified general cargo ship was boarded 13 Jun at 0540 local time, while at Douala port. The intruders gained access at the stern using ropes but could not enter the accommodation, which was secured. Crew chased off the first two but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.677777800198498, 4.041666699855512] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-164", + "dateofocc": "2004-06-15", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN-ANDAMAN ISLANDS: An unidentified tanker reports suspicious approach 15 Jun at 1200 UTC, while underway in position 06-15.06N 092-11.6E. Crew activated fire hoses directed searchlights and took evasive maneuvers whereupon craft stopped fol", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [93.192777800311944, 6.25111109964962] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-165", + "dateofocc": "2004-06-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 16 Jun at 0200 local time at north Pulau Laut anchorage. Five persons armed with crowbars, knives and daggers gained access viathe hawse pipe, tied up the duty seaman , and escaped with ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.416666700229598, -3.016666699648852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-166", + "dateofocc": "2004-06-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified Ro/Ro reports attempted attack 15 Jun at 1200 UTC, while underway in position 05 28N 098 34E off Aceh. Persons in 3 boats withdrew when crew raised alarm, activated fire hoses, directed searchlights and took evasive maneuve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.566666700147039, 5.466666700103985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-167", + "dateofocc": "2004-06-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 19 Jun at 2300 local time, while anchored in position 03-12.46S 116-19.41E at Pamancingan anchorage, Kalimantan. Seven persons armed with long knives boarded at the forecastle, overpowered 3 crew and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.323611099731238, -3.207499999603272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-168", + "dateofocc": "2004-06-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 14 Jun while anchored in position 01-15.87S 116-47.69E at Balikpapan Inner anchorage. Two persons boarded at the forecastle from a speedboat, but fled empty handed when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.794722200233537, -1.264444400438947] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-169", + "dateofocc": "2004-06-13", + "subreg": "71", + "hostility_": "UNIDENTIFIED ATTACKERS", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA: An unidentified tug towing a barge was fired upon 13 Jun at 1800 local time, while underway in position 05-03N 098-45E off Aceh. The attackers were in 8 small boats and ordered the tug to stop under threat of more firing. Seven persons the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 5.050000000373757] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-170", + "dateofocc": "2004-06-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MALAYSIA: An unidentified Malaysian fishing boat was boarded 14 Jun at 0130 local time while about 10 nm off Kuala Sepetang (Port Weld or Kampung Sepetang) fishing village. About 10 persons armed with automatic Weapons abducted 3 crew. The remaining 3", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.633333300150809, 4.833333300110382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-171", + "dateofocc": "2004-06-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: An unidentified Ro/Ro ship was boarded 23 Jun at 0400 local time while berthed at Conakry, Guinea. Armed persons threatened duty seaman with knives, but fled when other crew arrived to assist (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-172", + "dateofocc": "2004-06-20", + "subreg": "61", + "hostility_": "UNIDENTIFIED ATTACKERS", + "victim_d": "YACHT", + "descriptio": "SOMALIA: An unidentified yacht reports being fired upon 20 Jun at 1100 UTC while anchored in position 10-30N 051-15E off Raas Xaafun (Hafun). Nine persons in a fishing boat approached the yacht which had anchored to attend to an injured crew member.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.25000000042894, 10.500000000235218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-173", + "dateofocc": "2004-06-20", + "subreg": "71", + "hostility_": "UNIDENTIFIED ATTACKER", + "victim_d": "FISHING VESSEL", + "descriptio": "MALACCA STRAIT: An unidentified fishing boat was fired upon, 20 Jun at 0100 local time 21.5 nm nw of Pulau Jarak. Firing was from an unidentified boat and caused damage to the fishing boat, but no injury to its crew. No explanation has been given for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.099999999715408, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-174", + "dateofocc": "2004-06-23", + "subreg": "92", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: An unidentified offshore support ship reports suspicious approach 23 Jun at 1500 local time while in position 06-07N 119-05E in the Sulu Sea. Three uniformed persons in a fishing boat claimed to be from Customs/Coast Guard and wanted to bo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.083333300432741, 6.116666700169958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-61", + "dateofocc": "2005-02-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded, during STS operations 06 Feb at 1936 UTC, in position 01-22N 116-58E Balikpapan anchorage. Police on board opened fire but the robbers managed to cut the ropes of two life-rafts and throw them overboard.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, 1.366666700241183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-62", + "dateofocc": "2005-02-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 03 Feb at 1530 UTC in position 03:12S 116:21E, Kota Baru anchorage. Six robbers armed with long knives hit a crewman on his head and tied him up. Duty Officer sent a cadet to look for crewman but rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.349999999566421, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-63", + "dateofocc": "2005-02-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 01 Feb at 0300 local time while at berth, Tan Thuan port off Ho Chi Minh City. Two robbers broke into the storeroom and tried to steal ship's stores, while the ship was conducting discharging operations", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.729999999848928, 10.756944399703173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-64", + "dateofocc": "2005-02-03", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "LUZON STRAIT: An unidentified bulk carrier reported an attempted boarding while underway 03 Feb at 1530 UTC, near position 19-43N 119-20E. A craft doing 20 kts approached the starboard side. Duty officer raised alarm and took evasive maneuvers. Crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.333333299766309, 19.716666699890311] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-65", + "dateofocc": "2005-02-11", + "subreg": "24", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified bulk carrier was approached by two unlit boats on 11 Feb, 0400 local time in position 10-16N 064-35W, Pertigalete port cement terminal, Venezuela. Two unlit boats approached within 100 meters before moving away, after securi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-66", + "dateofocc": "2005-02-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship had an attempted boarding on 10 Feb, 0900 local time at Banjarmasin Roads, Indonesia. Twelve robbers armed with knives attempted to board a general cargo ship, along with stevedores. Commanding officer and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.549999999867964, -3.383333299687592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-67", + "dateofocc": "2005-02-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 16 Feb at 2240 local time, while anchored at Chittagong 'B' anchorage. Ten robbers armed with long knives seized the duty seaman and held him at knifepoint. Duty officer raised alarm and crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725000000006673, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-68", + "dateofocc": "2005-02-15", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 15 Feb at 0505 local time, while anchored at (Teluk Adang Bay) Adang Bay anchorage. Three robbers, armed with iron rods, boarded ship from the hawse pipe and broke open the forepeak locker. Duty seam", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.616666699696566, -1.76666670028294] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-69", + "dateofocc": "2005-02-15", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified bulk carrier was approached 15 Feb at 1545 UTC, while underway in position 02-38N 107-47E. As the unlit craft approached, alert crew flashed their aldis lamp in the direction of the craft. A few minutes later, craft al", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.783333299977357, 2.633333299679521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-70", + "dateofocc": "2005-02-19", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HONG KONG: An unidentified barge was boarded 19 Feb late at night, while moored in the city's terminal. Five men boarded the barge from their own vessel and overpowered the lone lighterman keeping watch. The lighterman was tied, gagged and hidden in a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.156666700318397, 22.29166669977127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-71", + "dateofocc": "2005-02-25", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship was approached 25 Feb at 1700 UTC, while underway in position 06-43.98N 050-35.17E. A speedboat followed the vessel for 15 minutes, before moving away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.586111100269534, 6.733055599691511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-72", + "dateofocc": "2005-02-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIA: An unidentified tug was boarded 22 Feb at 0530 local time, while underway in position 07-49N 076-50E, off Trivandrum, SW coast of India. Two fishing boats approached a tug towing an ocean going crane barge. One boat came alongside the barge and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.8333332997409, 7.816666700134988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-73", + "dateofocc": "2005-02-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "STRAIT OF MALACCA: Tug (HIGHLINE 26) was attacked 28 Feb at 2100 local time approximately 50 nm west of Penang, Malaysia. An Indonesian fishing boat came alongside. Four men jumped onto the tugboat and attacked the crew. The bandits fired several sho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.349999999948352, 5.416666700237272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-255", + "dateofocc": "2005-08-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reported an attempted boarding 04 Aug at 0600 local time, while underway in position 02-19.5N 101-50.0E, 5 nm off Tanjung Tuan. Several persons in an unlit 6m speedboat came within 1 cable, intending to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.833333299650064, 2.324999999993338] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-256", + "dateofocc": "2005-08-09", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship reported attempted boarding 09 Aug at 0035 UTC while anchored in position 17-52.4N 076-47.1W, Kingston outer anchorage. Four robbers in an unlit boat approached the ship and tried to board. Duty officer raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.785000000109903, 17.873333299884564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-257", + "dateofocc": "2005-08-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: An unidentified yacht was boarded 05 Aug at 1220 local time, while anchored off Laguna Grande. Three robbers, armed with machetes, boarded the yacht and lowered the dingy. Skipper confronted one of the robbers who then slashed him with the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.049999999792476, 10.574999999585657] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-258", + "dateofocc": "2005-08-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "BANGLADESH: An unidentified tug towing a tanker for scrap was boarded 10 Aug at 0800 local time off Kutubdia Island. A group of pirates in five trawlers, armed with guns, boarded both the tug and the tanker and stole stores and property. The tug sent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.866666700020289, 21.849999999657996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-259", + "dateofocc": "2005-08-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "THAILAND: Yacht (SWITCH BLADE) was boarded and stolen 11 Aug between 2100 and 2359 local time while moored at Ao Chalong Bay, Phuket. Theft was reported to marine police who searched the immediate area but did not find the vessel. Yacht was subsequent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.383333299853234, 7.883333300074128] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-260", + "dateofocc": "2005-08-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 10 Aug at 0001 local time, while anchored in position 00-33.1N 117-43.7E, Tanjung Bara anchorage. Robbers broke padlock off fore peak locker and stole ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.72833330017761, 0.551666699805651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-261", + "dateofocc": "2005-08-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 12 Aug at 1850 local time, while at the Balikpapan coal terminal. Four robbers, armed with crowbars, boarded the ship by climbing forward mooring ropes. They broke forward store lock and stole ships", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.258333300405809] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-262", + "dateofocc": "2005-08-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported an attempted boarding 04 Aug at 0430 local time in position 01-41.7S 116-38.4E, Adang Bay anchorage, Indonesia. Four persons were in the process of boarding the vessel, using hooks attached to ropes. A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.64000000005251, -1.695000000262553] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-263", + "dateofocc": "2005-08-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified general cargo ship was boarded 04 Aug at 0250 local time, while at anchorage no. 2, Ilo. Two robbers, armed with long knives, boarded at forecastle and stole ships stores. Robbers escaped in an awaiting fishing boat. Master call", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.37499999960221, -17.616666700300868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-264", + "dateofocc": "2005-08-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified general cargo ship was boarded 22 Aug at 0245 UTC, while anchored in location 06-20.7N 003-20.3E Lagos anchorage, Nigeria. Two robbers boarded the vessel and tried to assault duty a/b. He managed to raise alarm and crew muste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.33833329986868, 6.345000000249229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-265", + "dateofocc": "2005-08-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: An unidentified fishing vessel was reportedly hijacked 16 Aug, while fishing off the Somali coast, south of Kismayo. The fishing vessel, reportedly owned by a Chinese company, was seized by six unidentified gunmen, as it was fishing inside Som", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.524999999854458, -0.394444399880229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-266", + "dateofocc": "2005-08-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk cargo ship (YUAN ZHI) had an attempted robbery 12 Aug, while at Chittagong outer anchorage. A regular Coast Guard patrol boat arrested four suspects from an engine boat. Suspects later confessed they were trying to rob the vessel (LL)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-267", + "dateofocc": "2005-08-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: General cargo ship (CEY PIONEER) was boarded 21 Aug at 1945 UTC, while anchored in position 29-43.6N 048-39.E Um Qasr-Khawr Abd Allah Channel, while awaiting berthing. Two boats slowly approached the vessel from the port side. Three watchmen a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.65500000042141, 29.726666699827319] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-92", + "dateofocc": "2006-04-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified ship reported attempted boarding 1 Apr at 1900 UTC, while underway in position 13-32.70N 049-32.80E. Two unlit speedboats attempted to board the vessel. Ship took evasive maneuvers and raised alarm. Crew mustered and dire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.546666700234482, 13.54499999994249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-93", + "dateofocc": "2006-04-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: Unidentified general cargo ship reported attempted boarding 3 Apr at 0735 local time, while in position 30-06.74N 047-055.90E, Khawr Az Zubayr Roads. Armed robbers in four boats attempted to board the vessel. Duty officer raised alarm and crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.93166670013278, 30.112222200215967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-94", + "dateofocc": "2006-03-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 21 Mar at 0240 local time, while in position 02-54.4S 107-16.1E, Gelasa Straits. Six pirates armed with long knives boarded the vessel and entered bridge. They forced two officers to take them", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.268333299641426, -2.906666700301798] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-95", + "dateofocc": "2006-03-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Somalia:On March 29 at 1154 LT 30nm off Mogadihu, east coast of Somalia, twelve pirates boarded a product tanker underway. The pirates were armed with machine guns, AK-47 rifles, and hand arms in two small speed boats. They took hostage 19 crewmembers a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.716666699831819, 2.133333300113009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-96", + "dateofocc": "2006-04-09", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Unidentified general cargo ship reported suspicious approach 9 Apr at 0140 local time, while underway in position 14-14N 042-44E. An unlit speedboat, doing over 26 kts, approached the vessel. Duty officer directed search lights and the boat", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.733333299807214, 14.233333300234506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-97", + "dateofocc": "2006-04-03", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Unidentified vessel reported a suspicious approach 3 Apr at 0145 local time, while underway in position 04-33N 055-40E, 400nm off the east coast of Somalia. As a speedboat approached the vessel, the master took evasive maneuvers and inc", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.666666700288488, 4.549999999907925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-98", + "dateofocc": "2006-04-02", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified general cargo ship reported suspicious approach 2 Apr at 2300 local time, Chittagong anchorage. Five suspicious boats came close to one cable from the vessel. Crew mustered and the boats moved away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-99", + "dateofocc": "2006-04-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified general cargo ship reported attempted boarding, on 4 Apr at 0200 local time at Chittagong anchorage. Three boats with robbers came 50 meters from the vessel. Robbers attempted to board for over one hour and later aborted boardi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-100", + "dateofocc": "2006-04-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Unidentified bulk carrier boarded 4 Apr at 0050 UTC at Callao anchorage. Three robbers armed with knives boarded the vessel at forecastle. Robbers threatened ship's security staff and broke padlock to the hatch. Duty officer sounded alarm and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-101", + "dateofocc": "2006-04-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified general cargo ship reported attempted boarding 3 Apr, at 2230 local time at Chittagong anchorage. Robbers armed with long knives in two boats came alongside the vessel. Alarm was raised and crew mustered. After two hours of at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-102", + "dateofocc": "2006-04-16", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified bulk carrier reported suspicious approach 16 Apr at 0500 UTC, while underway in position 14-00N 053-01.3E. Two boats, one white/blue and the other white/orange in color, approached the vessel. The boats requested ship to st", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.021666700414301, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-103", + "dateofocc": "2006-04-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "BANGLADESH: Unidentified tug boarded and robbed 13 Apr at 0245 local time, while in position 22-10.86N 091-47.06E, Chittagong C anchorage. Three fishing boats approached the vessel and seven robbers armed with long knives boarded. Robbers stole ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.784444400135953, 22.181111100173837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-104", + "dateofocc": "2006-04-17", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TUGBOAT", + "descriptio": "SOUTHERN RED SEA: Integrated tug barge followed 17 Apr at 0951 local time, while underway in position 12-30.5N 042-29.3E, transiting Bab el Mandeb to Gulf of Aden. A green hulled, open ended flat bottom boat with inboard motor doing 10 to 11 kts with", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.488333299830742, 12.508333299886431] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-175", + "dateofocc": "2004-07-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship was boarded 4 Jul at 1815 local time while at Guayaquil anchorage. Ten persons armed with guns and knives gained access via the poop deck and tied up the duty seaman. Alarm was raised and thieves escaped in thei", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.890277799872365, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-176", + "dateofocc": "2004-06-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MADAGASCAR: An unidentified bulk carrier was boarded 27 Jun at 0400 local time while at Majunga inner anchorage. Duty seaman was struck on head and neck. The thieves stole forward life raft and escaped. Seaman was hospitalized for treatment (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.300000000133934, -15.730555600063042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-177", + "dateofocc": "2004-06-30", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified container ship underway in position 12.25N 049-33E at 0500. 30Jun spotted two small craft lying ahead when the two suddenly accelerated toward the ship from a distance of 5 miles. Duty officer directed search lights at the tw", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.549999999564534, 12.250000000067018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-178", + "dateofocc": "2004-07-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 4 Jul at 0130 local time while at Chittagong anchorage. About 10 persons armed with knives and operating from a 20-meter boat threatened the duty seaman. Crew mustered and the intruders fled empty han", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-179", + "dateofocc": "2004-07-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BANGLADESH: Forty fishermen and three trawlers were taken hostage 3 July by pirates operating at Dublar Char in the Sundarbans. On 5 Jul a cell phone demand for a ransom of Tk 6 lakh was received for the \"first phase\" (INFO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.566666699888287, 22.149999999757654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-180", + "dateofocc": "2004-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "INDONESIA; An unidentified container ship was boarded 28 Jun at 1445 local time while anchored in position 06-02S 106-53E, Tanjung Priok. The intruders stole a life raft before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.883333299646097, -6.033333299818253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-181", + "dateofocc": "2004-06-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jun at 0450 local time while at Caltex berth no. 3, Dumai. Duty seaman spotted the intruders already on board and mustered the crew, whereupon the intruders escaped. Terminal security staff informed and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.464444400233162, 1.688888900020743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-182", + "dateofocc": "2004-07-05", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "CAMBODIA-VIETNAM: Vietnamese coast guards caught a pirate fishing trawler and arrested one of the pirates according to a 5 Jul report. The pirate boat had reportedly been preying on Vietnamese fishing boats when caught 2.5 miles off Phu Quoc Island (Da", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 10.216666700032761] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-183", + "dateofocc": "2004-07-07", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified general cargo ship was boarded 7 Jul at 0650 UTC by about 8 armed persons while at anchorage \"Hotel\", Port au Prince. The robbers gained access via the hawse pipe, stole ship's stores and escaped after threatening crew with their", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40416670017288, 18.572222200040585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-184", + "dateofocc": "2004-07-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was approached 9 Jul at 2330 local time by 12 persons in two boats while the ship was at anchorage \"C\", Chittagong. One person was armed with a long knife, boarded at the stern, but fled when confronted by sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-185", + "dateofocc": "2004-07-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA-BANGKA STRAIT: The tug boat (GLOBAL SEMESTA I) and its barge (GLOBAL SEMESTA IV) with a cargo of bricks was hijacked 11 Jul at 1130 local time while underway in position 02-15.4S 105 -16.0E. Twelve pirates forced the crew of 10 to jump overbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.266666700273788, -2.256666700235826] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-186", + "dateofocc": "2004-07-10", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-CELEBES SEA: An unidentified tanker reports sighting 7 unlit speedboats joined by a line ahead of its course 10 Jul at 1600 UTC while underway in position 03-20N 119-31E. When boats came within 5 cables tanker switched on lights, mustered cre", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.516666700060114, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-187", + "dateofocc": "2004-07-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified general cargo ship was boarded 12 Jul at 0230 local time, while at Sandakan inner anchorage. Six thieves stole ship's stores before fleeing, when alarm was raised (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-188", + "dateofocc": "2004-07-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "BANGLADESH: Bangladeshi media report 19 Jul that, despite recent high-profile arrests of river pirate gangs preying on local traders and fishermen, other gangs rapidly move into areas where arrests have been made. In the Meghna River estuary 183 trawler", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.999999999690942, 22.499999999723968] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-74", + "dateofocc": "2005-02-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "STRAIT OF MALACCA: An unidentified fishing vessel was stolen early 21 Feb at 0300 local time approximately 20 km from Kalanang beach in Morib, Malaysia. Six pirates, armed with parang and scythes, boarded the vessel as the two fishermen were waiting to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 2.750000000209411] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-75", + "dateofocc": "2005-02-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded during STS operations 06 Feb at 1936 UTC, in position 01-22N 116-58E, Balikpapan anchorage. Police on board opened fire but the robbers managed to cut the ropes of two life-rafts and throw them overboard.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, 1.366666700241183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-76", + "dateofocc": "2005-02-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified chemical tanker was boarded 24 Feb at 0430 local time, while preparing to berth at Hon Gai inner anchorage. The robbers stole ship's stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 20.950000000258399] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-77", + "dateofocc": "2005-03-03", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MOROCCO: An unidentified general cargo ship was boarded 04 Mar at 0315 local time, while berthed at Casablanca port. The duty officer raised alarm and master called police via VHF, after 20 robbers armed with long knives boarded the vessel. Police arr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.600000000080342, 33.638333300039164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-78", + "dateofocc": "2005-03-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified refrigerated cargo ship reported an attempted boarding 03 Mar at 0110 local time while anchored near Tema Roads. Alert crew activated fire hoses and directed search lights after ten robbers attempted to board. Robbers aborted th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-79", + "dateofocc": "2005-03-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Ghana: At Tema Roads, ten robbers in a motor boat attempted to board a refrigerated cargo ship. Alert crew activated fire hoses and directed searchlights.Robbers aborted attempt and fled.POrt control informed who advised master to heave up anchor and mov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-80", + "dateofocc": "2005-02-25", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship was approached 25 Feb at 1700 UTC, while underway in position 06-43.98N 050-35.17E. A speedboat followed the vessel for 15 minutes before moving away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.586111100269534, 6.733055599691511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-81", + "dateofocc": "2005-02-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIA: An unidentified tug was boarded 22 Feb at 0530 local time, while underway in position 07-49N 076-50E, off Trivandrum, SW coast of India. Two fishing boats approached a tug, towing an ocean going crane barge. One boat came alongside the barge an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.8333332997409, 7.816666700134988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-82", + "dateofocc": "2005-03-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 02 Mar at 2230 local time, while anchored at Chittagong B anchorage. Robbers armed with guns stole ships stores and escaped. Port control and coast guard was informed, but no response was rece", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725000000006673, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-83", + "dateofocc": "2005-03-01", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 01 Mar at 0500 local time, while anchored at Sebuku anchorage, Pulau Laut. Eight robbers armed with long knives and metal bars boarded the vessel via the hawse pipe. They hit one crewmember with meta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.326666700109854, -3.206666700401456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-84", + "dateofocc": "2005-03-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAVA SEA: An unidentified tanker was boarded 07 Mar at 0755 local time, while underway in position 04-47S 114-14E, near Borneo, Indonesia. Pirates stole ship's equipment. Several fishing boats were in the area at the time (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.233333299871219, -4.783333299553021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-85", + "dateofocc": "2005-03-08", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "YEMEN: Two U.S. Sailboats were approached 08 Mar at 1700 local time, while underway in position 13-28N 048-07E. Two fast boats, with four men in each, opened fire on the yachts (aiming at the cockpits) approximately 30 miles off the coast of Yemen. O", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.116666699729592, 13.46666670036268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-86", + "dateofocc": "2005-03-14", + "subreg": "63", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified cable laying ship was boarded 14 Mar at 1336 local time, while anchored at Chennai (Madras) outer anchorage. One robber climbed up the anchor chain, crew raised alarm, and the robber jumped into the water. Robber escaped in a wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.355555599808383, 13.120833299827552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-268", + "dateofocc": "2005-08-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: An unidentified tug was fired upon 19 Aug at 2030 local time, while underway in position 02-37.1N 108-57.0E, off Natuna islands. Pirates in a fishing vessel, armed with guns, approached the tug as it was towing a barge. Gunfire caused dam", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.950000000406305, 2.618333299809422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-321", + "dateofocc": "2005-10-13", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was chased 13 Oct at 0500 local time, while underway in the Sunda Strait. Alert crew raised alarm, directed search lights and activated hire hoses. Chase was aborted (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.883333299646097, -5.916666700012456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-269", + "dateofocc": "2005-08-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Tug (ZARA) and barge (ZARA 3) hijacked 16 Aug at 0200 local time, while underway in approximate location 01N 104E. Pirate threw one crewmember overboard, who was later rescued by a nearby craft. He reached shore and reported the incident t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.000000000111356, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-270", + "dateofocc": "2005-08-25", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified bulk carrier reported attempted boarding 25 Aug at 0225 UTC while anchored in position 17-48.5N 077-06.5W, Rocky Point anchorage. Three persons in an unlit speedboat attempted to board the vessel via anchor chain. Alert duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.108333299666185, 17.808333300147808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-271", + "dateofocc": "2005-08-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 25 Aug at 0140 UTC while undergoing STS operations, in position 06-18N 003-22E, off Lagos. Three robbers, armed with long knives, threatened duty crew, stole ships stores, and escaped in a speedboat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-272", + "dateofocc": "2005-08-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: An unidentified fishing vessel was reportedly hijacked 16 Aug while fishing off the Somali coast, south of Kismayo. The fishing vessel, reportedly owned by a Chinese company, was seized by six unidentified gunmen as it was fishing inside Somal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.524999999854458, -0.394444399880229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-273", + "dateofocc": "2005-08-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BAY OF BENGAL: General cargo ship (EUGENIA P) reported attempted boarding 25 Aug, 1300 local time, while underway in position 21-36N 091-19E, 30 nm off the coast of SE Bangladesh. Several persons in two fishing boats approached the vessel in an attemp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.316666699687744, 21.600000000324428] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-274", + "dateofocc": "2005-08-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "BANGLADESH: Tug boarded 25 Aug at 0100 local time while underway near Chittagong anchorage. Seven robbers, armed with long knives and jungle bolos, stole stores and escaped. Later, the Coast Guard arrived for investigation (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-275", + "dateofocc": "2005-08-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified LPG tanker was boarded and robbed 27 Aug at 0230 local time while anchored in position 29-43.7N 048-39.1E, by buoy no. 3 and 5, Khawr Abd Allah. Three robbers, armed with machine guns and steel bars, smashed the bridge window and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.651666700192038, 29.728333300029647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-276", + "dateofocc": "2005-08-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH, CHITTAGONG:Several persons in two fishing boats attempted tp board a general cargo ship underway. Crew raised alarm, activated fire hoses, and fired one rocket flare. Master took evasive manoeuvres amd after 35 mins. boats moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.316666699687744, 21.600000000324428] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-277", + "dateofocc": "2005-09-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship was boarded 02 Sep at 0200 UTC, while drifting in position 06:05N, 003:24E, 19 nm off Lagos. Four robbers in a wooden boat, armed with long knives, boarded the vessel. Alarm was raised, crew mustered, and robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-279", + "dateofocc": "2005-08-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: An unidentified bulk carrier thwarted an attempted boarding 31 Aug at 0130 local time, while underway in position 15-01N 041-53E, about 150 miles NW of Bab El Mandeb TSS. Pirates attempted to board a bulk carrier underway from starboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.88333330027433, 15.016666699828249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-105", + "dateofocc": "2006-04-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "STRAIT OF MALACCA: Unidentified fishing vessel boarded and robbed 17 Apr at 0300 local time, 10 nm off Bagan coast, Baha Pahat. Pirates stole equipment from the vessel. A police report was filed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.716666699811867, 2.166666699907296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-106", + "dateofocc": "2006-04-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "STRAIT OF MALACCA: Fishing vessel fired upon 17 Apr at 0200 local time, 9nm off Parit Haji Baki coast. Six pirates, armed with guns in a speedboat, opened fire on the vessel. Several hit the side of the vessel but the crew escaped injuries. They lodg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.583333300348784, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-107", + "dateofocc": "2006-04-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier reported attempted boarding 16 Apr at 1520 UTC, while underway in position 02-58S 107-18.5E, Gelasa Strait. Five robbers, in a dark grey unlit speedboat, tried to board a bulk carrier underway. Alert crew mustere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.308333299894571, -2.966666699782138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-108", + "dateofocc": "2006-04-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified cargo ship boarded 16 Apr at 1305 UTC, while underway in position 02-53.0S 107-18.4E, Gelasa Strait. Four robbers in a speedboat armed with long knives boarded from stern. They entered the accommodation and held a crew member at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.306666699692244, -2.88333330012108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-109", + "dateofocc": "2006-04-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified vehicle carrier boarded and robbed 11 Apr at 0815 local time at Tg. Priok anchorage, Jakarta. Four robbers boarded the vessel at stern using a rope. They enteredengine room and held chief engineer hostage. Alarm was raised and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.058333300201298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-110", + "dateofocc": "2006-04-18", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: Unidentified product tanker reported attempted boarding 18 Apr at 2218 local time, Mamonal Roads. A robber attempted to board the vessel using a hook, attached to a rope. Alert crew raised alarm and robber escaped in a boat. Coast guard info", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.499999999815657, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-111", + "dateofocc": "2006-04-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified container ship reported attempted boarding 19 Apr at 2230 local time, at Chittagong anchorage. Four boats with eight robbers in each boat armed with long knives approached the vessel. Robbers from two boats attempted to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-112", + "dateofocc": "2006-04-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier reported attempted boarding 23 Apr at 2020 UTC, while underway in position: 02-52.2S 107-17.5E, Gelasa Straits. Seven persons in a speedboat approached the vessel and attempted to board from stern. Alert crew must", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.291666699822144, -2.870000000278083] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-113", + "dateofocc": "2006-04-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Unidentified tanker reported attempted boarding 24 Apr at 0210 UTC, while in position: 06-01.3N 003-17.4E, Lagos Roads. Three robbers in an 8 meter boat attempted to board the vessel. Alert crew prevented boarding (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.290000000029067, 6.021666699793684] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-114", + "dateofocc": "2006-04-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Vessel (AL TAJI) hijacked 25 Apr, Southern Somali coast. Isse Sheik Elmi, who is the agent for the (AL TAJI), said the vessel sailed from Dubai on 6 Apr and arrived at El Maan, Somalia on 23 Apr where it unloaded goods for Mogadishu businessme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.049999999836359, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-115", + "dateofocc": "2006-04-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TOURIST BOATS", + "descriptio": "INDIA: Two passenger vessels hijacked the morning of 30 Apr on River Krishna, Andhra Pradesh state. Two tourist boats were hijacked and ten people were taken hostage by four Maoists and a female accomplice. The hijackers, disguised as passengers, boar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.983333300369736, 15.950000000096736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-116", + "dateofocc": "2006-04-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDIA: Sailing yacht boarded and robbed 22 Apr at 2200 local time, off Kannyakumari, Cape Comorin. More than ten persons in a fishing boat boarded the yacht, stole property, and a life raft and left. Skipper made a police complaint. Authorities recov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [77.533333299673586, 8.066666700367932] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-322", + "dateofocc": "2005-10-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (SAN CARLO) was hijacked 20 Oct, while underway in position 02-013N 049-44E approximately 170 NM off the east coast of Somalia (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.733333300033564, 2.216666699774009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-117", + "dateofocc": "2006-04-29", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker reported suspicious approach 29 Apr at 0330 local time, while underway in position:07-55S 118-20E, Flores Sea. An unlit 10 meter boat going about 14 kts approached the vessel. Duty officer directed search lights and th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.333333299734022, -7.916666700077087] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-189", + "dateofocc": "2004-07-14", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports suspicious approach 14 Jul at 1712 UTC while underway in position 02-34.54N 101-29.54E. An unlit craft making 25 knots came close under the stern before the ship activated unspecified anti-pira", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.492222200419917, 2.575555599577285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-190", + "dateofocc": "2004-07-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: An unidentified dry cargo ship was boarded 23 Jul at 0530 local time, by 2 persons armed with long knives while at berth Conakry. Duty officer raised alarm and then two jumpedinto the water and fled. Earlier on 22 Jul at 0500 local time two si", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-191", + "dateofocc": "2004-07-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 20 Jul at 0230 UTC, while in position 06-18N 003-19E at Lagos anchorage. Two persons armed with long knives held night watchman at knifepoint, stole ship's stores and escaped with accomplices in a boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.316666700439157, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-192", + "dateofocc": "2004-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier was boarded 26 Jul at 0910 local time while drifting, for engine repairs in position 04-48.4N 098-38.9E. Armed persons from a fishing boat opened fire damaging bridge windows (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.648333299956221, 4.806666700424387] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-193", + "dateofocc": "2004-07-20", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports suspicious approach by 7 small craft 20 Jul at 1620 local time, while underway in position 05-46N 097-37E. Crew mustered and activated fire hoses when boats approached and they withdrew. Later a secon", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.616666699981408, 5.766666700203587] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-194", + "dateofocc": "2004-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT TANKER", + "descriptio": "INDONESIA: An unidentified LPG tanker was boarded 26 Jul at 2040 UTC, while anchored in position 06-01S 105-55E and Anyer. Five persons armed with automatic rifles fired several shots at the duty seaman who was unhurt. The thieves then stole ship's e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.916666700339761, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-195", + "dateofocc": "2004-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified general cargo ship was boarded 26 Jul at 0001 local time, while at anchor (Bintulu, Sarawak). Three persons armed with knives boarded at the forecastle but jumped overboard and escaped empty handed in a fast boat when alarm wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.966666700432825, 3.23333329987878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-196", + "dateofocc": "2004-07-27", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PAPUA-NEW GUINEA: The 353-ton Ro/ro (HURIS) was boarded and robbed 27 Jul shortly after its arrival in the early morning hours at Ah Tam Wharf, Rabaul. Five men armed with 3 home-made guns and a bush knife escaped with a \"substantial\" amount of cash an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [152.177777799651949, -4.208333299736751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-197", + "dateofocc": "2004-07-23", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PAPUA-NEW GUINEA: The container ship (AGUTOI), probably (AGUTOI CHIEF) was looted by at least 35 persons after it ran aground on a sand bank at Kerema. This is 100 km north west of Port Moresby, according to a 23 Jul report. Villagers from Kerema stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [145.733333300440222, -7.966666699943801] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-198", + "dateofocc": "2004-07-26", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified container ship was boarded 26 Jul at 2230 local time, while underway in position 14-38.4N 017-22.9W (3 miles from the port entrance of Dakar). As it departed, three persons armed with knives escaped with a \"large quantity\" of s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.381666699938023, 14.640000000351108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-199", + "dateofocc": "2004-08-02", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE: The general cargo ship (PATRAIKOS II) was attacked 2 Aug at 0420 local time. Ten persons opened fire as they approached, while the ship was anchored at Freetown. The attackers boarded using grappling hooks, smashed cabin doors, held the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.218888899891851, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-200", + "dateofocc": "2004-07-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIA: An unidentified tug and barge report attempt to board 27 Jul at 0745, by persons in several fishing boats while they were underway 18 nm west of Quilon (Kollam). Master contacted Indian Coast Guard, who dispatched an aircraft and patrol vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.600000000304419, 8.883333300106472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-201", + "dateofocc": "2004-07-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: A barge under tow of an unidentified tug was boarded 30 Jul at 0900, while underway in position 21-43N 091-33E 30 nm off Chittagong. The pirates stole stores and loose equipment from the barge and then departed at 0930 (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.550000000023488, 21.716666699954999] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-202", + "dateofocc": "2004-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified commercial landing craft was boarded 26 Jul late in evening, while underway off Pulau Jakak. The thieves stole ships fuel and radio equipment and took master and chief engineer hostage for ransom (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.099999999715408, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-87", + "dateofocc": "2005-03-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: M/T (TRI SAMUDRA) was boarded 12 Mar at 1755 local time, while underway in position 03-37.25N 099-36.75E, 14 nm SE of Berhala Island. Thirty-five pirates, armed with machine guns and rocket propelled grenades, took control of the Ind", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.612499999890758, 3.620833299970002] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-88", + "dateofocc": "2005-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "STRAIT OF MALACCA: Tug (IDATEN) was boarded 14 Mar at 1735 local time while underway in position 04:25.6N 099-40.7E. Number of pirates reported vary between three pirates, armed with pistols and rifles, to fifteen pirates, armed with AK-47 and M-16 ass", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.678333299728763, 4.426666699818497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-89", + "dateofocc": "2005-03-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: An unidentified bulk carrier reported an attempted boarding 11 Mar at 1905 UTC, while underway in position 01-15N 104-05.2E. Alert crew raised alarm, activated fire hoses, and switched on deck lights as three boats approached their ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.086666700001786, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-90", + "dateofocc": "2005-03-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GULF OF ADEN: The Thai-flag fishing vessel (SIRICHAINAVA 12) was seized 16 Mar at 0400 UTC, underway in position 12-45.35N 051-33.18E, by 3 Somali crewmen. The 3 Somali crewmen were working aboard as regular crew people.crew. The 3 held another 26 cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.553055600007838, 12.755833299991139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-91", + "dateofocc": "2005-03-15", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified general cargo ship reports being chased 15 Mar at 1330 UTC, while underway in position 11-59.1N 051-16.6E off Somalia, by three persons armed with guns in a white-hulled speedboat. Ship's crew raised alarm, activated fire", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.27666669993971, 11.984999999963975] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-92", + "dateofocc": "2005-03-15", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified Ro/Ro was approached 15 Mar at 0531 UTC, while underway in position 14-20N 050-50E, by 3 speedboats each containing 4 persons. To prevent boarding, crew activated fire hoses, sounded whistle, and warned other ships in the", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.833333299799392, 14.333333299967933] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-93", + "dateofocc": "2005-03-08", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHTS", + "descriptio": "GULF OF ADEN-YEMEN: The U.S. sailboats (MAHDI) and (GANDALF) report approach 08 Mar at 1700 local time, while underway in position 13-28N 048-07E, approximately 30 miles off the coast of Yemen. Two fast boats, with four men in each, opened fire on th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.116666699729592, 13.46666670036268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-94", + "dateofocc": "2005-03-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 16 Mar at 2245 local time while anchoring in Chittagong anchorage 'B'. Thieves armed with knives boarded at the stern, stole ship's stores, escaped when crew sounded alarm, and ship's whistle a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-95", + "dateofocc": "2005-03-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: .An unidentified bulk carrier was boarded 20 Mar at 1905 local time, at Balikpapan inner anchorage. The intruders tried to break into the bosun's store but fled empty handed, when crew raised alarm. One crew member was injured resisting the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-96", + "dateofocc": "2005-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING BOAT", + "descriptio": "INDONESIA: The Malaysian fishing boat (MITRA UTAMA) was boarded and robbed 14 Mar, while off Belawan with a cargo of vegetables enroute form Malaysia. Pirates, armed with machine guns, stole communications equipment and other property. They also took", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-278", + "dateofocc": "2005-08-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: An unidentified fishing vessel was reportedly hijacked on 16 AUG 2005 while fishing off the Somali coast, south of Kismayo. The fishing vessel, reportedly owned by a Chinese company, was seized by six unidentified gunmen as it was fishing insid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.524999999854458, -0.394444399880229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-280", + "dateofocc": "2005-09-08", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified tanker was boarded 08 Sep at 2235 UTC while moored to a buoy in position 17-52.8N 077-06.2W, Old Port Harbor. Four robbers, armed with knives and hooks, were detected onboard the vessel by the alert crew. Crew raised alarm an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.103333300309032, 17.880000000168138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-281", + "dateofocc": "2005-09-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 06 Sep at 2050 local time, while berthed at Cochin. Several robbers boarded the vessel and stole ships stores and escaped. Local authorities were informed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.257777800398287, 9.965833299873907] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-282", + "dateofocc": "2005-09-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 12 Sep at 0330 local time while anchored in position 03-17S 116-23E, Pulau Laut anchorage. Four robbers broke open bosun store and stole ships stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.383333300435311, -3.283333299954165] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-283", + "dateofocc": "2005-09-11", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Sep at 0415 local time while at anchor near Tg. Mangkok, Sebuku Island. Robbers, armed with long knives, held the crewman on duty and stole ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.326666700109854, -3.206666700401456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-284", + "dateofocc": "2005-07-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 29 Jul at Jakarta anchorage (reported 13 Sep). Alert crew sounded alarm after detecting for robbers onboard. Four robbers escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.891666699989059, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-285", + "dateofocc": "2005-08-19", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 19 Aug at 2000 local time, while moored to a buoy at Ho Chi Minh City port (reported 13 Sep). Two robbers, armed with knives and swords,boarded the vessel. One of the robbers tried to attack duty crewm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.914722199770154, 10.269444399878466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-286", + "dateofocc": "2005-08-04", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 04 Aug while moored to a buoy, at Ho Chi Minh City port (reported 13 Sep). Robbers broke store locks and stole ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.914722199770154, 10.269444399878466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-287", + "dateofocc": "2005-07-31", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 31 Jul at 1900 local time, while moored to buoy no. 39 (reported 13 Sep). Four robbers, armed with long knives, boarded the vessel. Duty officer and crew gave chase after detecting the trespassers. Robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.914722199770154, 10.269444399878466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-288", + "dateofocc": "2005-07-10", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 10 Jul at 0200 local time, while moored to a buoy at Ho Chi Minh City port (reported 13 Sep). Two robbers boarded the vessel during cargo operations with barges alongside. They broke open forepeak stor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.914722199770154, 10.269444399878466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-289", + "dateofocc": "2005-07-30", + "subreg": "94", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA: An unidentified bulk carrier was boarded 30 Jul while at Xingang (TIANJIN XINGANG) port.. Robbers boarded the vessel during cargo operations and stole ships equipment (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.76666670022837, 38.977777800127967] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-290", + "dateofocc": "2005-09-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified chemical tanker was boarded 19 Sep at 1220 local time, while anchored in position 05-10N 004-03W, off Abidjan. Three robbers, armed with knives and a steel bar, boarded via the anchor chain. Duty officer raised alarm. Cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.049999999650765, 5.166666700004328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-292", + "dateofocc": "2005-09-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MADAGASCAR: An unidentified tanker was boardedand robbed 13 Sep at 0200 local time, while berthed at Mahajunga port. They broke open bosun store, stole ships stores, and escaped in a boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.309722200072031, -15.727777800259275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-118", + "dateofocc": "2006-05-01", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker reported suspicious approach 1 May at 1140 UTC, while underway in position: 03-13N 108-45E, Kumpulan Natuna Islands. Persons in several unlit boats followed the vessel and came close to her stern. Crew mustered, switch", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.750000000040131, 3.216666699806353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-119", + "dateofocc": "2006-04-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker reported attempted boarding 30 Apr at 1150 UTC, while underway in position 03-04.3S 107-17.2E, Gelasa strait. Three pirates in a green/brown, 5m long motorized banka, armed with long knives, threw grapnel hooks at stern", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.286666699565671, -3.071666699772038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-120", + "dateofocc": "2006-04-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 29 Apr at 2245 local time, while underway in position: 02-55S 107-18E, Gelasa strait. Six pirates armed with long knives in a speedboat boarded the vessel. The master, chief engineer and two ot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.300000000307989, -2.916666699915424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-121", + "dateofocc": "2006-04-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SPRATLY ISLANDS: Fishing vessel assaulted and robbed 27 Apr, Spratly Islands Archipelago, South China Sea. Four Chinese fishermen were killed and three injured, when attacked and robbedby pirates. According to accounts of survivors, pirates dispatched", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.666666700397855, 10.500000000235218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-122", + "dateofocc": "2006-04-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA: Yacht boarded and sailor shot, 28 Apr, Islas de Piritu anchorage, off Puerto la Cruz. Five armed robbers boarded the boat and shot the only sailor onboard. He was injured in his stomach but escaped in a dinghy. He was operated on in a hos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.516666700321082, 10.466666700265648] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-123", + "dateofocc": "2006-05-02", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: Unidentified chemical tanker reported suspicious approach and attempt to board 2 May at 1030 local time, while drifting in position 09-13.1N 014-06.2W off Conakry. Drifting 25 nm off the port, the vessel received a VHF call by someone claimin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.10333330007029, 9.218333300202744] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-210", + "dateofocc": "2004-08-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier reports attempt to board 9 Aug at 0330 local time, while anchored at Lagos in position 06-18.1N, 003-16.0E. Seven persons in a boat tried to gain access at stern using grappling hooks, but aborted attempt and fled", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.266666699673067, 6.30166669976677] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-124", + "dateofocc": "2006-04-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Vessel (AL TAJ) hijacked 25 Apr, Southern Somali coast. Isse Sheik Elmi, who is the agent for the (AL TAJ) said the vessel sailed from Dubai on 6 Apr and arrived at El Maan, Somalia on 23 Apr, where it unloaded goods for Mogadishu businessmen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.049999999836359, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-125", + "dateofocc": "2006-05-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: Sri Lankan troop carrier (PEARL CRUISE II) and its escort of four Dvora fast attack craft came under attack by fifteen suspected Tamil Tiger suicide boats 11 May, during the evening while passing through the area of Jaffna-Vettilaikerny. One", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.000000000234536, 9.949999999902673] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-126", + "dateofocc": "2006-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified container ship boarded 5 May at 0345 local time, at Chittagong anchorage B. Two unlit boats approached the ship. One boat with 10 persons armed with long knives came close and one robber boarded, using grappling hook. Alert cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-127", + "dateofocc": "2006-05-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 4 May at 0120 local time while underway in position 01-23.5N 104-27.0E, off Horsburgh lighthouse Singapore Strait. A speedboat, with five pirates on board, fired upon the vessel. Duty officer r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.449999999811155, 1.391666699724851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-203", + "dateofocc": "2004-07-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 30 Jul at 1205 local time, while anchored in position 06-00.97S 106-53.73E, Jakarta tanker anchorage. Five persons armed with long knives attacked a crew member and chocked him to prevent him from soundin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.895555599569548, -6.016111100394824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-204", + "dateofocc": "2004-07-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 28 Jul at 0200 local time, at Belawan anchorage. Four persons with swords stole ship's equipment and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-205", + "dateofocc": "2004-07-30", + "subreg": "74", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "INDONESIA-ARAFURA SEA: An unidentified yacht reports being \"chased\" 30 Jul at 2139 UTC, while underway in position 10 30S, 138 15E. An unidentified 15-meter long craft pursued for one hour. Another 20 meter craft without markings was reportedly in the", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [138.249999999645183, -10.50000000044389] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-206", + "dateofocc": "2004-08-08", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified bulk carrier was boarded 8 Aug at 0340 local time, while at Pertigalete anchorage, la Cruz. Crew raised alarm and two intruders fled empty handed in a boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.574999999742033, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-207", + "dateofocc": "2004-08-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified chemical tanker was boarded 7 Aug at 0100 UTC, during cargo operations at Oil Jetty no. 4, Kandla. Five persons tried to break into paint locker but jumped overboard and fled empty handed, when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.03333330015937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-208", + "dateofocc": "2004-08-07", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker reports attempt to board 7 Aug at 1310 local time (as reported), while underway in position 05-05.5N, 098-28.7E. Two high speed boats approached form stern and followed for 30minutes while master incre", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.478333300229508, 5.091666699754569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-209", + "dateofocc": "2004-08-06", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: An unidentified bulk carrier was boarded 6 Aug at 0200 local time, while engaged in cargo operations at No. 3 Berth, Bangkok. The thieves stole ship's property and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.569444400190719, 9.606944400070631] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-211", + "dateofocc": "2004-08-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Pirates reportedly from the Shiraj Bahini attacked and looted 5 boats carrying merchandise on the Tatulia (Tetulia) River 10 Aug, and 10 businessmen were reported injured. The same group attacked and looted 9 fishing trawlers 13 Aug, steali", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.652222200177278, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-212", + "dateofocc": "2004-08-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded 13 Aug at 2330 local time, while at Chittagong anchorage by 12 persons armed with guns and knives. The robbers stole ship's stores and fled (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-213", + "dateofocc": "2004-08-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified livestock carrier was boarded 15 Aug at 0745 UTC, whiled anchored in position 06-02.9S 106-53.8E at Jakarta anchorage. Persons from three wooden boats gained access, as the ship was preparing to come to anchor. Duty officer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.896666700245532, -6.048333299688352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-214", + "dateofocc": "2004-08-16", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified cargo ship was boarded 16 Aug at 0300 local time and then again 18 Aug at 0600 local time, while berthed at Varraux Terminal, Port Au Prince. In both cases, alertcrew drove off the intruders empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.354166700306166, 18.555555599968216] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-215", + "dateofocc": "2004-08-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SENEGAL: An unidentified product tanker was boarded 23Aug at 2355 local time while underway in position 14.37.2N, 017 25.5W at Dakar Roads soon after dropping the outward pilot. The intruders stole ship's stores and escaped (MB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.425000000420539, 14.620000000224593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-216", + "dateofocc": "2004-08-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt by persons in two unlit boats to board 21 Aug at 0400 local time, while berthed at Tarahan (Tarakan or Lingkas Roads) coal terminal (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.625000000214754, 3.249722200100393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-217", + "dateofocc": "2004-08-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The container ship (ACX HIBISCUS) was boarded 21 Aug at 0400 local time by 7 persons armed with guns, long knives and steel bars, while underway in position 02-53N 108-00E, about 15 nm se of Midai Island in the Natunas. The crew was taken to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.000000000240732, 2.883333299912408] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-97", + "dateofocc": "2005-03-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "MALAYSIA: Two Filipino fishermen are reported dead in one of three separate pirate incidents, which occurred between 2300 local time 18 Mar and 0200 local time 19 Mar off Tungku. The pirates robbed the boats of engines and kerosene lanterns (INFO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.933333299933224, 5.033333299577237] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-98", + "dateofocc": "2005-03-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BangladeshAt Chittagong 'B' anchorage, robbers armed with long knives boarded a general cargo ship, at stern whilst anchoring. They stole ship's stores and escaped. Crew raised alarm, sounded whistle, and fired a flare. Port control informed but no respo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-99", + "dateofocc": "2005-03-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "Somalia:Three armed pirates in a boat hijacked a fishing vessel underway. They directed the fishing vessel to come closer to the Somali Coast. The Pirates held the 26-crew members as hostage for a ransom. IMB piracy reporting centre alerted coalition shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.553055600007838, 12.755833299991139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-100", + "dateofocc": "2005-03-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Somali:Three pirates armed with guns, in a white hull speedboat, chased a general cargo ship underway and fired upon her. Crew raised alarm, activated fire hoses, increased speed, and took evasive manoeuvres. After 30 minutes pirates aborted attempt and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.27666669993971, 11.984999999963975] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-101", + "dateofocc": "2005-03-26", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported an attempted boarding 26 Mar at 1830 UTC, while berthed at the Balikpapan coal terminal. Four persons in a fast craft came along side and two persons tried to board, by climbing the mooring ropes. Aler", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.265555600040386] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-102", + "dateofocc": "2005-03-22", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 22 Mar at 0330 local time, while in position 05-58.3S, 105-59.4E, near Pertamina jetty - 1 (Luwuk), Tg. Gerem. Alert crew sounded alarm and mustered after two robbers, armed with long knives, boarded the ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.80000000035966, -0.949999999820307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-103", + "dateofocc": "2005-03-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Mar at 1905 local time, at Balikpapan inner anchorage. The intruders tried to break into the bosun's store but fled empty handed, when crew raised alarm. One crew member was injured resisting the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.791666699679695, -1.258333300405809] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-104", + "dateofocc": "2005-03-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 20 Mar at 2300 local time, near Chittagong Alfa anchorage. Two boats, with 10 robbers in each, approached the tanker while it was preparing to anchor. Two robbers boarded the stern and stole ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-105", + "dateofocc": "2005-03-21", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "SURINAME: Police report at least six Surinamese fishing boats were hijacked and stripped of their motors 21 Mar, while fishing off the coast near Coronie and Commewijne Districts. At about the same time, 3 Guyanese fishing boats were also attacked, str", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.117500000298151, 5.977777799960108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-106", + "dateofocc": "2005-03-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship reports an attempted boarding 31 Mar at 1330 UTC, while underway in position 00-40.5N 048-49.1E off Somalia, by six persons armed with guns and grenades in two speedboats. Ship sent distress message, increas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.818333299864605, 0.674999999895022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-107", + "dateofocc": "2005-04-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "BANGLADESH: The barge (SWISSCO 12) and its tugboat were boarded and robbed late 01 Apr, while underway in the Bay of Bengal near Kutubdia channel. The attack left three of the 25 crewmembers injured. Valuable tools and spare parts were also stolen in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.930833299766505, 21.826388899626522] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-108", + "dateofocc": "2005-04-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BANGLADESH: Passenger trawler (SEVEN STAR) was boarded 02 April in the Meghna estuary in offshore Kalatola-Telirchar area in Manpura upasila in the Bhoa district. As the vessel was in transit from Ramgati to Monpura, armed pirates boarded the vessel an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.949722200148699, 22.30999999987074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-109", + "dateofocc": "2005-04-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: The bulk carrier (OCEAN BRIDGE) was boarded 01 Apr at 0300 local time, while underway in position 03-06.9N 100-44.6E, in the vicinity of one fathom bank. Pirates armed with guns and knives boarded the Japanese owned, Panamanian-regist", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.743333300397182, 3.115000000045882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-291", + "dateofocc": "2005-06-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo ship SEMLOW hijacked on 26 JUN 2005 while underway in position 04-47.6N 048-12.0E, off Hobyo. Hijackers demanded $500,000 to free the vessel and ten crewmen. The vessel was under charter of the UN World Food Program (WFP), carrying 850 M", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.199999999565875, 4.793333299857295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-293", + "dateofocc": "2005-09-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded and robbed 17 Sep at 2210 local time, while berthed at Cochin oil terminal. Eight robbers boarded the tanker, during cargo operations and escaped with ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.252777800141871, 9.969444399778865] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-294", + "dateofocc": "2005-09-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified general cargo ship was boarded 13 Sep at 2140 UTC, while anchored at Chennai outer anchorage. Four robbers boarded the vessel via the poop deck. Crew spotted them and raised the alarm. Robbers escaped in a speedboat empty hande", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.333333300303707, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-295", + "dateofocc": "2005-09-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified product tanker was boarded and robbed 14 Sep at 0415 local time, while anchored at Tanjung Priok tanker anchorage, Jakarta. The four armed robbers broke into the engine room and threatened the crew with a pistol. They stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.799999999842157, -6.094444399974634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-296", + "dateofocc": "2005-09-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 14 Sep at 1400 local time, while underway at the Jakarta breakwater as it was entering port. Alert crew raised the alarm when seven armed robbers boarded the vessel. Robbers escaped empty handed (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.897222199771875, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-297", + "dateofocc": "2005-09-27", + "subreg": "53", + "hostility_": "PIRATES", + "victim_d": "FERRYBOAT", + "descriptio": "FRANCE: Ro-pax ferry (PASCAL PAOLI) hijacked 27 Sep, Marseille. The hijackers are striking SNCM seafarers outraged by the French governments sale of the state-owned ferry operator, SNCM to an investment company. Members of the Corsican trade union STC", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [9.450000000336161, 42.699999999837644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-298", + "dateofocc": "2005-09-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (IBN BATOUTA) hijacked off the east coast of Somalia per 26 Sep reporting. It is believed the same group of hijackers responsible for the hijacking of the M/V (SEMLOW) are responsible for the hijacking of the M/V (IBN BATOUTA). The hijack", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.833333300439961, -0.16666670005128] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-299", + "dateofocc": "2005-09-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Firefight between pirates and enforcement authorities 27 Sep, Monpura, in Bhola. A 16 member joint forces team encountered two trawlers with pirates onboard and challenged them. The pirates opened fire and the joint forces retaliated. Aut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.649999999724571, 22.650000000223486] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-300", + "dateofocc": "2005-09-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was boarded 20 Sep at 0230 local time, while at Chittagong outer anchorage. Six robbers broke open forward store and tried to steal ships property. Alert crew raised alarm and robbers fled empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-301", + "dateofocc": "2005-09-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA:Tug (MARCO POLO 43) and barge (MARCO POLO 48) reported missing as of 10 Sep while on a voyage from Gresik Java, Surabaya to Jakarta (IMB) Description:Tug: Marco Polo 43, POR-Batam, callsign: YD3907, grt:148, nrt:88 Built-1992, loa: 23.34m,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.663888899630138, -7.155555599988077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-302", + "dateofocc": "2005-09-23", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship was boarded 23 Sep early in the morning, while anchored 6 miles SSW of Vung Tau Island. Robbers broke forward locker padlock and stole ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-128", + "dateofocc": "2006-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Tug missing since 22 Apr believed to be hijacked between Belawan port and Batu Licin, Banjarmasin. A tug towing an empty barge departed Belawan on 13 Apr en route to Batu Licin, Banjarmasin. Last known position was 02-07S 108-47E on 22 Ap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.783333300009701, -2.116666700249255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-129", + "dateofocc": "2006-05-09", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: Unidentified cargo ship boarded and robbed 9 May at 0800 - 0910 UTC in position: 17-52.9N 076-46.6W, Kingston outer anchorage. Six robbers armed with knives boarded the vessel at portside bow. They threatened deck watchman with knives, brok", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.776666699624059, 17.881666700195183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-323", + "dateofocc": "2005-10-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (PANAGIA) was hijacked 18 Oct, while underway in position 06-59.18N 051-08.39E, approximately 90 NM off the east coast of Somalia (Operator).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.139722199607718, 6.986388900153827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-130", + "dateofocc": "2006-05-13", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MAURITANIA: Unidentified refrigerated cargo ship approached 13 May at 2125 local time, while drifting in position: 19-04N 017-09W, Nouadhibou roads. Pirates in an unlit boat approached the vessel 60 nm off the coast. Master raised alarm, took evasiv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.149999999804606, 19.066666699824339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-131", + "dateofocc": "2006-05-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified bulk carrier boarded and robbed 12 May at 0001 local time, Chittagong anchorage B. Three unlit boats with seven robbers, armed with long knives, approached the vessel from stern and boarded using grapnel hooks. They stole ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-132", + "dateofocc": "2006-05-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified general cargo ship boarded 12 May at 1900 local time, while anchored at Chittagong anchorage B. Five robbers armed with long knives boarded the vessel via anchor chain. Alarm was raised, crew mustered, and robbers escaped (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-133", + "dateofocc": "2006-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Unidentified tanker reported attempted boarding 10 May at 1530 UTC, while underway in position 12-55.2N 049-36.6E. Nine people in a 10 to 12 m wooden boat, white/red hull, tried to board the vessel. Master took evasive maneuvers and cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.609999999944193, 12.920000000259506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-134", + "dateofocc": "2006-05-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified bulk carrier reported attempted boarding 10 May, during the night at Chittagong anchorage A. A group of robbers attempted to board the vessel. Crew raised alarm and robbers aborted boarding (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-135", + "dateofocc": "2006-05-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified bulk carrier boarded and robbed 9 May at 0200 local time at Chittagong anchorage A. Ten robbers armed with long knives boarded the vessel via anchor chain. They took hostage two shore watchmen and one crewmember and robbed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-136", + "dateofocc": "2006-05-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOAT", + "descriptio": "INDIA: According to 15 May reports, two trawlers carrying 28 fishermen were intercepted and abducted by pirates on 13 May, from the river Malta near Kalas Islands. Reportedly, pirates demanded a ransom. Kultali police started an immediate search upon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.666666699557084, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-137", + "dateofocc": "2006-05-10", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier reported suspicious approach 10 May at 2010 UTC, while underway in position: 05-50.1S 113-25.0E Java sea. A speedboat came close to the vessel. Crew directed searchlights and after 90 minutes the boat moved away", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.416666700132623, -5.8350000003785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-138", + "dateofocc": "2006-05-09", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified supply ship reported suspicious approach 9 May at 0405 local time while underway in position: 03-13.9N 108-42.5E, vicinity of Natuna islands. An unlit boat approached the stern of the vessel. Alert crew switched on searchligh", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.708333299759943, 3.231666699676452] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-139", + "dateofocc": "2006-05-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified container ship reported attempted boarding 13 May at 1330 local time, while in position: 06:01S - 106:52E at outer roads, Tg. Priok anchorage. Five people in a green colored 5 meter boat tried to board the vessel using grapnel h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-140", + "dateofocc": "2006-05-20", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: Unidentified container ship reported attempted boarding 20 May at 0810 UTC, Kingston outer anchorage. Two boats approached the vessel. One boat had five robbers armed with knives and the other boat had one robber armed with a knife. They tri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-218", + "dateofocc": "2004-08-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Aug at 2200 local time, while underway in position 02-40.58N 107-58.0E near Midai Island in the Natunas. Seven persons armed with long knives and swords took duty crew to bridge as hostages and ti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.966666700271162, 2.676388900311224] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-219", + "dateofocc": "2004-08-25", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: An unidentified container ship was boarded 25 Aug at 0345 local time, while anchored in position 032-11S 051-58W at Rio Grande. Ten persons broke into 8 containers on deck but fled, when duty officer sounded alarm and ship's whistle. Port aut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.966666699568123, -32.183333300259278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-220", + "dateofocc": "2004-08-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 30 Aug at 0200 local time, while at Lagos anchorage. Two persons tried to steal ship's stores but fled empty handed, when crew sounded alarm One crew member reported injured (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.433333300244954, 6.349999999606382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-221", + "dateofocc": "2004-08-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 25 Aug at 1620 local time, while anchored 6 nm of Lagos fairway buoy. Three persons demanded money from master but were driven back to their boat by crew. The intruders then threatened to ignite glas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.413888900368818, 6.369444400381894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-222", + "dateofocc": "2004-08-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ERITREA: An unidentified tanker reports approach 26 Aug at 0545 UTC by about 13 persons in two boats while tanker was undergoing engine repairs in position 15 04N, 041 44E. Persons attempted to board form each side but crew mustered and activated fire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.73333329977487, 15.066666699694963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-223", + "dateofocc": "2004-08-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 30 Aug at 1255 local time, while anchored at Tanjung Priok. Seven persons gained access at port quarter using grappling hooks from ablue boat. Duty officer raised alarm and the intruders fled empty h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.058333300201298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-224", + "dateofocc": "2004-08-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "UNIDENTIFIED SHIP", + "descriptio": "INDONESIA: An unidentified ship was boarded 28 Aug at 0510 UTC, while anchored in position 06-02.3S 106-53.7E at Jakarta anchorage. Four persons stole engine spares and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.895000000218488, -6.038333300074726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-225", + "dateofocc": "2004-08-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Aug at 1600 local time while, at Balikpapan anchorage by persons who entered via the hawse pipe. Intruders broke open forecastle store and took ship's supplies, before escaping when alarm was sounded (IM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.809722200103693, -1.263888900013342] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-226", + "dateofocc": "2004-08-26", + "subreg": "93", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified product tanker reports suspicious approach 26 Aug at 0300 local time, while underway in position 15-50N 111-20E off Triton Island. A 30-meter boat with mounted guns came within 75 m of stern and launched a small boat w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.333333300406935, 15.833333299566789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-227", + "dateofocc": "2004-09-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 2 Sep at 0445 local time while anchored in position 06-20N 003-22E, 3 nm off the Lagos fairway buoy, and engaged in ship to ship transfer operations. Two armed persons tied up duty seaman, broke into storero", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-228", + "dateofocc": "2004-09-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified container ship was boarded 3 Sep at 0200 local time, while anchored in position 22-08.29N 091-46.04E at Chitagong anchorage 'C'. Armed robbers stole ship'sstores from poop deck and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.767222199813148, 22.138055600266171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-229", + "dateofocc": "2004-09-09", + "subreg": "24", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ERITREA: The container ship (SEALAND ATLANTIC) reports suspicious approach 9 Sep at 1345 local time, while underway in position 13-46N 042-27W (about 14 nm off Tekay Deset, Eritrea) and one hour steaming north of the beginning of the Traffic Separation", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-42.449999999813429, 13.766666699563018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-239", + "dateofocc": "2004-09-18", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified bulk carrier reports attempt to board 18 Sep at 0330 local time, while anchored in position 02-06.5N 111-19.6e (Tanjung Manis anchorage, Sarawak). One person armed with a knife attempted to gain access via the anchor chain; d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.326666699948134, 2.108333299729964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-230", + "dateofocc": "2004-09-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 6 Sep at 0200 local time at Tanjung Priok anchorage, by two robbers who gained access via the poop deck. Crew raised alarm when the 2 tried to gain access to the accommodation and escaped empty hand", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-110", + "dateofocc": "2005-03-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: M/T (TRI SAMUDRA) was boarded 12 Mar at 1755 local time, while underway in position 03-37.25N 099-36.75E, 14 nm SE of Berhala Island. Thirty-five pirates, armed with machine guns and rocket propelled grenades, took control of the Ind", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.612499999890758, 3.620833299970002] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-111", + "dateofocc": "2005-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "STRAIT OF MALACCA: Tug IDATEN was boarded on 14 MAR 2005 at 1735 local time, while underway in position 04-25.6N 099-40.7E. The number of pirates reported varies between three pirates armed with pistols and rifles, to fifteen pirates armed with AK-47 an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.678333299728763, 4.426666699818497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-112", + "dateofocc": "2005-04-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: The M/T (YOHTEISAN) reported an attempted boarding late 05 Apr, off Indonesia's Karimun islands. Pirates in seven small fishing boats surrounded the tanker and attempted to board it, on its eastbound journey in heavy rain and poor vis", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-113", + "dateofocc": "2005-04-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 03 Apr at 0145 local time, while underway in position 03-08N 105-24E 12 NM west of P.Mangkai Island, Anambas Islands. Four pirates armed with long bolo knives boarded the vessel at the poop deck. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.399999999976785, 3.133333300145352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-114", + "dateofocc": "2005-03-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 30 Mar at 0415 local time, while anchored at Sebuku anchorage, east Kalimantan. Several robbers armed with long knives boarded the vessel and broke open the forepeak locker. Alert crew and armed secu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.326666700109854, -3.206666700401456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-115", + "dateofocc": "2005-03-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 30 Mar at 2255 local time in, position 05-28.29S 105-17.93E, Panjang outer roads. Six robbers armed with long knives held two crew members hostage and tied them up. They broke into the forward loc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.298888899567316, -5.471388899994281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-116", + "dateofocc": "2005-03-29", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 29 Mar at 2030 UTC, while underway in position 01-53.6S 116-58.0E, in the Makassar Straits. Two pirates armed with knives stole a life raft and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.966666699662937, -1.893333299702363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-311", + "dateofocc": "2005-09-19", + "subreg": "74", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDONESIA: An Indonesian warship fired on a group of Chinese boats allegedly fishing illegally in the Arafura Sea, off the Australian north coast 19 Sep (reported 22 Sep). One boat was damaged and taken in to custody and one Chinese crewman killed, whi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [136.650000000312843, -11.166666700407063] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-312", + "dateofocc": "2005-09-29", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: An unidentified container ship was boarded 29 Sep at 0500 local time, while at Vung Tau anchorage and robbed of stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-117", + "dateofocc": "2005-03-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA: Tugboat BONGGAYA 91 towing barge BONGGAYA 90 was boarded on 30 MAR 2005 at 1020 local time in position 04-35N 119-00E, about three NM east of Mataking Island, Sabah. Five pirates dressed in dark blue clothes and armed with M16 and AK47 rifles", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.999999999697138, 4.583333299877495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-118", + "dateofocc": "2005-04-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (TIM BUCK) was boarded 10 Apr at 1000 local time, while underway in position 03-24N 048-17E, approximately 55 NM off the coast of Somalia. Pirates, armed with grenade launchers and automatic weapons, set fire to a starboard rescue boat but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.166666699596306, 3.40000000027544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-303", + "dateofocc": "2005-09-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified bulk carrier was boarded 3o Sep at 0330 local time, while at Abidjan anchorage. Robbers stole ships stores. Master was advised by port authority to drift 10-15 miles offshore, while awaiting berth (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.034999999780666, 5.269444399716804] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-304", + "dateofocc": "2005-09-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 27 Sep at Escravos anchorage and two crew members were shot. No report on extent of crew injures or loss to ship (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.94999999974101, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-305", + "dateofocc": "2005-09-30", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier was pursued 30 Sep at 2320 UTC, while underway in position 05-05N 051-05E, about 150 nm off the Somali coast. A fishing boat came within 1.7 nm, while ships master undertook evasive maneuvers. Boat pursed the bul", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.08333330003228, 5.083333300343327] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-306", + "dateofocc": "2005-10-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 2 Oct at 2000 UTC at Chittagong anchorage B. Robbers armed with long knives boarded at the stern and escaped with ships stores after crew raised alarm. The Bangladesh Coast Guard was informed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-307", + "dateofocc": "2005-09-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship was approached 28 Sep at 2310 local time, while at Chittagong anchorage. Persons armed with long knives approached in a small boat but were repelled by crew throwing wooden dunnage, when they tried to boar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-308", + "dateofocc": "2005-10-01", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA-INDONESIA: The supply ship (PLEIONE) was chased 1 Oct at 1200 local time, while underway in position 06-11.4N 097-06.3E, off the northern tip of Sumatra by ten persons In a fishing boat. Crew activated fire hoses and master began evas", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.104999999874906, 6.190000000392615] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-309", + "dateofocc": "2005-09-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA-INDONESIA: The general cargo ship (PRIMA INDAH) was hijacked 30 Sep at 1300 UTC, while underway in position 01-28.6S 106-41.1E. The 14 crew were set adrift in a fishing boat and later landed safely on an island, but the ship and its", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.685000000238631, -1.476666699796908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-310", + "dateofocc": "2005-09-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 28 Sep at 0550 local time, while anchored at Balikpapan. Two robbers armed with machetes boarded via the anchor chain and stole a forward life raft. The robbers were trying to steal ships stores, when they", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.791666699679695, -1.258333300405809] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-313", + "dateofocc": "2005-09-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "NIGERIA: It was erroneously reported to the IMB that, an unidentified tanker was boarded 27 Sep at Escravos anchorage and two crew were shot. Further investigation reveals the tanker was providing assistance to a fishing vessel, which was fired upon, b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.44166669972094, 5.363333300316413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-314", + "dateofocc": "2005-10-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (MILTZOW) was hijacked 12 Oct at 1530 local time, while offloading in Merca. According to press reports, six gunmen stormed the vessel and ordered it out to sea. Two crewmembers managed to escape as the dockworkers were forced off the ves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.733333299871902, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-315", + "dateofocc": "2005-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (TORGELOW) was reported hijacked as of 10 Oct while in route to El Maan. No details regarding the incident are known. The (TORGELOW) was reported to be carrying fuel and supplies to the recently released (SEMLOW), as well as a consignment", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.166666699596306, 4.666666700437816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-141", + "dateofocc": "2006-05-20", + "subreg": "26", + "hostility_": "suspicous approach", + "victim_d": "merchant vessel", + "descriptio": "JAMAICA: Unidentified container ship reported attempted boarding 20 May at 0245 local time while in position 17-52.7N 076-46.6W , Kingston outer anchorage. Five persons in a small unlit boat approached the ship. Alert crew directed searchlights at t", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.776666699624059, 17.86666670032514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-142", + "dateofocc": "2006-05-22", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: Russian product tanker (SHKOTOVO) boarded and robbed 22 May at 0620 local time, while underway in position: 09-16.7N 014-42.5W, 60 nm from Conakry. The tanker provides fuel for fishing vessels in the area. Two speedboats approached the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.708333299626702, 9.278333299683084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-143", + "dateofocc": "2006-05-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Unidentified LPG carrier reported suspicious approach 20 May at 0500 UTC while underway in position 21-43.8N 059-52.2E, 20 miles off the coast of Oman. Three Speedboats approached the carrier. Ship raised alarm, crew mustered, and activ", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.870000000114146, 21.729999999797997] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-144", + "dateofocc": "2006-05-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified container ship reported boarding and attempted robbery 22 May at 0300 local time, Chittagong anchorage B. Two unlit boats approached the vessel. One boat with ten robbers armed with long knives came close and two robbers board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-145", + "dateofocc": "2006-05-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE: Unidentified bulk carrier reported attempted boarding 18 May at 2350 local time, while anchored in position 01-13.8N 103-34.8E, west OPL, Singapore straits. Five boats with 2-3 men in each boat, dark brown color, approached the vessel, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.580000000151756, 1.22999999958472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-238", + "dateofocc": "2004-09-20", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified product tanker reports attempt to board 18 Sep at 1026 local time, while underway in position 03-50.5S 107-14.6E in the Gelasa Strait. Persons in 2 speedboats approached but broke off attempt, when duty officer sounded alarm", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.243333300157758, -3.84166669969801] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-146", + "dateofocc": "2006-05-22", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PHILIPPINES: The crew of Tristar Fishing Corporation's vessel Cadiz City reported a dozen men boarded their vessel early on 22 May while transiting near Isla Higantes, in the Iloilo province. The fishing vessel's 30 member crew opted to resist the attac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.533333300229515, 10.683333299804929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-147", + "dateofocc": "2006-05-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Unidentified tanker boarded and robbed 24 May at 0350 local time, Lagos outer anchorage. Two robbers boarded the vessel at stern using a rope. They assaulted a crewmember and tied his hands. They stole ship's stores, property, and the crewmem", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-148", + "dateofocc": "2006-05-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified container ship reported attempted boarding 28 May at 2215 local time, Chittagong anchorage B. Ten robbers, armed with long knives in an unlit boat, approached the vessel from stern. Duty officer raised alarm, crew mustered, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-149", + "dateofocc": "2006-05-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Unidentified cargo ship fired upon 22 May at 1815 local time while underway in position: 01-57N 045-31E, 10.5nm SE of Mogadishu. Duty officer of the vessel noticed a target at range of 1.5nm on radar. He alerted two armed security guards on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.516666700364965, 1.949999999643978] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-231", + "dateofocc": "2004-09-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Sep during the \"early morning\" while departing Makassar (Ujung Pandang). Five persons armed with long knives and axes entered the bridge just after the ship had dropped the pilot. Robbers held duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.380555599654031, -5.116666700346286] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-232", + "dateofocc": "2004-09-02", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 2 Sep at 0215 local time, while anchored in position 01-16-34S 117-14-24E at Balikpapan anchorage. Ten persons stole ship's stores. When master contacted port security officer, he was advised to call", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.240000000251712, -1.276111100079618] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-233", + "dateofocc": "2004-09-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNIDENTIFIED SHIP", + "descriptio": "BANGLADESH: Passengers on the launch (SONARTORI-1), attacked by river pirates 11 Sep at Postogola, turned on their attackers beating one to death and injuring another while their five accomplices escaped. Seven robbers boarded the launch bound from Cha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.666666699621715, 23.216666699553855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-234", + "dateofocc": "2004-09-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded,11 Sep at 0545 local time while at Tanjung Priok anchorage, by 2 persons who gained access at the stern using grappling hooks. Theduty seaman raised the alarm and the two fled empty handed in a wood", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.058333300201298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-235", + "dateofocc": "2004-09-10", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA: An unidentified bulk carrier was boarded 10 Sep in the early morning hours, while anchored in position 21-27N 108-22E, Fangcheng. Thieves armed with knives and crowbars boarded at the forecastle using grappling hooks, broke into fore peak lock", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.366666700104247, 21.449999999824911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-236", + "dateofocc": "2004-09-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified supply ship, towing another vessel, was boarded 16 Sep at 1430 UTC at Chittagong Roads. Nine robbers, armed with knives, stole ship's stores and fled when crewfought them off using hand flares and axes, without injury to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-237", + "dateofocc": "2004-09-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 20 Sep at 0335 local time, while berthed at Dumai. Three armed robbers threatened crew with knives but fled empty handed, when crew mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.475000000097168, 1.687499999669171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-240", + "dateofocc": "2004-09-17", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 17 Sep at 0300 local time, while anchored in position 17-50N 077-05W at Port Esquivel. Six robbers armed with guns, knives, and crowbars broke into forward lockers and stole ship's stores. When crew m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 17.833333299631477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-241", + "dateofocc": "2004-09-15", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship was boarded 15 Sep at 0824 UTC, while at the outer anchorage of Kingston. Five robbers armed with guns broke into a cargo hold and forward locker and stole ship's stores. Crew raised alarm and master informed po", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.849999999846716, 17.941666699675523] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-242", + "dateofocc": "2004-09-27", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified bulk carrier was boarded 27 Sep at 0130 local time, while berthed at Conchan. Five armed persons took security guard hostage and beat him. Shore security patrol exchanged gunfire with the robbers who stole ship's stores and escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.883333299816286, -12.316666700039548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-243", + "dateofocc": "2004-09-20", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: An unidentified general cargo ship was boarded 20 Sep at 2220 local time, during cargo operations, while at Berth No. 3, Conakry. Six persons armed with long knives tried to enter accommodation but crew mustered and informed local police and po", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.717500000006112, 9.513888900296308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-244", + "dateofocc": "2004-09-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: The cargo ship (BINA NIAGA) was attacked 17 Sep, by an organized gang of pirates at Chittagong's outer anchorage, as it awaited berthing for scrapping (INFO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.300000000257114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-245", + "dateofocc": "2004-09-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: The supply ship (DEA LAEGUE), towing the cargo vessel (MAY QUEEN) which had engine trouble, was boarded 16 Sep at 1430 UTC at Chittagong Roads. Nine robbers, armed with knives, stole ship's stores and fled when crew fought them off using ha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.300000000257114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-119", + "dateofocc": "2005-04-05", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF OMAN: An unidentified supply ship was approached 05 Apr at 1625 local time, while underway in position 25-14.1N 057-10.E, in the Gulf of Oman. A small vessel tried to come alongside the supply ship. Master took evasive maneuvers and sounded w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.166666699887344, 25.234999999718013] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-120", + "dateofocc": "2005-04-09", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker was approached 09 Apr at 0500 local time, while underway in position 05-32.7N 098-14.8E. A speedboat doing over 23 knots approached the tanker at port quarter. When boat came to within three cables, crew soun", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.246666699920809, 5.544999999683796] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-121", + "dateofocc": "2005-04-04", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship was chased 04 Apr at 0130 local time, while underway in position 03-55N 100-28E, SW of Sembilan Island. A boat approached the container ship, on starboard beam, and came close to port quarter. Alarm w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.466666699578923, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-122", + "dateofocc": "2005-04-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPRE STRAIT: An unidentified bulk carrier reported an attempted boarding 08 Apr at 0345 local time, while underway in position 01-16.0N 104-10.0E. Several small boats surrounded the vessel and persons inside attempted to board on both sides from bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-123", + "dateofocc": "2005-04-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: The M/T (YOHTEISAN) reported an attempted boarding 05 Apr at 1615 local time, while underway in position 01-08.8N 103-29.E, off Indonesia's Karimun islands. Pirates in seven small fishing boats surrounded the tanker and attempted to b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.483333299748381, 1.146666699748437] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-124", + "dateofocc": "2005-04-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 11 Apr at 0430 local time, in position 03-47.46N 098-42.64E, Pertamina jetty, Belawan port. Three robbers, armed with long knives, boarded the tanker at forecastle during cargo operations. Duty officer ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.710555599714041, 3.791111100271564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-125", + "dateofocc": "2005-04-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 10 Apr at 0520 local time, in position 03-12.5S 116-22E, Pulau Laut anchorage. Eight robbers, armed with knives, stole a liferaft, communications equipment, and stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.366666700362885, -3.208333299704407] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-126", + "dateofocc": "2005-04-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: The M/T (KYOSEI MARU) was boarded 08 Apr at 2320 local time, while underway in position 01-15.30N 103-33.72E, approximately 8 km off Tanjung. Pelepas port anchorage, Johor, Malaysia. Ten pirates, armed with knives, tied the hands of the mast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.561944399903041, 1.254999999967708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-127", + "dateofocc": "2005-04-11", + "subreg": "93", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified tanker was approached 11 Apr at 1200 UTC, while underway in position 03-30N 104-24E, off Malaysia. Two boats, one unlit, followed the tanker. When the boats came within four cables, crew mustered, sounded whistle, and", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.399999999944441, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-128", + "dateofocc": "2005-04-09", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified tanker was approached 09 Apr at 0600 LT,, while underway in position 04-43.7N 106-14.8E, 15 nm NE of Kakap Natuna oil terminal. Two fishing boats doing 15 kts came within one mile of the tanker, from both sides. Crew", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.24666670017956, 4.728333300120482] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-129", + "dateofocc": "2005-04-11", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: An unidentified container ship reported being approached 11 Apr at 1700 UTC, while underway in position 07-35N 082-07E, off the east coast of Sri Lanka. Two unlit speedboats approached at starboard quarter. When boats came close, crew direc", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.116666699929795, 7.58333329997447] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-130", + "dateofocc": "2005-04-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified ship was boarded, hijacked 10 Apr at 1200 UTC while underway in position 00-50S 047-36E, off the eastern coast of Somalia. Armed pirates took all 17 crewmembers hostage and hijacked the ship, forcing it to anchor close to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.600000000265936, -0.833333300189679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-131", + "dateofocc": "2005-04-14", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship was approached 14 Apr at 0800 UTC, while underway in position 02-59N 100-47E. An airborne helicopter from a French warship spotted four 15m long boats, powered by three outboard engines with their fron", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.783333299751007, 2.983333299645892] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-316", + "dateofocc": "2005-10-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified tanker was boarded 12 Oct at 0240 local time, while anchored at Dar es Salaam. Three robbers, armed with long knives, boarded the vessel via the hawse pipe. They threatened the crewmember on duty and stole ships stores. Port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-317", + "dateofocc": "2005-10-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified general cargo ship was boarded 11 Oct, while at Kandla anchorage. Seven robbers broke into the store room but the alert crew raised the alarm and the robbers escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-318", + "dateofocc": "2005-10-12", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: Bulk carrier approached 12 Oct at 1830 UTC, while underway in position 05-01N 111-27E. Three speedboats doing over 23 kts approached the vessel. Ship took preventive measures and boats moved away (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.450000000037505, 5.016666700404187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-319", + "dateofocc": "2005-10-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 17 Oct at 0330 local time, while anchored in position 06-02.87S 106-53.57E, Jakarta anchorage. Robbers, armed with long knives, boarded the vessel from an unlit boat. They threatened the crew with kn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.892777799765781, -6.047777800162066] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-320", + "dateofocc": "2005-10-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 13 Oct at 1230 local time while at Jakarta anchorage. Six robbers boarded the vessel at the stern. Duty officer raised alarm, crew mustered and robbers fled. Master contacted a customs patrol boat n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.892777799765781, -6.047777800162066] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-324", + "dateofocc": "2005-10-18", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: An unidentified bulk carrier was boarded 18 Oct at 0345 UTC, while anchored in position 09-17.6N 013-45.2W, Conakry anchorage. Three robbers in a speedboat, armed with billhooks, boarded the vessel and assaulted the duty watchman and stole ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.753333300103918, 9.293333299553126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-325", + "dateofocc": "2005-10-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (SAN CARLO) was hijacked 20 Oct, while underway in position 02-13N 049-44E, approximately 170 NM off the east coast of Somalia (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.733333300033564, 2.216666699774009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-326", + "dateofocc": "2005-10-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (PANAGIA) was hijacked 18 Oct, while underway in position 06-59.18N 051-08.39E, approximately 90 NM off the east coast of Somalia (Operator, IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.139722199607718, 6.986388900153827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-327", + "dateofocc": "2005-10-05", + "subreg": "63", + "hostility_": "PIRTATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker reported an attempted boarding 05 Oct at 0220 local time, while at Chennai anchorage. An estimated 10 robbers, in a fishing boat, attempted to board the tanker via the starboard quarter. Crewmember on duty raised the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-328", + "dateofocc": "2005-10-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: M/V (OCEAN ATLAS) was boarded 18 Oct at 0040 local time, while anchored in position 29-44.39N 045-39.14E, while awaiting pilot boarding to Umm Qasr in the morning. Three robbers, two armed with AK-47s, entered the bridge approximately 20 minutes", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.758333300384265, 29.633333299653373] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-329", + "dateofocc": "2005-10-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robbed 04 Oct at 1830 UTC, while in position 00-08.7N 117-35.6E, Bontang anchorage. Robbers tied up the crewmember on duty and stole ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.593333300447512, 0.144999999688991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-330", + "dateofocc": "2005-10-27", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MAURITANIA: An unidentified bulk carrier was boarded 27 Oct at 2030 local time, in position 20-47.8N 017-01.8W, off Nouadhibou inner anchorage. Eight robbers approached in a wooden boat fitted with an outboard motor. Two robbers boarded via anchor cha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.029999999944607, 20.796666700428887] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-150", + "dateofocc": "2006-05-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified product tanker boarded and robbed 24 May at 2100 local time while underway in position: 03-10.2S 106-20.2E, south of Bangka island. Ten pirates armed with guns and long knives boarded the vessel. They stole master's and crews", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.336666700299361, -3.17000000037774] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-151", + "dateofocc": "2006-06-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Unidentified tanker boarded and robbed, 5 June at 02:15 local time, at Dar Es Salaam Roads. Six robbers armed with knives and tools, for cutting locks, boarded the vessel. They broke into forward locker and stole ships stores. Alert crew ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-152", + "dateofocc": "2006-06-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified cargo ship boarded and robbed 5 June at 0050 local time, while in position 05 53.28S 106 05.29E, P.P Kali anchorage, Merak. Six robbers armed with long knives in an unlit boat approached the vessel from stern. Two robbers board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.088055600417988, -5.88805559972451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-153", + "dateofocc": "2006-05-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 31 May at 2040 UTC, while in position: 05-52.2S 106-04.5E, Tg. Priok anchorage. Five robbers armed with long knives boarded the vessel. They tied up two crewmembers and threatened them with knive", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.075000000425746, -5.870000000375114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-154", + "dateofocc": "2006-06-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GUYANA: Eight fishing boats attacked and robbed 5 and 6 Jun, Berbice River. Several fishermen beaten, locked up , and held at gunpoint by four pirates beginning around 2 pm on 5 Jun and continued until late 6 Jun in the vicinity of the mouth of the Ber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.583333300001527, 6.266666699770099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-155", + "dateofocc": "2006-06-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "GUYANA: Six fishing boats attacked and robbed 5 and 6 June, Corentyne River close to Suriname waters. Seven masked gunmen attacked fishing boats of the Number 66 Fish Port Complex, about 9 pm on 5 Jun. A second attack was launched about 12 midnight an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.133333300301729, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-156", + "dateofocc": "2006-06-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified bulk carrier reported attempted boarding 7 June, Chittagong anchorage A. Seven robbers armed with knives approached the vessel, at stern in a black wooden boat. They threw a hook attached to a line and tried to board. They th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-157", + "dateofocc": "2006-06-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified bulk carrier boarded 6 Jun, Chittagong anchorage A. Nine robbers armed with long knives and steel bars boarded the vessel at forecastle. They tied up two shore watchmen, threatened them with knives, and attacked one crewmember", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-158", + "dateofocc": "2006-06-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified tanker reported attempted boarding 5 Jun, Tanjung Priok tanker anchorage. One robber was observed in the process of boarding the vessel. Alert crew raised alarm and boarding was averted (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.866666699606071, -6.058333300201298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-159", + "dateofocc": "2006-06-10", + "subreg": "97", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "JAPAN: Taiwan fishing vessel feared hijacked by the crew 10 Jun while operating off Iwo Jima. The Taiwanese fishing boat (HSING LONG), sailing near the Japanese Volcano Islands, has lost contact with the Taiwanese authorities and is believed to be hij", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [129.93333330028895, 30.816666699979464] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-246", + "dateofocc": "2004-09-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "YEMEN: An unidentified container ship reports attempt to board 26 Sep at 1255 UTC, while underway in position 12-37.5N 043-19.2E off Perim Island. Two speedboats, each with 9 men armed with guns attempted board using grappling hooks. Crew mustered an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.320000000163475, 12.625000000416378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-247", + "dateofocc": "2004-09-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Sep at 2000 local time, while anchored in position 04-52-12S 116-20-36E at North Pulau Laut anchorage. Two armed persons gained access via the anchor chain but fled empty handed, when duty officer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.34333330018228, -4.87000000034277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-248", + "dateofocc": "2004-09-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was raided 23 Sep at 2350 local time, while at Tanjung Pemancingan anchorage. The intruders threatened crew with long knives. Alarm was raised and crew mustered, but the thieves were able to steal ship's stores b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.323611099731238, -3.207777800178121] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-249", + "dateofocc": "2004-10-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 3 Oct at 2250 UTC, at Lagos outer anchorage. Duty watchman was distracted by flashing light from a small fishing boat on the port side. When watchman went to investigate, a larger boat came alongside to star", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-136", + "dateofocc": "2005-03-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAITS:Pirates armed with guns and knives boarded a bulk carrier underway. They held master as hostage and stole ship's cash and escaped. No injuries to crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.743333300397182, 3.115000000045882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-250", + "dateofocc": "2004-10-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BANGLADESH: At least 8 fishing trawlers were attacked and looted 4 Oct at noon local time. The trawlers had sought shelter from a developing weather system when they were attacked by about 40 persons in 3 speedy trawlers near the fairway buoy, 100 km s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.966666699689029, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-251", + "dateofocc": "2004-09-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified chemical tanker was boarded 26 Sep at 0530 local time while anchored in position 30-06N 047-55E at Khor Al Zubair. Four persons armed with automatic rifles stole ship's stores and fled (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.916666700262681, 30.100000000149635] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-252", + "dateofocc": "2004-10-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 3 Oct at 0400 local time, while anchored in position 00-33N 117-41-48E at Tanjung Bara. Six persons armed with knives gained access via the hawse pipe, threatened duty seaman, stole his walkie-talki", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.696666700235028, 0.549999999778549] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-253", + "dateofocc": "2004-10-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: The tug (ERNA), attacked off N. E. Indonesia 2 Oct (see below), was again attacked 3 Oct off Medan, Sumatra, as it \"limped\" back to Singapore following the first attack. In the second attack the tug's navigating equipment was further damaged", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-254", + "dateofocc": "2004-10-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: The tug (ERNA) was attacked 2 Oct at 1820 local time, while underway towing a crane barge in position 04-46N 098-41E. Eight persons in a fast fishing boat fired at the bridgedestroying windows, radio and navigating equipment. Four persons", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-255", + "dateofocc": "2004-09-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: An unidentified Tuvalu-registered tug was boarded 30 Sep at 1900 local time, while underway towing a crane barge in position 03-27.6N 099 47.2E. The thieves broke glass in the ports, stole equipment and documents, and left taking the maste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.786666699772809, 3.459999999755723] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-256", + "dateofocc": "2004-10-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: An unidentified tug and barge report attempt to board 8 Oct at 1002 local time, while underway in position 00-18.67N 104-29.36E in the Riau Strait. Six masked men in a speedboat came alongside, attempting to board, but in the maneuver the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.489444399813863, 0.318611100219982] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-132", + "dateofocc": "2005-04-17", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship reported an attempted robbery 17 Apr at 0500 local time while at wharf, Tg. Priok port. A robber mingled with stevedores and tried to steal equipment. Duty crew prevented theft (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.893333300191387, -6.098333299555065] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-133", + "dateofocc": "2005-04-16", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship reported an attempted robbery 16 Apr at 2230 local time while at wharf, Tg. Priok port. A robber mingled with stevedores and stole equipment. Duty crew recovered the equipment and robber escaped empty hande", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.893333300191387, -6.098333299555065] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-134", + "dateofocc": "2005-04-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 12 Apr at 0200 local time in position 06-02.24S 106-55.68E, Jakarta anchorage. Armed robbers attempted to enter the engine room. Alert crew raised alarm and robbers escaped in a speedboat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.710555599714041, -6.037222200298061] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-135", + "dateofocc": "2005-04-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIAArmed robbers boarded a bulk carrier and attempted to enter engine room. Alert crew raised alarm and robbers escaped in a speedboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.928055600337245, -6.037222200298061] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-137", + "dateofocc": "2005-04-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified bulk carrier was boarded 22 Apr at 2350 local time, in position 29-37N 048-45.7E, Umm Qasr anchorage. Three robbers, armed with guns and a knife, boarded the vessel using hooks attached to ropes. They took several crewmembers hosta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.761666700438411, 29.616666699580946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-138", + "dateofocc": "2005-04-24", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified container ship was approached 24 Apr at 1050 local time, while underway in position 02-48.56N 101-03.0E. A speedboat approached the container ship and altered course to port, but then suddenly increased speed and head", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.049999999881038, 2.809444400338691] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-139", + "dateofocc": "2005-04-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Apr at 1950 UTC, while at Belawan anchorage. One robber, armed with a long knife, boarded a tanker at forecastle, while another robber climbed up the anchor chain. Duty seaman challenged the robbers and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-140", + "dateofocc": "2005-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 22 Apr at 0500, while underway in position 00-27.1S 105-09.0E, off Lingga Islands. Pirates, armed with guns, then ordered the crew to sail the tin-laden ship to Pasir Gudang port, in Malaysia's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.149999999743841, -0.451666700280839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-141", + "dateofocc": "2005-04-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-MAKASSAR STRAIT:An unidentified bulk carrier was boarded 18 Apr at 1915 local time in position 01-20S 116:57E, Balikpapan outer roads. Two robbers boarded the vessel at the forecastle from two unlit fishing boats. They stole two lifeboats and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.949999999765737, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-142", + "dateofocc": "2005-04-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA:An unidentified tug was boarded 16 Apr at 0535 local time in position 01-13.6S 117-00.7E, Balikpapan outer roads. Masked robbers, armed with long knives, stole one life raft and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.011666700172441, -1.226666699563964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-143", + "dateofocc": "2005-04-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified bulk carrier was approached 25 Apr at 0315 local time, while underway in position 07-15.4N 108-20.4E. Persons in two fishing boats attempted to board the carrier by tying ropes to ship's side. Attempt foiled (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.339999999694101, 7.256666700188816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-144", + "dateofocc": "2005-05-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 02 May at 0215 local time, during STS cargo operations at Lagos anchorage. Two robbers, armed with knives, threatened the duty officer, tied his hands and legs, and gagged his mouth. The robbers tri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-331", + "dateofocc": "2005-10-26", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: An unidentified tanker was approached 26 Oct at 1810 local time, while underway in position 06-09N 053-45E, approximately 250 NM off the east coast of Somalia. Five speedboats reportedly flashed lights at the vessel and gave chase.One bo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.750000000060083, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-332", + "dateofocc": "2005-10-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was fired upon 27 Oct at 0836 local time, while underway in position 08-41.565N 115-43.911E, Lombok strait. Pirates, armed with guns, fired upon the vessel from a speedboat. The bridge window was destroyed b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.731944400017824, 8.692777799827581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-333", + "dateofocc": "2005-10-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 27 Oct between 0001 and 0100 local time, while anchored in position 01-59.6N 118-08.7E, off Muara Pantai, east Kalimantan, Indonesia. Robbers boarded the vessel during cargo operations. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.144999999907782, 1.993333300126437] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-334", + "dateofocc": "2005-10-28", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA: Bulk carrier boarded and robbed 28 Oct between 1200 and 1600 UTC, while anchored in position 21-25N 108-24E, Fangcheng OPL anchorage. Robbers boarded the vessel via the anchor chain. They broke padlocks off forward store lockers and stole ships", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.40000000007376, 21.416666699855341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-335", + "dateofocc": "2005-10-23", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA: An unidentified tanker was boarded and robbed 23 Oct at 1800 UTC, while anchored at Zhanjiang no. 2 anchorage, China. Robbers boarded the vessel via hawse pipe. They broke open forward locker and stole ships stores. Several small fishing boats", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.508333300357776, 21.091666700272015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-336", + "dateofocc": "2005-10-30", + "subreg": "21", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "EL SALVADOR: An unidentified yacht was broken into 30 Oct at 0130 local time, while at anchor in Bahia del sol. Four armed robbers broke into the skippers cabin. Duty crewmember noticed them and raised alarm, the robbers then jumped overboard and lef", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.883333300204356, 13.264999999969405] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-337", + "dateofocc": "2005-11-07", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified Thai-flagged general cargo ship was hijacked 07 Nov at 0600 UTC, while underway off the east coast of Somalia. Once hijacked, the captors forced the ship to anchor 04-28N 048-01E near the Somali coastline, Pirates have since d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.016666699996108, 4.466666700071642] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-338", + "dateofocc": "2005-11-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified RORO came under attack 06 Nov while underway, in position 02-29.3N 048:28.2E, off the east coast of Somalia. Pirates armed with machine guns and rocket launchers fired upon the ship. The master took evasive maneuvers, increased", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.469999999925335, 2.488333300335853] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-339", + "dateofocc": "2005-11-05", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: M/V (GREAT MORNING ) reported being chased by a suspicious craft for two hours on 05 Nov at 1200 UTC while underway, in position 04-26N 054-14E, 320 NM off the east coast of Somalia. When the ship approached the craft, it suddenly increased s", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.233333299729452, 4.433333300277297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-340", + "dateofocc": "2005-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CRUISE SHIP", + "descriptio": "SOMALIA: Cruise ship (SEABOURN SPIRIT) came under fire 05 Nov at 0225 UTC, while underway in position 02-59N 048-01E, 70 NM from the east coast of Somalia. Six heavily armed pirates in two boats chased the cruise ship, while firing with rocket launche", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.016666699996108, 2.983333299645892] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-160", + "dateofocc": "2006-06-16", + "subreg": "24", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: Unidentified general cargo ship boarded and robbed 16 Jun at 0540 UTC at Magdalena river, Barranquilla. A robber armed with a knife boarded the vessel at anchor. He stole a life raft and safety equipment and escaped in a boat, waiting with a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.756666700332119, 10.958333300420861] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-161", + "dateofocc": "2006-06-12", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Unidentified general cargo ship reported suspicious approach, 12 Jun at 1930 UTC while underway in position 15-23.7N 041-30.7E . A, white-hulled, speedboat doing over 18 kts approached the vessel. Alert crew raised alarm and master", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.511666699979116, 15.395000000407038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-162", + "dateofocc": "2006-06-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Unidentified bulk carrier boarded and robbed 20 Jun, at 0310 UTC at Lagos Roads anchorage. Three robbers armed with guns and knives boarded the vessel from forecastle. They took hostage a duty A/B and held him at gunpoint. They lowered ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-163", + "dateofocc": "2006-06-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF OMAN: Unidentified chemical tanker reported gun assault and attempted boarding 4 Jun at 0630 UTC, while underway in position 25-40.0N 057-04.0E. Three armed pirates in a, high speed fiber glass, boat with a green hull followed the vessel, whi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.066666700153917, 25.666666700217661] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-164", + "dateofocc": "2006-06-24", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: Passenger vessel boarded and robbed 24 Jun at 0900 local time, while underway near the mouth of the Moruca River. Master observed an approaching speedboat equipped with 200hp engines, became suspicious, and increased speed but could not outrun t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.999999999764043, 7.666666699635527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-165", + "dateofocc": "2006-07-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Bulk carrier (ISLAND OASIS) reported attempted boarding 2105 UTC, while underway in position 05-17.0N 098-01.5E. Duty officer observed a vessel on radar trailing their ship, at a standoff of 6km for 20 minutes. When the suspicious", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.025000000300338, 5.283333299810181] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-166", + "dateofocc": "2006-07-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Landing craft boarded and robbed 02 Jul while underway near Langsa, north Sumatra. Pirates stole cash and personal belongings from the crew and escaped, no crew injured. The landing craft was under UN charter carrying tsunami relief cargo (", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.999999999917293, 4.583333299877495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-167", + "dateofocc": "2006-06-28", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Tanker reported two suspicious vessels 28 Jun at 0550 UTC, while underway in position 03-29.8N 100-09.9E. Two 12-15m vessels with shiny grey hulls followed the tanker at a distance of 500m. Crew mustered and activated fire hoses, a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.16500000035154, 3.496666699779439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-168", + "dateofocc": "2006-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Bulk carrier boarded 28 Jun at 0300 local time, while anchored in position 03-18.5N 112-55.3E, Bintulu anchorage. Two robbers boarded the vessel from an unlit boat. Duty officer raised alarm and crew mustered. Upon seeing crew alertness, ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.921666699923321, 3.308333300128538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-169", + "dateofocc": "2006-06-26", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHINA: Bulk carrier boarded 26 Jun at 1830 local time, while at anchor in Huangpu port. Two robbers entered the masters cabin. Master raised alarm, crew apprehended the robbers, and then handed them to the police (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.45000000010225, 23.091666700336702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-170", + "dateofocc": "2006-06-28", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded and robbed 28 Jun at 0115 local time, while anchored in position 05-28.7N 105-17.5E, Panjang anchorage. Three robbers, armed with long knives, entered the engine room and stole a substantial quantity of engine spares (I", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.291666699757457, 5.478333299919882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-171", + "dateofocc": "2006-06-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "HOANG SA ARCHIPELAGO: Vietnamese fishing vessel boarded and robbed 27 Jun, while at anchor seeking shelter from a typhoon. Robbers stole 25 drums of fuel, 4 tons of dried squid, 10 bottles of water, and 18 empty buckets. After receiving the informatio", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.27500000008672, 16.95000000012908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-154", + "dateofocc": "2005-04-28", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified refrigerated cargo ship was boarded 28 Apr in the evening, while at Port Au Prince anchorage. Robbers, armed with long knives, stole ships stores and escaped. Earlier on 27 Apr, robbers boarded another vessel and stole ship's st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40416670017288, 18.572222200040585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-257", + "dateofocc": "2004-09-06", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports suspicious approach 6 Sep at 0945 local time, while underway in position 02-39N 101-17E off the Indonesian coast. A dark hulled boat approached and then stopped nearby, before paralleling the ship's cou", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.283333300216839, 2.649999999576664] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-258", + "dateofocc": "2004-10-16", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified general cargo ship was boarded 16 Oct at 1000 UTC, while anchored in position 03-52.4N 077-05.4W at Buenaventura. Ten thieves boarded using long poles with hooks, broke into forecastle locker, and stole ship's stores. Alarm r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.089999999566658, 3.873333300331183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-259", + "dateofocc": "2004-10-23", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports suspicious approach 23 Oct at 0240 UTC, while underway in position 05-54N 096-19E off the northern tip of Sumatra. Four boats with armed persons inside were repelled, when crew mustered with activated f", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.316666699849407, 5.899999999906584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-260", + "dateofocc": "2004-10-23", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 23 Oct at 1130 local time, while underway in position 02-57S 107-18E 3 miles west of Mendanau Island, Gelasa Strait. Six armed persons wearing masks and black clothing approached in a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.300000000307989, -2.949999999884994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-261", + "dateofocc": "2004-10-30", + "subreg": "24", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified bull carrier was boarded 30 Oct at 0140 local time while anchored at Maracaibo. A single man gained access via the anchor chain but fled in a waiting boat when duty seaman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.60416669960739, 10.622222199648604] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-262", + "dateofocc": "2004-10-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 31 Oct at 0145 UTC while at berth 13, Lagos. A group tried to steal from the ship's cargo of rice, but fled when duty officer raised alarm and crew mustered, firing flares. Port police responded to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.393055600141111, 6.437499999598003] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-263", + "dateofocc": "2004-10-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship was boarded 28 Oct at 0320 local time, in position 06-41.7S 039-27.3E in the outer roads at Dar es Salaam awaiting berthing. Three of about 15 persons in a long boat, armed with knives, boarded at the forecastl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.454999999764198, -6.695000000424272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-264", + "dateofocc": "2004-10-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports approach 28 Oct at 0950 UTC, while underway in position 12-33.0N 045-14.7E. Three boats crossed ship's bow and attempted to come alongside, whereupon master began evasive maneuvers. The crew mustered", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.244999999978404, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-265", + "dateofocc": "2004-10-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: The cargo lighter (AL-SAMIT-3) was boarded 31 Oct at 1900 local time in Chittagong outer anchorage, as it proceeded to a lightering job. About 20 persons attacked the lighter in the outer anchorage and stole rope, tents, gas cylinders, mobi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-266", + "dateofocc": "2004-10-31", + "subreg": "72", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG tanker was boarded 31 Oct at 2150 UTC, while anchored at Santan (Tanjung Santan). One man boarded from a 10 meter wooden boat with green hull and white upperworks. A man lowered a liferaft into the water but jumped overb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.083333300390279] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-267", + "dateofocc": "2004-10-31", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 31 Oct at 0230 local time, while anchored at Banjarmasin. Six persons tried to gain access via the anchor chain, but fled when alarm was raised (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-268", + "dateofocc": "2004-10-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Oct at 1945 local time, while anchored in position 00-00.02S 117-36.09E. Six persons armed with knives attacked and injured a crew member, but fled empty handed when crew mustered (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.602499999959946, -0.000555599905056] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-269", + "dateofocc": "2004-10-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified refrigerated cargo ship reports attempt to board 27 Oct at 0145 UTC, while underway in position 01-45N 102-40E. Five persons, dressed in black clothes and in two speedboats, approached from starboard quarter. Master raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.666666700009841, 1.750000000177067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-270", + "dateofocc": "2004-10-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 27 Oct at 0145 local time, at Dumai anchorage. Two persons boarded via the poop deck but jumped overboard and fled empty handed, when duty seaman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.479166700252449, 1.691666699824509] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-145", + "dateofocc": "2005-04-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BANGLADESH: Eleven fishing trawlers were attacked 23 Apr in Majherchar in Borhanuddin upazila, in the Meghna estuary. At least eleven fishermen were injured during the attack. Police and fishermen report that over 50 fishing trawlers have been looted,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.400000000391003, 21.499999999691624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-146", + "dateofocc": "2005-04-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified barge was boarded 30 Apr at 1230 local time while under tow, in position 08-07.24N 076-43.33E off Trivandrum, SW coast of India. Two robbers stole stores. Earlier, four robbers in a boat made two attempts to board at 0630 and 0", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.722222199717805, 8.120555599815077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-147", + "dateofocc": "2005-04-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified bulk carrier was boarded 22 Apr at 2350 local time in position 29-37N 048-45.7E, Umm Qasr anchorage. Three robbers, armed with guns and a knife, boarded the vessel using hooks attached to ropes. They took several crewmembers host", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.761666700438411, 29.616666699580946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-148", + "dateofocc": "2005-04-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "ANDAMAN SEA: Thai F/V (RATTANAKORN 5) was boarded and robbed, but rescued by authorities 30 Apr while fishing off the southern town of Satun, Thailand. Five men, armed with two M-16s, three AK-47s and 1,200 rounds, boarded the fishing vessel, but not b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.033333299951551, 6.68333329967561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-149", + "dateofocc": "2005-04-30", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was approached 30 Apr at 2300 local time, while underway in position 00-24S 118-12E, Makassar Staits. Master raised alarm after detecting three unlit fishing boats approaching his vessel. Crew mustered an", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.200000000030968, -0.400000000387081] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-150", + "dateofocc": "2005-04-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 30 Apr at 2030 local time, while underway in position 02-49.70S 105-54.90E, Bangka Straits. Six robbers, armed with long knives and guns, fled empty handed after master raised alarm, switched on de", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.915000000312659, -2.828333299997894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-151", + "dateofocc": "2005-04-29", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 29 Apr at 0315 local time at Taboneo anchorage, Banjarmasin, Indonesia. Two robbers, armed with knives, boarded at forecastle. They broke into forepeak locker, stole ship's stores, and were about", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-152", + "dateofocc": "2005-04-30", + "subreg": "93", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified tug was approached 30 Apr at 2300 local time, while underway towing a manned crane barge in position 08-22.7N 107-14.2E. Two small unlit high speed craft approached tug. One craft disappeared from radar screen but th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.236666699698958, 8.378333300283487] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-153", + "dateofocc": "2005-05-05", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: An unidentified bulk carrier was boarded 05 May at 0135 local time, while at Port Au Prince anchorage. Duty officer raised alarm after robbers, armed with long knives, boarded the vessel. Robbers escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40416670017288, 18.572222200040585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-155", + "dateofocc": "2005-05-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship was boarded 09 May at 0445 local time, while at anchor in Dar Es Salaam. Duty officer raised alarm after robbers boarded the vessel. Robbers jumped overboard and escaped in a boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-156", + "dateofocc": "2005-05-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified RO/RO vessel was boarded 10 May at 0430 UTC in position 13-05.7N 080-21.0E, Chennai anchorage, India. Five robbers boarded at the stern and attempted to steal ship's stores. Alert crew raised alarm and robbers escaped empty hand", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-157", + "dateofocc": "2005-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified tanker was approached 05 May at 2320 local time, while underway in position 21-16N 091-31E, 60 NM SSW of Chittagong. One fishing boat came close to starboard quarter and persons inside attempted to board. Master took evasi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.516666700053918, 21.2666667002552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-341", + "dateofocc": "2005-10-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified tanker was boarded and robbed 31 Oct at 1900 local time at Basrah oil terminal, Alfa anchorage, Iraq. Three armed robbers boarded the tanker and tied up two crewmembers, and took three crewmembers hostage. The robbers proceeded to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.816666699662278, 29.233333299820288] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-342", + "dateofocc": "2005-11-14", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAITS OF HORMUZ:At approximately dusk local time yesterday (aftrenoon EST) Sunday Nov 13, 2005 , five small boats (est 20 footers) traveling in excess of 30 knots in a V formation approached the stern of CAPE DOUGLAS traveling inbound Straits of Ho", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.499999999924228, 26.608333300072616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-343", + "dateofocc": "2005-11-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified tanker was boarded 19 Nov at 2000 local time while anchored in position 10-19N 075-32W in Cartagena Bay. Four thieves boarded via the forecastle, broke padlock on locker, and stole ships safety equipment and stores, despite th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-344", + "dateofocc": "2005-11-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified bulk carrier was boarded 20 Nov at 0345 local time, while at Umm Qasr anchorage off No. 2 buoy. Five heavily armed robbers boarded via the starboard quarter, took hostage 2 crew on deck. Robbers then went to the bridge, where they", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.674999999648662, 29.708333299903074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-345", + "dateofocc": "2005-11-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: An unidentified bulk carrier was boarded 19 Nov at 2200 UTC, while anchored in position 29-43.4N 048-37.5E off No.5 buoy. Three robbers armed with machine guns and pistols boarded at bridge deck and took 2nd officer hostage.They forced him to ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.624999999781949, 29.723333299773174] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-346", + "dateofocc": "2005-11-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 24 Nov at 0430 local time, while at Lagos anchorage, 15 nm from port. Ten robbers, armed with knives, boarded the vessel via the stern from a speedboat, during heavy rain. They threatened duty A/B and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-347", + "dateofocc": "2005-09-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: An unidentified tug was boarded 03 Sep at 0400 local time while at Total jetty, Douala. Three robbers armed with knives and spears boarded the offshore tug. They confronted duty A/B and bosun The robbers stole ships property and escaped (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.670833300030779, 4.037499999700231] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-348", + "dateofocc": "2005-11-20", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: LPG tanker was boarded 20 Nov at 0600 local time, while anchored in position 08-7S 117-35.2E Bontang anchorage. Robbers stole two life rafts and escaped. There were numerous fishing craft in the vicinity (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.586666699988655, -8.116666700443318] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-349", + "dateofocc": "2005-11-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Container ship boarded and robbed 24 Nov during the early morning, while anchored in position 20-38.1N 106-52.6E, Haiphong anchorage. Robbers stole ships stores and port authorities were informed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.87666670011896, 20.635000000288699] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-350", + "dateofocc": "2005-12-06", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified tanker reported being chased 06 Dec while underway in position 12-01N 050-35E. The vessel reported seeing individuals in speedboats armed with machine guns and other weapons. The master contacted the owners and requested assis", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.583333299566448, 12.016666699731218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-351", + "dateofocc": "2005-11-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Taiwanese fishing vessel (FENG JUNG No 16) reported hijacked 30 Nov. The longliner was reportedly fishing under the legal protection of the Somali fishery cooperation. The fishing vessel had three Taiwanese and 12 foreign crewmembers. The So", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.05833329955226, 4.654444399647446] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-352", + "dateofocc": "2005-12-01", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 01 Dec at 1745 local time, while anchored in position 01:42.3S 116:38.5E, Adang Bay anchorage. Five robbers, armed with guns and knives, boarded the vessel via poop deck and stole a life raft. D/O r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.641666700079554, -1.704999999876179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-172", + "dateofocc": "2006-07-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "LANDING CRAFT", + "descriptio": "MALACCA STRAITS:Twelve pirates in a fishing boat approached a landing craft carrying U.N. Tsunami Relief Cargo. Four pirates boarded and demanded money. Master gave them some cash. Then the remaining eight pirates came on board and stole diesel fuel. Pir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.213333300126521, 4.640000000027726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-173", + "dateofocc": "2006-06-27", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "JAMAICA: Fishermen operating in the vicinity of the Pedro Cays say they are being attacked, by heavily armed men who mount early morning attacks, per 27 Jun reporting. One of the affected fisherman told the media that he is now scared to fish in the ar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.869444399722852, 17.895833300139373] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-174", + "dateofocc": "2006-07-04", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: LPG tanker boarded, robbed 04 Jul at 1450 UTC, while preparing to depart from Texaco berth. One robber boarded the vessel and stole ships equipment. Perpetrator escapedin a motorboat that was waiting with four accomplices (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.188888899808319, 6.755555599946319] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-175", + "dateofocc": "2006-07-04", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Containership reported attempted boarding 04 Jul at 0430 UTC, while anchored at Santos anchorage no. 3. Two robbers attempted to board the vessel via the anchor chain. Alert crew raised alarm and boarding was averted. Port control informed (I", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.337499999568138, -24.081944399915585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-176", + "dateofocc": "2006-07-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: Bulk carrier boarded and robbed 01 Jul at 0330 local time, while at Bonaberi berth no 52, cement berth, Douala port. Three armed robbers boarded the vessel and threatened acrewman with knives. They stole ships stores and escaped. Port contr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.693055600434775, 4.068055599690751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-177", + "dateofocc": "2006-07-09", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Containership reported two suspicious craft 09 Jul at 0750 UTC, while underway in position 12-28N 045-10E. Two 10m turquoise colored speedboats, manned with three persons each, followed the containership. Ship increased speed, raised ala", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.166666700398594, 12.466666700330336] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-178", + "dateofocc": "2006-07-09", + "subreg": "55", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ROMANIA: Bulgarian ferry boarded and robbed 09 Jul, Danube River, Galatz port. During a passport review, when the crew and passengers had to leave the vessel, thieves came aboard and broke the windows of two cars and stole money, cloths, and a dog. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [28.050000000218233, 45.449999999701731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-179", + "dateofocc": "2006-07-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ROMANIA: Bulgarian ferry boarded and robbed 09 Jul, Danube River, Galatz port. During a passport review, when the crew and passengers had to leave the vessel, thieves came aboard and broke the windows of two cars and stole money, cloths, and a dog. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-180", + "dateofocc": "2006-07-09", + "subreg": "71", + "hostility_": "pirates", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAITS of MALACCA:On Sunday night (7-9-06), two UN-chartered ships carrying aid to Indonesia's tsunami-struck Aceh province were boarded in the same area by pirates, who stole money and equipment but left the crew unharmed. The crew aboard the Japannese", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [95.250000000053205, -5.550000000148941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-181", + "dateofocc": "2006-07-07", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EASTERN MEDITERRANEAN: General cargo vessel (MOON LIGHT) was struck by a probable missile 14 Jul, while underway approximately 35km off the coast of Lebanon. All 12 crewmembers, one with serious injuries, were rescued by a nearby merchant vessel owned", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.574999999742033, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-182", + "dateofocc": "2006-07-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA: Container ship boarded 16 Jul at 0225 local time, while at Luanda anchorage. Four robbers in a wooden boat, armed with knives, boarded the vessel at forecastle. They threatened a crewmember with knives and broke open paint store padlock. The cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.266666699996506, -8.766666699609971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-183", + "dateofocc": "2006-07-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Tug boarded and robbed 15 Jul at 1200 local time, while underway in position 05-16.00S 106-07.80E, enroute to Batam from Merak. Six pirates, armed with pistols, approached the tug, which was towing a barge. Four pirates boarded the tug and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.129999999649613, -5.266666699946427] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-271", + "dateofocc": "2004-10-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 26 Oct at 1925 UTC, while at Dumai anchorage. Three persons gained access, but fled when crew sounded alarm and mustered ((MB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.479166700252449, 1.691666699824509] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-272", + "dateofocc": "2004-10-26", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports suspicious approach 26 Oct at 0905 local time, while underway in position 01-50.0N 097-31.2E off Aceh Province. Four grey-green colored boats approached from port bow, while another four approached fro", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.519999999578033, 1.833333300013351] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-273", + "dateofocc": "2004-11-06", + "subreg": "22", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified tanker was boarded 6 Nov at 0345 UTC, while at Callao anchorage. A single thief gained access at the forecastle and escaped, with ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-274", + "dateofocc": "2004-11-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: The South-Korean-flag cargo ship (AMAZAN), which had arrived 7 Nov at Chittagong for scrap, was looted at about 1900 local time, by a gang of about 100 persons of whom 5 were arrested (INFO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-275", + "dateofocc": "2004-11-08", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Duty officer of an unidentified tanker noticed approach by 3 suspicious boats 8 Nov at 0300 local time, while underway in position 01-36.0S 117-01.6E off Balikpapan. Masked men in each of the boats were attempting to board via the starboard", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.391666699879011, -1.599999999886279] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-276", + "dateofocc": "2004-11-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports boarding at starboard poop deck 7 Nov at 0105 local time, while underway in position 05-06-00S 117-23-30E off Sunda Island, Java Sea by one man from a speedboat (containing 4 persons dressed in black and a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.391666699879011, -5.100000000449143] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-277", + "dateofocc": "2004-11-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Nov at 0410 local time, while at Balikpapan anchorage, by robbers armed with long knives. They broke into forecastle locker and stole ship's stores, before escaping when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.240555599602772, -1.272222199599867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-278", + "dateofocc": "2004-11-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 5 Nov at 0005 local time, while at Taboneo-Banjarmasin (Banjarmasin) anchorage. Three persons armed with knives attempted to gain access via anchor chain, but fled when crew sounded alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-279", + "dateofocc": "2004-11-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: An unidentified tug, towing an oil rig was attacked 3 Nov at 1900 local time, while underway in position 05-02N 099-11E off Belawan. Three identical fishing boats followed the tug and one approached opening fire causing damage, to navigation", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.183333300418724, 5.033333299577237] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-280", + "dateofocc": "2004-11-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 3 Nov at 1815 UTC, while anchored in position 01-34S 117-13E at Balikpapan. Three persons armed with long knives took duty seaman hostage, stole two life rafts, and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.216666699895768, -1.566666699916709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-281", + "dateofocc": "2004-10-30", + "subreg": "24", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: An unidentified bull carrier was boarded 30 Oct at 0140 local time, while anchored at Maracaibo. A single man gained access via the anchor chain but fled in a waiting boat, when duty seaman raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.583333299554909, 10.633333299938215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-282", + "dateofocc": "2004-11-12", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: An unidentified supply vessel reports attempt to board 12 Nov at 0730 local time, while underway in position 03-45.5N 008-59.5E. When 6m long speedboat with 6 persons approach, supply ship's master increased speed and boat abandoned chase (I", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.991666700150517, 3.758333299828337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-283", + "dateofocc": "2004-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 11 Nov at 2230 local time, while at Chittagong anchorage by six persons armed with knives. The six stole ship's stores and fled, when crew raised alarm. Master informed coast guard which dispatched", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-284", + "dateofocc": "2004-11-09", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 9 Nov at 0400 local time, while at Balikpapan coal terminal. Three persons gained access but jumped overboard and escaped in a speedboat, when crew sounded alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.813888900258917, -1.25555560042676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-285", + "dateofocc": "2004-11-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 3 Nov at 1815 UTC, while anchored in position 01-34S 117-13E at Balikpapan. Three persons armed with long knives took duty seaman hostage, stole two life rafts and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.216666699895768, -1.566666699916709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-158", + "dateofocc": "2005-05-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 10 May at 0850 local time, while at anchor in Jakarta. Six robbers boarded the tanker from two fishing boats. They broke into aft locker and stole ships equipment. Robbers escaped in an easterly direction", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.891666699989059, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-159", + "dateofocc": "2005-05-04", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 04 May at 2025 UTC, while underway in position 01-46.3S 117-07.2E, Makassar Straits. A speedboat with five individuals came along side the vessel and one pirate boarded using hooks attached to a rope.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.891666699989059, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-160", + "dateofocc": "2005-05-04", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reported an attempted boarding 04 May at 2255 local time while underway in position 01-23.07S 117-06.57E, Makassar Straits. Pirates in a six meter blue and black hull colored speedboat attempted to board the tanker at", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.109444399628387, -1.384444400298946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-161", + "dateofocc": "2005-05-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified vessel was approached 03 May at 0700 local time, while anchored at Tg. Priok outer roads. Six boats approached the vessel. Six robbers, armed with steel bars,boarded the vessel from two of the boats. Two other boats remaine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.958333299928199, -5.96666669987917] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-162", + "dateofocc": "2005-04-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The unidentified ship boarded and hijacked 10 Apr at 1200 UTC while underway, in position 00-50S 047-36E, off the eastern coast of Somalia was freed 28 Apr according to 5 May reports. The ship, an LPG tanker proceeding empty to its next load", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.600000000265936, -0.833333300189679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-163", + "dateofocc": "2005-05-13", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified general cargo ship reports being approached 13 May at 0110 local time, while underway in position 05-13N 098-06E, by an unlit 7m boat carrying armed persons. The duty officer undertook evasive maneuvers but the boat", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.099999999650777, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-164", + "dateofocc": "2005-05-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 14 May at 0215 local time, while at Dumai anchorage. Three robbers armed with knives gained access at the poop and entered the engine room.Duty crew raised alarm but the robbers escaped with ship's stores (I", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.464444400233162, 1.688888900020743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-165", + "dateofocc": "2005-05-18", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified tanker was boarded and robbed 18 May at 0325 local time, while at Callao anchorage. Robbers boarded the tanker at the forecastle, stole ship's stores, and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-166", + "dateofocc": "2005-05-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified RO/RO vessel was boarded 10 May at 0430 UTC in position 13-05.7N 080-21.0E, Chennai anchorage, India. Five robbers boarded at the stern and attempted to steal ship's stores. Alert crew raised alarm and robbers escaped empty hand", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.350000000200851, 13.095000000242692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-167", + "dateofocc": "2005-05-21", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified product tanker reports being approached 21 May at 0330 local time, while underway in position 05-34.5N 099-51.0E, 21nm NW of Penang Island. A craft approached the tanker at over 20 kts. When craft came within 0.5 nm", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.850000000349496, 5.575000000323257] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-168", + "dateofocc": "2005-05-24", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified general cargo ship was boarded 24 May at 1000 UTC in position 17-52.7N 076-47.1W, Kingston outer anchorage. Five robbers threatened duty A/B with a knife and tied him up. A/B managed to escape and raised alarm. Robbers broke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.785000000109903, 17.878333300141037] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-169", + "dateofocc": "2005-05-18", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified tanker was boarded and robbed 18 May at 0325 local time, while at Callao anchorage. Robbers boarded the tanker at the forecastle, stole ship's stores, and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-170", + "dateofocc": "2005-05-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IVORY COAST: An unidentified general cargo ship was boarded 19 May at 0150 local time, while at Abidjan anchorage. Robbers, armed with long knives, boarded the vessel via the anchor chain. They overpowered and tied up the duty A/B and robbed him of hi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.034999999780666, 5.269444399716804] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-353", + "dateofocc": "2005-11-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 30 Nov at 0710 local time, while anchored in position 06-00.6S 106-54E, Tanjung Priok anchorage. Robbers entered accommodations, stole safety equipment and escaped. Master tried to contact port co", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.010000000361629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-354", + "dateofocc": "2005-12-02", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified LPG tanker reported attempt to board 02 Dec, while underway in position 10-19N, 108-50E, off Vietnam. Persons in a fishing boat attempted to board the vessel via grappling hook. Master altered course to prevent boardin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.833333299876415, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-355", + "dateofocc": "2005-12-03", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: An unidentified tanker was boarded 3 Dec Callao, at anchorage area no. 12, by an armed robber. Robber threatened duty seaman with a gun and stole ship stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.147222200142551, -12.027777800229558] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-356", + "dateofocc": "2005-12-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN-SOMALIA: An unidentified general cargo ship reports being chased 11 Dec at 0810 local time. While underway in position 13-07N 049-13E, persons in a small speedboat attempted to board. Boarding was averted, when master increased speed and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.216666700394683, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-357", + "dateofocc": "2005-12-12", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship reports being chased by an unidentified fishing trawler 12 Dec at 0200 UTC, while underway in position 04-50.5S 048-00.0E. Cargo ship undertook evasive maneuvers; however, trawler came as close as 1.4 nm unti", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, -4.841666699730354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-358", + "dateofocc": "2005-12-11", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports approach 11 Dec at 2000 local time, while anchored in position 01-55S 117-14E, Senipah, Indonesia. An unlit boat approached close to thestern. Crew alerted terminal via VHF, raised alarm, and directed searchl", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.233333299968194, -1.916666699883081] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-359", + "dateofocc": "2005-12-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: An unidentified tug was boarded 8 Dec at 0430 local time while anchored, in position 05-58.4S 105-58.6E., at Tanjung Gerem Merak. Eight persons, armed with long knives tied up motorman and stole engine spares. They escaped to a waiting speed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.9766666998201, -5.97333330033797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-360", + "dateofocc": "2005-12-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 8 Dec at 0330 local time, while anchored in position 05-54S 105-59E at Merak. One person armed with a long knife boarded but fled empty handed to a waiting boat with accomplices, when crew raised ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.9833333002789, -5.900000000115256] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-361", + "dateofocc": "2005-12-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 Dec at 2010 local time while underway, in heavy rain in position 03-17S 116-24E, off Tanjung Mangkok, North Sebuku Island. Two persons armed with long knives stole forward liferaft and were in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.400000000332511, -3.283333299954165] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-362", + "dateofocc": "2005-12-06", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 6 Dec at 0520 local time in heavy rain, while at Bontang anchorage. A single robber stole ships stores and escaped with accomplices, in a waiting boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.586666699988655, 8.116666700234646] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-1", + "dateofocc": "2005-12-07", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship was hijacked 07 Dec off Hobyo, central east coast of Somalia. Hijackers have demanded ransom for release of 11 crewmembers and ship (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.55000000043151, 5.333333299676895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-2", + "dateofocc": "2005-12-16", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified container ship detected a suspicious craft 16 Dec at 2227 local time, while underway in position 03-01.9N 051-17.7E, off the east coast of Somalia. Master notices the craft on radar and took evasive maneuvers to avoid collisio", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.295000000039181, 3.031666700209598] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-3", + "dateofocc": "2005-12-12", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship reports being chased by an unidentified fishing trawler 12 Dec at 0200 UTC, while underway in position 04-50.5S 048-00.0E. Cargo ship undertook evasive maneuvers but trawler drew closer to 1.4 nm, until aban", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, -4.841666699730354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-4", + "dateofocc": "2005-12-15", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified bulk carrier reported a suspicious approach 15 Dec at 2040 local time, while underway in position 12-12.8N 046-10.8E. An unlit white speedboat doing over 25kts came close to the vessel and persons inside asked the master", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.180000000273935, 12.213333300043303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-5", + "dateofocc": "2005-12-15", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship was boarded 15 Dec at 0100 local time, while anchored at Dar Es Salaam outer anchorage. One robber boarded the vessel, via grappling hook, and removed the hawse pipe cover, allowing three of his accomplices to b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.752777800351225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-184", + "dateofocc": "2006-07-13", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Bulk carrier reported attempted boarding 13 Jul at 1020 UTC, in position 10-12S 112-15E, 105nm south of Java Island, Indonesia. Six boats (two with white hulls and four with black hulls) approached the vessel from the stern. Each boat ha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.249999999703618, -10.200000000344289] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-185", + "dateofocc": "2006-06-21", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Chemical tanker boarded and robbed 21 Jun at 0300 local time while at berth b1, Godau port (Tayninh Province). Three robbers in an unlit boat boarded the vessel at the stern. Crew member on duty raised alarm and crew mustered. Robbers stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.400000000106104, 11.283333300004244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-186", + "dateofocc": "2006-07-07", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: Container ship boarded, robbed 07 Jul at 2345 local time while at Punta Guanta anchorage. Robbers boarded the vessel and stole cargo from two containers. Master informed authorities (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.574999999742033, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-187", + "dateofocc": "2006-07-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO: Bulk carrier boarded and robbed 24 Jul at 0200 local time, while anchored 1.5 nm off the breakwater, Pointe Noir. Robbers boarded the vessel at the anchor by using hooks. They stole ships stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.822777800297501, -4.781666700250014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-188", + "dateofocc": "2006-07-21", + "subreg": "57", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA: Containership boarded and robbed 21 Jul at 0205 local time, while anchored in position 08-45.9S 013-16.6E, Luanda Bay Anchorage. One robber boarded the vessel, broke forward store padlock, and stole ships stores. Ships motion sensors sent sig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.276666699610075, -8.764999999582926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-189", + "dateofocc": "2006-07-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Tanker boarded and robbed 23 Jul at 0015 local time, while at Chittagong Alfa anchorage. Ten robbers, armed with long knives, boarded the vessel at forecastle, attacked the shore watchman, and tied him up. Duty officer raised alarm, crew m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-190", + "dateofocc": "2006-07-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUB BOAT", + "descriptio": "INDONESIA: Tug boarded 18 Jul at 0345 local time, while at Telok Banten, Merak. Four armed robbers boarded the tug at anchor. Alert crew mustered and robbers left empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.250000000408932, -5.949999999981969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-191", + "dateofocc": "2006-06-18", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "SAINT. LUCIA: Yacht boarded, crew assaulted, and robbed 18 Jun, while moored outside Rodney Bay Marina (reported 02 Aug). Perpetrators swam from shore to the yacht. The male crewmember was severely beaten and the female crewmember was raped. Perpetrato", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.96249999970388, 14.07500000014852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-192", + "dateofocc": "2006-07-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Containership boarded and robbed 30 Jul at 2115 local time, while at Chittagong outer anchorage b. Three robbers, armed with knives, boarded the vessel at the stern and stole ships stores. Alert crew raised alarm and robbers jumped overboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-193", + "dateofocc": "2006-07-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Tanker reported three attempted boardings 28 Jul, while at Chittagong outer anchorage b. Three robbers boarded a tanker using long poles with hooks. Alert crew activatedfire hoses and repelled boarders. Master reported this was the third", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-194", + "dateofocc": "2006-07-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING BOATS", + "descriptio": "STRAIT OF MALACCA: Two fishing boats attacked and three Thai crewmembers kidnapped 27 Jul, at approximately 0100 local time, 67 nm from Langkawi. Five armed pirates on a fishing boat stopped the two Malaysian registered fishing boats and attacked them.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.766666699646237, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-195", + "dateofocc": "2006-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robbed 26 Jul at 0200 local time, while at Belawan anchorage. Three robbers, armed with long knives, boarded the vessel at forecastle and stole ships stores. All crew chased robbers, who jumped into the water and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-196", + "dateofocc": "2006-08-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "NIGERIA: Anchor Handling/Supply Tug (NORTHERN COMRADE) boarded and four crewmembers kidnapped late 08 Aug while off the coast of Nigeria. Officials identified the hostages as two Norwegian and two Ukrainian workers. One of the Norwegian captives is re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.283333299842525, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-197", + "dateofocc": "2006-08-08", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "VENEZUELA: Stolen engines taken from Guayaguayare fishermen on 08 Aug were recovered by Venezuelan military officers in the coastal town of Perdanales. Police have identified three ofthe thieves who raided the fishing depot near the Guayaguayare seawal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.983333299931587, 10.150000000268903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-286", + "dateofocc": "2004-11-20", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified tanker was boarded 20 Nov at 1040 UTC, while anchored at Port Esquivel. Three persons from an unlit speedboat stole ship's stores and fled, when duty officer raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.074999999696615, 17.758333300281038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-287", + "dateofocc": "2004-11-24", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified general cargo ship was boarded 17 Nov at 0850 UTC, while anchored in position 06-58N 058-02W in Georgetown Roads. Thieves stole ship's stores and escaped in a high speed boat, when duty officer raised alarm. Port control infor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.033333299701269, 6.966666699702841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-288", + "dateofocc": "2004-11-26", + "subreg": "26", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: An unidentified container ship was boarded 26 Nov at 0715 UTC, while anchored in position 17-51.8N 076-46.7W, Kingston outer anchorage. One person gained access at the forecastle using a grappling hook. Crew raised alarm and intruder escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.778333299826386, 17.863333300270995] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-289", + "dateofocc": "2004-11-24", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified refrigerated cargo ship was boarded 24 Nov at 0100 local time, while at Georgetown anchorage maneuvering with pilot on board. Intruders broke into mast house but escaped empty handed, when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.174999999714885, 6.80694440033983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-290", + "dateofocc": "2004-11-22", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL:An unidentified container ship reports attempt to board 22 Nov, while anchored in position 32-13.6S 051-58.2W at Rio Grande do Sul. Persons in a small craft attempted to board from port quarter, but were driven off when crew mustered and directe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-51.969999999797494, -32.226666699667192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-291", + "dateofocc": "2004-11-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "NIGERIA: An unidentified refrigerated cargo ship was boarded 28 Nov at 0145 local time, while underway off buoy 19, Escravos River. Five persons armed with machine guns took watchman hostage and beat him. The intruders fired shots at crew, stole cash", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.94999999974101, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-292", + "dateofocc": "2004-11-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 25 Nov at 2345 local time. While at Lagos anchorage, fifteen robbers armed with guns and long knives, took duty seaman hostage. Duty officer raised alarm and crew mustered in locked accommodation, but robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-293", + "dateofocc": "2004-11-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified LPG tanker was boarded 23 Nov at 0425 local time, while at Kandla anchorage. Three persons stole ship's property and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-294", + "dateofocc": "2004-11-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 19 Nov at 0530 local time at berth No. 1, New Mangalore Port by Robbers who stole ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [74.82083329993435, 12.930555600123512] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-295", + "dateofocc": "2004-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 11 Nov at 2230 local time while at Chittagong anchorage, by six persons armed with knives. The six stole ship's stores and fled when crew raised alarm. Master informed coast guard which dispatched a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-296", + "dateofocc": "2004-11-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: An unidentified tug towing a barge was fired on and boarded 27 Nov at 0910 UTC, while underway in position 05-02N 098-28E off Aceh Province. Assailants opened fire with machine guns from a fishing boat, kidnapped the Captain and Chief Offic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.466666700413555, 5.033333299577237] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-297", + "dateofocc": "2004-11-27", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified LPG tanker reports being followed 27 Nov at 0310 local time while underway in position 01-46N 102-39.4E, by an unlit speedboat from which persons attempted to board. Crew directed searchlights and sounded whistle and boat mo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.656666700396215, 1.766666700074268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-298", + "dateofocc": "2004-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 19 Nov at 0015 local time at its berth, Dumai port. Two persons armed with long knives were confronted by the chief Officer, who was injured when he ordered them to disembark. The robbers escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.724999999794079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-13", + "dateofocc": "2005-12-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 27 Dec at 0400 local time, while at Tg. Bara inner anchorage, East Kalimantan. Robbers boarded the vessel at forecastle. They tried to steal ships stores but alert crew raised alarm and robbers escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.72833330017761, 0.551666699805651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-299", + "dateofocc": "2004-12-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified tanker was boarded 2 Dec at 0130 local time, while anchored in Lagos Roads. Twelve persons armed with guns, knives, and axes approached in speedboats. They boarded and rushed the bridge, despite the second officer shining searc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-300", + "dateofocc": "2004-12-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 1 Dec at 1410 UTC while berthed at Kochi oil terminal, Cochin. Robbers armed with knives took ship's sores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.2699999995653, 9.971666700056289] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-171", + "dateofocc": "2005-05-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified general cargo ship was boarded 29 May at 0015 local time in position 06-45S 039-20E, No. 2 anchorage, Dar Es Salaam. Three robbers, armed with machetes, boarded the vessel via the hawse pipe. They stole ship's stores and esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.749999999648139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-172", + "dateofocc": "2005-05-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TUG BOAT", + "descriptio": "GULF OF ADEN: An unidentified tug reported a suspicious approach 28 May at 1835 local time, while underway in position 12-29N 044-57E. A speedboat approached the tug, which was towing two barges. When the speedboat came within 5 meters, crew fired roc", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.950000000135219, 12.483333300402762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-173", + "dateofocc": "2005-05-24", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: An unidentified RO/RO was approached 24 May at 1100 UTC, while underway in position 15-19.5N 041-32.5E. Persons in two boats attempted to come alongside the vessel. Master raised alarm and increased speed. Attempt was aborted (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.541666699719315, 15.325000000413752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-174", + "dateofocc": "2005-05-30", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified general cargo ship was approached by a suspicious craft 30 May at 1720 UTC, while in position 04-00.50N 099-36.20E. The vessel sighted a 5m long craft with a white hull. When the craft came within two miles, it incr", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.603333300378324, 4.008333300061224] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-175", + "dateofocc": "2005-05-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 30 May at 1615 UTC, while underway in position 03-12N 105-24E, 14nm off Anambas island. Five pirates, armed with high-powered guns and long knives, boarded the vessel. Duty A/B at poop deck sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.399999999976785, 3.19999999990921] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-176", + "dateofocc": "2005-05-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDONESIA: An unidentified yacht was boarded 05 May at 1030 local time while at anchor near 02-46.064N 106-12.285E, NW bay of Ayerabu island of Anambas islands. Eight robbers, armed with AK-47 machine guns, ordered the crew to remain below deck. They", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.204722200223841, 2.767777799883277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-177", + "dateofocc": "2005-06-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier reported an attempted boarding 06 Jun at 1535 UTC, while underway in position 02-23N 046-07E, off Mogadishu. Three pirates, armed with automatic weapons, opened fire on the vessel from a white speedboat. The near", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.116666699664904, 2.383333300345896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-178", + "dateofocc": "2005-05-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified general cargo ship was boarded 22 May at 1500 local time, while underway in position 03-42N 48-16E. Pirates beat up the 21 crewmembers and locked them in a room. The pirates hijacked the vessel and have demanded ransom for rel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.266666700229052, 3.700000000375042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-179", + "dateofocc": "2005-05-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: Crude oil tanker (NORD MILLENNIUM) was boarded 31 May at 0230 local time, while anchored in position 29-27N 048-56E, (deep water anchorage A) south of Basra oil terminal. Persons, armed withAK-47 rifles, tried to enter the bridge claiming to be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.933333300367451, 29.450000000083662] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-180", + "dateofocc": "2005-06-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker was boarded 01 Jun at 2000 local time, while underway in position 04-15N 100-18E, off Pangkor island. Eight pirates, armed with automatic weapons and long knives, fired warning shots, before boarding the 1,104", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.300000000081639, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-181", + "dateofocc": "2005-05-31", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA: Per 31 May article, Indonesia will not pay ransom for the release of three Indonesian crewmen kidnapped off the tug BONGGAYA 91, back on 30 Mar (see ONI WWTTS message dated 06 Apr 05 Para 5.K.13. for details on this incident). A spokesperson", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.999999999697138, 4.583333299877495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-6", + "dateofocc": "2005-12-15", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified bulk carrier had an attempted boarding 15 Dec at 0145 local time, while anchored in position 06:44.7S 039:20.2E, Dar Es Salaam OPL anchorage. Seven persons in an unlit boat approached the vessel. Two persons attempted to boar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.336666699931243, -6.745000000290986] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-7", + "dateofocc": "2005-12-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker (STEADFAST) is suspected of being hijacked as of 19 Dec, while enroute from Palembang, Indonesia to Singapore. An IMB special alert dated 20 Dec reports the tanker lost contact with their vessel as of 19 Dec. The tanker depa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.683333300211586, 2.333333299579863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-8", + "dateofocc": "2005-12-16", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "JAMAICA: An unidentified Yacht was boarded 16 Dec at 0630 UTC, while anchored off Kingston harbor. Five robbers, armed with assault rifles, boarded the yacht from a 25 ft canoe with an outboard motor. They took substantial equipment at gunpoint and es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-9", + "dateofocc": "2005-12-26", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 26 Dec at 0230 local time, while anchored at Bontang anchorage. Eight robbers armed with long knives boarded the vessel at forecastle. Robbers stole ships stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.500000000098225, 0.091666699592906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-10", + "dateofocc": "2006-01-02", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified tanker reported a suspicious approach 02 Jan at 0733 UTC, while underway in position 13-48N 049-48E. Three speedboats, with 3 or 4 persons onboard, followed the tanker. Master altered course and boats moved away. Later,", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.799999999797478, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-11", + "dateofocc": "2005-12-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified container ship was boarded 29 Dec at 1800 local time, while anchored in position 21-40.3N 088-00.9E, Sagar anchorage. Two robbers boarded the vessel while awaiting berthing with pilot onboard. Duty A/B raised alarm and robbers e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.015000000363329, 21.671666700344758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-12", + "dateofocc": "2006-01-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker was boarded 02 Jan at 0400 local time, while at Teluk Semangka anchorage. Three robbers, armed with long knives, boarded a tanker at the poop deck. Duty A/B raised alarm, crew mustered, and robbers escaped empty hande", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.600000000310615, -5.533333300251741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-14", + "dateofocc": "2006-01-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Support vessel (LIBERTY SERVICE) boarded 11 Jan, while underway approximately 7 nm off the coast of Bayelsa State. An estimated 40 armed men, traveling in three canoes, forced their way aboard the vessel and abducted four western expatriates.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.249999999872955, 4.316666699572124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-198", + "dateofocc": "2006-08-11", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Bulk carrier was boarded and robbed 11 Aug at 1910local time while anchored in Callao anchorage No. 12. The bosuns store was forced open. C/O raised alarm and alerted crew.Robbers escaped in their boat empty handed. Port authorities were inform", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.149999999946317, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-199", + "dateofocc": "2006-08-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF OMAN: Containership reported suspicious approach12 Aug at 0830 local time while underway in the Gulf of Oman, approximately 25 NM South of the Iranian coast. Ten to twelve individuals in a wooden hulled (brown) boat with white superstructure ap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.268333299887786, 24.989999999741542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-200", + "dateofocc": "2006-08-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robbed 04 Aug at 2030 UTC at Teluk Semangka Anchorage, Indonesia. Eight robbers armed with knives boarded the tanker. They entered the engine room and tied up and assaulted two duty crewmembers. Robbers stole generator s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, -5.583333300118511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-201", + "dateofocc": "2006-08-11", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: Containership boarded and robbed 11 Aug at 2255 local time while anchored in Manila South harbor anchorage. Eight robbers armed with guns boarded and ransacked the forward locker. Alert cadet on forcastle sighted a boat near the bulbous b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.966666699792199, 14.566666700128451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-202", + "dateofocc": "2006-08-22", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "GUINEA: Integrated Tug and Barge (ITB) boarded and robbed 22 Aug at 0200 UTC while anchored in position 09-25.25N 013-44.30W, 2.5 NM South of Conakry, Guinea Sea Buoy. Two or more persons boarded vessel and stole deck items. They came alongside in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.738333300233819, 9.419999999696699] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-203", + "dateofocc": "2006-08-17", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "TRINIDAD: Sailing Vessel (VESLA) was boarded and robbed 17 Aug between 0230 and 0300 Local Time while at anchor in front of Peake Yacht Services, Chaguaramas Bay. According to the report,an aluminum dinghy coming from Fishermans Village near Cruise Inn,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.641666700308178, 10.679999999575557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-204", + "dateofocc": "2006-08-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 27 Aug at 0045 local time while underway in position 13:15.5N 047:13.2E. Two speedboats approached the bulk carrier. Crew mustered and took anti piracy measures. Fifteen minutes later boats move", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.219999999660047, 13.258333299685887] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-205", + "dateofocc": "2006-08-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "VIETNAM: Fishing boats report being attacked and boarded 24 Aug at southern Kien Giaung province. Men armed with AK-47 rifles attacked and boarded the fishing boats from a speedboat. The fishing boats were being directed into Cambodian waters but were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.000000000111356, 9.999999999769386] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-206", + "dateofocc": "2006-08-29", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "VIETNAM: Fishing boat reports being attacked and robbed29 Aug near Bong Bay Island off of central Da Nang city. According to a local source, a group of unidentified foreign men launched a surprise attack on the Vietnamese fishing boat and stole approxi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.21666669960473, 16.083333299799733] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-207", + "dateofocc": "2006-08-21", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship boarded and robbed 21 Aug at 0044 local time in position 24:08.3S 046:17.2W, Santos anchorage no. 4. Seven robbers armed with guns boarded at the forecastle. They took hostage two watchmen and entered accommodation. D/O raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.286666699600289, -24.138333300390286] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-208", + "dateofocc": "2006-08-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: Tanker boarded and robbed 30 Aug at 0215 local time at Tema Roads. Five robbers armed with knives boarded via the anchor chain. They stole ships stores and walkie-talkie from duty a/b. Another a/b raised alarm; crew mustered and proceeded to f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.016666700242467, 5.628611100094929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-301", + "dateofocc": "2004-12-04", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 4 Dec at 1235 local time, while anchored in position 06-02.9S 106-53.3E, Tanjung Priok. One person armed with long knives threatened the Chief officer and bosun, before entering the engine room and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.888333299934914, -6.048333299688352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-302", + "dateofocc": "2004-12-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship reports attempt to board 1 Dec at 1330 UTC, while underway in position 03-16N 105-04E. When crew detected approach they mustered, activated fire hoses, and ship began evasive maneuvering, whereupon the attempt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.066666699907557, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-303", + "dateofocc": "2004-12-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 1 Dec at 0130 local time, while at Dumai anchorage. Six persons armed with guns and long knives tried to gain access at the stern but fled, when alarm was sounded (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.724999999794079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-304", + "dateofocc": "2004-11-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Nov at 1915 UTC, while anchored in position 03-12.01S 116-21.27E, at North Pulau Laut anchorage. Ten robbers gained access via the hawse pipe and stole a large quantity of ship's stores and escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.354444399572571, -3.201666700144983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-305", + "dateofocc": "2004-12-03", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PAPUA NEW GUINEA: The coastal freighter (FALLON) was attacked 3 Dec by pirates, who approached from astern in a dinghy. The vessel was attacked while underway between Karkar Island (4-34S 145-56E) and Madang (5-14S 145-46E). The pirates boarded the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [145.85000000007085, -4.900000000082912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-306", + "dateofocc": "2004-12-09", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: A Jamaican source claimed 9 Dec that container ships delayed, at Kingston by congestion, are being victimized by theft. A Marine Police spokesman denied that any thefts had been reported, but the source stated that a container ship of Hamburg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.800000000012346, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-307", + "dateofocc": "2004-12-11", + "subreg": "24", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: An unidentified general cargo ship noted suspicious approach 11 Dec at 0054 local time, by a pilot vessel. This was noted shortly after the ship had dropped its outward pilot at Cartagena. Crew rushed aft and found a grappling hook on the rail", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.555555600221567, 10.424999999985516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-308", + "dateofocc": "2004-11-24", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUYANA: An unidentified refrigerated cargo ship was boarded 24 Nov at 0100 local time, while at Georgetown anchorage maneuvering with pilot on board. Intruders broke into mast house but escaped empty handed, when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.17333329968784, 6.805555599813033] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-309", + "dateofocc": "2004-12-08", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Watchmen aboard an unidentified bulk carrier, at berth 8 Dec at Lagos, discovered that protective bars, covering the rudder trunk opening under the ship's stern, had been cut away. Master reports two boats, with 7 to 9 men each, followed the sh", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-310", + "dateofocc": "2004-12-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: An unidentified container ship was boarded 8 Dec at 0015 UTC, while anchored at Dar es Salaam. Two persons armed with knives took duty seaman hostage, stole ship's property,and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-311", + "dateofocc": "2004-12-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN: Yacht (LILI MARLEEN) was fired on 12 Dec at 1031 UTC, while underway 20 miles off the Yemen coast in position 13-33.6N 048-12.6E. Persons in two orange launches, with five persons each, opened fire on the yacht which radioed for help. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.210000000078765, 13.55999999981259] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-312", + "dateofocc": "2004-12-11", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified supply ship reports approach 11 Dec at 1130 local time by an unknown fishing boat, while underway In position 23-07-14N 068-26-16E. When the fishing boat tried to come alongside, the supply ship altered course and increased spee", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.437777800379251, 23.120555600300179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-313", + "dateofocc": "2004-12-13", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 13 Dec at 0235 local time, while anchored at Balikpapan. Robbers armed with daggers, swords and guns forced the anti-piracy patrol to retreat in the accommodation for their safety. The robbers then b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.240555599602772, 1.272222200290514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-182", + "dateofocc": "2005-06-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: An unidentified general cargo ship was boarded 12 Jun at 0145 UTC, at Takoradi anchorage. Three armed persons gained access at the forecastle and stole ship's stores, before escaping in a boat. Master informed port control who sent official to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.737499999744614, 4.897222200070473] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-183", + "dateofocc": "2005-06-10", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified supply boat reports being followed 10 Jun at 0820 local time by 5 persons wearing yellow raincoats in a 20-foot blue fiberglass craft, while the supply boat was underway in position 03-55.1N 07-08E, 20 miles SW of the Bonny Riv", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.133333300274728, 3.918333299941423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-184", + "dateofocc": "2005-06-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified refrigerated cargo ship reports attempt to board 7 Jun at 0120 local time, while anchored in position 04-12.3N 006-57.3E, at the Bonny River anchorage. Five persons armed with machine guns tried to board using grappling hooks", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.955000000062114, 4.205000000198027] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-185", + "dateofocc": "2005-06-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship was boarded 24 May at 2359 local time, while anchored in the vicinity of the Bonny River Fairway Buoy, Onne. Persons armed with guns boarded the ship, beat up crew, and fired some shots before stealing ship's cas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.993055600437401, 4.218333300041024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-186", + "dateofocc": "2005-05-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified container ship was boarded 24 May at 2110 local time, while anchored in position 04-12.6N 006-55.6E, off the Bonny River Fairway Buoy, Onne. One crew member was injured by a gunshot and the robbers escaped with ship's cash, bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.926666700349017, 4.20999999955518] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-187", + "dateofocc": "2005-06-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The bulk carrier (TIGRIS) reported an attempted boarding 06 Jun at 1535 UTC, while underway in position 02-23N 046-07E, off Mogadishu. Three pirates, armed with automatic weapons, opened fire on the vessel from a white speedboat. The nearby", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.116666699664904, 2.383333300345896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-188", + "dateofocc": "2005-06-10", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: An unidentified container ship reports being followed 10 Jun at 1130 local time, while underway in position 19-48N 069-19E, 95 nm off the Indian Coast of Gujarat. Six dark colored boats, each about 20m long, without fishing nets and each", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.316666699875555, 19.799999999726595] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-215", + "dateofocc": "2006-09-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded and robbed 10 Sep at 0250 local time, at Chittagong anchorage. Eight robbers armed with knives in four boats boarded at the stern, as the ship was preparing to anchor. Crew confronted robbers but they stole ships store", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-189", + "dateofocc": "2005-06-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: An unidentified tanker was hijacked 13 June at 2100 UTC, while underway off Langkawi Island. Ten armed pirates boarded from a speedboat. One crew member managed to escape in the pirates' boat, landed at Langkawi, and notified police", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.583333300251752, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-190", + "dateofocc": "2005-06-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 Jun at 2350 local time, at Kota Baru anchorage by 5 persons armed with long knives. The robbers tied up the duty seaman and escaped with a life raft, when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.083333299721232, 3.450000000142154] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-191", + "dateofocc": "2005-06-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 7 Jun at 2130 UTC, while at Belawan anchorage. Six persons armed with long knives were frightened off in their speedboat, when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-192", + "dateofocc": "2005-06-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA: Two of three kidnapped crew from the tug (BONGGAYA 91) were recovered 12 Jun in a police operation, on southern Jolo Island. One other crew member remains in the hands of the suspected Muslim guerillas. The 3 were kidnapped on 30 Mar (see O", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.999999999697138, 4.583333299877495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-193", + "dateofocc": "2005-06-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "Malacca Straits:Three small crafts from a big mother fishing vessel came close to a general cargo ship underway. People in the boat attempted to board the ship at stern. Master raised alarm, took evasive manoeuvres,sounded shhip's whistle, and fired rock", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.973333300438867, 5.041666699887855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-15", + "dateofocc": "2006-01-07", + "subreg": "62", + "hostility_": "MERCHANT VESSEL", + "victim_d": "SUSPICIOUS APPROACH", + "descriptio": "GULF OF ADEN: An unidentified chemical tanker reported a suspicious approach 07 Jan at 0635 UTC, while underway in position 13-43N 049-09E. One 15 meter yellow speedboat doing 21 kts approached the tanker. Master raised alarm, sounded whistle, increa", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.149999999731449, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-16", + "dateofocc": "2006-01-07", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified chemical tanker reported a suspicious approach 07 Jan at 0440 UTC, while underway in position 13-58.6N 049-20.8E. Four 15 meter white boats doing 15 kts approached the tanker. Master raised alarm, increased speed, and to", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.346666699868251, 13.976666700442138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-17", + "dateofocc": "2006-01-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: A Sri Lankan Navy Fast Attack Craft was destroyed by an explosive rigged fishing vessel 07 Jan in the early morning, while conducting a routine patrol off the eastern port city of Trincomalee, near Foul Point. Twelve sailors were reported ki", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [81.333333300336051, 8.5333333001401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-18", + "dateofocc": "2006-01-12", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: An unidentified general cargo ship reported a suspicious approach 12 Jan at 1815 local time, while underway in position 06-30N 056-20E. An unidentified craft approached the cargo ship. Master increased speed and altered course. Suspicio", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.333333300426887, 6.500000000105899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-19", + "dateofocc": "2006-01-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified product tanker was boarded 15 Jan at 2200 local time, while anchored at the Dumia anchorage. Five robbers boarded the tanker at the stern. Alert crew mustered and robbers escaped empty handed in their boat (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.712500000052216] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-20", + "dateofocc": "2006-01-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 13 Jan at 1848 UTC, while anchored in position 06-02.46S 106-53.27E, Tg. Priok anchorage. Two robbers, armed with long knives, boarded the vessel at the stern from an unlit boat. Duty officer raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.887777800408628, -6.041111099878492] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-21", + "dateofocc": "2006-01-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified container ship was boarded 11 Jan at 0500 local time while at JICT terminal pier No1, Jakarta. Four robbers boarded the vessel at the stern by climbing emergency towing wire. They entered the engine room via steering gear fla", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.091666699995585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-22", + "dateofocc": "2006-01-15", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PHILIPPINES: The fishing vessel (MAN CHUN YI) came under fire 15 Jan in the morning hours, while underway between Batan Islands and Babuyan Islands, in the Bashi Channel. Five individuals in military style uniforms fired dozens of shots at the vessel,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.999999999761826, 21.499999999691624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-23", + "dateofocc": "2006-01-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier reported attempted boarding 20 Jan at 0310 local time, while in position 06-09N 003-15E, Lagos anchorage. Five robbers in a wooden boat attempted to board using a hook, attached to a long pole. Alert crew thwarted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.249999999775923, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-24", + "dateofocc": "2006-01-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: The (AL MANARA) falsely reported being Hijacked 22 Jan by pirates armed with guns, while underway in position 02-48N 048-36E. A Coalition warship responded to the distress call and determined it was issued by the master as a result of a dispu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.600000000298223, 2.766666700106555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-25", + "dateofocc": "2006-01-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier reported being chased 20 Jan at 0700 local time, while underway in position 05-25.1N 052-34.6E, 213nm east of Somali coast. Two speedboats, operating from a mother ship gave chase. One boat had three men with mach", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.576666700071655, 5.418333300439599] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-26", + "dateofocc": "2006-01-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:An unidentified hopper dredger reported an attempted boarding 21 Jan at 1810 UTC, while underway in position 15-50N 041-45E. Persons in several speedboats attempted to board. D/O raised alarm, crew mustered, directed searchlights, and speedboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.749999999672013, 15.833333299566789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-209", + "dateofocc": "2006-09-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: General cargo ship boarded and robbed 04 Sep at 0325 local time at Chittagong anchorage a. Six robbers armed with long knives boarded the ship from the bow. They broke forecastle and stole ships stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-210", + "dateofocc": "2006-09-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: General cargo ship boarded 03 Sep between 2100 and 2400 local time at Chittagong anchorage a. Robbers boarded twice from the stern and bow. Alert crew mustered and robbers jumped overboard and escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-211", + "dateofocc": "2006-09-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BANGLADESH: Fishing trawler reportedly taken over by mutineers 02 Sep while operating off Coxs Bazar. According to a survivor, six reported newly hired crewmembers turned mutinous and killed seven crewmembers. The bodies of the seven others, including", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.966666699753716, 21.420000000084769] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-212", + "dateofocc": "2006-08-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier reported being boarded and robbed 31 Aug at 0615 local time at Tanjong Priok Roads. Four robbers entered the engine room via funnel by cutting the grills on the funnel door. They stole engine spares and escaped in a boat waitin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-213", + "dateofocc": "2006-09-01", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "TRINIDAD: Fishing raft fired on 01 Sep at San Fernando by gunmen in a white boat. Two brothers and their cousin left Bay Shore aboard a Styrofoam raft and sailed to Kings Warf to fish. The teens were forced to jump off the raft and swim to shore when g", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.471666699682146, 10.2833332999719] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-214", + "dateofocc": "2006-09-12", + "subreg": "57", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Small boat attacked and boarded 12 Sep at 0200 UTC, by gunmen in the Niger Delta. According to industry sources, the US supply vessel was boarded by gunmen shooting sporadically and looking for valuables. One Nigerian worker was killed and tw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.266666699770099, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-216", + "dateofocc": "2006-09-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Container ship approached 07 Sep at 0240 local time in position 22-12.68N 091-43.1E, at Chittagong anchorage. Ten persons in an unlit boat came alongside and attempted to board. D/O raised alarm, crew mustered, and boat moved away (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.718333299723099, 22.211388899589508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-217", + "dateofocc": "2006-09-14", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "SIERRA LEONE: Tug was boarded and robbed 14 Sep at 2230 UTC, in position 08-29.8N 013-12.50W, 4nm north of Queen Elizabeth II berth 4 in Freetown. Two robbers, armed with knives in a boat, boarded the tug from stern while at anchor. Robbers attempted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.208333300027846, 8.496666699941159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-218", + "dateofocc": "2006-09-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Container ship reports attempted boarding 17 Sep at 0330 local time, at Chittagong anchorage c. Eight armed robbers approached ship. Alert crew mustered and sounded the whistle. Upon seeing crew alertness, robbers aborted attempted boardi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-219", + "dateofocc": "2006-09-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier approached 16 Sep at 0200 local time, in position 22-16.94N 091-43.08E, at Chittagong anchorage a. Four robbers in a small motorboat approached ship at stern, during cargo operations. Three robbers jumped off the boat and clu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.282222199683929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-220", + "dateofocc": "2006-09-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier reported being boarded and robbed 31 Aug at 0615 local time, at Tanjong Priok Roads. Four robbers entered the engine room via funnel, by cutting the grills on the funnel door. They stole engine spares and escaped in a boat, wai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.47833330032654, 1.684722199865462] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-221", + "dateofocc": "2006-09-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: Sri Lankas navy and the Tamil Tiger rebels engage in a pre-dawn naval battle, 02 Sep off Point Pedro on the islands northern tip. The Tamil Tiger were attempting to proceed towards the Kankasanthurai harbor but were successfully stopped, by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.266666700364624, 9.916666699933103] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-222", + "dateofocc": "2006-09-21", + "subreg": "22", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Container ship boarded and robbed 21 Sep at 2005 local time, at position 12-01S 077-13.5W in Callao Roads anchorage no 12. A robber boarded a container ship, while port authorities boarded for formalities. D/o raised alarm but the robber threw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.230555599803608, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-314", + "dateofocc": "2004-12-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: The Singapore-flag tug (SURYA WIRA 1) was boarded 10 Dec at 230 local time,while underway in position 00.5 27.00S, 103 43.00E. Ten pirates armed with guns cut thetug's barge adrift and landed ten of the tug's crew at Jambi, before sailing aw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.97861109963327, -5.450000000415457] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-315", + "dateofocc": "2004-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: The chemical tanker (JACKSON) was boarded 19 Nov at 0015 local time, at its berth Dumai port. Two persons armed with long knives were confronted by the chief Officer, who was injured when he ordered them to disembark. The robbers escaped wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-316", + "dateofocc": "2004-12-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: An unidentified bulk carrier reports unauthorized intrusion 8 Dec at 0150 local time, while at Berth 1, Sandakan. Two persons wearing boiler suits and helmets, resembling those worn by the crew, attempted to board via the anchor chain. Duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.066666700328028, 5.833333300142726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-317", + "dateofocc": "2004-12-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified refrigerated cargo ship was boarded 16 Dec at 0455 local time, while anchored in position 06-17.8N 003-21.3E at Lagos Roads. One of 4 persons in an unlighted boat gained access via grappling hook and threatened duty crew. Ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.354999999765823, 6.296666700409617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-318", + "dateofocc": "2004-12-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 16 Dec at 0200 local time at Lagos anchorage. Thieves boarded at forecastle and stole ship's stores. Port control notified and advised master, to leave anchorage (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-319", + "dateofocc": "2004-12-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 15 Dec at 0210 local time, at Lagos anchorage by thieves who stole ships stores. Port control notified, but did not respond (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-320", + "dateofocc": "2004-12-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified refrigerated cargo ship was subject to attempted boarding by four persons, in an unlighted boat 13 Dec at 0420 local time. This happened just after coming to anchor in, position 06-17.8N 003-21.3E, Lagos Roads (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.354999999765823, 6.296666700409617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-321", + "dateofocc": "2004-12-19", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: An unidentified chemical tanker reports attempt to board 19 Dec at 0940 local time, while underway in position14-35N 050-20E. Master increased speed and began evasive maneuvers, when approached by four speedboats with four persons each.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.33333330023288, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-322", + "dateofocc": "2004-12-19", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN-ARABIAN SEA-SOCOTRA: An unidentified yacht reports it was chased 19 Dec by a craft with the appearance of a dhow, while underway in position 11-29N 059-55E, 350 nm ESE of Socotra Island. Yacht's skipper altered course and undertook evasiv", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.916666699751431, 11.483333300370418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-323", + "dateofocc": "2004-12-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA-MALACCA STRAIT: Tug (ENA SOVEREIGN) was fired upon and boarded 15 Dec at 2150 local time, while underway in position 05-59N 098-56E. Twenty persons, armed with machine guns, in two fishing boats fired on the tug, which was towing a barge. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.93333330018578, 5.983333299742867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2004-324", + "dateofocc": "2004-12-17", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA-MALACCA STRAIT: An unidentified container ship reports attempt to board 17 Dec at 2330 local time, while underway in position 03-54N 099-54E. When an unlighted boat approached, crew activated fire houses, switched on lights and began evasive", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.900000000248554, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-2", + "dateofocc": "2004-12-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING BOAT", + "descriptio": "BANGLADESH: Pirates killed one crewman and injured 10 others in a 24 Dec attack, which also sank their trawler (MAHMUDA) ,about 70 km, off the Patharghata Coast. The pirates also robbed the trawlers (NIZAM) and (MUSTAFA), when they came to the aid of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.966666699689029, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-1", + "dateofocc": "2004-12-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Nigerian militants on 25 Dec seized a Danish-operated supply vessel, which supports Shell Oil operations in the Niger Delta's Bayelsa State at Ekeremore. Fifteen Nigerians in the crew were released but a single Croatian was held hostage (INFO)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.080000000146242, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-3", + "dateofocc": "2004-12-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 27 Dec at 0230 local time, while anchored at Samarinda. Three persons boarded during cargo operations but jumped overboard and fled empty handed in a speedboat, when crew raised alarm (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.183333300101481, -0.483333300223364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-194", + "dateofocc": "2005-06-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 13 Jun at 0500 local time, about five nm south-southwest of Lagos lighthouse. Two robbers were spotted on the poop deck cutting ropes and throwing them overboard to a wooden boat, where five men were wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-195", + "dateofocc": "2005-06-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified vessel was boarded 13 Jun at 0300 local time, while drifting about 15 nm off the coast of Lagos Roads. The robbers, armed with knives and machetes, seriously injured the watchman on the poop deck. Despite his injuries, the wat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-196", + "dateofocc": "2005-06-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 17 Jun at 0240 local time while anchored six nm from fairway bouy, Lagos anchorage. Six robbers, armed with guns and knives, came alongside the bulk carrier in a speedboat. Four robbers boarded, held d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.411111099665732, 6.365833299577616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-197", + "dateofocc": "2005-06-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: The offshore processing tanker (JAMESTOWN) was boarded 12 Jun at 1100 local time, 10 miles off the coast of Warri. Reports of up to 50 Nigerian hijackers, (carrying machine guns and knives) ordered a halt to oil production, barricaded the heli", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.299999999739669, 4.069999999568608] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-198", + "dateofocc": "2005-06-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CAMEROON: An unidentified general cargo ship was boarded 14 Jun at 0430 local time, while berthed at port Douala. Four armed robbers assaulted the duty crewman and forced him to open the Bosun store. A cadet on rounds came to forecastle and he, along", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.550000000069588, 3.891666700255371] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-199", + "dateofocc": "2005-06-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: An unidentified tanker was boarded 16 Jun at 0115 local time, while discharging cargo at Jawahar deep terminal. Two robbers tried to steal ship's stores from poop deck, but duty crewman noticed them and raised the alarm. Robbers escaped empty h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [72.94166669965557, 18.950000000193711] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-200", + "dateofocc": "2005-06-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: M/T (PREMPUTLI) was boarded 15 Jun at 0315 local time, while anchored at Basra oil terminal 'B'. Three robbers, armed with machine guns and long knives, boarded the tanker via forecastle. Alert crewman raised alarm. Robbers stole ship's propert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.833333299734704, 29.649999999550516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-201", + "dateofocc": "2005-06-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: M/T (NEPLINE DELIMA) was hijacked 13 June at 2100 UTC, while underway off Langkawi Island. Ten armed pirates boarded from a speedboat. One crew member managed to escape in the pirates' boat, landed at Langkawi and notified police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.583333300251752, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-202", + "dateofocc": "2005-06-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier reported an attempted boarding 19 Jun at 2030 local time, while underway in position 02-03N 119-20E. The pirates attempted to board at the poop deck from a speedboat. Master took evasive maneuvers, raised alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.333333299766309, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-203", + "dateofocc": "2005-06-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 17 June at 0300 local time in position 03-12S 116-20E, while at Tanjung Pemancingan anchorage. Ten robbers, armed with long knives boarded at the forecastle. They tied up duty watchman and threatene", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.333333299669334, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2005-204", + "dateofocc": "2005-06-15", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTH CHINA SEA: An unidentified general cargo ship reported an attempted boarding 15 Jun at 1800 UTC, while underway in position 01-59N 104-45E. Three unlit craft approached a general cargo ship underway and came within one cable at port bow. Duty o", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.749999999910756, 1.983333299613548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-27", + "dateofocc": "2006-01-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "THAILAND: An unidentified yacht at anchor was hijacked by robbers 14 Jan at Racha Yas Island, off Phuket. Subsequently it was located on 19 Jan (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.485277800188612, 7.616666699768814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-28", + "dateofocc": "2006-01-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 17 Jan at 0245 local time, at the Tg. Bara anchorage. Three robbers boarded, threatened a watchman with a knife, and took him as a hostage. When watchman did not respond to calls on walkie-", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.72833330017761, 0.551666699805651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-29", + "dateofocc": "2006-01-31", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: A container ship (SAFMARINE ZAMBEZI) was boarded and robbed while berthed at the Tecondi Container Terminal at the port of Santos, Brazil per 31 Jan reporting. According to the report, thieves arrived alongside in a motorboat and stevedore acco", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.291666699856762, -23.962500000305965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-30", + "dateofocc": "2006-01-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 27 Jan at 0645 local time, while underway in position 11-55.0N 051-19.0E, off Cape Guardafui, Somalia. Five pirates armed with machine guns and rocket launchers in a speedboat fired at the bulk carri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.316666700192798, 11.916666699997791] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-31", + "dateofocc": "2006-01-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified general cargo ship boarded and robbed 28 Jan at 2315 local time at Chittagong 'B'anchorage, Bangladesh. Robbers boarded the ship at forecastle and stole ship's stores. Duty crew raised alarm and robbers escaped. Port control", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-32", + "dateofocc": "2006-01-25", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: An unidentified container ship was chased 25 Jan at 0152 UTC, while underway in position 13-27.6N 042-59.0E. An unlit speedboat chased the container ship. Boat increased speed to 35 knots and came within 1.5 nm. Ship altered course", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.983333300040101, 13.460000000079162] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-33", + "dateofocc": "2006-02-04", + "subreg": "22", + "hostility_": "pirates", + "victim_d": "merchant vessel", + "descriptio": "PERU: An unidentified bulk carrier was boarded and robbed 4 Feb at 2010 local time, at Callao anchorage. Three robbers armed with long knives and iron bars boarded at forecastle. C/O raised alarm and crew mustered. Robbers stole forward life raft and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-34", + "dateofocc": "2006-01-29", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ECUADOR: An unidentified container ship was boarded and robbed 29 Jan at 1936 local time, at inner Guayaquil anchorage. Four robbers armed with guns and iron bars boarded, broke open two containers and stole cargo. Shore-guards onboard fired warning sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.44722220033924, -2.725000000035095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-35", + "dateofocc": "2006-01-27", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE: Korean fishing vessel (MUJIN-5) was boarded on 27 Jan at approximately 2200 local time, while trawling off Yeliboya, per 1 Feb reporting. Thirteen armed pirates aboard a dug out canoe and dressed in military clothing, approached the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.466666699672032, 8.900000000003615] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-36", + "dateofocc": "2006-01-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: An unidentified product tanker was approached by a boat at port bow 31 Jan at 0030 local time, while underway at Chittagong Alpha anchorage area. Crew went forward to investigate;.In the meantime, four robbers boarded at poop deck. They thre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-37", + "dateofocc": "2006-02-02", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: An unidentified container ship detected a craft by radar 2 Feb at 0130 UTC while underway at port, bow in position 19-38.8N - 039-04.0E. D/O altered course to starboard and the craft also altered course, increased speed, and tried to come clos", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [39.066666699571783, 19.646666699897025] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-38", + "dateofocc": "2006-02-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: An unidentified chemical tanker was boarded and reported an attempted robbery 5 Feb at 0745 UTC, while anchored in position 01-20.7S - 116-58.9E at Balikpapan anchorage. Four robbers in a yellow speedboat approached the tanker. Two robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.981666700432243, -1.345000000296238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-223", + "dateofocc": "2006-09-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship boarded 19 Sep at 0300 local time in position 24-07.7S 046-18.2W, Santos anchorage no. 4. Three masked robbers armed with guns boarded and held a duty crew hostage. They took his walkie talkie and freed him at 0420 local time a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.303333299672659, -24.12833329987734] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-170", + "dateofocc": "2008-04-24", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "BRITISH VIRGIN ISLANDS:Yacht boarded, robbed 24 Apr 08, Nanny Cay Boatyard. The vessel was robbed of a cell phone and a computer. It is not known if the vessel was secured or not (Operator: safetyandsecuritynet.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.500000000391594, 18.166666700424742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-224", + "dateofocc": "2006-09-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship boarded 19 Sep at 0215 local time, in position 24-07S 046-21W, at Santos anchorage area no. 4 Brazil. Seven robbers armed with guns, in six meter long blue hull boat, boarded and held hostage one of two watchmen. Other watchman", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.35000000020932, -24.116666700061444] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-225", + "dateofocc": "2006-09-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship boarded 19 Sep at 0200 local time, in position 24:05.1S 046:21.5W Santos outer anchorage no. 3. Robbers boarded and broke seals on 16 containers on deck but escaped empty handed. Port control informed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.358333299795845, -24.085000000294201] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-226", + "dateofocc": "2006-09-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker boarded and robbed 11 Sep at 2355, in position 06-19.5N 003-25.0E at Lagos outer roads. Two robbers boarded during STS operations. Alert crew mustered but robbers stole ships stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.416666700172584, 6.325000000122714] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-227", + "dateofocc": "2006-09-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Container ship approached 24 Sep at 1012 local time, while underway near Moyapura in Hugli River, Kolkata, India. One boat with four persons carrying grappling hooks approached. Crew mustered and boat moved away (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.136666700250373, 22.416666699887685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-228", + "dateofocc": "2006-09-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: LPG tanker boarded and robbed at Dar Es Salaam outer anchorage. Five robbers boarded ship at forecastle deck. D/o raised alarm, activated SSAS, crew mustered and secured accommodation doors from inside. Robbers stole ship stores and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.327777800094339, -6.747222199844373] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-229", + "dateofocc": "2006-09-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded 23 Sep at 0440 local time, at Chittagong anchorage a. Eight robbers in a boat approached and two robbers boarded at stern. Alert crew raised alarm and crew mustered with bars. After 10 minutes, robbers jumped into the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-230", + "dateofocc": "2006-09-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH:Container ship reports attempted boarding 20 Sep at 1750 UTC, in position 22-09.57N 091-44.77E at Chittagong anchorage. Eight robbers in an unlit boat attempted to board from the stern, by using hooks and ropes. Alert duty crew raised alarm a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.746111099909911, 22.159444400020163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-231", + "dateofocc": "2006-10-01", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship boarded 01 Oct at 0523 UTC, in position 24-05.5S 046-21.5W, Santos anchorage no. 4. Eight robbers wearing black clothes came alongside the container ship at port side and one robber boarded. Duty officer raised alarm, sounded whi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.358333299795845, -24.091666699678399] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-232", + "dateofocc": "2006-10-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Oilfield supply vessels attacked 02 Oct, in Cawthorne Channel, Rivers state, Niger Delta. At least three soldiers protecting the convoy were killed, when about 70 gunmen in speedboats attacked the barges carrying fuel and other supplies, to s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.100000000305158, 4.458333299761023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-233", + "dateofocc": "2006-10-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Bulk Carrier reported attempted boarding 2 Oct, while underway in position 15-24.85N 066-21.62E. Two fishing boats came close to the bulk carrier and persons inside tried to board. Vessel increased speed and boats stopped following. (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.360277799936568, 15.414166700432418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-234", + "dateofocc": "2006-09-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Bulk Carrier boarded and robbed 24 Sep, Visakhapatnam anchorage, India. Robbers stole engine spares. The incident was reported to authorities (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.319444400307361, 17.658333299648291] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-235", + "dateofocc": "2006-10-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded 01 Oct at 0300 local time, in position 05-52.8S 106-04.15E, Sulfindo Jetty. Four robbers in a motorboat approached the bulk carrier, at port quarter during cargo operations, and three robbers boarded. Duty officer raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.069166700068138, -5.87999999998874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-236", + "dateofocc": "2006-10-05", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "TRINIDAD AND TOBAGO: Fishing vessel (MISS SUCILLA II) attacked, fisherman shot dead 5 Oct just after midnight, off the west coast between Cedros and Changuanas. The fishing vessel was approached by another boat with no lights. The fishermen cut the ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.500000000294563, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-264", + "dateofocc": "2007-10-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "NIGERIA:Product tanker boarded 10 Oct 07 at 2202 local time, Bonny Island anchorage. Three robbers armed with long knives boarded the vessel. They seized an AB while on his routine anti-piracy rounds and tied him up. However, before the robbers tied up t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.183333300141442, 4.483333300144011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-265", + "dateofocc": "2007-10-24", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 24 Oct 07 at 0730 UTC, while underway in position 14-05.0N - 054-44.5E. The vessel was approached by a fishing boat on the starboard beam asking to trade water for fish. When the vessel declined the suspic", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.741666699606583, 14.083333299735045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-266", + "dateofocc": "2007-10-22", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 22 Oct 07 at 0350 UTC while underway in position 12-32N - 045-24E. Initially, seven boats were following the vessel and the vessel managed to out maneuver five of the boats. Two boats continued following t", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.399999999835018, 12.533333300269476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-267", + "dateofocc": "2007-10-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "SOMALIA:General cargo vessel (JAIKUR II) fired upon 21 Oct 07 at 1250 local time while underway approximately 60NM off the coast near Baraawe, (100NM south of Mogadishu). The master sent out a distress call to the UN World Food Program (WFP) Somalia, cla", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.633333300138474, 0.433333300147979] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-268", + "dateofocc": "2007-10-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "SOMALIA:General cargo vessel (ALMARJAN) hijacked 17 Oct 07 at 1830 local time, approximately 10-20NM from Mogadishu port after departing bound for Mombasa, Kenya. According to the owners of the ship, the last message they received from the ships master w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.349999999968304, 2.033333300379581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-269", + "dateofocc": "2007-10-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOMALIA:Bulk carrier reported being fired upon 18 Oct 07 at 1000 UTC while underway in position 03-45N - 051-30E, 200NM off the Somali coast. At 3NM two small speedboats disguised as fishing vessels, each carrying four armed men approached the vessel, on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.499999999762508, 3.750000000241755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-270", + "dateofocc": "2007-10-18", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SOMALIA:Vessel reported suspicious approach 18 Oct 07, 0805 local time in position 03-54.34N 050-37.9E, 155 miles off the Somali coast. One white colored speedboat approached directly towards the vessel from astern. Two Somali gunmen onboard the ship fir", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.631666700130154, 3.905555600348748] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-271", + "dateofocc": "2007-10-14", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SOMALIA:Vessel reported suspicious approach 14 Oct 07 at 2335 UTC in position 00-36.7N 050-20.1E, 312NM off Mogadishu. The ship was traveling at 19.2kts when the second officer spotted a target on the radar. The target was three points on the port bow ab", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.335000000259924, 0.611666700185253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-92", + "dateofocc": "2008-03-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER VESSEL", + "descriptio": "INDIA:Tanker (FANTASY I) boarded 28 Mar 08 (according to IMB) 29 Mar 08 (according to ReCAAP ISC) at approximately 0200 local time while in position 22-47.18N 70-04.63E, Kandla outer anchorage. Upon anchoring at the outer anchorage, Kandla tower informed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.077222199714242, 22.786388900305099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-93", + "dateofocc": "2008-02-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "INDIA:General cargo ship (THIANJIN) boarded, bandits apprehended 20 Feb 08 at 0930 local time, while at anchorage in position 08-45.08N 078-16.3E, port Tuticorin, per 02 Apr 08 reporting. Three fishing boats approached the vessel. Two groups of men board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [78.271666699657089, 8.751388899855669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-94", + "dateofocc": "2008-03-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH:Bulk carrier boarded, robbed 24 Mar 08 at 0230 local time at Chittagong TSP jetty. Four robbers armed with long knives boarded the vessel during discharging operations. Fearing injuries, the crew on anti-piracy watch retreated into accommodati", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.599999999890201, 22.416666699887685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-95", + "dateofocc": "2008-02-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "BANGLADESH:Container vessel (KOTA TEGAP) boarded, robbed 13 Feb 08 at 0315 local time in position 22-25N 091-36E, port of Chittagong, per 02 Apr 08 reporting. Twelve robbers armed with knives and a revolver boarded the vessel from the aft. The robbers ov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.599999999890201, 22.416666699887685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-96", + "dateofocc": "2008-03-17", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "PASSENGER VESSEL", + "descriptio": "PHILIPPINES:Passenger vessel attacked by criminals posing as passengers, crewmembers killed 17 Mar 08 at 0230 local time, while enroute Cagbalite, Miuban and Balisen, Polilio Island. A passenger boat with ten passengers including five crewmembers was ret", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.383333299730111, 15.833333299566789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-97", + "dateofocc": "2007-12-01", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PHILIPPINES:Container ship (OM AESTATIS) boarded 01 Dec 07 at 2200 local time, while anchored at position 14-33.6N 120-55.6E, North Harbour, Manila, per 12 Mar 08 reporting. Six robbers, armed with pistols, boarded the vessel using grapnels while it was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.926666700438432, 14.559999999844933] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-98", + "dateofocc": "2008-04-06", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker Vessel", + "descriptio": "NIGERIA:Tanker reported suspicious approach 06 Apr 08 at 2000 UTC while in position 05-17.7N 004-43.03E, 92NM southeast of Lagos. An unlit speedboat approached the vessel from the stern. The alarm was raised and SSAS alarm activated. The speedboat fired", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.717222199830871, 5.295000000350171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-99", + "dateofocc": "2008-04-02", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Refrigerated Cargo Ship", + "descriptio": "CONGO:Refrigerated cargo ship boarded, robbed 02 Apr 08, Boma anchorage. Two robbers boarded the vessel. They broke the seal to the cargo compartment and commenced stealing the cargo. The duty watchman noticed some cargo on deck and raised the alarm. Upo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-100", + "dateofocc": "2008-04-08", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Container ship boarded, robbed 08 Apr 08 at 0247 local time, Dar es Salaam anchorage no. 6. Anti-piracy watchman sighted one robber near the boson store. Upon sighting the watchman, the robber jumped overboard and escaped in a waiting boat. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-258", + "dateofocc": "2008-07-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:Tanker (BERGER SISAR) hijacked 26 Jul 2008, Bonny River. According to a military spokesman, around six armed militants attacked the tanker, shooting two civilians and abducting eight crewmembers. The two civilians were wounded, but did not die in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-259", + "dateofocc": "2008-07-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Unknown Vessel", + "descriptio": "CAMEROON:Vessel boarded, robbed 8 Jul 2008, while in position 03-46N 009-19E, approximately 27NM southwest of the port of Douala. The vessel was bound for the port of Douala when gunshots were heard around 0200. The crew went outside and observed a local", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.316666699733844, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-260", + "dateofocc": "2008-07-19", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Container ship boarded 19 Jul 2008, while drifting at position 06-39S 039-25E, Dar es Salaam roads. The duty watchman onboard noticed a robber on the forecastle deck. The alarm was raised and ship's whistle sounded. The robber escaped. A ten-met", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.416666700437474, -6.649999999914712] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-261", + "dateofocc": "2008-07-26", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:Chemical tanker boarded 26 Jul 08, at 0330 local time, at Belawan Anchorage. Three to four robbers boarded an anchored chemical tanker, via the anchor cable. Upon seeing the robbers, the master raised the alarm. Seeing the alert crew, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-262", + "dateofocc": "2008-07-22", + "subreg": "91", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:Container ship boarded, robbed 22 Jul 08,while anchored at position 14-33N 120-55E, Manila Outer Anchorage. Twelve robbers armed with knives boarded a container ship at anchor. They stole ship¿s stores and property and escaped. The crew was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-263", + "dateofocc": "2008-07-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA:Yacht (MUSTANG SALLY) witnessed altercation, perpetrators arrested 28 Jul 08 during mid-afternoon, Porlamar. Three armed men entered the marina on foot while the driver waited out front. The police noticed the three walking down the dock and or", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.850000000325622, 10.949999999935017] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-264", + "dateofocc": "2008-08-06", + "subreg": "57", + "hostility_": "UNKNOWN", + "victim_d": "UNKNOWN", + "descriptio": "NIGERIA:Nigerian Navy (NN) engages in gun battle with militants 6 Aug 08 Cawthorne Channel, 10NM off Port Harcourt. The NN shot dead an unspecified number of militants and destroyed two boats in an encounter. A naval patrol vessel was on routine patrol w", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-265", + "dateofocc": "2008-08-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SOMALIA:Tug (YENAGOA OCEAN) hijacked 4 Aug 08, 0500 local time, near Bosasso. The vessel traveled to an unknown destination. Pirates are reportedly demanding 1 million USD. The vessel had a crew of nine Nigerians (Operator, IMB, LM: thisday.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 11.266666699931818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-266", + "dateofocc": "2008-08-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:Bulk carrier (GEM OF KILAKARAI) fired upon 8 Aug 08 at 0515 UTC (Operator) 0345 UTC (IMB) while underway in position 13-11N 049-55E, 85NM northwest of Caluula. Pirates in two white speedboats, armed with guns and rocket propelled grenade lau", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.916666700327369, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-115", + "dateofocc": "2007-05-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NIGERIA: Pipe-laying vessel attacked and personnel kidnapped 25 May off the coast of the southern state of Bayelsa. Suspected militants in two speedboats fired shots, during the abduction. Four Britians, three Americans and one South African were repo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.616666699704126, 4.416666700204928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-267", + "dateofocc": "2008-08-02", + "subreg": "63", + "hostility_": "UNKNOWN", + "victim_d": "UNKNOWN", + "descriptio": "SRI LANKA:Sri Lankan Navy raids LTTE camp 2 Aug 08, evening, Iranathivu Island. Sri Lanka Navy's Rapid Action Boats Squadron (RABS) and Special Boats Squadron (SBS) destroyed an LTTE make-shift camp, destroying one LTTE boat, killing four LTTE cadres and", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.750000000001592, 9.750000000435818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-106", + "dateofocc": "2007-05-12", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "LIBERIA: Refrigerated cargo vessel (TAHOMA REEFER) reportedly overtaken by pirates and towed away12 May, while docked in Monrovia. The vessel ran into engine problems and docked in Monrovia for four days, while it awaited mechanical help. Two fishing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.766666699674659, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-107", + "dateofocc": "2007-05-15", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: Fishing trawlers (MUVUNO I) and (MAVUNO II) hijacked 15 May at 0900UTC while underway in position 01:20N-049:00E, approximately 200NM from the East Central Coast. Ten pirates, fivided into two groups of five, boarded each vessel and reportedl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.000000000131308, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-108", + "dateofocc": "2007-05-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo vessel (IBN YOUNUS) reported being fired upon 14 May at 1530 local time while underway in position 01:19.62N-048:51.92E, approximately 190 NM off the East Central Coast. The vessel observed one white speedboat with three men, armed with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.865277800076797, 1.326944399838851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-109", + "dateofocc": "2007-05-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Merchant vessel hijacked 10 May, approximately 12 miles north of Mogadishu. Armed pirates have hijacked the merchant vessel and ,reportedly, anchored it 400 km north of Mogadishu, near Hobiyo. Little detail is known about the incident; howeve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.341666700381779, 2.02499999989368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-110", + "dateofocc": "2007-05-09", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "MALAYSIA: Vessel boarded and robbed 9 May in the evening, while at 3BSP 4 berth in position 05-01.03N 118-21.13E, Lahad Datu Port. Several stevedores stole the ship's property during discharging operations. The master reported to agents but no action", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.352222200083816, 5.017222199930472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-111", + "dateofocc": "2007-05-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Product tanker boarded 7 May at 0200 local time, while at berth in position 01-16.081S 116-48.560E, Balikpapan Pertamina Jetty No. 2. Three robbers armed with long knives boarded the loaded product tanker via the forecastle, while waiting f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.809444400428106, -1.268055600168623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-112", + "dateofocc": "2007-05-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Product tanker boarded and robbed 5 May at 0300 local time, in position 03-55.35N 098-46.79E, Belawan Anchorage. Five robbers armed with knives and crowbars boarded the product tanker, using hooks via the anchor chain. They broke the padlo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.779722199781361, 3.922500000096704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-113", + "dateofocc": "2007-05-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "INDIA:Seven robbers armed with knives boarded a tanker, at Visakhapatnam Anchorage, via the poop deck. Duty AB contacted the bridge. All crew went into the accommodation, closed all doors, and then the master raised the alarm. The robbers jumped overboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.366666700195026, 17.638333300421095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-114", + "dateofocc": "2007-05-16", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker reported suspicious approach 16 May at 0125 local time, while drifting at Fairway Buoy RACON B, Bonny River. Watch officer noticed three boats on radar, at a range of one mile. When the boats came within two cables from the ship, watch", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.002777800375441, 4.205555600448406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-116", + "dateofocc": "2007-04-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker boarded and robbed at 4 Apr at 0200 local time, while at berth in Lagos (per 22 May reporting). Robbers broke open the paint store and stole from the ships stores. The alarm was raised and the authorities were informed. The master sus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-117", + "dateofocc": "2007-04-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: General cargo ship boarded and robbed 24 Apr at 0245 local time, while anchored 2.2 miles from Tema Port breakwater. Robbers armed with knives boarded the general cargo ship. They tied up the duty AB and took his walkie talkie. The robbers sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.01666669955182, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-101", + "dateofocc": "2008-04-15", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 15 Apr 08 at 0600 UTC while underway in position 14-35.8N 050-55.7E, 67NM southwest of Qishn, Yemen. Three speedboats approached the vessel, crossing the bow several times. The vessel altered its course an", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.928333300175666, 14.596666699868649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-102", + "dateofocc": "2008-04-14", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 14 Apr 08 at 1622 UTC while underway in position 15-17N 052-23E, 41NM east southeast of Qishn, Yemen. Four suspicious crafts were approaching the vessel from the port bow at a distance of 3NM. The vessel c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.383333300164281, 15.283333300133563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-103", + "dateofocc": "2008-04-12", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Container Ship", + "descriptio": "GULF OF ADEN:Container ship reported suspicious approach 12 Apr 08 at 0511 UTC while underway in position 14-33.6N 050-32.2E, 81NM east of Al Mukalla, Yemen. Two suspicious crafts traveling at 17kts approached the vessel. The master took evasive maneuver", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.53666669975388, 14.559999999844933] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-104", + "dateofocc": "2008-04-09", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 09 Apr 08 between 1720-1745 UTC/2020-2040 local time while underway in position 13-57.5N 051-13.1E, approximately 125NM southeast of Al Mukalla, Yemen. A suspicious craft was picked up on radar approximate", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.218333299762378, 13.958333299618573] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-105", + "dateofocc": "2008-04-08", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker Vessel", + "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 08 Apr 08 at 0700 UTC while underway in position 14-30N 051-52E, 56NM south of Qishn, Yemen. Suspicious boats approached and circled the vessel three times in 20 minutes. At first, one boat circled the ves", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.866666699626023, 14.500000000364594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-106", + "dateofocc": "2008-04-07", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 07 Apr 08 at 0900 local time while underway in position 15-06N 052-55E, 74NM southeast of Qishn, Yemen. One fishing boat approached the vessel. The boats showed white flags and asked for food. The vessel a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.9166667004244, 15.099999999664533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-107", + "dateofocc": "2008-04-05", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious boat 05 Apr 08 at 0800 UTC, while underway in position 14-19.8N 050-16.0E, 60NM southeast of Al Mukalla, Yemen. An unidentified speedboat with a white hull, transporting three to four persons, was traveling from th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.26666670029374, 14.329999999738561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-108", + "dateofocc": "2008-03-31", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Fishing vessel", + "descriptio": "GULF OF ADEN:Fishing vessel boarded, skiffs stolen 31 Mar 08 while in position 12-10N 052-10E, Abd Al-Kuri Island, Yemen. Pirates armed with guns attacked and boarded the vessel. They shot and injured the master on his left shoulder, stole three zodiac b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.166666699725624, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-171", + "dateofocc": "2008-04-02", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "MARTINIQUE:Yacht boarded, robbed 2 Apr 08 in the evening, Anes Mitan. The vessel was robbed while the crew slept (Operator: safetyandsecuritynet.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.999999999828731, 14.500000000364594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-109", + "dateofocc": "2008-04-05", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "INDIA:Product tanker (SAMPURNA SWARAJYA) boarded, robbed 05 Apr 08 at 0330 local time while at anchorage in position 09-57.1N 076-04.8E, Port of Kochi. Six robbers armed with knives boarded the vessel at the forecastle using hooks and ropes. The crewmemb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.079999999712072, 9.951666699929774] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-110", + "dateofocc": "2008-04-02", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:Container ship boarded, robbed 02 Apr 08 at 0500 local time, Chittagong anchorage B. Robbers boarded the vessel. They broke the aft store padlock and stole ship¿s stores. The port authority and ships in vicinity were informed by VHF (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.599999999890201, 22.416666699887685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-112", + "dateofocc": "2008-04-13", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:Chemical tanker (MONALISA) boarded, robbed 13 Apr 08 at 0355 local time while underway in position 03-16.18N 105-26.68E, off Pulau Jemaja. While en route from Pasir Gudang, Malaysa to Nhabe, Vietnam, five pirates armed with long knives in a spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.444722199911496, 3.269722200226965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-111", + "dateofocc": "2008-04-17", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:Chemical tanker (UBT BAY) boarded, robbed 17 Apr 08 at 0155 local time while awaiting berth in position 03-56.31N 098-46.14E, Belawan Anchorage. Four robbers armed with knives boarded the vessel at the forward part of the ship from a small boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.768888900066599, 3.938611099743468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-113", + "dateofocc": "2008-04-13", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:Bulk carrier boarded, robbed 13 Apr 08 at 0205 local time while underway in position 03-13N 105-26E, off Pulau Mangkai. Twelve pirates in a speedboat, armed with guns, swords, and iron bars approached the vessel. The master raised the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.433333299946355, 3.216666699806353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-114", + "dateofocc": "2008-01-20", + "subreg": "97", + "hostility_": "Unknown", + "victim_d": "General Cargo Ship", + "descriptio": "EAST CHINA SEA:General cargo ship (CAPTAIN USKOV) reported missing, last located 20 Jan 08 at 0330 local time, 221NM east of Port Shanghai, per 14 Apr 08 reporting. The vessel departed Nakodka, Russia for Hong Kong, China on 15 Jan 08 with a cargo of ste", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.533333300326603, 31.083333300284835] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-115", + "dateofocc": "2008-04-14", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:Bulk carrier boarded 14 Apr 08 at 0340 local time, Lagos anchorage. Five robbers armed with knives boarded the vessel. They took one crewmember hostage, tied his hands and feet and injured another crewmember. The alarm was raised and the crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-116", + "dateofocc": "2008-04-21", + "subreg": "62", + "hostility_": "Pirate Hijacking", + "victim_d": "Cargo Dhow", + "descriptio": "SOMALIA:Cargo Dhow (AL-KHALEEJ) hijacked, rescued, pirates apprehended 21 Apr 08, approximately 5NM off Port Bossaso. The vessel was sailing from Dubai, UAE to Bossaso when seven pirates posing as thirsty fishermen came alongside the vessel asking for dr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.183333299701019, 11.366666699665245] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-117", + "dateofocc": "2008-04-21", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "VLCC Tanker", + "descriptio": "GULF OF ADEN:VLCC tanker (TAKAYAMA) fired upon 21 Apr 08 at 0110 UTC (reported by IMB), 0230 UTC (reported by operator), while underway in position 13-00N 049-07E, approximately 240NM east of Port of Aden, Yemen. Five speedboats chased and opened fire at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.116666699761936, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-118", + "dateofocc": "2008-04-20", + "subreg": "61", + "hostility_": "Pirate Hijacking", + "victim_d": "Fishing Vessel", + "descriptio": "GULF OF ADEN:Fishing vessel (PLAYA DE BAKIO) hijacked 20 Apr 08 at 1300 local time/1100UTC, 215NM off the coast of Somalia. The vessel was reportedly seized in international waters while fishing for tuna by four pirates armed with grenade launchers. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.516666699659652, 5.10000000024047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-251", + "dateofocc": "2006-10-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Chemical tanker boarded 18 Oct, at 2000 local time in position 22:12.10N-091:40.50E, Chittagong b anchorage, Bangladesh. Robbers boarded the chemical tanker and stole from the ship's stores. Authorities were informed and promised to send a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.67500000013996, 22.201666699651412] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-252", + "dateofocc": "2006-10-18", + "subreg": "63", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Chemical tanker boarded 18 Oct, at midnight local time in position 22-12.10N 091-40.50E, Chittagong b anchorage, Bangladesh. During routine rounds, the crew on the chemical tanker spotted a robber onboard and chased him. The robber jumped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.67500000013996, 22.201666699651412] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-253", + "dateofocc": "2006-10-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded 9 Oct, at 0755 local time in position 06-44S 039-20E, Dar es Salaam pilot station, Tanzania. Six robbers boarded the container ship and stole goods from two containers (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.733333299750996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-254", + "dateofocc": "2006-10-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "SRI LANKA: Suspected LTTE attempted to launch seaborne suicide attack on Dakshina Naval base,18 Oct 0745 local time, Galle. The suspected LTTE boats tried to enter the Naval base, by mingling in with local fishing vessels. A Sri Lankan Navy Spokesman s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.213888899794767, 6.028333300252484] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-255", + "dateofocc": "2006-10-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "SRI LANKA: Sri Lanka navy destroys LTTE boats 20 Oct, off N Jaffna peninsula. The Sri Lankan navy destroyed two Tigers of Tamil Eelam LTTE boats off a northern island, killing all six rebels. The latest clash took place near the government-controlled", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.983333300337392, 9.683333299772585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-256", + "dateofocc": "2006-10-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "SRI LANKA: Sri Lankas Navy sank a suspected Liberation Tigers of Tamil Eelam (LTTE) trawler along the islands northwest coast, 15 Oct. The suspected LTTE trawler was flying a Sri Lankanflag and was transporting a large shipment of arms cargo off the Ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [81.316666700263681, 8.3166666997015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-257", + "dateofocc": "2006-10-18", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PHILIPPINES: Pirates kill fishermen 18 Oct, approximately 0500 local time, off the southern Philippine province of Zamboanga del Sur. A group of pirates attacked eight fishermen in Malabago bay in the early morning killing four fishermen. The fisherme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.450000000425575, 7.816666700134988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-259", + "dateofocc": "2006-10-25", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "TRINIDAD/TOBAGO: Fishing vessel was boarded and robbed, crewmember shot, 25 Oct, off Palo Seco, Pt Erin. The fisherman was shot in the abdomen by pirates, who plundered his boat. The fisherman was able to make a call that night on his cell phone, that", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.645833299739422, 10.055555600142952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-260", + "dateofocc": "2006-11-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "NIGERIA: Oil-prospecting ship boarded, two crewmembers kidnapped 2 Nov, Bayelsa Niger Delta. The hostages were kidnapped by armed attackers from an oil industry ship, off the coast ofNigerias southern state of Bayelsa. The gunmen came in six boats, in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.005555600146863, 4.066666700238557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-261", + "dateofocc": "2006-10-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Chemical tanker boarded and robbed 25 Oct, at 0515 local time, Dar es Salaam anchorage. Robbers boarded the chemical tanker via anchor chain. The robbers stole from the ships stores and escaped. The masters attempt to contact port control w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-262", + "dateofocc": "2006-11-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:In the evening of 1 NOV 06 at 19:30, when the office was calling the ship the Master declared that the ship is hijacked by 6 armed Somalia citizens. They instructed the Master to sail in direction to the next en-route north destination in Somali", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.733333299968933, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-118", + "dateofocc": "2007-05-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo dhow (AL AQEEQ) hijacked 24 May at 1700 local time near Mogadishu. No additional information is available at this time (SAP, LM).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-119", + "dateofocc": "2007-05-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo vessel (VICTORIA) attacked 19 May in the afternoon, while underway, 60NM off the coast. Pirates attacked the UN World Food Program (WFP) chartered vessel, while it was enroute to Kismayo from Merca. The Jordanian-registered vessel sent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.500000000435477, 0.66666670030844] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-120", + "dateofocc": "2007-05-25", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Tanker (KUDAM) reported attempted boarding 25 May at 0315 UTC, while anchored in position 1-19.3N 104-16.3E, approximately 3NM southwest of Pulau Mungging. The tanker was approached by one small boat with eight men, who attempted boarding fr", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.271666699598597, 1.321666699731622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-121", + "dateofocc": "2007-05-09", + "subreg": "92", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TUGBOAT", + "descriptio": "PHILIPPINES: Tug reported attempted boarding 9 May at 1800 local time, while underway in position 07-47N 120-21E, Sulu Sea. Fifteen armed pirates wearing face masks in a speedboat approached the tug, as it was towing a barge. The speedboat closed to", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.349999999695797, 7.783333300340701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-122", + "dateofocc": "2007-01-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: LPG tanker boarded and robbed 7 Jan at 2145 local time, while at berth in position 02-59.1S 104-05.2E, Pertamina Jetty 4, Plaju (per 22 May reporting). Three robbers in a motorboat boarded the LPG tanker. They were noticed by the duty AB an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.086666700001786, -2.984999999881609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-123", + "dateofocc": "2007-05-08", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Container ship boarded and robbed 8 May at 1343 local time in position 10-15.6N 107-04.9E Vung Tau anchorage, Ho Chi Minh Port. Five robbers boarded the container ship via the anchor and broke open the forecastle store. They were spotted by th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.081666699842344, 10.259999999615957] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-124", + "dateofocc": "2007-05-25", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: Tanker reported attempted boarding 25 May at 0315 local time, while underway in position 01-19.3N 104-16.3E. Robbers in a speedboat tried to board the tanker from the stern. Upon seeing the robbers, the anti-piracy watch keeper inf", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.271666699598597, 1.321666699731622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-125", + "dateofocc": "2007-05-23", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Product tanker boarded, robbed 23 May at 0310 local time, while at anchor in position 10-15.30N 107-05.06E, Vung Tau. Duty crew spotted robbers boarding the vessel and informed the D/O, who raised the alarm and mustered the crew. The robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.084444399821336, 10.255000000258804] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-126", + "dateofocc": "2007-05-22", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "THAILAND: Tanker hijacked 22 May while underway in position 07-45N 102-02E, Gulf of Thailand. At the time of the incident, the tanker was transporting 100,000 liters of fuel oil to supply fishing vessels at sea. A pirate, who was reportedly a former", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.033333300016238, 7.750000000371131] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-127", + "dateofocc": "2007-05-21", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN CRAFT", + "descriptio": "SOMALIA: Tanker reported suspicious approach 21 May at 2300 local time, while underway in position 07-08N 054-36E. An unidentified small craft followed the tanker from a distance of 7 miles. The tanker altered its course and increased its speed to d", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.599999999592967, 7.133333300274728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-128", + "dateofocc": "2007-05-20", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA: General cargo ship reported suspicious approach 20 May at 0330 local time, while underway in position 02-55N 046-04E, 300NM from the coast. The vessel observed an unlit craft at a distance of 3 miles. When called on VHF they replied that they", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.066666699798191, 2.916666699706752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-272", + "dateofocc": "2007-10-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "INDIA:Product tanker boarded, robbed 18 Oct 07 at 0200 local time in position 22-49.0N 070-04.5E at Kandla outer Tuna buoy. Robbers boarded the vessel unnoticed and stole items from the crews smoking room. The incident was reported to port control so the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.075000000160856, 22.81666669972077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-273", + "dateofocc": "2007-10-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA:Bulk Carrier boarded, robbed 10 Oct 07 at 0130 local time in position 17-03.5N 082-27.7E, Kakinada anchorage. Three robbers boarded the vessel via the stern using grappling hooks. The duty AB spotted them and informed the officer on watch. The alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.461666699639693, 17.058333300348352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-274", + "dateofocc": "2007-10-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "BANGLADESH:General cargo vessel boarded, robbed 12 Oct 07, TSP Jetty, Chittagong port. Five robbers boarded the vessel from the stern. They stabbed the duty watchman and stole from the ships stores. The duty officer raised the alarm and the robbers esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-275", + "dateofocc": "2007-10-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SHATT AL ARAB:Container ship boarded, robbed, shots fired 16 Oct 07 at 0145 local time while underway in position 30-06N 048-24E, inside Shatt Al Arab River. The vessel was approached by a speedboat while enroute to Khoramshahr Port in Iran. The duty AB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.399999999932049, 30.100000000149635] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-276", + "dateofocc": "2007-10-19", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CONTAINER VESSEL", + "descriptio": "STRAIT OF MALACCA:Container vessel reported suspicious approach 19 Oct 07 at 0600 local time while underway in position 04-07.4N 099-52.0E, northwest of Pulau Perak. The duty officer on the vessel saw the beams of flashlight on deck. As no crewmembers we", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.866666700278984, 4.12333329966475] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-277", + "dateofocc": "2007-10-17", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PHILIPPINES:Container ship boarded, robbed 17 Oct 07 at 0230 local time at Manila anchorage. Robbers boarded the vessel and stole the forward life raft and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.920000000154914, 14.553333299561359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-278", + "dateofocc": "2007-10-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "Indonesia:A seaman spotted several robbers on the forecastle when he was sent forward to look for the duty O/S who was not responding to calls on the radio. The robbers had caught and tied up the duty O/S. Alarm raised and crew alerted. On hearing the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.79500000022631, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-279", + "dateofocc": "2007-10-21", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN:While underway, a chemical tanker was warned by vessels ahead of her about unlit boats that had failed in approaching them. The master of the chemical tanker rased the alarm, mustered the crew on the bridge and briefed them. The target boats", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.216666700362339, 13.233333300202162] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-280", + "dateofocc": "2007-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN:An undesignated distress was received from a chemical tanker underway. Thereafter, there has been no communication with the tanker. The owners and the piracy reporting center have been unable to contact the vessel. Information from the coali", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.399999999996737, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-281", + "dateofocc": "2007-10-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BRAZIL:(Santos Outer Roads Anchorage) Robbers armed with guns boarded a container ship and fired their guns at the approaching crew members. For safety, crew members locked themselves in a safer place. Robbers opened 8 reefer containers and stole cargo c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.333333300312177, -24.166666699928157] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-282", + "dateofocc": "2007-10-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "NIGERIA:(OFF LAGOS APAPA LIGHTERING AREA) Two robbers boarded a product tanker during STS operation at anchor. They tied up two crew members and stole cash and valuables from one crew. During encounter one seaman received minor injury. Master activated s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-283", + "dateofocc": "2007-10-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "SOMALIA:The North Korean-flagged general cargo vessel (DAI HONG DAN) infiltrated on the evening of 29 Oct while in port Mogadishu. An allegedly corrupt security detachment hired by a Mogadishu shipping agent boarded the vessel prior to its departure from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.799166699566968, 2.192777800067006] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-119", + "dateofocc": "2008-04-16", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 16 Apr 08 between 0600-1000 local time while underway in position 14-26N 050-30, 87NM southwest of Qishn, Yemen. Five speedboats, with three persons on each boat, chased the ship. The vessel took eva", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 14.433333299701417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-120", + "dateofocc": "2008-04-16", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker Vessel", + "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 16 Apr 08 at 0640 UTC while underway in position 14-02.0N 050-35.9E, 104NM southwest of Qishn, Yemen. The ship was approached and trailed by two 15-meter boats. One boat had three persons on it with a yell", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.598333300335867, 14.033333299868332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-264", + "dateofocc": "2006-11-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Bulk Carrier (VEESHAM I) hijacked 1 Nov and freed 7 Nov, Central East Coast. The vessel departed El Maan 1 Nov at 1300, en route to Dammam, Saudi Arabia with a cargo of charcoal. The vessel missed its 1900 check-in call, at 1930 the office ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.733333299968933, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-303", + "dateofocc": "2007-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "BEIRA PORT, MOZAMBIQUE:0400 LT: Robbers boarded a container ship at berth and stole ship's stores amid tight anti piracy watches. The ship had shore security personal deployed by the port security. In addition, there were armed security guards on the sho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.833333300181266, -19.820555600312218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-121", + "dateofocc": "2008-04-06", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Civilian Yacht", + "descriptio": "ERITREA:Yacht reported suspicious approach 06 Apr 08 at 1315 (not specified UTC or local time), while underway in position 16-36.42N 39-18.06E, 79NM northeast of Asmara. The vessel was headed towards Difnein Island at 7.5-8kts. A large Eritrean fishing b", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [39.301111099684249, 16.606944400297039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-122", + "dateofocc": "2008-04-11", + "subreg": "91", + "hostility_": "Pirate Boarding", + "victim_d": "General Cargo Ship", + "descriptio": "PHILIPPINES:General cargo ship boarded, robbed 11 Apr 08 at 1550 UTC while at anchorage in position 14-31.1N 120-50.3E, Manila Bay. Three robbers armed with knives boarded the vessel via the anchor cable and breaking the hawse pipe cover securing. Two-du", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.838333299621695, 14.518333299564745] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-123", + "dateofocc": "2008-04-16", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "General Cargo Vessel", + "descriptio": "INDONESIA:General cargo vessel boarded, robbed 16 Apr 08 at 0630 local time while at anchorage in position 06-01.9S 106-53.8E, Tanjung Priok. The ship¿s crew noticed robbers on board the vessel just after anchoring. The robbers had broken into the safet", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.896666700245532, -6.031666699615926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-124", + "dateofocc": "2008-04-17", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Unknown Vessel", + "descriptio": "NIGERIA:Vessel boarded 17 Apr 08 at 0455 local time while at berth at Apapa/Tin Can Island. Ten robbers in two speedboats boarded the vessel. They broke open the paint store and stole ship's stores. The alarm was raised and the ship's crew locked themsel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.390555600012874, 6.436388899821281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-125", + "dateofocc": "2008-04-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Container ship boarded, robbed 22 Apr 08 at 0315 local time, Anchorage no. 1, Dar es Salaam anchorage. Eight robbers armed with knives boarded the vessel. Before the duty watch could contact the bridge to warn them, the robbers tied them up. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-126", + "dateofocc": "2008-04-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Container ship boarded, robbed 22 Apr 08 between 1715-1855 local time, while at anchorage in position 06-41S 039-42E, 30NM off Dar es Salaam. Eight robbers armed with long knives boarded the vessel. They stole ship's stores, broke open two conta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.699999999740612, -6.683333299884282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-127", + "dateofocc": "2008-04-30", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 30 Apr 08 at 2005 local time/1605 UTC while underway in position 14-51.9N 054-14.8E, 125NM south of Port Salalah, Oman/130NM north of Socotra. Two speedboats traveling at approximately 15.5knts approached", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.246666700296544, 14.865000000201007] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-263", + "dateofocc": "2006-11-01", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARGENTINA: Merchant vessel robbed 1 Nov, Parana River, San Nicolas, Buenos Aires. The vessel was boarded by 17 pirates, who proceeded to destroy the communication equipment. The pirates also broke into the containers, taking dozens of DVD players and vi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VI" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.333333299800927, -33.333333299891763] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-265", + "dateofocc": "2006-11-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: General cargo ship (AGNES SCAN) attempted boarding 5 Nov, at 0730 UTC, while underway in position 04-09S 099-38E. Pirates in a 12 meter wooden boat, with blue hull and yellow wheelhouse, approached the general cargo ship, with an in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.633333300118466, -4.150000000283512] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-266", + "dateofocc": "2006-11-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA: LPG tanker robbed 09 Nov, at 0200 UTC in position 08-45.8S 013-16.8E, Luanda Anchorage. Two robbers in a small open boat boarded the LPG tanker, at the forecastle. The robbers broke into the bosuns store and compressor room. The alert crew r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.279999999839504, -8.763333299555825] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-267", + "dateofocc": "2006-11-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: Refrigerated cargo ship robbed 13 Nov, at 0010 UTC in position 05-36.4N 000-02.9E, Tema Outer Roads. Ten robbers armed with knives boarded the vessel, at anchor. The robbers over powered a crew member and assaulted him. However, the crew memb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.048333300184993, 5.6066667000905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-268", + "dateofocc": "2006-11-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "NIGERIA: Militants in speedboats attack oil facility 15 Nov, Lagos. Reports vary between 11 to as many as 30 armed men attacked Oporoma station, owned by a subsidiary of Royal Dutch Shell at Nun River in Bayelsa state, trying to shut down the facility.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-269", + "dateofocc": "2006-11-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Offshore Supply Vessel (SURF VIKING) fired upon mid Nov 0030 local time, while underway in position 04-00.6N 006-42.5E. The vessel was 23 miles from its destination of Bony Signal, when the ship was shot at. The vessel increased speed, turned", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.774999999822512, 4.010000000088326] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-270", + "dateofocc": "2006-11-08", + "subreg": "61", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded 08 Nov, six miles off Dar es Salaam, Tanzania. One robber boarded the container ship, waiting to embark pilot. The alert crew raised the alarm and the robber escaped empty handed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.345000000417144, -6.690000000167799] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-271", + "dateofocc": "2006-11-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier robbed 08 Nov, Kutubdia Roads, Bangladesh. Ten robbers armed with steel bars and knives in a wooden boat, boarded the bulk carrier at the stern. The robbers brokeinto the lockers and stole from the ships stores. The duty offi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 21.86666669955514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-272", + "dateofocc": "2006-10-27", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "SOLOMON ISLANDS: Yacht robbed late Oct, Bita' ama in North Malaita. Approximately four men wearing masks boarded the yacht and forced the owner to hand over a sum of money. The robbers also stole the boats Global Positioning Navigation System as well", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [160.666666700086921, -8.500000000379202] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-273", + "dateofocc": "2006-11-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA:On 11-11-2006 at 0030 LT at Bahia de Robledal, Margarita, Venezuela, three robbers armed with guns boarded a sailing yacht, at anchor. Robbers tied two crew members back to back and stole all valuable items. There were no injuries to the crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.416666699655991, 11.066666699565587] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-274", + "dateofocc": "2006-11-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN", + "descriptio": "NIGERIA: Floating Production Storage and Offloading (FPSO) vessel boarded and seven hostages were taken 22 Nov, approximately 30 miles off the coast of Nigerias Rivers State. Twenty-five foreign workers and nearly sixty Nigerians employees were aboard a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.083333300375671, 4.299999999674981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-129", + "dateofocc": "2007-05-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SOMALIA: Fishing vessel (QING ZI HAO) hijacked 16 May off the coast. The vessel set sail from Koahsiung, Taiwan in Feb 2006 and had a crew of four Taiwanese and eight Chinese sailors onboard, however the current makeup of the crew is unknown. The vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.000000000131308, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-130", + "dateofocc": "2007-04-26", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "Sprattly Islands, SOUTH CHINA SEA:Armed pirates boarded a fishing vessel and robbed it of its catch, while it was taking shelter due to engine trouble. The master informed his family; about the robbery and that another vessel was approaching it. All cont", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.916666699634447, 9.566666699966788] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-131", + "dateofocc": "2007-06-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Support vessel (SEACOR) attacked and hostages taken 2 Jun in the evening, while at anchor off Port Harcourt. Two Filipino employees, of West Africa Offshore drilling, were taken from the vessel by gunmen. The hostages were rescued four hours", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.455555599781974] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-132", + "dateofocc": "2007-05-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship reported attempted boarding 31 May at 2243 UTC, while drifting in position 06-50.2S 039-37.3E, 22NM off Dar es Salaam Pilot Station. Pirates, in two boats with ten persons in each boat, attempted to board the container ship,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.621666700160802, -6.836666700437888] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-133", + "dateofocc": "2007-06-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo vessel (DANICA WHITE) hijacked likely on 01 Jun, at an estimated distance of 205 NM off the central east coast of Somalia. The U.S. dock landing ship (CARTER HALL) had been on patrol in international waters under operational control of C", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.033333300133222, 1.833333300013351] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-134", + "dateofocc": "2007-05-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Container ship boarded and robbed 30 May at 0400 local time in position 01-18.90N 104:07.70E, Johor Anchorage. Six robbers armed with knives boarded the vessel and forced their way into the engine room, by breaking the padlocks on the doors.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.12833329955788, 1.315000000347368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-135", + "dateofocc": "2007-04-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Tanker (MAJULLAH JASMINE) boarded and robbed 21 Apr at 1930 local time, while underway in position 01-25N 104-20E, 2.5NM east of Tanjung Punggai (per 2 Jun reporting). Ten masked robbers, armed with pistols and long knives, boarded the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.333333300180527, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-136", + "dateofocc": "2007-05-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:Four armed pirates in military fatigues boarded a refrigerated cargo ship, in berth no. 4 at Port Harcourt. The pirates boarded the cargo ship via the quayside accommodation ladder, at 2120 LT. Duty AB tried to inform the D/O. The pirates assault", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.008333300158256, 4.76166669991477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-137", + "dateofocc": "2007-06-07", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:At 2240 UTC,the duty crew on an anchored tanker, at Lawi-Lawi Anchorage of Balikpapan, noticed two robbers, on the forecastle deck. The D/O on the bridge was alerted and the alarm raised. The robbers jumped overboard and escaped in a speedboat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.466666700183282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-138", + "dateofocc": "2007-06-06", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:At 0300 UTC, a bulk carrier, underway and 315 NM SE of Mogadishu, spotted a fishing vessel at about 12 NM. The fishing vessel was on a converging course with the bulk carrier. The master of the bulk carrier altered course away from the fishing ve", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.510277799886296, -1.34111109981643] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-284", + "dateofocc": "2007-10-27", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CONTAINER VESSEL", + "descriptio": "SOMALIA:Container ship reported suspicious approach, 27 Oct 07 at 1940 local time in position 00-48.8N 053-49.4E. The officer of the watch noticed a suspicious craft on radar and proceeded at 6 KTS. He altered course to starboard and the craft did the sa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.823333300282798, 0.813333299854492] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-285", + "dateofocc": "2007-10-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "MOZAMBIQUE:Container ship boarded, robbed 26 Oct 07 at 0130 local time, Nacala anchorage. Bandits boarded the vessel and stole ships stores. The vessel contacted port control but received no response (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.649999999906242, -14.550000000439979] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-286", + "dateofocc": "2007-10-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "MOZAMBIQUE:Container ship reported attempted boarding, 26 Oct 07 at 0410 local time, Nacala anchorage. Bandits in two boats attempted to board the vessel. Anti-piracy crew activated fire hoses at the boats and the bandits aborted the attempt (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.649999999906242, -14.550000000439979] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-287", + "dateofocc": "2007-10-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER VESSEL", + "descriptio": "0330 LT: Lagos, Nigeria:Three pirates armed with knives boarded a tanker drifting. They took hostage the duty A/B and O/S and tied them up. They threatened the O/S with knives on his throat and asked him to open the accommodation doors but the O/S did no", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.249999999775923, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-288", + "dateofocc": "2007-10-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Reefer Vessel", + "descriptio": "2120 LT: 15 NM off fairway bouy, Bonny Town, Nigeria:Ten robbers armed with guns boarded a reefer vessel. Alarm raised and crew mustered. Robbers escaped. Attempt to contact Bonny signal station were futile.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.838333300431543, 3.993333300191125] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-289", + "dateofocc": "2007-10-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "2315 LT: Offshore Lagos, Nigeria:Robbers armed with knives boarded a tanker at anchor. They took as hostage on AB. They tied him up and warned him not to make any attempt to escape. They stole some ship's store. Robbers then took the AB into the accommod", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.166666700036672] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-290", + "dateofocc": "2007-10-04", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker Vessel", + "descriptio": "0130 LT: Hoogli River, Sagar Roads anchorage, India:Six robbers armed with knives boarded a chemical tanker at anchor, via the poop deck. Crew raised alarm and activated anti-piracy measures. Robbers jumped overboard and escaped, with ship's stores, in t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.016666700390374, 21.666666700088285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-291", + "dateofocc": "2007-11-01", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "General Cargo Vessel", + "descriptio": "1320 LT: Malacca Straits:A small-unlit high-speed craft came close to a general cargo ship underway. Master switched on all deck lights, assembled all crew, and closed all entrances to the accomodation. Fire hoses standby and search lights directed towar", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [102.158333300132711, 1.875000000293539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-292", + "dateofocc": "2007-10-31", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "0410 LT: Dar es Salaam, Tanzania:Ten pirates in a 10m long wooden boat boarded a container ship drifting. They broke into three containers, stole ship's stores, property and escaped as soon as the crew was alerted. Port control informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.449999999669387, -6.833333300383742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-293", + "dateofocc": "2007-10-28", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "2015 LT: Chittagong anchorage, Bangladesh:Duty AB on a tanker noticed three robbers armed with knives on poop deck. He informed D/O on bridge who raised alarm and flashed the Aldis lamp towards the robbers. Robbers jumped overboard and escaped. Some ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 21.666666700088285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-294", + "dateofocc": "2007-11-01", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "GUYANA:Fishing vessels attacked, robbed 01 Nov 07 at 0830 local time off the Corentyne coast. A band of armed, masked pirates raided five Guyanese fishing vessels, stripping them of their engines and other equipment before ferrying the fisher folk to Sur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.999999999731699, 7.999999999704698] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-144", + "dateofocc": "2008-05-17", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Cargo ship", + "descriptio": "0905 LT: 02-13.19N 046-49.38E, Costal waters off Somalia:Pirates boarded and hijacked a general cargo ship underway. Ship was on passage to Mogadishu, Somalia. Further details awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.823055600205635, 2.219722200327908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-295", + "dateofocc": "2007-11-08", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 08 Nov 07 at 0400 local time, while underway in position 13-48N 053-45E, north of Socotra Island. While the vessel was traveling at 16.5 KTS, an officer aboard the vessel noticed one unlit target 3NM of th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.750000000060083, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-128", + "dateofocc": "2008-04-28", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier fired upon 28 Apr 08 at 1110 UTC while underway in position 12-38N 048-47E, approximately 70NM northwest of Caluula, Somalia. The vessel was reportedly shot at with machine guns and a rocket propelled grenade by two small boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.783333299867991, 12.633333300002903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-129", + "dateofocc": "2008-04-26", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "General Cargo Vessel", + "descriptio": "GULF OF ADEN:General cargo ship reported suspicious approach 26 Apr 08 at 1045 local time while underway in position 14-30.5N 051-55.1E, 50NM off Yemen coast. Two suspicious speedboats traveling at 20kts approached the vessel. The master raised the alarm", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.918333299695064, 14.508333299951119] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-130", + "dateofocc": "2008-05-01", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 1 May 08 at 1515 UTC while underway in position 13-09N 050-22E, approximately 75NM north of Caluula, Somalia. Suspicious speedboats chased the vessel. The speedboats moved away. Vessel continued passage to", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.366666700027167, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-131", + "dateofocc": "2008-04-22", + "subreg": "63", + "hostility_": "Attempted Boarding", + "victim_d": "Research Vessel", + "descriptio": "INDIA:Research vessel reported attempting boarding 22 Apr 08 at 0430 local time, Mumbai anchorage. Four robbers in a motor boat attempted to board the vessel, however, the attempt failed due to a strict anti-piracy watch (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [72.833333299611525, 19.033333300029994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-132", + "dateofocc": "2008-04-24", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "PERSIAN GULF:Cargo vessel (WESTWARD VENTURE) reported suspicious approach, warning shots fired 24 Apr 08 at 0800 local time. The vessel was approached by two unidentified small boats. Following procedure, the vessel issued standard queries to the small b", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.549999999629222, 26.899999999686429] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-133", + "dateofocc": "2008-04-21", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Tanker Ship", + "descriptio": "VIETNAM:Tanker boarded 21 Apr 08 at 0230 UTC, Vung Tau Song Go Gia STS anchorage. Robbers boarded the vessel from the forecastle. They broke open the forward storeroom and stole ship¿s stores. The duty crew spotted the robbers and raised the alarm. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.333333299838614] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-134", + "dateofocc": "2008-04-25", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:Product Tanker (PATARAVARIN 2) boarded, robbed 25 Apr 08 at 0020 local time while underway in position 01-31.00N 104-24.50E, approximately 10NM east of Tg Penawar. The vessel was carrying a cargo of jet fuel while underway towards the port of Ph", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.408333300430286, 1.516666699841323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-135", + "dateofocc": "2008-04-27", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Refrigerated cargo ship", + "descriptio": "TOGO:Refrigerated cargo ship boarded, robbed 27 Apr 08 at 2145 UTC while at anchorage in position 06-05N 001-17E, Lome. Six armed robbers boarded the vessel via the forecastle. When spotted by the crew, the robbers jumped overboard and escaped. Ship stor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-136", + "dateofocc": "2008-05-03", + "subreg": "57", + "hostility_": "Suspected Pirates", + "victim_d": "Unknown Vessel", + "descriptio": "NIGERIA: Unidentified militants attack ship, hostages taken 03 May 08 at 1100 local time, 15NM northwest off the Bonny coast in Rivers State. Attackers in five speedboats attacked a yet to be identified ship and took the captain and the engineer hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.131666700072401, 4.663888899734729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-137", + "dateofocc": "2008-05-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk carrier", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 01 May 2008 at 1605 UTC while underway in position 14-51.9N 054-14.8E, 65NM east of Al Mukalla, Yemen. Two speedboats crossed the bow of the vessel. The alarm was raised and the crew mustered and to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.246666700296544, 14.865000000201007] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-138", + "dateofocc": "2008-04-28", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk carrier", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 28 Apr 08 at 2203 local time while underway in position 14-15.5N 050-11.8E, 145NM east of Qishn, Yemen. The vessel observed on radar three speedboats approaching at high speed. The alarm was raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.196666700300455, 14.258333299718231] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-275", + "dateofocc": "2006-11-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded 16 Nov at 0335 local time, drifting in position 06-42.5S 039:39.9E 20nm ENE from Dar es Salaam Harbor Entrance. Fifteen armed pirates in a boat approached the container ship, which was waiting for a berth. One of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.664999999743998, -6.70833330026727] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-276", + "dateofocc": "2006-10-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "PERSIAN GULF: Fishing vessel (SALIS) attacked 19 Oct (per 16 Nov reporting) near position 28-47.01N 049:28.42E, LuLu oilfield. The Saudi registered fishing vessel was attacked by three masked armed robbers with a pistol and machine gun. The robbers bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.47361109986258, 28.783611099796019] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-277", + "dateofocc": "2006-11-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded 20 Nov, at 0130 local time Dumai Inner Anchorage. Six robbers, armed with knives, boarded the bulk carrier and attempted to overcome the shore watchman, who raised the alarm. The duty officer and crew rushed to assist.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.464444400233162, 1.688888900020743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-278", + "dateofocc": "2006-11-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier robbed 15 Nov, Belawan port, Indonesia. While berthed, about seven robbers boarded the bulk carrier via the gangway, by mingling among the stevedores. They broke open the store using steel bars and stole from the ships stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.710555599714041, 3.791111100271564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-279", + "dateofocc": "2006-11-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT:In position 04-41N 098-42E at 271740Z NOV. Pirates in small boat approached a bulk carrier underway at high speed. D / O raised alarm, crew mustard, and activated fire hoses. Ship took evasive action and the attempted boarding was averte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 4.683333299610922] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-280", + "dateofocc": "2006-11-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:On 14-Nov-2006 at 0750 LT at Tg. Priok, Jakarta, three boats approached a container ship, at anchor from stern. Robbers from two boats boarded and entered engine room. Alarm was raised but robbers managed to escape with stolen engine spares (IM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.891666699989059, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-281", + "dateofocc": "2006-11-11", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZEULA: Yacht (LADY ANN) robbed 11 Nov around midnight, in position 11-01.5N 64-22.7W, Isla Margarita. Three gunmen in a small boat approached the yacht and boarded holding a couple hostage for three hours, while they ransacked the boat and stole e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.378333299605231, 11.025000000184775] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-282", + "dateofocc": "2006-11-25", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "ECUADOR: Sailing vessel (ROBINS NEST) attacked by unknown vessel 25 Nov, 80nm NW of Esmeraldas. The (ROBIN'S NEST) issued a mayday call (picked up by the (USS ROBERT G BRADLEY) and US Coast Guard Communication Area Master Station Atlantic (CAMSLANT)) re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.641666699990992, 0.997222199674582] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-283", + "dateofocc": "2006-11-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded was robbed 24 Nov, at 0400 local time in position 22:17.5N-091:43.3E Chittagong Outer Anchorage A, Bangladesh. Fifteen robbers armed with long knives boarded the bulk carrier and tied up two crewmembers. Three watchmen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.721666699777245, 22.29166669977127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-284", + "dateofocc": "2006-11-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 28 Nov at 2030 local time, while underway in position 12-25N 044-25E. The bulk carrier was underway when it detected an unlit craft on radar, at 5.5 miles off port bow. Suspicious craft closed di", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.416666699699874, 12.416666699564303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-285", + "dateofocc": "2006-11-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Bulk carrier reported attempted boarding 29 Nov at 0140 local time, while underway in position 04-41N 098-42E. The bulk carrier took evasive action to prevent boarding, in a small high powered craft tried to board at port beam. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 4.683333299610922] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-139", + "dateofocc": "2007-06-13", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Tanker reported suspicious approach 13 Jun at 0108 UTC, in position 03-05N 054-50E. Three boats approached the vessel on converging courses. As the ship altered its course, the boats adjusted their courses and continued to approach the ship.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.833333299928711, 3.083333300278639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-140", + "dateofocc": "2007-06-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded 10 Jun at 0522 local time in position 06-00.6S 106-53.2E, Jakarta anchorage. A few fishing boats diverted the attention of the watch keepers, while two robbers boarded the vessel using grappling hooks. The robbers stole two", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.886666699732586, -6.010000000361629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-141", + "dateofocc": "2007-06-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker (CAPE BRINDISI) boarded 22 Jun, in the morning, 20 miles off the coast at Pennington offshore terminal. The vessel was boarded by at least three militants armed with AK-47 rifles. The attackers fired their weapons in the air and then b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.483333300176355, 4.649999999641352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-142", + "dateofocc": "2007-06-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker boarded and robbed 16 Jun, at 0140 local time, Lagos Anchorage. Robbers boarded the vessel, while it was undergoing preparations for STS operations. The robbers armed with knives tied up the aft station watchman. The D/O noticed a smal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-143", + "dateofocc": "2007-06-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 20 Jun at 1930 local time/1630 UTC, in position 13-30N 052-00E, eastern most Gulf of Aden, midway between Somalia and Yemen. When the vessel observed the unlit craft approaching from the starboard bow,", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.00000000022834, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-302", + "dateofocc": "2007-11-05", + "subreg": "93", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "SOUTH CHINA SEA:2150: One suspicious boat followed a general cargo ship at a range of 100m for about an hour. Crew mustered and fire hoses with pressurised water jet standby and action taken to prevent any boarding. Later, master informed the Piracy Repo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.700000000335081, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-144", + "dateofocc": "2007-06-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Tanker (MUJUR SAMUDRA) boarded and robbed on 23 Jun at 2145 local time, while docking near Pulau Lima. Six robbers armed with machetes and pistols boarded the vessel from a speedboat and robbed eight crewmen of their belongings and cash, res", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.400000000041416, -3.49972219964269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-145", + "dateofocc": "2007-06-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded, crewmember held hostage 25 Jun at 1820 local time in position 01-51.5S 105-02.8E, while underway off northeast Bangka Island. Approximately eleven pirates, armed with long knives and shot guns boarded the vessel. Upon detectin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.046666699781042, -1.858333299705748] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-146", + "dateofocc": "2007-06-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier reported attempted boarding 23 Jun at 0240 local time, in position 03-41S 114-26:40E, Banjarmasin Coal Loading Anchorage. The duty watchman on the vessel sighted two intruders climbing up the anchor chain and three other personn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.439999999621591, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-147", + "dateofocc": "2007-06-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Ro-Ro ship boarded and robbed 1 Jul at 0700 local time, Chittagong Anchorage. Approximately 40 robbers armed with long knives and steel bars boarded the vessel. The alarm was raised; and the crew mustered and closed all access doors. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-296", + "dateofocc": "2007-10-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "SAILBOAT", + "descriptio": "MADAGASCAR:Sailboat boarded, robbed, crewmembers assaulted 19 Oct 07 at 0200 local time, Majunga harbour. Four robbers boarded the sailboat, assaulting the skipper and taking the skippers wife hostage before trying to strangle her. Both the skipper and h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.309722200072031, -15.727777800259275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-297", + "dateofocc": "2007-09-26", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "PHILIPPINES:Vessel boarded 26 Sep 07 at 0236 local time in position 14-36.4N 120-52.05E, Vic north harbor anchorage, Manila, per 08 Nov 07 reporting. Robbers boarded the vessel from starboard side using a grappling hook. They broke the forecastle store l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.867500000160021, 14.606666700381538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-298", + "dateofocc": "2007-11-09", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER VESSEL", + "descriptio": "PERSIAN GULF:0800 LT: A suspicious craft approached a tanker, underway, from the stern. Master sounded general alarm, increased speed, crew mustered and fire hoses standby. The speed boat closed to 0.1nm, and when it noticed crew alertness, aborted appro", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.766666699827908, 28.683333300387062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-299", + "dateofocc": "2007-11-08", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CAR CARRIER VESSEL", + "descriptio": "65 NM NORTH OF SOCOTRA ISLAND, SOMALIA:0400 LT: C/O onboard a car carrier, underway, noticed an unlit boat at 3NM off the port bow with a speed of 19 kts. The boat reduced speed to match the speed of the vessel. When the craft was about 1NM off master ra", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.750000000060083, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-300", + "dateofocc": "2007-11-06", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALACCA STRAITS:2130 LT: An unidentified small watercraft approached a chemical tanker underway. OOW raised alarm, souned ship's whistle, crew mustered anddirected searchlight at the craft. The craft came within 150 meters and aborted the attempt.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.769999999875608, 3.919999999968468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-301", + "dateofocc": "2007-11-06", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA:1800 UTC: A bulk carrier underway detected an unlit suspicious craft, on radar, approaching directly twards own vessel at a speed of 19 knots. Master took all preventive measures to prevent boarding. Suspicious craft reached 0.1 NM from vesse", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.516666700015378, 22.099999999890883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-304", + "dateofocc": "2007-11-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "CAMEROON:Ambush on Cameroon military by unidentified gunmen, military personnel killed 12 Nov 07, Bakassi Peninsula. Unidentified gunmen reportedly dressed in Nigerian military uniforms and traveling in seven speedboats ambushed a Cameroon military post.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.666666699667871, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-305", + "dateofocc": "2007-11-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSELS", + "descriptio": "NIGERIA:Unidentified militants in speedboats attack jetty area, victim killed, 12 Nov 07 in the early hours, the Qua Iboe Terminal, Akwa Ibom state. Approximately 50 gunmen dressed in red attire, traveling in seven to eleven speedboats with general purpo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.999999999704698, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-306", + "dateofocc": "2007-11-12", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "ARABIAN SEA:Vessel reported suspicious approach 12 Nov 07 at 2330 local time/1930 UTC in position 20:05.3N-064:49.1E. The vessel detected on radar an unidentified unlit suspicious craft. The vessels course was 308 and traveling at 15.6kts. The suspicious", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.818333300382051, 20.088333300185525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-139", + "dateofocc": "2008-05-04", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Chemical tanker", + "descriptio": "INDIAN OCEAN: Chemical tanker fired upon 04 May 08 around 1300 UTC while underway in position 01-00N 051-30E, 300NM from the east coast of Somalia. The IMB Piracy Reporting Center received a call from the vessel owner stating the tanker was fired upon b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.499999999762508, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-140", + "dateofocc": "2008-04-29", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Container ship", + "descriptio": "BANGLADESH:Container Ship (TABAGO BAY) reported suspicious approach 29 Apr 08 at 2310 local time while at anchorage in position 22-10.16N 091-46.88E, Chittagong Port. Between 10-12 people in an engine-driven wooden boat was near the vessel. The vessel mo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.781388899582055, 22.16944439963379] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-141", + "dateofocc": "2008-04-26", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH:Container Ship (MARTHA RUSS) boarded, robbed 26 Apr 08 at 1530 local time while at berth in position 22-10.16N 091-46.88E, Chittagong Port, per 2 Jun 08 reporting. Three robbers in a small boat boarded the ship and stole part of the hawser.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.781388899582055, 22.16944439963379] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-142", + "dateofocc": "2008-04-30", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tug boat", + "descriptio": "SOUTH CHINA SEA: Tug (PU 2008) boarded, robbed 30 Apr 08 at 2330 local time while underway in position 0-22N 104-24E, south of Pulau Tioman. The vessel towing barge (PU 3306) was underway from Vietnam to Singapore when six masked men armed with long kni", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.399999999944441, 2.366666700273527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-143", + "dateofocc": "2008-05-04", + "subreg": "61", + "hostility_": "Pirate attack", + "victim_d": "Chemical tanker", + "descriptio": "2215 LT: 01-00N 051-30E: Off Somalia:Two speedboats chased a chemical tanker underway. Pirates opened fire on the tanker. Master took evasive maneuvers and increased speed. Later, the boats aborted the chase. Ship continued her passage. No reported injur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.499999999762508, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-145", + "dateofocc": "2008-05-04", + "subreg": "51", + "hostility_": "Pirates", + "victim_d": "Container ship", + "descriptio": "LIBERIA: Container ship boarded, robbed 4 May 08 at 0050 local time while at berth, Monrovia port. Three robbers armed with knives, boarded the vessel. The robbers cut and stole a reefer container of electric cables. The master tried to contact PFSO by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.801666699671273, 6.347500000377465] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-146", + "dateofocc": "2008-05-13", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Oil ship", + "descriptio": "NIGERIA: Oil ship (LOURDES TIDE) hijacked 13 May 08, evening, near Port Harcourt. The vessel, which ferries supplies for the oil company Chevron, was sailing from Onne port in Port Harcourt, Rivers State, to Escravos in Delta State when gunmen boarded a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-147", + "dateofocc": "2008-05-10", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cargo shop", + "descriptio": "NIGERIA: General cargo ship boarded 10 May 08 at 0330 local time while at berth, Tin Can port, Lagos. Alert crew raised the alarm and the robbers jumped overboard into their waiting boat and headed for another ship (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-149", + "dateofocc": "2008-05-04", + "subreg": "62", + "hostility_": "Two white speedboats", + "victim_d": "Cargo ship", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 4 May 08 at 1810 local time while underway in position 15-05.0N 051-13.0E, 46NM southwest of Qishn, Yemen. Two white speedboats reportedly chased the vessel. The vessel took evasive maneuvers", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.216666699560051, 15.083333299767389] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-150", + "dateofocc": "2008-05-10", + "subreg": "63", + "hostility_": "Suspected suicide cadres", + "victim_d": "Merchant vessel", + "descriptio": "SRI LANKA:Merchant vessel (INVINCIBLE) sank by LTTE 10 May 08 at 0230 local time, while at anchorage at the Ashroff Jetty at the eastern coastal town of Trincomalee. The LTTE said their Sea Tigers underwater naval commandos launched a pre-dawn underwater", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [81.247222199796681, 8.583333300006814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-286", + "dateofocc": "2006-11-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: General cargo ship boarded 28 Nov, at 1900 UTC Kuala Bintulu Anchorage. The general cargo ship was boarded by robbers armed with pistols, knives, and crowbars. The forecastle store was broken into and the ships stores were robbed. The robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.966666700432825, 3.23333329987878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-287", + "dateofocc": "2006-11-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:Off Port Harcourt, Nigeria -- 10 robbers armed with guns boarded an offshore processing ship. They kidnapped seven workers and left the ship. Ship reported to Nigerian authorities and they intercepted the pirate boat. The Nigerian authorities eng", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.003333299901783, 4.758333299860624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-288", + "dateofocc": "2006-12-06", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: General cargo ship boarded, robbed 06 Dec, at 2010local time while anchored in position 12:01.0S-077:12.0W, CallowOuter Anchorage No. 1. Two robbers armed with a handgun and ajungle bolo boarded the vessel at the forepart of the vessel. Theytook", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-289", + "dateofocc": "2006-12-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TOGO: Bulk carrier boarded, robbed 07 Dec, at 0300 UTC atberth in position 06:08.41N-001:17.43E, Lome port. Four robbersarmed with knives and bars boarded the vessel as it waited to commence cargo operations. They threatened three duty crewmen who ran", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.290555600214759, 6.140277800201432] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-290", + "dateofocc": "2006-12-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: General Cargo ship approached 10 Dec, at0630 UTC while underway in position 14:15N-059:44E. A grey woodenboat 15 meters long approached the vessel asking for fresh water.The master, suspecting piracy, increased speed and took evasiveaction", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.733333300357003, 14.250000000131649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-291", + "dateofocc": "2006-12-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded, robbed 07 Dec, at 0545local time in position 21:47.9N-091:4237E, Chittagong Anchorage.Duty AB spotted six robbers armed with long knives during routinerounds onboard the bulk carrier. The robbers tried to take the ABho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.711666700163676, 21.798333299764181] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-292", + "dateofocc": "2006-12-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: Oil tanker reported attempted boarding08 Dec, at 2340 local time while underway in position 01:09N-103:33E.A number of small boats approached the oil tanker while underway andattempted to board. The master took evasive action, sounded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.550000000411558, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-293", + "dateofocc": "2006-12-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Oil tanker boarded, robbed 08 Dec, at 0015local time, Lawe-Lawe Anchorage. Robbers boarded the oil tanker atanchor and forced the forecastle store open. The ships stores were stolen (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.750000000298883, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2006-294", + "dateofocc": "2006-12-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAIT: VLCC reported attempted boarding 04 Dec,at 1330 UTC in position 12:01.0S-103.30.0E, off Racon Delta. A boatapproached the VLCC underway eastbound at high speed. The masteraltered its course violently to avoid the boat. Despite numer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.15833329956439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-1", + "dateofocc": "2006-12-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "BANGLADESH: Robbers kill fisherman, injure others, 09Dec, Sondaia point, southeastern coastal district of Coxs Bazar. Asthe fishermen were approaching the shore after an evening of deepsea fishing, they came under attack by 8-10 pirates who looted thei", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.933333299959429, 21.466666699722055] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-2", + "dateofocc": "2006-12-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA: Ro-ro ship boarded, 13 Dec at 0030 UTC, in position 08:45S - 013:17E Luanda Roads. The Robbers arrived in small boats and boarded the ro-ro ship, via the anchor chain. The robbers managed to break the locks, on the forepeak store, however, not", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.283333300068875, -8.749999999712827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-3", + "dateofocc": "2006-12-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Vessel, SHEILA MCDEVITT, pursued by suspected pirates 19 Dec. Security officer, from TECO Ocean Shipping, reported the vessel SHEILA MCDEVITT was being chased by suspected pirates. The SHEILA MCDEVITT was 120 miles off the coast of Somalia wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.833333299734704, 5.500000000073555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-148", + "dateofocc": "2007-06-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Container ship robbed and items were recovered 26 Jun at 0700 local time at Chittagong `A¿ Anchorage. The vessel discovered that her aft rope locker was opened and the ship¿s stores were missing. The master informed the Coast Guard who a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-149", + "dateofocc": "2007-07-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: LPG Tanker boarded 2 Jul at 0215 local time in position 05-59S 105-56E, Merak Anchorage. The third engineer on the vessel noticed four armed robbers in the steering flat. The bridge was informed, the alarm was raised and the crew alerted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.933333300412187, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-150", + "dateofocc": "2007-06-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:At 2302 LT at Pennington, a tanker undergoing operations at a SBM was attacked by armed pirates. The pirates boarded the standby tug at the stern of the vessel and contacted the ship via VHF demanding to be let on board or they would sink the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-151", + "dateofocc": "2007-07-10", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TUG", + "descriptio": "GULF OF ADEN: Tug reported suspicious approach 10 Jul at 0245 UTC, while underway in position 12- 59N 049-17E, 67NM south of Yemen. The tug observed a dhow type-fishing vessel on her port side proceeding on a reciprocal course. The fishing vessel alte", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.283333300333823, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-152", + "dateofocc": "2007-07-08", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Container ship reported suspicious approach 8 Jul at 1842 local time, while underway in position 00-19-0N 050-45-0E, 351NM east of Kisamayo. OOW on the container ship spotted a small craft at distance of 13NM on the starboard bow. The craft", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.749999999963109, 0.316666700342125] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-153", + "dateofocc": "2007-07-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Container ship boarded and robbed 05 Jul at 2215 local time in position 22-11-00N 091- 43.50E, Chittagong anchorage B. Several low wooden boats were roaming near the vessel when one boat, near the port bow, stopped the engine and drifted t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725000000006673, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-154", + "dateofocc": "2007-05-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded 17 May at 0345 local time, Chittagong anchorage A, per 4 Jul reporting. Three robbers boarded the vessel during lighting operations. They opened the aft rope locker, stole from the ships stores, and escaped. The Coast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-155", + "dateofocc": "2007-05-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unidentified vessel boarded and perpetrators caught 03 May at 0430 local time, Chittagong Anchorage B, per 4 Jul reporting. Five robbers boarded the vessel and stole from the ships stores. When the robbers were spotted by the crew, they ju", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-156", + "dateofocc": "2007-07-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker boarded, robbed 11 July at 0500 local time in position 03-55N 098-44E, Belawan Anchorage. Duty crew spotted a robber on the forecastle deck. The OOW was informed and the alarm was raised. The robber jumped overboard and escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-157", + "dateofocc": "2007-06-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship boarded and robbed 30 Jun at 0640 local time, Jakarta outer anchorage. Approximately six armed robbers, from two boats, boarded the vessel from the port and starboard quarters. The duty AB was attacked and hit on the head wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-158", + "dateofocc": "2007-06-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker boarded and robbed 26 Jun at 0055 local time, Belawan outer anchorage. The duty AB on the vessel noticed three robbers trying to open the forward locked. The duty AB informed the OOW and ran forward; however, one of the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-307", + "dateofocc": "2007-11-08", + "subreg": "82", + "hostility_": "MUTINY", + "victim_d": "FISHING VESSEL", + "descriptio": "PAPUA NEW GUINEA:Fishing vessel (SHENG ENG 168) reported suspected mutiny, captain killed 08 Nov 07 off the northern coast. Indonesian police have arrested eight Indonesian crewmembers suspected of trying to take over a Taiwanese vessel resulting in the", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [147.999999999735678, -0.99999999968702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-308", + "dateofocc": "2007-11-06", + "subreg": "82", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOLOMON ISLANDS:Fishing vessel (QUAN YONG 168) boarded, robbed 06 Nov 07 in the evening, while at anchor, near Point Cruz. Five men armed with knives boarded the vessel and robbed the crew. The thieves stole a large amount of US currency, one satellite p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [159.958333299843503, -9.425000000161845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-309", + "dateofocc": "2007-11-17", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "VEHICLE CARRIER", + "descriptio": "GULF OF ADEN:Vehicle Carrier reported suspicious approach 17 Nov 07 at 0550 local time while underway. The vessel spotted three suspicious crafts on the starboard side and one suspicious craft on the port side at a distance of 0.4NM. The Master took all", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-310", + "dateofocc": "2007-11-11", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "VIETNAM:General Cargo Ship boarded, robbed 11 Nov 07 at 0305 local time at Phu My berth A. Robbers armed with knives boarded the vessel. The vessel informed the port security who came onboard for assistance. While proceeding towards the forecastle, two", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.000000000273076, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-197", + "dateofocc": "2007-07-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded 17 Jul at 2300 UTC, while anchored at Chittagong Anchorage B. Six robbers, armed with knives, boarded the vessel. Duty officer raised the alarm and all crew mustered. The robbers escaped without stealing anything (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-311", + "dateofocc": "2007-11-19", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:Chemical tanker boarded 19 Nov 01 at 0100 local time while underway in position 03-13.0N 105-23.0E, off Mangkai Island. Duty oiler on board the vessel noticed one pirate with a gun in hand on the poop deck. The duty officer was informed and the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.383333300079585, 3.216666699806353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-312", + "dateofocc": "2007-11-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "0345 LT: Lagos anchorage, Nigeria:Four armed robbers in a small wooden boat boarded a container ship from aft. They stole ship's store and escaped. No injuries to crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [3.353333299738779, -6.296666699718969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-313", + "dateofocc": "2007-11-21", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "0212 LT: Lagos, Nigeria (15 miles from shore):Five pirates armed with knives boarded a tanker drifting around 15 NM from shore. Duty crew spotted the pirates and informed the duty officer. Alarm raised and crew mustered. Pirates escaped with ship stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.299999999642637, 6.200000000006241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-314", + "dateofocc": "2007-11-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA:IN 03-13N 105-13E AT 181700Z NOV. DUTY OILER ON BOARD A CHEMICAL TANKER, UNDERWAY, NOTICED ANE PIRATE WITH GUN IN HAND ON THE POOP DECK. DUTY OFFICER INFORMED. ALARM RAISED, ALL CREW MUSTERED AND ALL LIGHTS SWITCHED ON. SEARCH OF THE VESS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.216666700407018, 3.216666699806353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-315", + "dateofocc": "2007-11-25", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CRUISE SHIP", + "descriptio": "ARABIAN SEA:Cruise ship (SEABOURN SPIRIT) reported suspicious approach, per 25 Nov 07 reporting, off Oman. The cruise ship's crew had grown increasingly concerned about three small fast moving skiffs closing in on their position and reported to UKMTO. Th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.499999999924228, 26.000000000286832] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-316", + "dateofocc": "2007-11-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "INDONESIA:Product tanker boarded 29 Nov 07 at 0530 local time in position 03-51N 098-48E, SBM Belawan. Duty quartermaster onboard the vessel noticed two robbers hiding under the windlass. The Duty Officer was informed and mustered the crew. The robbers j", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.799999999583463, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-317", + "dateofocc": "2007-12-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "0206Z: 06-14N 003-22E: LAGOS ANCHORAGE, NIGERIA:Two pirates, armed with guns and knives, boarded a bulk carrier drifting. The pirates tied up the aft watchmen. The forward watchman sighted the pirates, ran into the accommodation and locked all entrance d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.233333299975811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-318", + "dateofocc": "2007-11-28", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "Lagos, Africa:In what appeared to be a military launch with twelve armed robbers dressed in military fatigues approached the tanker at anchor. Nine persons boarded the vessel and ordered the master to disembark into their launch. The master refused and e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.750000000241755, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-319", + "dateofocc": "2007-12-09", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "0430LT: 06-44S 039-32E: port of Dar es Salaam, Tanzania:Pirates boarded a container ship drifting. Pirates boarded unnoticed. They broke padlocks, removed container lashing bars and stole ship's stores and cargo. On carrying out a search only footprints", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.533333300243328, -6.733333299750996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-151", + "dateofocc": "2008-05-04", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Container ship", + "descriptio": "BANGLADESH: Container ship boarded, robbed 4 May 08 at 2300 local time in position 22-12.9N 091-45.0E: Chittagong anchorage Bravo. Three robbers armed with knives boarded the vessel from the stern whilst seven robbers remained in the boat. They broke op", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.215000000393729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-152", + "dateofocc": "2008-05-10", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Chemical tanker", + "descriptio": "STRAIT OF MALACCA:Chemical Tanker (BOW CLIPPER) reported attempted boarding 10 May 08 at 1625 local time while steaming in position 05-35N 097-05E. Robbers in military camouflage attempted to board the vessel using a bamboo pole attached to a hook. The s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.084722200072804, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-153", + "dateofocc": "2008-05-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing vessels", + "descriptio": "MALAYSIA: Fishing vessels hijacked 2 May 08 at 0200 local time in position 03-48.98.3N 100-43.03.3E, 4NM off Tanjung Sauh. Two fishing boats with a crew of eight were attacked and hijacked while the crew was resting. The vessels were taken to an Indonesi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.721944399919096, 3.81611109975529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-154", + "dateofocc": "2008-05-09", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Passenger vessel", + "descriptio": "PHILIPPINES: Passenger vessel attacked, four killed 9 May 08 in off the coast of Parang town on Jolo Island. The vessel was on its way to Laminusa Island when gunmen onboard a separate boat opened fire. Four people were killed by the gunmen and eight peo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.991666700175301, 6.054166699662062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-155", + "dateofocc": "2008-05-22", + "subreg": "62", + "hostility_": "Suspicious speedboats", + "victim_d": "Yacht", + "descriptio": "Gulf of Aden:22.05.2008: 1430 UTC: 13-21.29N 048-25.96E. A speedboat crossed the bow of a yacht, underway, while two other speedboats approached from the stren. The skipper increased speed and enforced anti piracy measures to prevent boarding. After a wh", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.432499999800427, 13.354722200413732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-156", + "dateofocc": "2008-05-19", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Container ship", + "descriptio": "Gulf of Aden:19.05.2008: 1500 LT: 12-49.3N 050-36.3E: Two small speedboats approached a container ship underway from the bow. One of the speedboats had four pirates armed with automatic weapons and rocket launcher. The pirates aimed the rocket launcher t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.604999999720064, 12.821666699653861] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-157", + "dateofocc": "2008-04-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "Nigeria:Product tanker boarded 29-APR-08 in position 06-15.1N 003-22.2E, Lagos anchorage. Four robbers boarded the vessel. They stole ship's stores from aft locker. Seeing the alert crew they escaped. Lagos port control informed. Vessel weighed anchor an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.369999999635922, 6.251666699899999] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-158", + "dateofocc": "2008-05-17", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Cargo ship", + "descriptio": "Somalia:17.05.2008: 0950 LT: Position 02-13.19N 046-49.38E: Pirates boarded and hijacked a general cargo ship underway. Ship was on passage to Mogadishu, Somalia.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.822777799630785, 2.219722200327908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-159", + "dateofocc": "2008-05-17", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Cargo ship", + "descriptio": "GULF OF ADEN: General cargo ship (VICTORIA) hijacked 17 May 08 at 0905 local time while underway in position 02-13.19N 046-49.38E, 40NM off Mogadishu, Somalia. The Jordanian-flagged vessel, owned by Marwan Shipping Company, with a crew of 21, was transp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.822777799630785, 2.219722200327908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-160", + "dateofocc": "2008-05-15", + "subreg": "62", + "hostility_": "Four suspicious speedboats", + "victim_d": "Container ship", + "descriptio": "GULF OF ADEN: Container ship reported suspicious approach 15 May 08 at 0900 UTC while underway in position 13-02.6N 045-42.6E, 32NM northeast of Port Aden. Four suspicious speedboats reportedly chased the vessel. Each vessel had four people onboard. The", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.710000000447621, 13.043333300348934] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-161", + "dateofocc": "2008-05-15", + "subreg": "62", + "hostility_": "suspicious vessel", + "victim_d": "Tamker", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 15 May 08 while underway in position 15-40.8N 052-41E, approximately 59NM northeast of Qishn, Yemen. The vessel observed a high speed boat doing 24knts approaching the vessel from the port quarter. The c", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.683333300263882, 15.679999999737277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-164", + "dateofocc": "2008-05-25", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Cargo ship", + "descriptio": "Gulf of Aden:25.05.2008: 2235 LT: 13-13N 050-49E: Pirates hijacked a general cargo ship 80 nm off the coast of Somalia. Nine crewmembers are held hostage omboard. At present the vessel is 2.5 nm from the coast. Futher reports awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.816666699726966, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-4", + "dateofocc": "2006-12-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA: Chemical tanker boarded, robbed 11 Dec, at 0200 local time in position 05-37-30N 00-02-10W, Tema. Seven robbers armed with knives boarded the chemical tanker. The robbers tied up the duty ABs legs and hands and kept him at knife point. The rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-5", + "dateofocc": "2006-12-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Vessel boarded, robbed 21 Dec, at 0115 UTC in position 06:11N 003:20.1E, 13nm south of Lagos. Deck watchmen on the vessel spotted two robbers, dressed in black overalls and armed with crow bars on forward deck. The robbers broke open and robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.334999999639308, 6.183333300109098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-6", + "dateofocc": "2006-12-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAN: Tanker (MARITIME GISELA) boarded, robbed, and robber arrested 18 Dec, at 2100 local time in position 27-03.4N 056-13.5E, Merchant Anchorage, Bandar Abbas. The alarm was raised, when the master found a fire on the starboard life raft. The duty o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.225000000207615, 27.056666699570087] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-7", + "dateofocc": "2006-12-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SRI LANKA: LTTE rebels board distressed ship 23 Dec, Sri Lanka. Armed Tamil Tiger rebels boarded a distressed Jordanian merchant ship that had drifted close to the Tiger-held Mullaitivucoast, according to Sri Lanka's defense ministry; however, the LTTE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.833333299870219, 9.233333300072843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-8", + "dateofocc": "2006-12-21", + "subreg": "92", + "hostility_": "SUSPICOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: Chemical tanker approached 21 Dec, between 0335 to 0445 local time in position 05:52.80N - 119:25.50E, Sibutu Passage. Three wooden boats doing a speed of 30 knots each approached the chemical tanker, underway simultaneously from the starb", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.424999999913211, 5.879999999780068] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-9", + "dateofocc": "2006-12-18", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILIPPINES: LPG tanker attempted boarding 18 Dec, 0610 local time at Cebu Inner Anchorage. Two boats came close to the LPG tanker and personnel from one of the boats attempted to board. The alert ship crew raised the alarm and directed the water hose", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.891666699639472, 10.284999999998945] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-10", + "dateofocc": "2006-12-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONEISA: Container ship boarded 19 Dec, at 0430 local time at Pilot Ground, Jakarta Roads. Robbers armed with long knives boarded the container ship, awaiting for pilot. The robbers unlashed the starboard life raft and threw it overboard. They then j", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.816666699739358, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-11", + "dateofocc": "2006-12-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker boarded 18 Dec, 0125 local time at Belawan Outer Anchorage. The robbers boarded the chemical tanker and broke the padlocks, on the starboard side chemical equipment locker and paint room door. The security watchman reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-12", + "dateofocc": "2006-12-26", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Bulk carrier boarded and robbed 26 Dec, 1950 local time in position 12-01.2S 077-11.0W, Inner Anchorage No.1, Callao. Three robbers armed with guns and knives boarded the bulk carrier and tied up the watchman. Another watchman noticed the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.020000000169318] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-13", + "dateofocc": "2006-12-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded and robbed while underway 26 Dec, at 0200 UTC in position 07:06S-039:41E, 10nm off Dar es Salaam. Robbers in a six meter wooden fishing boat boarded the container ship, while underway in the forepart. The robbers opened", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.683333299843468, -7.099999999614511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-159", + "dateofocc": "2007-05-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:In Mogadishu, pirates attacked and seized a dhow with 14 crewmembers. The hijacked dhow remained at anchor, off Haradhere, until negotiations with the owners were completed. The dhow was released on the 21 June 2007.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-160", + "dateofocc": "2007-05-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GHANA:At a position 2.2 miles from Tema Port Breakwater, robbers armed with knives boarded a general cargo ship at anchor. They caught and tied up the Duty AB and took his walkie talkie. The robbers stole ship's stores from the forecastle store and they", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.01666669955182, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-161", + "dateofocc": "2007-07-18", + "subreg": "53", + "hostility_": "IMMIGRANTS", + "victim_d": "FISHING VESSEL", + "descriptio": "MALTA: Fishing vessel (HADJ MAHMOUD) overtaken by migrants 18 Jul, 1335 local time, 90NM southwest of Malta and 43NM from the Italian island of Lampedusa. A group of immigrants had taken over the Tunisian fishing vessel, while the vessel was traveling n", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [14.416666699628991, 35.83333330021361] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-162", + "dateofocc": "2007-07-16", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Bulk carrier reported suspicious approach 16 Jul 2007 UTC/2400 local time, in position 00-27S-049-10E. The vessel was bound south for Argentina from Socotra, when an unidentified boat attempted to close in on the vessel. The vessel altered an", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.166666699628649, -0.450000000253794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-163", + "dateofocc": "2007-07-16", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Tanker reported suspicious approach 16 Jul at 1130 UTC in position 01-46.3S 047-46.7E. A suspicious boat was sighted 5NM away from the vessel. It was 20 meters in length (Operator, IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.778333299579174, -1.771666699640036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-164", + "dateofocc": "2007-07-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Container ship boarded and robbed 12 Jul 1555 UTC Chittagong Anchorage B. Six robbers armed with knives boarded the vessel. The D/O raised the alarm and all crew mustered and chased the robbers. The robbers stole from the ships stores and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-165", + "dateofocc": "2007-06-20", + "subreg": "62", + "hostility_": "SUSPICUIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:At 1930 LT, an unlit craft approached a bulk carrier, underway from the starboard bow. The master continuously altered course; the craft also adjusted her course and speed. Later the ship spotted another unlit craft, which also started adjusting", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.353333300424083, 13.349999999832789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-166", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2115 UTC, while underway in position 12-32N 044-03E. An unlit boat, doing about 8 knots, approached the vessel on a collision course. Alert crew directed the search light towards", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.049999999836359, 12.533333300269476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-167", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2020 UTC, while underway in position 12-31N 044-12E. Two unlit boats, doing about 11.5 knots approached the vessel on a collision course. The ship took evasive maneuvers, increase", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.20000000033582, 12.51666670019705] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-168", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Container ship reported suspicious approach 20 Jul at 1200 local time, while underway in position 11-09.0N 052-46.8E, 95 NM off the NE coast of Somalia. A small, white hulled, boat about 30-50 meters long began to follow the vessel. At a dis", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.779999999767938, 11.150000000301191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-169", + "dateofocc": "2007-07-22", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: General cargo ship reported attempted boarding 22 Jul at 0300 UTC while, underway in position 06-01.4N 080-00.5E, 12 NM off the SW coast of Sri Lanka. A small white and light-blue hulled boat, with nine persons on board, attempted to board", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.008333299821061, 6.023333299996011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-170", + "dateofocc": "2007-07-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded 17 Jul at 2300 UTC, while anchored at Chittagong Anchorage B. Six robbers, armed with knives, boarded the vessel. Duty officer raised the alarm. All crew mustered. The robbers escaped without stealing anything (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-171", + "dateofocc": "2007-07-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 18 Jul at 2100 UTC, while anchored at Chittagong Anchorage B. Twelve robbers, in two small boats, armed with knives attempted to board the vessel during lightering operations. D/O raised the alarm a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-2", + "dateofocc": "2007-12-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA:Chemical tanker boarded, robbed 28 Dec 07 at 0100 UTC in position 06-20N 003-20E, Lagos anchorage. Armed robbers boarded the vessel during STS operations. With the crew involved in cargo operations, anti-piracy watches maintained only one crewmem", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-172", + "dateofocc": "2007-07-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GUYANA: Fishing vessels (MOLISSA) and (BALLIE) attacked and robbed, 27 Jul in Waini River. A six-member crew of fishing vessel (BALLIE) and fishing vessel (MOLISSA) with a crew of five, were fishing close to each other at Waini Point. It is alleged fiv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.949999999929673, 8.516666700067731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-320", + "dateofocc": "2007-12-04", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "GUYANA:Fishermen boats attacked 04 Dec 07, late evening, eastern sector. Approximately 15 boats with Berbice Fishermen on board were subject to attack by pirates. Five of the boats are reportedly missing (LM: Starbroek.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.999999999764043, 6.999999999672355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-321", + "dateofocc": "2007-12-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA:Bulk carrier boarded 12 Dec 07 at 0206 UTC while drifting, in position 06-14N 003-22E, Lagos Anchorage. Two pirates, armed with guns and knives boarded the vessel. The pirates tied up the aft watchmen. The forward watchman sighted the pirates, ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.233333299975811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-322", + "dateofocc": "2007-12-16", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "2115 UTC: 8-48.5N 13-57W: SIERRA LEONE:Eight pirates armed with AK-47 guns in military like fatigues boarded a chemical tanker underway. They stole crew personal belongings, ship's properties and escaped. No injuries to crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.950000000240721, 8.808333299856713] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-323", + "dateofocc": "2007-12-09", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Fishing Vessels", + "descriptio": "1800 LT: 16 NM off Coroni shore, Suriname:Five masked pirates armed with guns approached the fishing vessel underway. They fired several shots and ordered the crew to lie on the icebox. They then locked the crew in the fish pen. The pirates took hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.999999999667068, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-324", + "dateofocc": "2007-12-17", + "subreg": "91", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "0430 LT: Manila north anchorage, Philippines:Eight armed pirates boarded a container ship, at anchor, awaiting berthing instructions. They were spotted by the antipiracy wathc and reported to the D/O. Alarm raised and crew alerted. The pirates jumped ove", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.874999999645297, 14.586666700255023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-325", + "dateofocc": "2007-09-30", + "subreg": "91", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "1900 LT: Manila international container terminal, Manila, Philippines:During heavy rain and poor visibility, robbers boarded a container ship unnoticed via the anchor chain. They broke into the CO2 room and stole eight pieces of extension cable for the r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.887500000286536, 14.610833299812782] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-326", + "dateofocc": "2007-09-11", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "0030 LT: off Tioman island waters, Malaysia:Six pirates, in a small high-speed boat, armed with knives boarded a tanker underway. They assaulted all six crewmembers. The captain received head injuries and the crewmembers were robbed of their documents an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.300000000211014, 2.499999999976524] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-327", + "dateofocc": "2007-09-08", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "2100 LT: 3.5 NM off TG. Punggai, Kota Ttinggi, Malaysia:Seven pirates in a wooden boat, armed with guns and knives approached a tanker underway. They boarded the tanker and tied up the master and crewmembers with nylon ropes. One crew jumped overboard. P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.356666700361245, 1.446666699848038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-1", + "dateofocc": "2007-12-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PASSENGER VESSEL", + "descriptio": "NIGERIA:Passenger Vessel attacked, passenger killed 30 Dec 07 in the early hours, Bonny Channels. The vessel was traveling from Bonny Island to Port Harcourt, when it was approached by pirates who attempted to force it to stop mid-sea, but failed as the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-169", + "dateofocc": "2008-04-24", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "BRITISH VIRGIN ISLANDS:Yacht boarded, robbed 24 Apr 08, Nanny Cay Boatyard. The vessel was having work being done to it and was left unlocked. Discovery of a cell phone and US$600 was found stolen (Operator: safetyandsecuritynet.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.500000000391594, 18.166666700424742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-3", + "dateofocc": "2007-12-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OFFSHORE SUPPLY VESSEL", + "descriptio": "NIGERIA:Offshore Supply Vessel attacked, crewmembers injured 26 Dec 07 near Bonny. It was reported that two speedboats with an unknown number of assailants mounted an attack against the vessel. The Nigerian Navy was notified and diverted a nearby patrol", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-4", + "dateofocc": "2007-12-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA:Bulk carrier boarded 24 Dec 07 at 0310 UTC, berth no. 20, Apapa, Lagos. Four robbers boarded the vessel from a boat. They held one crew at knifepoint while they tried to open the bosun store. The second duty officer, while on routine security rou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-162", + "dateofocc": "2008-05-13", + "subreg": "62", + "hostility_": "Four speedboats", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 13 MAY 2008 while underway in position 12-43.1N 045-42.6E. Four speedboats, each manned by two persons, were in close proximity of the vessel, two on the port side and two on the starboard side. The M", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.710000000447621, 12.718333299866288] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-163", + "dateofocc": "2008-05-18", + "subreg": "62", + "hostility_": "Small speedboats", + "victim_d": "Tanker", + "descriptio": "OMAN: Tanker reported suspicious approach 18 May 08 while underway in position 21-07.5N 059-47.10E, 30NM off coast of Oman, 55NM northeast of Masirah Island. The vessel sighted a small speedboat trailing the vessel from the right stern, and was reportedl", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.785000000250761, 21.125000000241585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-165", + "dateofocc": "2008-05-25", + "subreg": "62", + "hostility_": "Three boats", + "victim_d": "Bulk Carier", + "descriptio": "Gulf of Aden:25.05.2008: 0610 LT: 13-25.2N 047-57.8E: Three boats closed onto a bulk carrier underway. There were four armed persons in each boat. The boats followed the bulk carrier at a distance of one cable and the armed men were heard shouting in a f", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.963333300075249, 13.419999999826018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-166", + "dateofocc": "2008-05-24", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "Gulf of Aden:24.05.2008: 1420 LT: 13-58N 050-42E: Two boats, with four armed pirates in each boat, closed onto a tanker underway. The pirates opened fire with automatic guns and RPG. One RPG round hit and damaged the port bridge wing. Evasive manoeuvres", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.700000000096338, 13.966666699929192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-167", + "dateofocc": "2008-05-23", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "Gulf of Aden:23.05.2008: 0430 UTC: 13-16.2N 049-08.7E: Four pirates armed with automatic guns and rocket launcher in a grey coloured, long speedboat approached a bulk carrier underway from the port quarter. They fired at the bridge and accommodation. Mas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.145000000374353, 13.270000000225878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-168", + "dateofocc": "2008-04-02", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "GUATEMALA:Yacht (SERENADE) boarded, robbed 2 Apr 08 at 0200 local time while at anchorage, east of village El Estor, per 24 May 08 reporting. The vessel, accompanied by two other yachts was boarded by four bandits armed with a pistol, machete, night stic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.349999999801298, 15.533333300366508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-172", + "dateofocc": "2008-04-07", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "ST LUCIA:Yacht boarded, robbed 7 Apr 08, Rodney Bay Inner Lagoon. The vessels dink was located near a supermarket access dock at night while the crewmembers were out to dinner and returned to find the cable cut. It was reported to Gros Islet Police. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.999999999828731, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-14", + "dateofocc": "2006-12-19", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Bulk Carrier reported suspicious distress call 19 Dec, off the SE coast of Somalia. According to the IMB, the incident occurred at 1932 LT, in position 00:32.6S-043:57.8E. The (SHEILA MCDEVITT) received the distress message from a vessel five", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.96333329994593, -0.543333299703704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-15", + "dateofocc": "2007-01-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Vessel attacked, robbed 16 Jan, in the evening near Bonny Island, River State. Robbers killed one foreigner and two Nigerians traveling from Port Harcourt to Bonny Island. The gunmen also critically injured six other passengers, while robbing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.191666699552684, 4.516666699938355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-16", + "dateofocc": "2007-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SMALL FERRY", + "descriptio": "NIGERIA: Small ferry attacked 15 Jan, Kula, southern Niger Delta. Western oil companies evacuated staff from three oilfields, after gunmen opened fire on a small ferry carrying 14 passengers. The gunmen killed 12 passengers and the other two are being", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.64999999970604, 4.350000000441014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-17", + "dateofocc": "2007-01-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Product tanker boarded and robbed 08 Jan at 2335 local time, while berthed at Lagos Roads. Robbers armed with guns and knives boarded the product tanker, during STS cargo operations. They attacked a crewmember, tied him up, and asked for a k", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-18", + "dateofocc": "2007-01-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NIGERIA: Patrol boat attacked, two seamen kidnapped 7 Jan, in Port Harcourt near Soku, an island in the coastal area of Rivers State. Gunmen in seven speedboats attacked the patrol boat and seized two naval officers, one of them a sub-lieutenant whose", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-19", + "dateofocc": "2007-01-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO: RoRo ship boarded and robbed 10 Jan at 2300 local time in position 05-52S 013-03.3E, Boma Anchorage, Congo River. A large group of robbers, in several boats armed with long knives and wooden sticks, boarded the vessel. The robbers tried to att", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-20", + "dateofocc": "2007-01-13", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Chemical tanker reported suspicious approach 13 Jan, while underway in position 05-12.0N 052-37.5E, 225NM off the east central coast. The United States Coast Guard Command Center (USCGCC) received reporting on the incident at 0635 UTC; howeve", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.624999999911324, 5.199999999973898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-21", + "dateofocc": "2007-01-16", + "subreg": "57", + "hostility_": "SUSPIPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Offshore Supply Vessel reported suspicious approach 16 Jan at 2300 local time, while underway in location 03-42N 007-01.5E, 31 NM off the coast. Suspicious vessel approached off port bow at speed of 14 kts. Attempts to establish radio contact", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.0250000000554, 3.700000000375042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-22", + "dateofocc": "2007-01-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded 16 Jan, at 0430 local time, about 18nm off Dar es Salaam Roads. While the container ship was drifting, the duty AB noticed some suspicious movements on the forecastle deck. The alarm was raised and the crew alerted. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-23", + "dateofocc": "2007-01-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SRI LANKA: General cargo carrier (CITY OF LIVERPOOL) attacked by LTTE 21 Jan, off the Jaffna peninsula. The vessel was leaving Point Pedro open anchorage, when it was attacked by two clusters of 15-20 rebel boats. Navy patrol boats and aircraft immedia", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.433333300037134, 9.916666699933103] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-173", + "dateofocc": "2007-07-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: General Cargo ship boarded and robbed 26 Jul at 2350 local time, in position 22-16.2N 091-49.1E Dry Dock Berth No. 2, Chittagong. Robbers from two boats boarded the vessel from the starboard side and stole from the ships stores. When spott", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.818333300355903, 22.269999999617596] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-174", + "dateofocc": "2007-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "QATAR (UAE): Three fishing vessels attacked and robbed a few days prior to 4 Jul, about 40 NM from Ruweis. In a newspaper interview, fishermen from Al Khor said sea pirates attacked their vessels and got away with their entire catch and valuables, incl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.76666669992494, 24.116666699852772] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-175", + "dateofocc": "2007-07-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker boarded, 23 Jul at 1030 local time, while at berth at Prointal, Merak. Robbers boarded the vessel unnoticed. The third engineer noticed the boat store unlocked and some electrical spares were missing. The crew was alerted a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.000000000176044, -5.883333300218112] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-176", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SHATT AL ARAB (IRAQ): Container ship fired upon 20 Jul at 0635 local time, while underway to pilot station from Khorramshahr terminal, Iran. While underway to the pilot station, with pilot onboard, the vessel passed over fishing nets. A fishermen open", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.000000000131308, 29.633333299653373] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-177", + "dateofocc": "2007-07-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOUTH CHINA SEA: Fishing vessel (HUYU 908) fired upon 26 Jul at 0730 local time, while underway in position 03-16N 105-27E, approximately 40NM west of the Anambas Islands. The Chinese fishing vessel was approached by a small rubber boat. Five men arm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.449999999843499, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-178", + "dateofocc": "2007-08-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: LPG tanker boarded, robbed 05 Aug at 0330 local time in position 06-19.29N 003-23.62E, Lagos anchorage. Two robbers armed with long knives boarded the vessel. The duty crew raised the alarm and the robbers escaped with the ship's stores. The po", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.393611099667396, 6.321388900217755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-179", + "dateofocc": "2007-07-03", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Container ship boarded, robbed 03 Jul at 1920 local time at Pier 5D, Callao port, per 6 Aug reporting. Three masked robbers armed with knives, boarded the vessel while at berth. One robber with a knife held a duty cadet whilst the other two lowe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.1433332996628, -12.043333299625942] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-180", + "dateofocc": "2007-07-16", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Container ship boarded, robbed 16 Jul at 2310 local time in Callao anchorage. Robbers boarded the vessel and within a period of ten minutes, the robbers stole from the ship's stores, even though there were four crewmembers on roving watch. The por", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-461", + "dateofocc": "2008-11-21", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "West Coast Luzon, Philippines: Three blue colored speedboats, chased a bulk carrier underway. Ship increased speed made evasive maneuvers, raised alarm and fire hoses standby. Pirates aborted the attempt after 30 minutes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.53333330013254, 16.283333300165907] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-181", + "dateofocc": "2007-08-03", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Container ship reported suspicious approach 03 Aug at 0620 UTC while underway in position 02:54N - 051:42E, 240NM off the coast. A medium-sized craft altered towards the vessel. As the master altered its course, the craft altered its directio", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.700000000128682, 2.899999999809609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-182", + "dateofocc": "2007-07-29", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Bulk carrier reported suspicious approach 29 Jul at 1020 UTC in position 00-27.5S 049-36.4E, 270NM off the coast. A suspicious craft followed the vessel underway for 4 hours. The craft failed to reply on the VHF and did not transmit any AIS dat", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.601111100107289, -0.451388899705989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-183", + "dateofocc": "2007-08-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAQ: Container ship boarded 02 Aug at 0200 local time in position 29-43.06N 048-40.1E, Umm Qasr anchorage. Robbers armed with guns boarded the vessel and opened fire with automatic weapons, which damaged the master's cabin porthole and the second offic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.668333300264464, 29.717777799990415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-5", + "dateofocc": "2007-12-11", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 11 Dec 07 at 1730 UTC in position 13-26.3N 049-46.2E, 65NM southeast of Al Mukalla, Yemen. The vessel detected a number of fast moving targets on the radar. The targets moved towards the vessel and were ne", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.77000000005728, 13.438333299925546] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-6", + "dateofocc": "2007-11-27", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CONTAINER VESSEL", + "descriptio": "SOUTH CHINA SEA:Container ship (AL MUTANABBI) reported suspicious approach 27 Nov 07 at 1430 local time, while underway in position 06-46.0N 107-50.0E, approximately 120NM North of Pulau Laut, Indonesia, per 02 Jan 08 reporting. Two small wooden boats we", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.833333299844071, 6.76666670023593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-7", + "dateofocc": "2007-11-05", + "subreg": "71", + "hostility_": "SUSPECTED PIRATE", + "victim_d": "OIL TANKER", + "descriptio": "MALAYSIA:Oil Tanker (EURYDICE) boarded, suspect apprehended 05 Nov 07 while at anchorage in position 01-14.23N 103-30.76E, approximately 1.5NM off Tanjung Piai, Johor, per 02 Jan 08 reporting. The ship master informed the Singapore and Malaysian authorit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.512777799962237, 1.2372222002939] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-8", + "dateofocc": "2007-12-25", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded, crewmember assaulted, 25 Dec 07 at 0715 UTC in position 01-09.1S 117-13.7E, Samarinda anchorage. The duty crew noticed robbers on the poop deck. As the crewmember shouted to alert the rest of the crew, the robbers, who had", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.228333299711721, -1.151666700213582] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-9", + "dateofocc": "2007-12-23", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TUG AND TOW", + "descriptio": "INDONESIA:Tug (MAKMUR ABADI-I) towing barge (MAKMUR ABADI-V) hijacked, 23 Dec 07, near Bilang-Bilangan Island, off East Kalimantan coast. While sailing from Tanjung Redep, East Kalimantan, to Surabaya East Java with a cargo of crude palm oil, the tug and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [124.449999999558599, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-10", + "dateofocc": "2007-10-19", + "subreg": "72", + "hostility_": "PIRACY", + "victim_d": "WORKBOAT", + "descriptio": "INDONESIA:Workboat (ANCHOR 2) noticed missing 19 Oct 07 at 0100 local time while being towed by the tug (SM V) in position 06-03.1S 115-32.84E, approximately 120NM North of Bali, per 18 Dec 07 IMB reporting. On 19 Oct 07, the ship master on board the tug", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.547222200096598, -6.051666699742498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-11", + "dateofocc": "2008-01-14", + "subreg": "22", + "hostility_": "PIRACY", + "victim_d": "TRANSPORT VESSEL", + "descriptio": "COLOMBIA:Vessel transporting tourists robbed, six passengers kidnapped, 14 Jan 08, late in the afternoon shortly after landing near Nuqui. The six hostages belonged to a group of 19 people taking a boat trip on the Atrato river in the west of the country", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.266666699576945, 5.716666700336873] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-12", + "dateofocc": "2008-01-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GHANA:Chemical Tanker boarded 08 Jan 08 at 0055 local time at Tema anchorage. Three robbers, armed with knives, boarded the vessel via the forecastle. The Duty A/B spotted the robbers who tried to catch him. Luckily, the A/B managed to escape. The Duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.033333299624246, 5.616666699704126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-173", + "dateofocc": "2008-03-30", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "ST. VINCENTS AND GRENADINES:Yacht boarded, robbed 30 Mar 08 at Bequia Princess Margaret Beach. The vessel was robbed of cash while the crew was off the vessel at dinner (Operator: safetyandsecuritynet.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.500000000294563, 13.250000000099305] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-174", + "dateofocc": "2008-04-20", + "subreg": "25", + "hostility_": "PIRATE THEFT", + "victim_d": "YACHT", + "descriptio": "ST. VINCENTS AND GRENADINES:Yacht boarded, robbed 20 Apr 08 at Young Island Cut. The crew returned from dinner to find a 10 hatch opened (not locked when left) and 20 Euros and 5 EC missing. It is assumed that a small kid may have entered the space (Op", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.250000000061675, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-175", + "dateofocc": "2008-03-28", + "subreg": "25", + "hostility_": "PIRATE THEFT", + "victim_d": "YACHT", + "descriptio": "ST. VINCENTS AND GRENADINES:Yacht boarded, robbed 28 Mar at Young Island Cut. The crew discovered that US$700 was missing when paying for the mooring. It is assumed that it was stolen the night before while off the boat to dinner due to the hatch being c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.250000000061675, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-176", + "dateofocc": "2008-04-01", + "subreg": "24", + "hostility_": "PIRATE", + "victim_d": "YACHT", + "descriptio": "COLOMBIA:Yacht boarded 1 Apr 08, Isla Fuerte. A perpetrator boarded the vessel. The noise awoke the crew and chased the perpetrator off (Operator: safetyandsecuritynet.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.249999999647457, 9.249999999969987] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-177", + "dateofocc": "2008-04-29", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "VENEZUELA:Yacht (MOON GODDESS) boarded 29 Apr 08 at 2145 local time while at anchorage at Puerto Santos, four miles east of Carupano Port, per 24 May 08 reporting. They heard banging and the noise of a pirogue hitting the boat followed by men yelling and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.216666700156793, 10.616666699865846] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-178", + "dateofocc": "2008-05-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "NIGERIA:Product tanker boarded 27 May 08 at 0545 local time, while at anchorage offshore Lagos. Four robbers armed with knives boarded the vessel. They lowered a hose into Cargo Tank No. 1 and started to discharge cargo into the boat. The duty crew spott", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-179", + "dateofocc": "2008-06-03", + "subreg": "62", + "hostility_": "PIRATE ATTACK", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN:Container ship fired upon 3 Jun 08 at 0705 UTC while underway in position 12-43.8N 049-51.5E, 73NM off the Somali coast. The vessel was approached by two boats armed with a rocket launcher and guns firing at the vessel. Warship assistance wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.858333300150036, 12.730000000406278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-452", + "dateofocc": "2008-11-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: Refrigerated cargo ship reported being fired upon on 16 Nov 08 at 0430 UTC while at anchor in position 04:08N-006:50E, Bonny outer road. Robbers in a speedboat circled the ship four times and then left. There was no injury to the crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.83333330017507, 4.133333300177696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-180", + "dateofocc": "2008-06-01", + "subreg": "63", + "hostility_": "PIRATE ATTACK", + "victim_d": "PRODUCT TANKER", + "descriptio": "GULF OF ADEN:Product tanker reported suspicious approach 1 Jun 08 at 0610 UTC while underway in position 13-20N 097-37E, approximately 23NM from the Yemen coast. Two suspicious boats were observed ahead of the vessel. The boats crossed the vessels bow an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [97.616666699981408, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-181", + "dateofocc": "2008-05-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 28 May 08 at 1200 UTC while underway in position 13-43N 048-50E, 21NM off the Yemen coast. Four suspicious wooden/plastic high-speed boats with gray hulls, about 15 meters long with four persons in each bo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.833333299734704, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-24", + "dateofocc": "2007-01-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NORTHERN PERSIAN GULF: Unspecified vessel attacked, robbed 22 Jan, off Bubiyan island. The pirates allegedly shot and killed one Iranian crewman and injured another before escaping, with merchandise from the vessel. Kuwaiti Coast Guard responded to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.533333299635046, 29.70000000031655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-25", + "dateofocc": "2005-01-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded and robbed 19 Jan, between 0001-0400 local time in position 03-13.6S 116-25.0E, Pulau Laut NPLCT Anchorage. The robbers boarded via anchorage chain, broke into the forward store, and stole from the ships stores. The port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.416666700229598, -3.226666699628652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-26", + "dateofocc": "2007-01-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robbed 18 Jan, at 1815 UTC in position 06:15.07S-108:26.78E, Balongan Anchorage. Two robbers armed with steel bars boarded a tanker and entered the engine room. They stole generator spares and escaped through the engine r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.446388900035572, -6.251111099858292] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-27", + "dateofocc": "2007-01-16", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Bulk carrier boarded, robbed 26 Dec, 1950 local time in position 12-01.2S 077-11.0W, Inner Anchorage No.1, Callao. Three robbers armed with guns and knives boarded the bulk carrier and tied up the watchman. Another watchman noticed the robbers an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.196111100232599, -12.029166699681753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-28", + "dateofocc": "2007-01-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NIGERIA: Cargo ship (BACO LINER 2) boarded, vessel and crew of 24 Filipino nationals reportedly held hostage 20 Jan, on Chanomi Creek while en route to Warri. Per 23 Jan reporting, the Philippine foreign affairs undersecretary was under the impression", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.408333299926653, 5.558333300426114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-29", + "dateofocc": "2007-01-28", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vehicle carrier approached 28 Jan, at 0610 UTC in position 11-20.0N 065-09.9E. The vehicle carrier was underway when it received a call on VHF ch.16, from a small craft asking for fresh water. The craft closed in to 2nm from the starboar", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.152500000377131, 11.333333299870958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-30", + "dateofocc": "2007-01-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "TANZANIA: Vessel attacked, robbed 29 Jan, at 0030 local time, while at berth in Dar-es-Salaam. Despite having three crew keep deck watch, supplemented with five local watchmen, robbers boarded the vessel and held a knife to the throat of a shore watchm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-31", + "dateofocc": "2007-01-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SRI LANKA: Container ship sustained blast damage 27 Jan, at 0530 local time in position 07-01.38N 079-39.22E, Colombo Roads. At 0530, a guard at a lighthouse spotted three vessels in a restricted zone. According to a military spokesman, as the boats ap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.653611100173123, 7.023055600177543] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-32", + "dateofocc": "2007-01-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robbed 26 Jan, at 0330 local time in position 06-12.64S 108-26.01E, Balongan Anchorage. The robbers boarded the vessel via a small boat. The tanker had a life raft stolen, while it was at anchor. Local police and port s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.43361109971886, -6.210555600078919] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-184", + "dateofocc": "2007-08-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded, robbed 05 Aug at 0255 local time in position 00-01.3N 117-35.1E, Bontang anchorage. Seven robbers armed with guns, knives, crowbars and steel pipes boarded the vessel. They held the duty AB at gunpoint and tied him up. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.58499999996161, 0.021666699599621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-185", + "dateofocc": "2007-06-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "INDONESIA: Yacht reported attempted boarding 02 Jun at 1535 local time while underway in position 02:18N ¿ 107:04:48E, Anambas Islands, per 05 Aug reporting. Four pirates in aspeedboat approached the vessel. When the suspicious boat was nearly alongs", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.079999999815243, 2.299999999610293] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-186", + "dateofocc": "2007-07-16", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "PAPUA NEW GUINEA: Yacht (STAP ISI) boarded 16 Jul at 0100 local time in Madang Harbor anchorage. A gang of 3 thieves boarded the vessel. The yachtsman awoke to one of the men pressing the blade of a machete against his neck. Another thief attacked the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [145.830555600194657, -5.203333300411941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-187", + "dateofocc": "2007-08-12", + "subreg": "18", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CRUISE SHIP", + "descriptio": "UNITED STATES: Cruise ship reported suspicious approach 12 Aug 07 at 1130 local time, while docked at Long Beach Cruise Terminal. The coast guard received a report that a suspicious boat was within the 100-yard security zone around a cruise ship. The", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-118.333333299942637, 33.783333300282209] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-188", + "dateofocc": "2007-08-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DEM. REP. CONGO: Refrigerated cargo ship boarded and robbed 05 Aug 07 at 0119 local time, Ango-Ango, Matadi port anchorage. Armed robbers in two canoes boarded the vessel and threatened the deck watchman with a knife and chased him; luckily the watchma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [12.483333300402762, -5.816666700278972] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-189", + "dateofocc": "2007-08-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker reported attempted boarding 05 Aug 07 at 0225 UTC in, position 06-18.6N 003-23.9E, Lagos anchorage. A boat with six robbers approached the vessel from the stern. The watchman on duty spotted the robbers trying to board the ship by hoo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.398333300248339, 6.310000000252614] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-190", + "dateofocc": "2007-08-11", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Refrigerated cargo ship reported suspicious approach 11 Aug 07 at 1200 UTC, while underway in position 01-13N 052-38E. A trawler reportedly attempted to intercept the vessel. The ship altered its course and the trawler altered onto a collisi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.633333300397169, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-191", + "dateofocc": "2007-08-07", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SOMALIA: Vessel reported suspicious approach 07 Aug 07 at 1910 UTC while underway, in position 01-24S 050-45E. A suspicious boat crossed the bow of the vessel from starboard to port side. There was no data found on AIS. The boat altered its course a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.749999999963109, -1.400000000419425] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-192", + "dateofocc": "2007-07-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Barge boarded and crewmen kidnapped 13 Jul 07, in the evening. The vessel was carrying steel billets from Penang, Malaysia to Belawan, Indonesia, when ten gun-toting pirates boarded and attacked the Malaysian vessel. The master and th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.500000000415469, 4.500000000041211] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-193", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2115 UTC, while underway in position 12-32N 044-03E. An unlit boat, doing about 8 knots, approached the vessel on a collision course. Alert crew directed the search light towards", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.049999999836359, 12.533333300269476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-194", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2020 UTC, while underway in position 12-31N 044-12E. Two unlit boats, doing about 11.5 knots approached the vessel on a collision course. The ship took evasive maneuvers, increase", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.20000000033582, 12.51666670019705] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-13", + "dateofocc": "2008-01-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL SERVICE VESSEL", + "descriptio": "NIGERIA:Oil service vessel (LIBERTY) attacked by gunmen, 14 Jan 08, while underway near Aker base, Bonny River. The vessel was attacked while in route to the (MYSTRAS) platform. Eyewitness accounts said that a passing boat suddenly opened fire. Crewmembe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.783333300243669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-14", + "dateofocc": "2008-01-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "NIGERIA:Product tanker (GOLDEN LUCY) suffered explosion 11 Jan between 0600 and 0700 local time while docked in Port Harcourt. The fire is reported to have spread quickly and the tanker was moved away from facilities and beached on the opposite side of t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.783333300243669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-15", + "dateofocc": "2008-01-04", + "subreg": "57", + "hostility_": "ATTEMPTED BOARDING", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA:Bulk carrier reported attempted boarding 04 Jan 08 at 1740 UTC in position 06-16.2N 003-22.7E, 7.5M off Lagos anchorage. Four armed robbers in a small rubber boat attempted to board the vessel using a grappling hook. The duty crew raised the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.378333300121767, 6.269999999999527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-16", + "dateofocc": "2007-12-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA:Bulk Carrier boarded, 31 Dec 07 at 0340 UTC, Berth no. 20, Apapa, Lagos. Two armed robbers boarded the vessel during cargo operations using a long stick with a hook. Two more robbers remained in a speedboat. The duty watch keeper spotted them an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-17", + "dateofocc": "2007-12-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "NIGERIA:Product tanker boarded, robbed 21 Dec 07 at 0100 UTC in position 06-16.1N 003-18.3E, Lagos anchorage. Two robbers armed with knives boarded the vessel from the port quarter, while the duty watch keeper was on the starboard side. The robbers held", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.30499999989911, 6.268333299972426] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-18", + "dateofocc": "2007-12-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL INDUSTRY BARGE", + "descriptio": "NIGERIA:Oil Industry Barge destroyed, bystanders killed 19 Dec 07, Okrika. Nigerian gunmen attacked the vessel, a jetty and a government building, briefly capturing 18 Filipino crew and fighting with troops. The attacks were reportedly in retaliation for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.083333300407958, 4.733333300376955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-19", + "dateofocc": "2008-01-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER VESSEL", + "descriptio": "NIGERIA:Tanker (RIO BRAVO) boarded, robbed 06 Apr 07 at 0200 local time, while at berth, Lagos, per 01 Jan 08 reporting. Robbers boarded the vessel and broke open the paint storage and stole ship's stores. The alarm was raised and authorities informed. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-20", + "dateofocc": "2008-01-07", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MOZAMBIQUE:Chemical tanker boarded, robbed 07 Jan 08 at 0235 local time while at berth No. 5, Beira. A duty seaman onboard the vessel noticed one robber on the forecastle deck. The duty officer was informed and the crew alerted. When confronted, the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.833333300181266, -19.84999999980198] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-21", + "dateofocc": "2008-01-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIA:Chemical tanker boarded, robbed 07 Jan 08 at 0556 local time while at anchorage in position 16-59.8N 082-26.7E, Kakinada roads. Seven robbers in a 12 meter open boat approached the vessel. One robber boarded the vessel using a grappling hook and ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.444999999742549, 16.996666699766365] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-22", + "dateofocc": "2008-01-04", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "VIETNAM:Container ship boarded, robbed 04 Jan 07 at 0920 local time in position 20-51.8N 107-07.4E, Vinh Ha Long inner anchorage, Haiphong. Seven robbers, armed with knives, in a wooden boat came alongside the vessel during anchoring operations. They sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.123333300297759, 20.86333330036797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-23", + "dateofocc": "2008-01-10", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER VESSEL", + "descriptio": "SINGAPORE STRAIT:Tanker reported suspicious approach 10 Jan 08 at 2155 local time while underway in position 01-05.6N 103-34.5E, Phillip Channel. At a distance of 1NM, a small craft, with its searchlights on, started impeding the safe passage of the vess", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.574999999895283, 1.093333299827577] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-182", + "dateofocc": "2008-05-28", + "subreg": "62", + "hostility_": "PIRATE HIJACKING", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:Cargo ship (LEHMANN TIMBER) hijacked 28 May 08 at 1040 UTC while underway in position 13-09N 048-58E, 56NM south of the Yemen coast. The vessel was attacked by four heavily armed pirates. Lehmann GmbH shipping company said in a statement tha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.966666700161738, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-183", + "dateofocc": "2008-05-27", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 27 May 08 at 0748 UTC while underway in position 14-04.30N 049-23.72E, 28NM off the Yemen coast. A suspicious speedboat, with about five persons, was noticed proceeding towards the vessel at the starboard", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.39527780028277, 14.071666699919092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-34", + "dateofocc": "2007-01-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship chased 21 Jan, at 2025 UTC in position 03-38.7N 099-30.0E, 16nm off Kuala Tanjung. Several unlit fishing boats approached the container ship while underway. The master, suspecting piracy, increased speed and started taking", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.500000000415469, 3.645000000251855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-184", + "dateofocc": "2008-01-01", + "subreg": "63", + "hostility_": "SUSPICIOUS APPRAOCH", + "victim_d": "YACHT", + "descriptio": "SRI LANKA:Yacht (MOONFLOWER) reported suspicious approach Jan 08, approximately 85NM off the coast, per 2 Jun 08 reporting. The vessel initially spotted a boat about 4 miles away. Next to it were 2-3 smaller boats, not showing on radar. As soon as the v", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.000000000299224, 7.999999999704698] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-185", + "dateofocc": "2008-06-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA:Chemical tanker (RED WING) boarded, robbed 4 Jun 08 2030 local time while underway in position 02-36N 105-09E, approximately 75NM off the coast of Cape Tenggaron. Seven robbers armed with knives and bars boarded the tanker from a wooden speed bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.149999999743841, 2.599999999709951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-186", + "dateofocc": "2008-05-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA:Tug (CATHAY 5) boarded, robbed 27 May 08 at 0315 local time while underway in position 01-06N 103-45E, off Helen Mar Reef. The vessel was towing barge (CSF 2301) when it was boarded by four robbers armed with a small knife and parang. The tug m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.749999999878412, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-187", + "dateofocc": "2008-04-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship (RAYS) boarded 28 Apr 08 at 0225 local time, Belawan Anchorage, per 2 Jun 08 reporting. Six robbers armed with knives and sticks boarded the vessel using ropes. The crew confronted them, raised the general alarm and activa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-188", + "dateofocc": "2008-06-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SECURITY VESSEL", + "descriptio": "NIGERIA:Security vessel (SEACOR MACOR) attacked 10 Jun 08, early morning off Akwa Ibom State, Addaks Anthan oilfield OML123, off Qua Iboe river. The vessel, owned by Canada's Addax Petroleum Company, was attacked by unidentified armed militants in two sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.750000000371131, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-189", + "dateofocc": "2008-06-08", + "subreg": "57", + "hostility_": "PIRATES ATTACK", + "victim_d": "OIL SUPPLY VESSEL", + "descriptio": "NIGERIA:Oil supply vessel ALTRA G attacked on 8 JUN 2008 at 1145 local time, in oilfield OML126, approximately 22NM offshore the Nigerian coastline, south of Bonny. The vessel was traveling from Calabar area to Onne when unidentified gunmen in two speedb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-33", + "dateofocc": "2007-01-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Oil tanker boarded 22 Jan, at 1800 UTC in position 01:42N - 101:29E, at Dumai anchorage. The duty officer of the oil tanker at anchorage raised the alarm and alerted the crew, when he noticed one robber on board and another attempting to boar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-35", + "dateofocc": "2007-01-30", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VENEZUELA: Container ship boarded 30 Jan, 1945 local time in position 10-15.4N 064-42.5W, Bahia de Pozuelos, Puerto la Cruz. Two robbers boarded a container ship at anchor. The duty crew spotted the robbers and informed the duty officer on the bridge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.70833330034435, 10.256666700285848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-36", + "dateofocc": "2007-02-02", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "FISHING VESSEL", + "descriptio": "ARABIAN SEA: General cargo ship approached 02 Feb, at 1100 local time in position 10-40N 062-07E. The general cargo ship was underway when it received a call, on VHF from a craft, advising she is a Korean fishing vessel asking for fresh water. The M", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.11666670018235, 10.666666699732559] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-37", + "dateofocc": "2007-01-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded and robbed 29 Jan, 0030 local time while at berth in Dar es Salaam. Despite active anti-piracy measures, the vessel was boarded by robbers armed with knives. They took one of the watchman hostage, placed a knife to his", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-38", + "dateofocc": "2007-01-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship boarded and robbed 27 Jan, 2310 UTC in position 02-03S 106-54E, Tg. Priok anchorage. Armed robbers boarded the vessel at anchor, from the stern. They broke open the steering room door and entered the engine room via a waterti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -2.049999999586078] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-39", + "dateofocc": "2007-02-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "NIGERIA: Tug boarded while underway 8 Feb, at 1950 local time in position 05-23.4N 005-11.7E, vicinity of Forcados River. Five heavily armed pirates in a speedboat boarded a tug while underway. The pirates ordered the master to drop the anchor and for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.194999999717425, 5.389999999827182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-40", + "dateofocc": "2007-01-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CONGO: Container ship boarded, robbed 6 Jan, at 0107 local time while berthed at Boma Anchorage, Congo River. The robbers boarded a container ship waiting for berth at Matadi. The alert crew noticed the robbers, raised the alarm, and tried to obstruct", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-41", + "dateofocc": "2007-02-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Product tanker reported attempted boarding, 8 Feb at 2130 local time in position 02:00.44N-045:20.7E, 1.5nm off Mogadishu. Five pirates armed with guns attempted to board the product tanker at anchor. The master raised the alarm, and the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.344999999711831, 2.007222200219871] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-42", + "dateofocc": "2007-02-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIA: Tug boarded 15 Feb, 0815 local time, in position 12-05N 080-10.7E. Pirates, in a fishing vessel, approached the tug towing a floating crane underway. The tug tried to take evasive maneuvers, but the pirates managed to board the unmanned floati", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.178333300447093, 12.083333299670358] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-43", + "dateofocc": "2007-02-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier boarded, attempted robbery 14 Feb, at 0415 local time, in position 22-16.2N 091-43.7E, Chittagong Anchorage. Robbers boarded the bulk carrier and attempted to steal from the ships stores and ropes. As the ropes were secured on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.728333300236045, 22.269999999617596] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-195", + "dateofocc": "2007-07-22", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA: General cargo ship reported attempted boarding 22 Jul at 0300 UTC, while underway in position 06-01.4N0 80-00.5E, 12 NM off the SW coast of Sri Lanka. A small white and light-blue hulled boat, with nine persons on board, attempted to board", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.008333299821061, 6.023333299996011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-196", + "dateofocc": "2007-07-20", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Container ship reported suspicious approach 20 Jul at 1200 local time, while underway in position 11-09.0N 052-46.8E, 95 NM off the NE coast of Somalia. A small, white hulled, boat about 30-50 meters long began to follow the vessel. At a dis", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.779999999767938, 11.150000000301191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-462", + "dateofocc": "2009-12-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel hijacked in 10-50N 060-00E at 060630 UTC Dec. Mariners are advised to stay clear of this high risk area for the next 24-48 hours. caution advised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.999999999587715, 10.833333300304446] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-198", + "dateofocc": "2007-07-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 18 Jul at 2100 UTC, while anchored at Chittagong Anchorage B. Twelve robbers, in two small boats and armed with knives, attempted to board the vessel during lightering operations. D/O raised the ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.741666699903817, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-199", + "dateofocc": "2007-08-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DEM. REP. CONGO: Refrigerated cargo ship boarded and robbed 15 Aug 07 0130 UTC, in position 05-51S 013-24E at anchorage. Eight robbers armed with knives boarded the vessel. They stole cargo from the ships stores and escaped. No injuries to crew. Att", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [12.500000000299906, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-200", + "dateofocc": "2007-08-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Container ship boarded and robbed 18 Aug 07 0135 local time, at Tuticorin anchorage. Robbers boarded the vessel, stole from the ships stores, and escaped in a boat. The duty AB raised the alarm and the crew mustered. The coast guard was informe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [78.250000000402736, 8.750000000403475] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-201", + "dateofocc": "2007-08-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Chemical tanker reported suspicious approach 13 Aug 07, River Mooring No. 3, Chittagong anchorage. Suspects in country boats reportedly approached the vessel. The boats were noticed going under the hull near the stern. The suspects were c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-202", + "dateofocc": "2007-08-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Chemical tanker boarded 13 Aug 07 0355 local time, in position 03-55.5N 098-46.5E, Belawan Outer roads at anchorage. Four robbers armed with wooden sticks boarded the vessel, broke into the forward locker, and attempted to steal from the s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.775000000099737, 3.925000000224941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-203", + "dateofocc": "2007-07-21", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Container ship boarded and robbed 21 Jul 07 0115 local time, in position 10-12.6N 107-07.1E, Ho Chi Min City Outer anchorage. Five robbers armed with knives in a small boat boarded the vessel. The duty crew raised the alarm and the crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.118333300041286, 10.209999999749186] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-204", + "dateofocc": "2007-08-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "MALACCA STRAITS:Ten pirates armed with fire arms boarded a tug, in position 04-14-18N 099-04-42E, towing a barge laden with steel billets. T he pirates damaged all communication equipment, stole the crews personal belongings, and ship's documents. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.078333300428767, 4.238333300167596] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-205", + "dateofocc": "2007-08-25", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: Chemical tanker boarded 25 Aug 07, 0300 UTC, Conakry anchorage. Approximately 30 robbers armed with guns boarded the vessel. The crew locked all access to the ship and attempted to contact local authorities for help but failed to get a respons", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.729999999747974, 9.46527779988179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-206", + "dateofocc": "2007-08-23", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Container ship reported suspicious approach 23 Aug 07, 0555 UTC while underway in position 00-58N 050-48E. The vessel spotted a suspected pirate boat at a range of 10NM. The boat suddenly increased its speed and headed for the vessel. The v", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.799999999829822, 0.966666700408098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-207", + "dateofocc": "2007-08-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Product tanker boarded and robbed 22 Aug 07, 1650 UTC in position 01-04.1N 103-30.4E, Karimun STS anchorage. Eight robbers armed with knives boarded the vessel. They held three duty crewmen and tied them up. The robbers broke open the eng", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.506666699929042, 1.068333300343852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-24", + "dateofocc": "2008-01-09", + "subreg": "57", + "hostility_": "MILITANT ATTACK", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NIGERIA:M/V (BOURBON) fired upon 09 Jan 08 while underway in the Bonny River. Police stated gunmen suspected to be militants attacked a vessel operated by an oil service company, InterOil, in Nigeria's oil producing Niger Delta region, wounding three cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.086666699562784, 4.718333299607536] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-25", + "dateofocc": "2008-01-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "ANGOLA:General cargo ship boarded, robbed 14 Jan 08 at 0144 local time in position 08-42.9S 013-18.8E, Luanda anchorage. Two robbers boarded the vessel from a small boat. They broke open the forecastle paint store and stole ship's stores. The robbers wer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.313333299809074, -8.712499999587919] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-26", + "dateofocc": "2008-01-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "INDIA:Tug and barge boarded, robbed 16 Jan 08 at 1345 local time while underway in position 16-58.17N 082-24.26E, Kakinada OPL. Pirates in a small craft came alongside the vessel towing a barge. They stole ship¿s stores. The alert crew raised the alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.404444400138345, 16.969444400005216] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-27", + "dateofocc": "2008-01-31", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Civilian Yacht", + "descriptio": "ST. VINCENT AND THE GRENADINES:Yacht (CHAKITA) boarded, robbed 23 Dec 2007, Chateaubelair, NW anchorage. Three robbers, armed with machetes and a gun, boarded the vessel with a married couple onboard. They demanded entry into the hatch which resulted in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.250000000061675, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-28", + "dateofocc": "2008-01-31", + "subreg": "22", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "PERU:Bulk carrier boarded, robbed 31 Jan 2008 at 1955 local time while in position 12-01.8S 077-11.8W, Callao anchorage. Four robbers armed with long knives boarded the vessel. The robbers tied up the duty crew and stole their personal belongings. They", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.196666699583659, -12.029999999782945] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-29", + "dateofocc": "2008-01-22", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Fishing vessels", + "descriptio": "SURINAME:Fishing vessels attacked, robbed 22 Jan 2008, off the coast of Coronie. Five pirates attacked the crews of 10 fishing boats in the Atlantic Ocean and robbed them of their engines, fish and fish glue. Three of the boats had returned to the Number", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.200000000033242, 6.066666700303244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-30", + "dateofocc": "2008-01-28", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Civilian Yacht", + "descriptio": "BRAZIL:Yacht (NIRVANA 3) boarded, crewmembers assaulted, robbed late Nov 2007 at 0200, while at anchorage of the Sao Luis Yacht Club, per 28 Jan 2008 reporting. The vessel carrying a husband and wife couple was anchored alone at the mooring when it was b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.308333299864501, -2.529999999925337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-31", + "dateofocc": "2008-01-28", + "subreg": "24", + "hostility_": "Suspicious Approach", + "victim_d": "Civilian Yacht", + "descriptio": "BRAZIL:Yacht (NIRVANA 3) reported suspicious approach late 2007, probably Dec at 0600 near Abrolhos Islands, approximately 87NM from the coast, per 28 Jan 2008 reporting. A small fishing boat with four men on board reportedly chased the vessel. The vesse", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.683333300019797, -18.016666700133953] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-32", + "dateofocc": "2008-01-27", + "subreg": "51", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "MOROCCO:Container ship reported suspicious approach 27 Jan 2008 at 2105 local time, while at berth, Agadir port. Three persons in divers suites, without cylinders, swam to the vessel. The ships watchmen saw the divers and raised the alarm. The suspected", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.621666700298647, 30.420000000375808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-33", + "dateofocc": "2008-01-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "IVORY COAST:Bulk carrier boarded, robbed 30 Jan 2008 at 0145 local time, Abidjan inner anchorage. Two robbers boarded the vessel. They stole ship's store and escaped. The port authorities were informed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.030000000423513, 5.331666700373887] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-34", + "dateofocc": "2008-02-01", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "NIGERIA:Container ship boarded 01 Feb 2008 at 0315 UTC, Berth Tin Can No. 4, Lagos port. Three robbers boarded the vessel and broke into the forward paint locker. The duty officer raised the alarm and the robbers escaped in a waiting boat. Nothing was st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-481", + "dateofocc": "2010-11-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "ARABIAN SEA: Pirate action group sighted in 10-30N 059-04E at 230105Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.066666700218605, 10.500000000235218] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-190", + "dateofocc": "2008-06-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:Chemical tanker boarded 7 Jun 08, Lagos tanker berth. Robbers boarded the vessel from the outboard side. They attempted to open a cargo tank. The duty AB spotted him and the robber immediately jumped overboard and escaped. At the time of the inci", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-191", + "dateofocc": "2008-06-12", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "NIGERIA:Fishing trawler (MAREENA 1) boarded, robbed, crewmember killed, 13NM off the coast, early 2008, per 12 Jun 08 reporting. The vessel was boarded by nine heavily armed men in a speedboat who shot dead the boats cook. The pirates stole everything th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.249999999808267, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-192", + "dateofocc": "2008-05-27", + "subreg": "57", + "hostility_": "Terrorist Attack", + "victim_d": "Shell Oil Facility", + "descriptio": "NIGERIA:MEND claims responsibility for attack on Shell facility, soldiers reportedly killed 26 May 08 at 0100 local time, Awoba flow station in Degema Local Government Area of Rivers State. According to the MEND, they successfully sabotaged another major", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.733333300441643, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-193", + "dateofocc": "2008-05-22", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Unknown Vessel", + "descriptio": "NIGERIA:Nigerian security forces reportedly foiled attack on maintenance crew at Royal Dutch Shell 22 May 08, Niger Delta oilfield. The crew was on its way to the Alakiri oilfield in Okrika district of Rivers state when it was attacked by gunmen, who wer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.089999999792212, 4.730000000147584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-194", + "dateofocc": "2008-06-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MILITARY BOAT", + "descriptio": "CAMEROON:Military boat hijacked 9 Jun 08, Bakassi Peninsula, Gulf of Guinea. Suspected pirates have conducted an attack on a Cameroonian military patrol. Out of nine Cameroonian military officers who were on board the boat conducting a docking maneuver,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.750000000403475, 4.833333300110382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-195", + "dateofocc": "2008-06-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "REFRIGERATED CARGO SHIP", + "descriptio": "CONGO:Refrigerated cargo ship reported attempted boarding 5 Jun 08 at 0415 local time, Poine Noire Anchorage. Two robbers in a canoe approached the vessel. One robber attempted to board the ship with a long pole attached with a hook. As the robber reache", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.883333300203503, -4.733333299686308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-196", + "dateofocc": "2008-06-09", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:Cargo ship reported suspicious approach at 0510 UTC while underway in position 13-04N 047-08E, 31NM off the coast of Yemen, per 9 Jun reporting. One suspicious speedboat traveling at a speed of approximately 20kts reportedly attempted to app", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.133333299769617, 13.066666699630275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-197", + "dateofocc": "2008-06-03", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 3 Jun 08 at 1640 local time/1340 UTC while underway in position 13-16N 047-20E, 21NM off the coast of Yemen. A white speedboat with four persons onboard crossed the front of the vessel at approximately two", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.333333300135848, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-198", + "dateofocc": "2008-06-12", + "subreg": "63", + "hostility_": "LTTE", + "victim_d": "NAVY OUTPOST", + "descriptio": "SRI LANKA:LTTE attacks Navy outpost 12 Jun 08 at 0125 local time, Erukkalampiddi, Mannar Island. A group of Sea Tigers arrived in six boats and launched the attack. The sailors defended their post effectively, causing the attackers to withdraw with their", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.866666699632219, 8.999999999737042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-200", + "dateofocc": "2008-05-29", + "subreg": "63", + "hostility_": "UNKNOWN", + "victim_d": "UNKNOWN", + "descriptio": "SRI LANKA:Sri Lankan military sinks LTTE vessels 29 May 08, off the northern coast. Sri Lanka¿s military sank three to four Tamil Tiger rebel boats in a pre-dawn attack and stated that eight rebels and one soldier was killed, and two soldiers were wound", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.249999999568104, 9.833333300272102] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-44", + "dateofocc": "2007-02-15", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "RED SEA: Yacht reported suspicious approach 15 Feb, at 0935 local time in position 13-27N 043-02E, 15 miles northwest of Al Mukha. A 40-meter yacht sighted two small fishing crafts underway, carrying five persons each. One craft moved 200 miles ahead o", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.033333299906872, 13.449999999566217] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-45", + "dateofocc": "2007-02-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker boarded and robbed 3 Feb, 0245 local time in position 06-03.0N 003-25.5E, Lagos Roads. Five pirates, armed with guns, boarded the tanker drifting 20 miles off the breakwaters. The pirates threatened the duty AB, at forward station by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.424999999759109, 6.050000000406101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-46", + "dateofocc": "2007-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: UN-chartered aid cargo ship hijacked 25 Feb, at 0603 UTC in position 11-50N 051-35E, off the northeastern coast near Bargal. Suspected Somali pirates, armed with AK-47 rifles and rocket-propelled grenade launchers, intercepted the M/V ROZEN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.583333299598792, 11.83333330033679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-47", + "dateofocc": "2007-02-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded 18 Feb, 0100 local time, in position 06-16.2S 108-27.7E at SM Balongan. Four robbers armed with knives boarded the tanker, discharging at a SBM. They entered the engine room. They were noticed by the duty oiler, who inform", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.461666699581201, -6.270000000208199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-48", + "dateofocc": "2007-02-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN SHIP", + "descriptio": "NIGERIA: Ship boarded, robbed 27 Feb, at 0415 local time approximately 5NM off Lagos. Two robbers armed with knives boarded the ship, via the stern. They threatened the watch keepers with knives and stole two mooring ropes. The alarm was raised. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.351666700435771, 6.317777800312854] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-49", + "dateofocc": "2007-02-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Ship boarded, robbed 26 Feb, at 0315 local time in position 06-37.4S 039-32.0E, drifting off Dar es Salaam port. Ten pirates, armed with long knives, boarded the ship from the bow. The pirates tied up the duty AB and asked for ship's store", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.533333300243328, -6.623333300403942] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-50", + "dateofocc": "2007-02-28", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "OMAN: Motor yacht reports suspicious approach 28 Feb, at 0945 UTC in position 21-11.47N 059-33.70E, 51NM northeast of Ras Hilf Masirah. The yacht was contacted on VHF by a passing vessel asking for a weather report and the number of crew on board. Su", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.561666700427963, 21.191111099755062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-51", + "dateofocc": "2006-02-12", + "subreg": "62", + "hostility_": "YACHT", + "victim_d": "SUSPICIOUS APPROACH", + "descriptio": "GULF OF ADEN: Sailing yacht reports suspicious approach 12 Feb, at 0920 local time. While underway, the crew onboard one of the Blue Water Rally group yachts (GYPSY MOTH IV) spotted a small boat, approaching a 53 foot ketch. The Captain tightened the", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.313888900292, 12.449722199858343] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-52", + "dateofocc": "2007-02-28", + "subreg": "22", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU:28 Febuary 2007 at 1500 UTC in position 06-53.06S 81-43.08W, 50NM off Islas Lobos De Afuera, west coast of Peru, a chemical tanker underway detected a small craft at 3NM range on radar on Port Bow. Craft was stationary but started crossing to STBD", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.718055599757633, -6.884444400027178] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-208", + "dateofocc": "2007-08-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: General cargo ship boarded and robbed 18 Aug 07, 0300 local time in position 03-54.47N 098-46.68E, Belawan anchorage. Robbers boarded the vessel and held one AB hostage. They stole from the ships stores and escaped. The AB was released un", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.778055599579034, 3.907777799902135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-209", + "dateofocc": "2007-08-02", + "subreg": "72", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Product tanker boarded 02 Aug 07, 0100 local time, while at berth at Shell Jetty,Sandakan, Sabah. An unknown person boarded the vessel via the gangway. The crew spotted him and chased him. The intruder ran towards the forecastle, jumped ove", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.058333300017352, 5.791666699687312] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-210", + "dateofocc": "2007-08-24", + "subreg": "71", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Product tanker reported missing crewmember 24 Aug 07, 0055 local time in position 03-55.3N 098:46.56E, Belawan anchorage. The vessel waiting at berth, maintained an anti-piracy watch on the forecastle, main deck, and poop deck. The ABs on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.776111099876459, 3.921666699995569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-211", + "dateofocc": "2007-08-27", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "JAMAICA: General cargo ship boarded and robbed 27 Aug 07 in the evening, Kingston outer anchorage. Robbers boarded the vessel unnoticed. They broke into containers and storerooms and stole the ships cargo and stores. They also entered the superstruct", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.776666699624059, 17.881666700195183] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-212", + "dateofocc": "2007-08-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GUYANA: Fishing boat hijacked and robbed 27 Aug 07, Waini River. Five robbers armed with guns boarded the vessel and robbed the crew of their catch of fish. The robbers also stole from the ships stores. They took the crew as hostages to another fishin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.949999999929673, 8.516666700067731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-213", + "dateofocc": "2007-08-23", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EGYPT: General cargo ship boarded 23 Aug 07, 2210 local time, Port Said. Robbers from five boats boarded the vessel during mooring maneuvers, despite prevention attempts by the master and crew. The robbers tried to force open and gain access into stor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.31666669957832, 31.249999999782119] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-214", + "dateofocc": "2007-08-29", + "subreg": "72", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier reported suspicious approach 29 Aug 07 0530 local time, while underway in position 02-30S 118-30E, Makassar Straits. Three white speedboats, traveling at 17kts, approached the vessel from the port and starboard side. The D/O r", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.500000000130626, -2.500000000185196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-215", + "dateofocc": "2007-08-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Container ship reported attempted boarding 28 Aug 07 1030 local time, while underway in position 06-06.9N 098-30.7E. Ten armed men in a speedboat, attempted to board the vessel. Due to the ships higher speed, the pirates could not b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.511666700023852, 6.115000000142857] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-105", + "dateofocc": "2007-05-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Bulk carrier boarded and robbed 3 May at 0315 local time, while berthed in position 01-11.7S 116-46.8E, Balikpapan Port. Robbers boarded the bulk carrier, while the crew and officers were busy, during the carrier's final stages of cargo op", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.780000000038967, -1.194999999796721] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-216", + "dateofocc": "2007-08-21", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PHILLIPINES: Container ship boarded 21 Aug 07 2200 local time, in position 14-35N 120-57E, Manila anchorage. Two robbers armed with long knives boarded the vessel via the anchor chain. The hawse pipe cover, which was installed and secured by three wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.949999999895113, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-217", + "dateofocc": "2007-09-04", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Container ship boarded and robbed 04 Sept 07, at 0001 local time Callao anchorage. Robbers boarded the vessel, tied up the watchman, stole from the ships stores, and from the crews personal effects. The local authorities and agents were informed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-218", + "dateofocc": "2007-09-09", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo Vessel reported suspicious approach 09 Sept 07, at 0850 UTC in position 01-30.N 050-12.5E. The suspicious vessel was at a distance of 7.5NM, bearing 335 degrees, with a speed of about 12kts and a course of 170 degrees. Closest Point of", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.208333300116408, 1.49999999994418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-35", + "dateofocc": "2008-01-18", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "NIGERIA:Tanker boarded, robbed 18 Jan 2008 at 0353 local time, 3NM off Lagos. Robbers boarded the vessel during STS cargo operations, stole ship's stores and escaped. No injuries to crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-36", + "dateofocc": "2008-01-31", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cement Carier", + "descriptio": "EQUATORIAL GUINEA:Cement carrier boarded, robbed 31 Jan 2008 at 0615 local time while underway in position 03-12N 008-36E, 15NM southwest of Bioko Island. Ten armed persons in military clothing boarded the vessel. The intruders identified themselves as N", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.599999999904014, 3.19999999990921] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-37", + "dateofocc": "2008-01-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "General Cargo", + "descriptio": "ANGOLA:General cargo ship boarded, robbed 23 Jan 2008 at 0620 local time in position 08-46.2S 013-16.4E, Luanda inner anchorage. Robbers boarded the vessel and broke open the forward paint locker, and stole ship's stores unnoticed. A search was conducted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.273333299555986, -8.769999999839342] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-38", + "dateofocc": "2008-02-01", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "Product Tanker", + "descriptio": "GULF OF ADEN:Product tanker fired upon 01 Feb 08 at 1510 local time while underway in position 12-55N 051-23.6E. A small wooden fast boat with four men onboard was observed approaching the vessel. The alert crew put their piracy attack plan in place, loc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.393333299745507, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-39", + "dateofocc": "2008-02-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tug Boat", + "descriptio": "GULF OF ADEN:Tug (SVITZER KORSAKOV) hijacked 01 Feb 08 at 1400 UTC while underway in position 12-57N 051-24E. An unknown number of Somali pirates attacked and hijacked the vessel, taking its crew of six hostage. All crewmembers are reportedly unharmed an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.400000000029081, 12.949999999999704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-203", + "dateofocc": "2008-06-07", + "subreg": "73", + "hostility_": "PIRATE ATTACK", + "victim_d": "LIVESTOCK CARRIER", + "descriptio": "INDONESIA:Livestock carrier fired upon 7 Jun 08 at 1000 local time while underway in position 03-18.5N 125-05.8E, vicinity of Kepulauan Sangir. Pirates in a speedboat chased and opened fire on the vessel in ballast enroute to Australia. The master took e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.096666700294577, 3.308333300128538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-40", + "dateofocc": "2008-01-26", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "SOMALIA:Fishing vessel reported hijacked 26 Jan 08, near the village of Seyla, off the Puntland coast. The vessel was reportedly hijacked by six unidentified heavily armed gunmen and taken to Eyl. The spokesman of a group of gunmen who reportedly hijacke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.500000000403134, 11.399999999634815] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-41", + "dateofocc": "2008-02-02", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "SOUTH CHINA SEA:Bulk carrier reported suspicious approach 02 Feb 08 at 0030 local time while underway in position 05-09N 106-51E. Two unlit white-hull speedboats, about five meters long, approached the vessel (IMB).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.849999999708871, 5.150000000107184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-42", + "dateofocc": "2008-02-06", + "subreg": "22", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "PERU:Container ship boarded 06 Feb 08 at 0052 local time at Anchorage no. 1, Callao. Robbers boarded the vessel from a small boat. The duty crew spotted them. The alarm was raised and the crew mustered. The robbers escaped and the authorities were inform", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-43", + "dateofocc": "2008-02-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Security Vessel", + "descriptio": "NIGERIA:Security vessel (PATIENCE) boarded, robbed 11 Feb 08 at Buoy 35, Bonny Channel. The vessel, belonging to the Elf Petroleum Nigeria Limited, was boarded by unknown gunmen and reportedly threw a crewmember overboard. The crewmember was later rescue", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-44", + "dateofocc": "2008-01-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:Product tanker boarded 30 Jan 08 at 2130 UTC in position 06-17.62N 003-24.7E, Lagos anchorage. Four robbers armed with handguns and knives boarded the vessel. The alert crew raised the alarm and the crew mustered. The robbers stole ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.411666699916111, 6.293611100031001] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-45", + "dateofocc": "2008-02-14", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Ship boarded, robbed 14 Feb 08 at 0341 local time while drifting in position 06-43.5S 039-43.8E, 20NM off the coast. Three pirates boarded the vessel from a small wooden boat equipped with an outboard engine. The ship was awaiting berthing instr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.73000000038013, -6.725000000164414] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-199", + "dateofocc": "2008-06-02", + "subreg": "63", + "hostility_": "SRI LANKAN NAVY", + "victim_d": "INDIAN FISHERMEN", + "descriptio": "SRI LANKA:Indian fishermen shot by Sri Lankan Navy 2 Jun 08 2300 local time, near Katchativu. Sri Lankan navy allegedly shot dead an Indian fishermen while he was fishing in a motorized boat along with three others. Police said the fishermen, who suffere", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.283333300404649, 9.283333299939557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-202", + "dateofocc": "2008-06-04", + "subreg": "93", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CONTAINER SHIP", + "descriptio": "MALAYSIA:Container ship reported suspicious approach 4 Jun 08 at 2220 local time while underway in position 03-05.3N 104-31.3E, 60NM off the coast. A small boat approached the vessel from astern at a distance of 1.7NM. The master raised the alarm, increa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.521666699831485, 3.088333299635792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-204", + "dateofocc": "2008-06-03", + "subreg": "71", + "hostility_": "PIRATE BOARDING", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:Container ship boarded 3 Jun 08 at 2000 UTC, while underway in position 03-24N 105-31E, off Anambas. Eight pirates armed with long knives and bars boarded the vessel. The pirates stole the crew¿s cash and property and escaped. No injuries to c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.516666699607356, 3.40000000027544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-205", + "dateofocc": "2008-06-19", + "subreg": "57", + "hostility_": "Pirate Kidnapping", + "victim_d": "Oil Supply Vessel", + "descriptio": "NIGERIA:Oil supply vessel (SOLAR TIDE II), American citizen kidnapped 19 Jun 08, 25NM west of the Pennington River entrance. The kidnapping came after a militant group in speedboats launched an attack on the Bonga flow station. After the attack, the gunm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-206", + "dateofocc": "2008-06-13", + "subreg": "63", + "hostility_": "Pirate Boarding", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:Container ship boarded, robbed 13 Jun 08 at 2354 local time while in position 22-13.8N 091-44.3E, Chittagong Outer Roads Anchorage 'B'. Six robbers in a long wooden boat with an outboard engine boarded the vessel. They stole ship's stores and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.738333299849671, 22.230000000263828] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-207", + "dateofocc": "2008-06-07", + "subreg": "93", + "hostility_": "Pirate Boarding", + "victim_d": "General Cargo Ship", + "descriptio": "VIETNAM:General cargo ship boarded, robbed 13 Jun 08 at 0230 local time while in position 20-53.84N 107-15.66E, Port Campha Inner Anchorage. Robbers in a small boat boarded the vessel. They stole ship's stores from the forecastle deck and escaped. The du", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.261111099831567, 20.897222199688599] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-201", + "dateofocc": "2008-06-09", + "subreg": "73", + "hostility_": "PIRATE ATTACK", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "CELEBES SEA:IMB reported livestock carrier (HEREFORD EXPRESS) fired upon 7 Jun 08 at 1000 local time while underway in position 03-18.5N 125-05.8E, vicinity of Kepulauan Sangi, Indonesia. ReCAAP ISC reported the same incident occurred on 9 Jun 08 at 1454", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [124.555000000447876, 3.899444399591516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-53", + "dateofocc": "2007-03-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ANGOLA: General cargo ship boarded, robbed, 9 Mar at 0335 local time at Luanda Inner Anchorage. Two robbers boarded the general cargo ship forward. They tied up the duty AB and snatched his walkie-talkie and tried to open the hawse pipe cover plate nut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.268055600348021, -8.763888899806204] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-54", + "dateofocc": "2007-03-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN BOAT", + "descriptio": "NIGERIA: Policemen killed, robbed, 12 Mar at approximately 1400 local time in Rivers State. The policemen were escorting a boat belonging to the Nigerian Liquidified Natural Gas (NLNG) to Bonny Island when the boat ran into an ambush laid by alleged pi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.100000000305158, 4.283333299777837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-55", + "dateofocc": "2007-03-08", + "subreg": "63", + "hostility_": "PIRATE", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Chemical tanker boarded, 8 Mar at 0345 local time in position 21-39.95N 088-01.05E, Sagar Anchorage. One robber boarded the chemical tanker at poop deck. The Duty Officer noticed the robber, raised the alarm, and the crew mustered. The robber jum", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.017499999592246, 21.665833300162376] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-56", + "dateofocc": "2007-03-12", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Heavy Lift vessel reported suspicious approach 12 Mar, while underway in position 12-42N 056-44E, east of Socotra, Yemen. A suspicious fishing vessel kept calling on VHF-16 to the heavy lift vessel and asking them to keep clear of their", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.733333300259972, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-57", + "dateofocc": "2007-03-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Port of Mogadishu mortared 18 Mar, Somalia. More than 15 persons were wounded, after unknown gunmen fired a barrage of mortars, at Mogadishu international seaport and surrounding neighborhoods. Three mortar rounds reportedly hit inside the po", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-58", + "dateofocc": "2005-03-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "RESEARCH SHIP", + "descriptio": "SUDAN: Research vessel fired upon 11 Mar, at 1929 local time while underway in position 18-29.02N 038-19.26E, within territorial waters off the southern coast of Sudan. Fifteen men in a 12 m wooden boat armed with AK-47s approached the research ship,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [38.321111099778477, 18.483611100272299] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-59", + "dateofocc": "2007-03-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "RESEARCH SHIP", + "descriptio": "SUDAN: Research vessel fired upon 12 Mar at 1305 local time, while underway in position 18-27.4N 038-17.8E, within territorial waters off the southern coast of Sudan. Men in a wooden boat armed with AK-47s approached the research vessel, which was con", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [38.296666699645812, 18.456666700011453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-60", + "dateofocc": "2007-03-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Product tanker reported attempted boarding, 12 Mar at 0410 local time in position 06-14.2S 108-26.5E, Balongan anchorage. Robbers armed with knives, in an unlit boat, approached the product tanker at anchor and threw a line onboard the ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.441666700353949, -6.236666700238629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-61", + "dateofocc": "2007-03-15", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Container ship boarded and robbed 15 Mar at 1640 UTC, while anchored in position 10-14.4N 107-04.8E, 5NM south of Vung Tau. The robbers boarded the vessel at the forecastle deck. The ships stores were stolen (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.079999999815243, 10.240000000388704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-62", + "dateofocc": "2007-03-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIA: Rig boarded 22 Mar at 0705 UTC while under tow by two tug boats, in position 08-43.0N 076-14.0E, off the southwest coast. Three pirates, in two speedboats, boarded the rig and started preparing to transfer equipment from the rig to their speedb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.233333300440904, 8.716666700433905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-63", + "dateofocc": "2007-03-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded 21 Mar at 1855 UTC , in position 01-41.20N 101-27.90E, Dumai port. Three robbers armed with knives boarded the tanker from port quarter. They entered the accommodation. The Master raised the alarm and the authorities were i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.464999999584222, 1.686666699568036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-64", + "dateofocc": "2007-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker (AI MARU) boarded 14 Mar at 1630 local time, while underway in position 01-07.29N 105-03.66E, approximately 30NM east of Pulau Bintan. The tanker was approached by two speedboats with ten men. The men were dressed in camouflage and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.061111100300025, 1.121388899689862] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-219", + "dateofocc": "2007-08-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "SRI LANKA: Yacht (FLYING GERMANIA II) reportedly attacked 18 Aug 07 at 0750 local time, while underway in position 05-22.58N 78-9.75E, 78 miles southwest of the coast as of 12 Sept 07 reporting. The vessel reported being chased and attacked by a numbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [78.162500000411171, 5.376388900308598] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-220", + "dateofocc": "2007-09-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robber apprehended 09 Sept 07 at 0030 local time, in position 06-15.43S 108-27.23E, Balongan anchorage. Two robbers boarded the vessel and broke into the store locker and stole ships property. They tried to lower the sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.453888900420282, -6.257222199891487] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-48", + "dateofocc": "2008-02-08", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Oil Tanker", + "descriptio": "INIDIA:Oil Tanker boarded 08 Feb 08 at 0030 local time, Kandla anchorage. The duty watchman on the vessel noticed robbers on the forecastle. Upon seeing the alert crew, the robbers jumped overboard and escaped. The padlock of the forecastle store was bro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.03333330015937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-221", + "dateofocc": "2007-09-09", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "SINGAPORE: Yacht (DILAN) reported suspicious approach 09 Sept 07 at 1145 local time, in position 01-54.1N 106-31.49E, 48NM southeast of Pulau Repong. The vessel reported two speedboats carrying an unknown number of men onboard and that were believed t", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.524722199550695, 1.901666699804309] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-222", + "dateofocc": "2007-09-11", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PAPUA NEW GUINEA: Vessel (NOSY) boarded, robbed, skipper missing per reporting 11 Sept 07, in the evening, near Fergusson Island in Milne Bay Province. The captain of the vessel is believed to have jumped overboard while the crew was hospitalized after", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [150.583333300102481, -8.366666699776886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-223", + "dateofocc": "2007-09-13", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: General cargo ship boarded and robbed 13 Sept 07 at 0550UTC, in position 18-33.9N 072-23.0W, Port-au-Prince. Robbers, armed with knives, boarded the vessel unnoticed. The ships general alarm sounded and the crew mustered. The robbers jumped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.565000000230725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-224", + "dateofocc": "2007-07-13", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship (HS DISCOVERER) boarded and robbed 13 Jul 07 at 0320 local time, Santos, per 7 Sept 07 reporting. Four pirates, armed with guns and knives and wearing black masks, came on board and threatened forward security watchman. One boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.333333300312177, -23.966666699561927] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-225", + "dateofocc": "2007-07-21", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BRAZIL: Container ship (HS BERLIOZ) boarded and robbed 21 Jul 07 at 0245 local time, approximately 11 miles offshore Santos, per 7 Sept 07 reporting. Two crew on deck patrol reported to the bridge, via radio, that they sighted two robbers wearing ski m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.333333300312177, -23.966666699561927] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-226", + "dateofocc": "2007-07-11", + "subreg": "36", + "hostility_": "ATTEMPTED BOARDING", + "victim_d": "MERCHANT VESSEL", + "descriptio": "UNITED KINGDOM: Bulk Carrier (BROADGATE) attempted boarding and arrest made 11 Jul 07 at 1650 local time, Liverpool per 7 Sept 07 reporting. The second officer on the gangway watch saw two men coming up the gangway, dressed as stevedores. When the dut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "I" + }, + "geometry": { + "type": "Point", + "coordinates": [-2.983333299854564, 53.416666699990913] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-46", + "dateofocc": "2008-02-04", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "General Cargo", + "descriptio": "TANZANIA:General cargo ship boarded 04 Feb 08 at 0330 local time, Dar es Salaam anchorage area 4. Twelve robbers in a speedboat approached the vessel and two of the robbers boarded the vessel. The alert crew raised the alarm, SSAS was activated and the p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-47", + "dateofocc": "2008-02-11", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 11 Feb 08 at 0540 UTC while in position 13-38.5N 050-22.0E, approximately 70NM off the coast of Yemen. Two suspicious vessels, one with a blue hull, and the other with a red hull, and both with a whi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.366666700027167, 13.641666700345866] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-49", + "dateofocc": "2008-01-29", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Civilian Yacht", + "descriptio": "SRI LANKA:Yacht (COBRA) reported suspicious approach 29 Jan 08 while underway in position 06-00.8N 082-01.9E, 130nm East of Galle. A red fishing boat with five men onboard approached the vessel. The crew fired shots in the air and the suspicious craft mo", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.031666700066467, 6.013333300382385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-50", + "dateofocc": "2008-02-17", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "General Cargo Vessel", + "descriptio": "MALAYSIA:General cargo ship boarded, robbed 17 Feb 08 at 0540 local time while in position 05-48N 118-05E, Berth no. 2, Sandakan port. The duty crew on board the vessel reported that a boat approached from the port bow. One robber was noticed on the fore", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-51", + "dateofocc": "2008-01-20", + "subreg": "97", + "hostility_": "UNKNOWN", + "victim_d": "MV CAPTAIN USKOV", + "descriptio": "The \"MV CAPTAIN USKOV\" departed Nakhodka, Russia for Hong Kong, China on the 15-JAN-2008 with a cargo of 4,535.45 mt steel coils. Communication with the ship was lost since 20-JAN-2008, 0300LT. The last radio contact was in position 31-40N 125-28E, 221 N", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.466666700387464, 31.666666700411668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-52", + "dateofocc": "2008-01-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SINGAPORE PORT OPERATION CONTROL CENTER:THERE WAS A REPORT OF PIRACY ATTACK ON 19-JAN-2008 0354Z AT 01-44.91S 108-00.09E (KARIMATA STRAIT). MARINERS ARE ADVISED TO TAKE PRECAUTION AND INCREASE LOOK OUT FOR SUSPICIOUS SMALL FAST MOVING CRAFT APPROACHING T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.001388899692927, -1.748611100034225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-53", + "dateofocc": "2008-02-01", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "VLCC Kasagisan", + "descriptio": "STRAIT OF MALACCA:VLCC (KASAGISAN) reported suspicious approach 01 Feb 08 at 0940 while underway in position 04-00N 099-35E, per 02 Apr 08 reporting. Six small boats were sighted in close proximity to the vessel. The ship master and crew activated the fi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.583333300251752, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-54", + "dateofocc": "2008-02-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "NIGERIA:General cargo ship boarded, robbed 21 Feb 08 at 0330 local time in position 06-26.3N 003-23.5E, Apapa berth no. 12, Lagos. Two robbers managed to board the vessel in spite of armed navy guards being onboard. The robbers forced open the forecastle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.391666699789539, 6.438333299699138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-55", + "dateofocc": "2008-02-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NIGERIA:Vessel reported attempted boarding 21 Feb 08 at 2340 local time while in position 06-18.4N 003-20.4E, Lagos anchorage. Just before watch change over, the forward duty watchman heard the engine of a motor boat approaching on the portside. He immed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.339999999895781, 6.306666700023186] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-56", + "dateofocc": "2008-02-27", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CIVILIAN YACHTS", + "descriptio": "INDIAN OCEAN:Yachts reported suspicious approach 27 Feb 08 at 0700 UTC/1100 local time, while in position 13-05.6N 057-49.44E, 197NM east of Socotra Island, Yemen. The three vessels were approached by a 60-70ft long liner with at least 16 people on board", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.823888899763176, 13.093333300215647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-208", + "dateofocc": "2008-04-29", + "subreg": "73", + "hostility_": "Pirate Boarding", + "victim_d": "Civilian Yacht", + "descriptio": "INDONESIA:Yacht (CARILLON) boarded, robbed in late April at 0030 while at anchorage in position 07-15.5S 131-23.9E, Pulau Ungar, western side of Tanimbar Islands, per 14 Jun 08 reporting. Two or three men boarded the vessel armed with knives or machetes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [131.398333299891192, -7.258333299700496] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-209", + "dateofocc": "2008-06-18", + "subreg": "26", + "hostility_": "Pirate Boarding", + "victim_d": "Vehicle Carrier", + "descriptio": "HAITI:Vehicle carrier boarded, robbed 18 Jun 08 at 0530 local time while at anchorage in position 18-34.2N 072-24.2W, Port Au Prince anchorage. Robbers boarded the vessel via the anchor chain. They stole ship's stores from the forward station and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40333330024697, 18.569999999587878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-210", + "dateofocc": "2008-06-19", + "subreg": "57", + "hostility_": "unknown", + "victim_d": "Oilfield Production Unit", + "descriptio": "NIGERIA:MEND reportedly attacks Bonga oilfield production unit 19 Jun 08, oilfield OML 212, approximately 63NM offshore. According to a Nigerian Navy spokesman, three people were kidnapped from a private security vessel during the attack. MEND reportedly", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.500000000008868, 5.750000000306443] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-211", + "dateofocc": "2008-06-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "Private Yacht", + "descriptio": "GULF OF ADEN:Privately owned yacht attacked, passengers kidnapped 23 Jun 08, coastal town of Lasqorey. Four foreign tourists (French and Germans) were cruising in the Gulf of Aden when they reportedly ran out of gas. An official said the foreigners were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.250000000331909, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-212", + "dateofocc": "2008-06-21", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 21 Jun 08 at 0610 local time while underway in position 13-08.7N 048-03.7E, approximately 50NM south of Yemen. Two wooden speedboats approached the vessel. One boat crossed the bow, and the other waited on", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.061666699606405, 13.145000000109405] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-213", + "dateofocc": "2008-06-21", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "GULF OF ADEN:Cargo vessel reported suspicious approach 21 Jun 08 at 1015 UTC while underway in position 13-24.2N 048-17.9E, approximately 34NM south of Yemen. One speedboat with at least three persons onboard approached the vessel from the starboard quar", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.298333300171521, 13.403333299928875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-214", + "dateofocc": "2008-06-17", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 17 Jun 08 at 0730 local time/0430 UTC while underway in position 13-29N 048-50E, 34NM south of Yemen. The vessel encountered six suspicious small crafts, with three men in each, converging towards the vess", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.833333299734704, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-215", + "dateofocc": "2008-05-21", + "subreg": "72", + "hostility_": "Pirate Hijacking", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:Product tanker BLUE OCEAN-7 hijacked on 21 MAY 2008, recovered 19 JUN 2008, Makassar Strait. Approximately ten armed pirates boarded and hijacked the vessel transporting crude palm oil from Bone Manjing, Indonesia to Malaysia. After six hours,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.249999999930083, 0.499999999911836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-216", + "dateofocc": "2008-06-13", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Catamaran", + "descriptio": "DOMINICA:Catamaran boarded, robbed 13 Jun 08 at approximately 1030 local time while moored, Roseau. After the passengers turned in for the evening they woke up and discovered all their cash had been removed from their wallets. The incident was reported t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.383333299764672, 15.283333300133563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-65", + "dateofocc": "2007-03-15", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "VIETNAM: Container ship boarded and robbed 15 Mar at 1640 UTC, while anchored in position 10-14.4N 107-04.8E, 5NM south of Vung Tau. The robbers boarded the vessel at the forecastle deck. The ships stores were stolen (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.079999999815243, 10.240000000388704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-482", + "dateofocc": "2010-11-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "ARABIAN SEA: Pirate action group in 13-33N 059-16E at 240350Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.266666699685459, 13.550000000198963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-66", + "dateofocc": "2007-03-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Product tanker reported attempted boarding, 12 Mar at 0410 local time in position 06-14.2S 108-26.5E, Balongan anchorage. Robbers armed with knives, in an unlit boat, approached the product tanker at anchor and threw a line onboard the ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.441666700353949, -6.236666700238629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-67", + "dateofocc": "2007-03-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Product tanker boarded 31 Mar, at 0100 local time in position 06-14.4N 003-14.4E, 12NM southwest of Lagos. The robbers, armed with knives, boarded the product tanker at forecastle anchor using grappling hooks. They successfully cut mooring r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.240000000162297, 6.240000000259329] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-68", + "dateofocc": "2007-03-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL RIG", + "descriptio": "NIGERIA: Oil rig (BULFORD DOLPHIN) boarded and worker kidnapped 31 Mar at 0400 local time, 40 NM off the coast of Nigeria. The gunmen first targeted a support vessel, moored to the Bulford Dolphin rig. The gunmen overpowered the crew, then climbed onto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.666666699603184, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-69", + "dateofocc": "2007-04-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo dhow (MSV SAHIBA) attacked 5 Apr in the afternoon, while underway in territorial waters off the port of Kismayo. Gunmen in speedboats opened fire on the Indian flagged dhow, but then experienced engine troubles allowing the dhow time to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.566666700134647, -0.416666700284225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-70", + "dateofocc": "2007-04-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo dhow (M/V NISHAN) attacked 3 Apr in the evening, while anchored outside the port of Mogadishu. Gunmen in two boats approached the UAE registered vessel and opened fire. The captain contacted the port authorities, who sent in speedboats", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-71", + "dateofocc": "2007-04-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo dhow (M/V NIMATULLAH) hijacked 1 Apr, in the evening, while anchored outside the port of Mogadishu. The UAE registered dhow was hijacked, while awaiting clearance to enter the port of Mogadishu. Sources report that the vessel was seized", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-72", + "dateofocc": "2007-03-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: General cargo ship boarded 29 Mar 0200 local time in position 03:14N-112:58E, at Bintulu general cargo anchorage. Five robbers, armed with knives, boarded the general cargo ship. The second officer spotted them and raised the alarm and alert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.966666700432825, 3.23333329987878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-73", + "dateofocc": "2007-03-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALACCA STRAIT: Bulk carrier reported attempted boarding 28 Mar at 0707 UTC, while underway in position 04-40.0N 099-15.5E. Four men in a 15 meter speedboat with a grey wooden hull were observed drifting across the vessels course line. The speedboat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.258333299769106, 4.666666700437816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-74", + "dateofocc": "2007-03-25", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING BOAT", + "descriptio": "GUYANA: Fishing vessel boarded and robbed 25 Mar at 2330 local time, at the mouth of the Pomeroon River. Five robbers armed with guns, in a speed boat, boarded the fishing vessel and opened fire. They then ordered the fishermen to lie down on the deck", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.750000000430475, 7.666666699635527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-75", + "dateofocc": "2007-04-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Containership robbed, 5 Apr after 2130 local time in position 06-36S 039-36E, 23NM east of Dar Es Salaam entrance channel. The duty officers did not notice any suspicious boat movement on the radars, while drifting off the coast, awaiting be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.600000000007185, -6.600000000047999] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-166", + "dateofocc": "2009-04-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDIAN OCEAN: Yacht (TANIT) hijacked 4 Apr 09, approximately 350NM of Ras Hafun in northeast Somalia. The vessel was boarded and hijacked and reportedly sailing toward Puntland. Further details surrounding the hijacking are still unclear at this time an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.183333299798051, 9.633333299905871] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-76", + "dateofocc": "2007-04-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker reported attempted boarding, 8 Apr at 2300 local time in Lawi-Lawi, Balikpapan Anchorage. Robbers attempted to board a tanker through the hawse pipe, which was secured. The anti-piracy watches were being maintained by crew forward, a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.833333300135109, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-227", + "dateofocc": "2007-03-12", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SIERRA LEONE: Oil Tanker (ATROPOS) boarded and robbed 12 Mar 07 at 0200 local time in position 08-44.60N 013-51.20W, 40NM off Freetown per 7 Sept 07 reporting. Pirates armed with machine guns and knives boarded the vessel, stole cash and valuables and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.853333299837345, 8.7433333001199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-228", + "dateofocc": "2007-09-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Chemical tanker boarded 12 Sept 07 at 0350 local time, Bonny River anchorage. Five robbers, in two motor boars, armed with guns and knives boarded the vessel, from the bow using ropes and hooks. The duty crew spotted the robbers and raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-229", + "dateofocc": "2007-06-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Chemical tanker (SILVIA) boarded and robbed, 09 Jun 07 0400 local time, three miles away from jetty outer roads of Lagos, per 7 Sept 07 reporting. While alongside the jetty, pending shifting to another berth for discharge of cargo, the ship wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.249999999775923, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-230", + "dateofocc": "2007-02-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker (BOW BAHIA) boarded 09 Feb 07 at 0230 local time in position 06-15.00N 003-15.00E, Lagos Roads, per 19 Sept 07 reporting. The bridge security guard observed three robbers boarding on port side aft, during bunkering operations at barge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.249999999775923, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-231", + "dateofocc": "2007-05-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA: Container ship (LISSY SCHULTE) reported containers broken into 17 May 07 at 0036 local time, Mombasa port inner anchorage, per 7 Sept 07 reporting. While making the second round, the deck watchman noticed two containers on Bay #2 open with broke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.645833299718618, -4.063888899744143] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-232", + "dateofocc": "2007-06-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship (ASIAN TRADER) boarded, 30 Jun 07 at 0635 local time, outer cargo ship anchorage, Jakarta, per 19 Sept 07 reporting. While waiting to berth, more than six robbers boarded the ship from two small boats from port and starboard q", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.216666700439362, -5.38333329975228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-233", + "dateofocc": "2007-04-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Container ship (LONDON TOWER) boarded 24 Apr 07 at 1930 local time, in position 03-56.50N 098-45.70E, Belawan Roads, per 19 Sept 07 reporting. The duty watch detected three robbers on the forecastle deck and warned the officer on watch. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.76166670025674, 3.941666700122084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-234", + "dateofocc": "2007-09-12", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:At 850 UTC, a container ship underway sighted a suspicious craft, at a distance of 7.5nm with a speed of 12knots. Ship took evasive manoeuvres to avoid craft but craft altered course and tried to approach the ship. The ship increased speed, alter", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.208333300116408, 1.599999999677607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-235", + "dateofocc": "2007-09-14", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:Deck crew onboard a tanker, at Lagos anchorage at 0330UTC, carrying out STS operations noticed two small boats in the vicinity. Suddenly one of the boats with three persons on board approached the ship. The OOW was informed, alarm raised, and cre", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-236", + "dateofocc": "2007-09-14", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:At 0216 LT, the deck watchman on an anchored tanker noticed a fast boat, with 3-4 robbers, approaching from astern. One robber was seen holding a pole with a hook attached to it. The OOW was informed, alarm raised,crew mustered, and port control", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.354999999765823, 6.275000000256] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-57", + "dateofocc": "2008-02-24", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CIVILIAN YACHT", + "descriptio": "INDIAN OCEAN:Yacht reported suspicious approach 24 Feb 08, while in position 11-55N 061-27.93E, 411NM east of Socotra Island, Yemen. The vessel reported seeing a 60ft fishing vessel behaving quite aggressively, towing fenders. The vessel eventually moved", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.46666670011632, 11.916666699997791] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-58", + "dateofocc": "2008-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONISIA: 29-JAN-2008: 0415 LT: PULAU LAUT ANCHORAGE:Four robbers, armed with knives, boarded a bulk carrier at anchor. Duty crew confronted them, but that did not stop the robbers from stealing stores. 2/O raised alarm, ship's wistle sounded and crew m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.899999999607928, 4.783333300243669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-59", + "dateofocc": "2007-12-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "Container Ship", + "descriptio": "NIGERIA:Container ship (MAERSK VYBORG) boarded, robbed 30 Dec 07, while at berth, Onne port container terminal. Eight armed men boarded the vessel at the bow and moved to the accommodation area, shooting out the windows. The crew reportedly sent distress", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.033333299641924, 4.733333300376955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-60", + "dateofocc": "2008-03-02", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "MOZAMBIQUE:Tanker boarded 02 Mar 08 at 0045 local time Nacala Bay anchorage. Robbers in three boats boarded the vessel. They were in the process of lowering ship's stores when duty crew spotted the robbers. The alarm was raised and the crew mustered. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.666666699803386, -14.541666699954135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-61", + "dateofocc": "2008-03-05", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 05 Mar 08 at 0824 local time/0524 UTC while underway in position 13-46.5N 049-24.5E, approximately 40NM off the coast of Yemen. The vessel was approached on its starboard side by four open skiffs, doing 17", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.408333299550918, 13.775000000048863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-62", + "dateofocc": "2008-03-02", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Semi-Submersible Heavy Lift Ship", + "descriptio": "INDIAN OCEAN:Semi-submersible heavy lift ship reported suspicious approach 02 Mar 08 at 0237 UTC while underway in position 04-40.2N 057-38.9E, 500NM off the coast of Somalia. While at a distance of 5NM, a drifting orange painted dhow with white stanchio", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.648333300428931, 4.669999999767924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-63", + "dateofocc": "2008-03-05", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tug Boat", + "descriptio": "RED SEA:Tug reported suspicious approach 05 Mar 08, while underway in position 15-08N 042-14E, 40NM west of Al Hudaydah, Yemen. The suspicious craft traveling at a speed of 27kts, came from Jabal Zubayr Island towards the tug towing a crane barge. The su", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.233333300240702, 15.133333299634103] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-64", + "dateofocc": "2008-01-29", + "subreg": "73", + "hostility_": "Pirates", + "victim_d": "Civilian Yacht", + "descriptio": "PAPUA NEW GUINEA:Yacht (RAPTOR) boarded 29 Jan 08 in the early morning, Wewak port, per 03 Mar 08 reporting. The crew of four heard unknown voices and discovered that they were boarded from both sides of the vessel by three bandits, armed with a gun, mac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [143.645000000282835, -3.57166670023787] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-217", + "dateofocc": "2008-06-28", + "subreg": "57", + "hostility_": "Attempted Boarding", + "victim_d": "Bulk Carrier", + "descriptio": "GHANA:Bulk carrier reported attempted boarding 28 Jun 08 at 2145 UTC, Takoradi Anchorage. One robber, armed with a long knife, attempted to climb onboard the vessel via the anchor chain. The alert duty watchman saw the robber and informed the duty office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.816666700149653, 4.883333299977096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-218", + "dateofocc": "2008-06-26", + "subreg": "57", + "hostility_": "Pirate Hijacking", + "victim_d": "Passenger Boats", + "descriptio": "NIGERIA:Passenger boats hijacked, passengers killed 26 Jun 08, Bonny. Four vessels were traveling from Bonny en route Port Harcourt when they were attacked in mid-sea by unidentified gunmen. The gunmen robbed all the passengers and reportedly killed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-219", + "dateofocc": "2008-06-30", + "subreg": "61", + "hostility_": "Attempted Boarding", + "victim_d": "Supply Vessel", + "descriptio": "KENYA:Supply vessel reported attempted boarding 30 Jun 08 at 0200 local time, Berth No. 12, Mombasa. The alert crew onboard the vessel, spotted a robber using a rope attached with a hook to gain access to their vessel from the offshore side. As soon as t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.666666699771042, -3.983333299886851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-220", + "dateofocc": "2008-05-04", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:Container Ship (MT HUDSON) reported suspicious approach 4 May 08 at 2255 local time while in position 22-12.9N 091-46.88E, Chittagong Anchorage B, per 1 Jul 08 reporting. Suspected robbers came alongside the ship in an engine-driven wooden boa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.781388899582055, 22.215000000393729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-221", + "dateofocc": "2008-06-26", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Container Ship", + "descriptio": "BURMA:Container ship reported suspicious approach 26 Jun 08 at 0345 local time while at anchorage, Yangon. Six suspicious men in a speedboat attempted to come alongside the vessel. The alert crew raised the alarm and directed the search light towards the", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [96.133333299555659, 16.816666700426083] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-222", + "dateofocc": "2008-06-29", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Tug Boat", + "descriptio": "MALAYSIA:Tug (WECOY 6) boarded 29 Jun 08 at 0130 local time while in position 02-30.6N 104-14E, 10NM south of Pulau Tioman. The vessel, towing barge (CAKRAWALA) was boarded by six men armed with long knives and an axe from a long white speedboat with twi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.2333333004471, 2.50999999959015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-223", + "dateofocc": "2008-06-24", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "LNG Tanker", + "descriptio": "INDONESIA:LNG Tanker reported suspicious approach 24 Jun 08 at 1805 local time while underway in position 01-26.0N 104-36.8E, North of Bintan island. The Duty AB onboard the vessel reported three small suspicious boats at a distance of about 250 meters o", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.613333300153613, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-224", + "dateofocc": "2008-05-09", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:Container ship (KOTA RAJIN) boarded, robbed 9 May 08 at 0350 local time while berth in position 06-57S 110-26E, Port of Semerang, per 1 Jul 08 reporting. Two unknown persons were found in the ships engine room. The alarm was raised and both per", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.433333300108018, -6.950000000014313] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-225", + "dateofocc": "2008-06-14", + "subreg": "28", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CIVILIAN YACHT", + "descriptio": "NICARAGUA:Yacht (FAIRSKY) reported suspicious approach 14 Jun 08, Mosquito Coast. A couple was approached by a 24ft centre console boat with seven men on board. They spoke in Spanish, however the couple did not. The yacht (NATURAL SELECTION), who was ac", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.700000000440582, 14.500000000364594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-226", + "dateofocc": "2008-07-08", + "subreg": "24", + "hostility_": "PIRATE BOARDING", + "victim_d": "SAILBOAT", + "descriptio": "VENEZUELA:Sailboat boarded 8 Jul 08 at 2300 local time, Porlamar, Margarita Island. One female crewmember and a baby were on board at the time. The woman was blindfolded with a towel and tied up with duct tape. The intruder went through and searched for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.850000000325622, 10.949999999935017] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-227", + "dateofocc": "2008-07-04", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHTS", + "descriptio": "VENEZUELA:Yachts boarded, some robbed 4 Jul 08 at 1830 and 2030, while at anchorage, Porlamar, Margarita Island. The first boat was boarded by three men while the owner was on board. He heard noises and woke up and saw the perpetrators leave quickly. Not", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.850000000325622, 10.949999999935017] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-77", + "dateofocc": "2007-03-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker (AI MARU) boarded 14 Mar at 1630 local time, while underway in position 01-07.29N 105-03.66E approximately 30NM east of Pulau Bintan. Ten heavily armed pirates intercepted and boarded the product tanker in two navy grey fiberglass spee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.061111100300025, 1.121388899689862] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-78", + "dateofocc": "2007-01-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SRI LANKA:On 21 January in Kankasanthurai Harbour of the Northern Jaffna Peninsula of Sri Lanka, pirates in an explosive-laden boat rammed a general cargo ship after leaving the harbour. The hull of the ship was damaged and it was towed back to the harbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.099999999967963, 9.599999999936301] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-79", + "dateofocc": "2007-04-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:During the evening hours, off the port of Mogadishu, pirates hijacked an anchored dhow, outside the deep waters of Mogadishu port. Further details are being awaited. Latest information received indicates the vessel was released on 6 April 2007 an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.34083329955655, 2.249999999743579] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-80", + "dateofocc": "2007-04-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Product tanker reported attempted boarding 11 Apr while underway, in position 15-14N 052-25.8E. The tanker reported that two speedboats doing a speed of 18 knots were chasing the vessel with the intent to board. The tanker reported the spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.429999999801566, 15.23333330026685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-81", + "dateofocc": "2007-04-12", + "subreg": "62", + "hostility_": "MERCHANT VESSEL", + "victim_d": "SUSPICIOUS APPROACH", + "descriptio": "GULF OF ADEN: RO/RO vessel reported suspicious approach 12 Apr, at 0600 UTC in position 15-13N 052-57E. The suspicious speedboat was doing approximately 20 knots and was steering in various directions. At one point it proceeded on an apparent collisio", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.95000000039397, 15.216666700194423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-82", + "dateofocc": "2007-04-13", + "subreg": "63", + "hostility_": "MERCHANT VESSEL", + "victim_d": "SUPICIOUS APPROACH", + "descriptio": "ARABIAN SEA: Bulk carrier reported suspicious approach 13 Apr, at 1500 UTC while underway in position 11-57N 060-23E, 350NM East of Socotra Island, Yemen. A speedboat traveling at 20 kts was sighted on radar, at a distance of 8NM. Anti-piracy measure", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.383333300422976, 11.949999999967361] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-83", + "dateofocc": "2007-04-14", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel reported suspicious distress call 14 Apr, at 0430 UTC coming from position 17-25N 57-55E. A call on Ch 16 coming from a fishing vessel, sounding like (FAJA), declared they had no water and was asking for the vessel, in sig", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.9166666996868, 17.416666699726022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-84", + "dateofocc": "2007-04-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIA: Barge boarded and robbed 13 Apr at 0900 local time, while under tow in position 08-20N 076-32E, approximately 36 NM WSW of Trivandrum. Reportedly 100 pirates, some believed to be fishermen, were armed with long knives and boarded the barge. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.533333299641242, 8.333333299773926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-85", + "dateofocc": "2007-03-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Containership boarded 29 Mar, at 0300 local time at Chittagong Roads. Two robbers using grappling hooks with ropes boarded the container ship from a small boat near the stern. The alarm was raised by the deck watchmen. The deck watchmen w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-86", + "dateofocc": "2007-04-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker boarded and robbed 6 Apr, at 0345 local time at Dumai Anchorage. The tanker at anchor was boarded by two robbers, who entered the engine room via the open sky light. The crew in the engine room noticed the two robbers and when they tr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.464444400233162, 1.688888900020743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-237", + "dateofocc": "2007-09-14", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker reported suspicious approach 14 Sept 07 at 0330 UTC in position 06-18N 003-22E, Lagos anchorage. Deck crew onboard the vessel carrying out STS operations noticed two small boats in the vicinity. Suddenly one of the boats with three pe", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-238", + "dateofocc": "2007-09-14", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker reported suspicious approach 14 Sept 07 at 0216 local time in position 06-16.5N 003-21.3E, Lagos anchorage. The deck watchman on the vessel noticed a fast boat, with 3-4 robbers, approaching from astern. One robber was seen holding a p", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.354999999765823, 6.275000000256] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-239", + "dateofocc": "2007-09-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA: Fishing vessel hijacked 20 Sept 07 at 1715 local time, in position 10-46.7N 046-43.3E, 110NM west of Berbera. Pirates hijacked the vessel and anchored it near the village of Raas Shula. All crew including the four Somali security guards have", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.721666700120636, 10.778333300181259] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-240", + "dateofocc": "2007-09-19", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Bulk carrier reported suspicious approach 19 Sept 07 at 0430 UTC in position 010-33.6N 051-41.5E. A blue-hulled vessel with a white superstructure and two masts was drifting, at a distance of 11.5NM from the vessel. The ship altered its cours", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.691666699642838, 1.560000000323839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-241", + "dateofocc": "2007-09-17", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Bulk carrier reported two suspicious approaches 17 Sept 07 at 0250 UTC, while underway in position 02-27.1N 051-56.0E. The vessel sighted the suspicious craft drifting, on the port bow, at a range of 12NM. The boat suddenly increased its spee", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.933333299565163, 2.451666700136855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-242", + "dateofocc": "2007-08-18", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "SRI LANKA: Yacht (FLYING GERMANIA II) reportedly attacked 18 Aug 07, at 0750 local time, while underway in position 05-22.58N 78-9.75E, 78 miles southwest of the coast as of 12 Sept 07 reporting. The vessel reported being chased and attacked by a numb", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [78.162500000411171, 5.376388900308598] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-243", + "dateofocc": "2007-09-12", + "subreg": "61", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: Cargo Vessel reported suspicious approach 12 Sept 07, at 0850 UTC in position 01-30.0N 050:12.5E. The suspicious vessel was at a distance of 7.5NM, bearing 335 degrees, with a speed of about 12kts and a course of 170 degrees. Closest Point o", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.208333300116408, 1.49999999994418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-244", + "dateofocc": "2007-09-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "SIERRE LEONE: Two fishing vessels report coming under attack 23 Sept 07, 18NM off Freetown, Sierra Leone. The distress call was reportedly made by a local agent of a fishing vessel known as LIAN RUN 24, which is licensed to operating in Sierra Leones E", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.200000000441264, 8.46666670020096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-65", + "dateofocc": "2008-03-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER SHIP", + "descriptio": "NIGERIA:Tanker boarded, robbed 02 Mar 08 at 2315 local time while in position 06-18.3N 003-20.54E, Lagos light house anchorage. Two robbers armed with knives attacked, injured, and robbed the duty watchman onboard the vessel. Another watchman nearby info", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.342222200348488, 6.304999999996141] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-66", + "dateofocc": "2008-03-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "INDIA:Vessel boarded 05 Mar 08 at 0105 UTC while in position 22-49.5N 070-02.5E, Kandla anchorage. Upon anchoring at the outer anchorage, Kandla tower informed the master that the security level II was being maintained in the outer anchorage area. Keepin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.041666700191286, 22.825000000206614] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-67", + "dateofocc": "2008-03-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BANGLADESH:Cargo ship boarded, robbed 04 Mar 08 at 0100 local time at the Chittagong Ruby cement jetty. Three robbers armed with long knives boarded the cargo ship while it was at berth. They assaulted and injured a shore-based security guard by cutting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-68", + "dateofocc": "2008-03-09", + "subreg": "91", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER SHIP", + "descriptio": "PHILIPPINES:Tanker reported suspicious approach 09 Mar 08 at 1045 local time while in position 18-03.7N 119-55.44E, off Luzon. The vessel was passing a group of 15 fishing vessels. When about 1.5NM off, three boats left the group and approached the tanke", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.923888899703002, 18.061666700434841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-69", + "dateofocc": "2008-03-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "INDONESIA:Vessel boarded, robbed 08 Mar 08 at 0400 local time, Jetty no. 106, Belawan port. Unauthorized persons diverted the attention of the duty crew and shore watchmen, while three other robbers armed with long knives boarded the vessel from offshore", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.710000000362982, 3.791666699622624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-23", + "dateofocc": "2011-01-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-48N 059-49E at 1039Z on 03 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.816666700018004, 15.799999999597219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-70", + "dateofocc": "2008-03-04", + "subreg": "73", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:A bulk carrier underway was approached from a distance of 3 - 4 mils by about 15 - 20 speed boats at speeds of 30 - 40 knots from all directions. Some came as close as 5 meters from the vessels' stern. Vessel raised alarm, increased speed, crew", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [124.306666700241976, 3.286666699799639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-71", + "dateofocc": "2008-03-13", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "GUYANA:Fishing vessel boarded, robbed, 13 Mar 08, 0830 local time, Bertice River. A boat came up alongside the fishing vessel while it was moored in the Bertice River. Two men, one armed with a cutlass, and the other a gun, jumped onto the vessel and imm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.516666700062387, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-72", + "dateofocc": "2008-03-12", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug Boats", + "descriptio": "NIGERIA:Vessel, two tugboats boarded, crew kidnapped, 12 Mar 08, 1250 local time, Calabar River, Rivers State. Suspected pirates, armed in three speedboats, seized one vessel and two tugboats along with six crewmembers while the vessel and tugs were tran", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-73", + "dateofocc": "2008-03-04", + "subreg": "57", + "hostility_": "Attempted Boarding", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:Bulk carrier reported attempted boarding, 4 Mar 08, 1830 local time, Tincan Island, Lagos. Armed robbers in a speedboat attempted to board the bulk carrier while underway in pilotage waters. The second officer on duty, while astern, alerted the b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-74", + "dateofocc": "2008-03-19", + "subreg": "57", + "hostility_": "Pirate attack", + "victim_d": "Passenger Boats", + "descriptio": "NIGERIA:Passenger boats attacked, 19 Mar 08, along the Bonny Channel near Dawes Island, Rivers State. Militants in two speedboats attempted to rob passenger boats by firing shots but were foiled when Nigeria's Joint Military Task Force (JTF) intervened.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-228", + "dateofocc": "2008-06-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "SAILBOAT", + "descriptio": "VENEZUELA:Sailboat boarded, robbed 28 Jun 08 between 0200 and 0400 while at anchorage, Pampatar, Margarita Island. Five armed men boarded the vessel and tied up the owner for the next two hours while they went through the boat and stole all valuables. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.850000000325622, 10.949999999935017] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-229", + "dateofocc": "2008-06-29", + "subreg": "57", + "hostility_": "SUSPECTED MILITANTS", + "victim_d": "HOUSEBOAT", + "descriptio": "NIGERIA:Houseboat attacked, security operatives killed 29 Jun 08 in the early hours, Oloma area of Rivers State. Suspected militants attacked a houseboat owned by Shell and reportedly killed two security operatives from the boat. The Nigerian military ho", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-230", + "dateofocc": "2008-07-06", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "BAB-EL-MANDEB:Vessel reported suspicious approach 6 Jul 08 at 0745 UTC/0945 local time while underway in position 12-34.3N 043-25.6E, off Perim Island, Yemen. A wooden boat with a blue hull and about 10-15 persons on board approached the vessel from port", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.426666700180419, 12.571666700320236] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-90", + "dateofocc": "2007-04-11", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EGYPT: General cargo ship boarded 11 Apr, Egypt mooring buoy, Port Said. While the crew was busy in mooring operations at the mooring buoy, robbers boarded the general cargo ship using a hook ladder, from a mooring boat. The robbers lowered the gangwa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.299999999681177, 31.266666699679263] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-231", + "dateofocc": "2008-07-09", + "subreg": "63", + "hostility_": "UNKNOWN", + "victim_d": "UNKNOWN", + "descriptio": "SRI LANKA:Sri Lanka Air Force (SLAF) attack LTTE flotilla 9 Jul 08 at 0800 local time, off Mullaittivu coast. An LTTE boat was destroyed in the attack, Air Force Spokesperson Wing Commander Janaka Nanayakkara said, added that a few other vessels were als", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.833333299870219, 9.233333300072843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-232", + "dateofocc": "2008-07-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER VESSEL", + "descriptio": "BANGLADESH:Tanker boarded 6 Jul 08 at 0135 local time while at anchorage in position 21-48N 091-42E, Kutubdia Island. Two robbers using a rope and hook boarded the vessel. boat, which had four other robbers and escaped. No injuries to crew. Nothing repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 21.799999999791282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-233", + "dateofocc": "2008-07-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM:Container ship boarded 1 Jul 08 at 0330 local time, while at anchorage, Nha Be River, Ho Chi Minh. Three robbers boarded the vessel and broke into the forward locker. The alert anti-piracy watch keepers raised the alarm. The robbers jumped overbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.70000000010873, 10.749999999568843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-234", + "dateofocc": "2008-07-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER VESSEL", + "descriptio": "VIETNAM:Tanker boarded, robbed 1 Jul 08 at 0230 UTC while in position 10-15N 107-07E, Vung Tau Anchorage. Robbers boarded and stole ship stores from the forward locker. Anti-piracy watch keepers spotted the robbers and raised the alarm. Robbers escaped w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-235", + "dateofocc": "2008-07-05", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "VENEZUELA:Yacht boarded, robbed 5 Jul 08, while underway, 10 miles from Puerto Santos. A couple was approached by six men in a battered, unmarked pirogue speeding towards them. One man was in a military uniform. As the men approached, they fired a shot.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.533333300264133, 10.633333299938215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-236", + "dateofocc": "2008-07-01", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "VENEZUELA:Yacht boarded, robbed 1 Jul 08 at 1500 local time while in position 10-46.41N 62-16.8W, NNE of Cacao. The vessel was approached from behind by a fast pirogue-type open fishing boat with four Yamaha 75hp outboard motors. The hull was mostly dark", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.27999999983416, 10.773611099600316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-237", + "dateofocc": "2008-07-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "IVORY COAST:Chemical tanker boarded, robbed 5 Jul 08 at 0325 local time, Abidjan Anchorage. The Duty AB onboard the vessel noticed a small boat approaching from the aft. The AB informed the OOW and went to check the other side of the vessel and saw one r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.033333299753622, 5.333333299676895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-87", + "dateofocc": "2007-04-12", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "PHILIPPINES: Unidentified gunmen killed in sea clash with Philippine Marines 12 Apr, off the Southern Island of Baldatal. Three unidentified gunmen were killed during the clash. The troops recovered M-14 and M-16 rifles from the gunmen. Authorities a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.188333299555666, 5.135277799912615] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-88", + "dateofocc": "2007-04-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Containership boarded and robbed 11 Apr at 0530 UTC, while drifting in position 06-32S 039-35E, 28 miles Northeast of Dar Es Salaam. Robbers broke open two containers and stole some cargo bags before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.583333300110041, -6.533333300284085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-89", + "dateofocc": "2007-04-18", + "subreg": "24", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "COLOMBIA: Containership reported suspicious approach 18 Apr at 2320 local time, at the entrance to Cartagena. While disembarking the pilot on the port side, the vessel detected one unlit suspicious boat approaching from the starboard side, at high spee", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.583333299684284, 10.399999999602471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-91", + "dateofocc": "2007-04-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "OMAN: LPG Tanker reported attempted boarding 22 April at 0545Z while underway in position 20-38.7N 059-17.0E, approximately 20NM northeast of Masirah Island. The master reported a white speedboat with three people onboard approached the vessel from the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.283333299757885, 20.644999999902325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-92", + "dateofocc": "2007-04-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: General cargo ship reported attempted boarding 16 Apr, at 1630 local time in position 07-58.36S 116-33.01E, Bennette Bay. Robbers armed with guns in 10 speedboats fired shots and attempted to board the general cargo ship at anchor. The shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.550277799608239, -7.972777799976996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-93", + "dateofocc": "2007-04-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERA: Product tanker boarded and robbed 27 Apr at 0140 UTC, in position 06-17.0N 003:21.7E, Lagos outer anchorage. Two robbers armed, with long knives, boarded the product tanker at anchor. The alarm was raised and the crew alerted. The robbers th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.361666700049398, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-94", + "dateofocc": "2007-04-23", + "subreg": "57", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA: Tanker reported suspicious approach 23 Apr at 0115 local time, in position 06-16.6N 003-15.47E, Lagos outer port limit. The duty officer onboard the tanker at anchor noticed a tug named (CAPTAIN KOLA), approaching the vessel without reason. T", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.257777799836163, 6.276666700283045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-95", + "dateofocc": "2007-05-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FPSO VESSEL", + "descriptio": "NIGERIA: Floating Production Storage and Offloading (FPSO) vessel (MYSTRAS) attacked, hostages taken early 3 May while at anchor 55 NM off the coast from Port Harcourt, Okono Oil Field. The Italian oil firm (Eni SpA) confirmed hostages were taken from t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.333333299741582, 4.066666700238557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-245", + "dateofocc": "2007-09-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Bulk carrier reported robbery 23 Sept 07, Kutubdia anchorage, Chittagong. While carrying out anti piracy rounds, the ship's crew found the forecastle stores door lock broken and ships stores missing. Even though there were a number of shore", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.777777799677153, 22.158333300243498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-246", + "dateofocc": "2007-09-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:At 1950 LT off the port of Palembang, several pirates hijacked a tanker, enroute to Cilacap from Palembang, with a cargo of Palm Oilen. The master reported to TG. Buyut pilot station and they informed the tanker's managers. IMB piracy reporting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.766666699807956, -2.933333299987794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-76", + "dateofocc": "2008-03-05", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Seismic Support Vessel", + "descriptio": "SOMALIA:Seismic support vessel reported suspicious approach, 5 Mar 08, 0030 UTC while in position 08-32N 054-57E, approximately 250NM off the coast of Somalia. While underway, the master onboard the seismic support vessel noticed on radar one suspicious", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.949999999559338, 8.5333333001401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-77", + "dateofocc": "2008-03-09", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "TANZANIA:Container vessel boarded, robbed, 9 Mar 08, 0445 local time while in position 06-31.8S 039-51.5E, approximately 40NM off the coast of Dar Es Salaam. While drifting and awaiting pilot, the deck patrol onboard the container ship spotted one speedb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.858333299826654, -6.530000000054713] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-248", + "dateofocc": "2007-10-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:Passenger vessels boarded, robbed, and personnel injured on 3 OCT 2007 at approximately 0700 local time, Bonny channel. The pirates were said to have hidden in a mangrove and targeted four passenger boats. While some of the pirates boarded the ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.150000000171872, 4.383333300410584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-249", + "dateofocc": "2007-10-04", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF OMAN: Bulk carrier reported suspicious approach 4 Oct 07 at 1040 local time/0640 UTC, while underway in position 25-22N 058-05E, approximately 12.5 NM from the Iranian coastline. The vessel was approached by three suspicious high speed craft. T", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.083333300258687, 25.366666700118003] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-250", + "dateofocc": "2007-09-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Container ship boarded 24 Sept 2007 at 0145 local time while adrift, in position 06-36S 039-35E, Dar es Salaam. While the vessel was awaiting berth, a crewmember onboard the vessel noticed three robbers on the port side deck. The alarm was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.583333300110041, -6.600000000047999] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-251", + "dateofocc": "2007-10-07", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: General Cargo Vessel was boarded and robbed 1 Oct 07 at 2230 local time at Callao anchorage no.1. The duty crew spotted three robbers near the forecastle of the vessel. Officer of the watch raised the alarm. The ships whistle sounded and the cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-252", + "dateofocc": "2007-10-03", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GUINEA: Bulk Carrier boarded and robbed 3 Oct 07 at 0300 UTC, Conakry anchorage. Duty crew on the vessel noticed two robbers stealing from the ship stores on the forecastle. The alarm was raised and the whistle sounded. The crew mustered and directed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-253", + "dateofocc": "2007-09-29", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 29 Sept 07 at 1458 UTC while underway in position 13-52N 050-35E. The vessel noticed an unlit suspicious craft at a distance of 7.2NM via radar. The master altered course and increased speed. The suspicio", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.583333299566448, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-254", + "dateofocc": "2007-09-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "TANZANIA:Vessel boarded, robbed 30 Sept 07 at 0530 local time at 06-46.4S 039-20.9E, Dar es Salaam anchorage. During routine anti-piracy rounds, the aft duty AB discovered the forward AB tied up near the bunker station. He informed the duty officer who r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.348333299747196, -6.773333300004083] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-75", + "dateofocc": "2008-03-19", + "subreg": "57", + "hostility_": "Pirate Attack", + "victim_d": "Security Vessel", + "descriptio": "NIGERIA:Security vessel attacked, 19 Mar 08, late evening, Bonny River in the vicinity of the port of Onne, Nigeria. Around 15 unknown gunmen aboard a speedboat attacked a security vessel as it travelled along the Bonny River towards Onne, a major oil in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.066666700335588, 4.758333299860624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-78", + "dateofocc": "2008-03-18", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker Vessel", + "descriptio": "(UPDATED INFORMATION) GULF OF ADEN:Tanker reported suspicious approach, warning shots fired 18 Mar 08 at 0850 local time/0350 UTC, while underway in position 12-53.2N 050-14.7E, approximately 60NM north of Caluula, Somalia. Two white hull speedboats appr", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.245000000140124, 12.886666700289993] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-79", + "dateofocc": "2008-03-29", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SURINAME:Fishing vessel hijacked, suspected pirates apprehended 29 Mar 08 at approximately 1500 local time, Coppename River. Six fishermen were attacked while operating in the Coppename River by pirates. Six fishermen were captured and subsequently bound", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-55.916666699830785, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-80", + "dateofocc": "2008-01-21", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CIVILIAN YACHT", + "descriptio": "BRAZIL:Yacht boarded, robbed 21 Jan 08 at 0100 local time while at anchorage in position 01-27.43S 48-30.53W, 200 meters from the ferry quay, Port Belem, per 23 Mar 08 reporting. While in bed asleep, the crew of two woke up to two men with pistols to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.50888889971111, -1.457777800346378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-81", + "dateofocc": "2008-03-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GHANA:Chemical tanker boarded 23 Mar 08 at 0055 local time, Tema anchorage. Three robbers boarded the vessel. The duty crew noticed the robbers and informed the bridge. The duty officer raised the alarm and sounded the ship's whistle for crew muster. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.033333300314894, 5.566666699837413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-82", + "dateofocc": "2008-03-21", + "subreg": "57", + "hostility_": "MILITANTS", + "victim_d": "SHIPYARD", + "descriptio": "NIGERIA:Explosion at the NNS Pathfinder Shipyard, three boats and barge destroyed, causalities involved 21 Mar 08 in the early morning, Port Harcourt. At least five sailors were reported dead as a result of an explosion that tore through the naval jetty,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-83", + "dateofocc": "2008-03-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIA:Container ship boarded 19 Mar 08 at 0300 local time, Tanga anchorage. A bandit from a fishing boat boarded the vessel. The bandit jumped overboard as soon as the anti-piracy crew spotted him. The alarm was raised; the crew mustered and searched", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.100000000440673, -5.066666699580253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-84", + "dateofocc": "2008-03-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "SOMALIA:Two World Food Program boats stolen, both recovered, suspects apprehended 24 Mar 08 at midnight local time, while at anchorage, Merca. Two fiberglass boats used by the WFP to train staff members for emergency cases were stolen by unknown bandits.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.833333299605329, 1.633333299647177] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-238", + "dateofocc": "2008-07-16", + "subreg": "57", + "hostility_": "Militants", + "victim_d": "Naval Houseboat", + "descriptio": "NIGERIA:Naval Houseboat attacked 16 Jul 08 at 0200 local time, Bonny, Rivers State. The vessel was guarding oil installation facilities belonging to Shell Petroleum Development, when local sources claimed that more than 30 militants in speedboats attacke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-239", + "dateofocc": "2008-07-15", + "subreg": "57", + "hostility_": "Militants", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:Bulk carrier boarded, robbed 15 Jul 08 at 0315 local time, 0115 UTC, at Port Harcourt. The ship's captain stated that five heavily armed militants boarded the Norwegian vessel. A rescue centre spokesperson stated that there were 8-10 armed pirate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-240", + "dateofocc": "2008-07-12", + "subreg": "63", + "hostility_": "Unknown", + "victim_d": "Fishing Vessel", + "descriptio": "INDIA:Sri Lankan Navy (SLN) reportedly fired upon fishing vessel, fishermen killed 12 Jul 08, early morning, off Point Calimere. According to an injured fisherman on board the vessel at the time, two of his fellow fishermen were killed by the SLN in an", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.400000000035277, 9.833333300272102] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-241", + "dateofocc": "2008-07-11", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "General Cargo Vessel", + "descriptio": "INDONESIA:General cargo vessel boarded, robbed 11 Jul 08 at 0655 local time while in position 06-02.54S 106-53.68E, Jakarta Anchorage. Robbers attempted to board the vessel on four different occasions before finally succeeding. The robbers stole ship¿s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.894722199643638, -6.108888900318391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-242", + "dateofocc": "2008-07-08", + "subreg": "26", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "JAMAICA:Yacht (JACKAROO) reported attempted boarding 8 Jul 08, while underway, passing Point Morant. The vessel was reportedly approached from astern by two heavily armed men in a 20 ft canoe motor boat. They attempted to board on the starboard side, ben", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.416666700044061, 17.88333330039751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-243", + "dateofocc": "2008-07-13", + "subreg": "26", + "hostility_": "Pirates", + "victim_d": "General Cargo Vessel", + "descriptio": "HAITI:General cargo ship boarded, robbed 13 Jul 08 at 2040 local time while in position 18-34N 072-24W, Port Au Prince Anchorage. The duty AB on board the vessel noticed six robbers on the forecastle stealing ships stores. Ship alert was raised and the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.400000000017542, 18.566666700257827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-244", + "dateofocc": "2008-06-21", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "ST. VINCENT & THE GRENADINES:Yacht boarded, robbed 21 or 22 Jun 08 at 0100 local time, Chateaubelair, per 14 Jul reporting. Two couples and a child were victims to an armed robbery attack. Four bandits boarded the vessel armed with knives and machetes de", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.233333300164531, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-245", + "dateofocc": "2008-07-19", + "subreg": "57", + "hostility_": "Pirate Attack", + "victim_d": "Passenger Boat", + "descriptio": "NIGERIA:Passenger boat attacked by unidentified gunmen 19 Jul 08, near Obioku, Nembe, Bayelsa State. A vessel traveling to Yenagoa, the Bayelsa state capital, with reportedly seven passengers including four Joint Task Force (JTF) soldiers was reported mi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.366666700402845, 4.566666699805069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-246", + "dateofocc": "2008-07-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:Bulk carrier boarded, robbed 16 Jul 08 at 0028 UTC while in position 04-40.37N 007-06.23E, Bonny River Anchorage. Eight armed and two unarmed militants boarded the vessel via a barge alongside. They incapacitated the local security guards and ent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.10388889988559, 4.672777799571691] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-247", + "dateofocc": "2008-07-16", + "subreg": "57", + "hostility_": "Pirate Attack", + "victim_d": "Naval Houseboat", + "descriptio": "NIGERIA:Naval Houseboat attacked 16 Jul 08 at 0200 local time, Bonny, Rivers State. The vessel was guarding oil installation facilities belonging to Shell Petroleum Development, when local sources claimed that more than 30 militants in speedboats attacke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-96", + "dateofocc": "2007-03-21", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN: Yacht reported suspicious approach 21 Mar (per 1 May reporting) at 0950 local time, while underway in position 14-03.6N 04907.0E, approximately 17NM off the coast Yemen. Two suspicious vessels approached the yacht underway, at high speed.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.116666699761936, 14.060000000278421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-97", + "dateofocc": "2007-03-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Crude oil tanker (BUNGA KELANA 5) boarded and robbed at anchorage 27 Apr, at 0230 local time in position 01-18.9N 104-14.4E, approximately 4NM southwest of Pulau Mungging. Four robbers armed with long knives boarded the tanker, as it was ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.239999999831355, 1.315000000347368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-98", + "dateofocc": "2007-04-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: LNG tanker (ECHIGO MARU) boarded 25 Apr, at 1830 UTC (26 Apr 0230 local time) while anchoring in position 01-04N 103-31E, off Karimun Island. An oiler noticed four armed robbers in the steering room of the LNG tanker, during anchoring oper", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.516666700441988, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-99", + "dateofocc": "2007-04-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA: Tanker reported attempted boarding 23 Apr, at 2100 UTC in position 06-14S 108-26E, Balongan Anchorage. Five robbers in a boat attempted to board the tanker from the starboard quarter, by using a grappling hook. The duty AB spotted them an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.43333330004333, -6.233333300184484] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-100", + "dateofocc": "2007-04-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SINGAPORE STRAITS: Chemical tanker (SHOKO MARU) boarded and robbed 29 Apr at or between 0435 to 0540 local time, while at anchor in position 01:05.60N - 103:28.20E, off Karimun Island. The crewmembers discovered two boats alongside and a rope hooked on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.469999999905383, 1.093333299827577] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-101", + "dateofocc": "2007-05-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "NIGERIA: Unknown vessel (DLB CHEYENNE) attacked, hostages taken 08 May at 2300 local time 10 km off Escravos, Delta State. The attack reportedly involved almost 40 gunmen on six small vessels. Nigerian military personnel fought the attackers but could n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.94999999974101, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-102", + "dateofocc": "2007-04-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: General cargo ship reported attempted boarding 30 Apr, at 2345 UTC, while drifting in position 06-40S 039-44E, 27 miles ENE of the port, Dar es Salaam. A black hull boat with five pirates onboard attempted to board the vessel. The alarm wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.733333299710182, -6.666666699811856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-103", + "dateofocc": "2007-05-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA: General cargo ship hijacked while underway 3 May, at 0700 local time, 12 miles off Mogadishu. A group of Somali pirates armed with guns boarded the vessel. They hijacked the ship and took it to Hobiyo, (300 miles north of Mogadishu) where it", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.33333330007116, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-104", + "dateofocc": "2007-04-18", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "FISHING BOAT", + "descriptio": "THAILAND: Fishing boat hijacked and recovered 18 Apr, at 1100 local time Chebilang Bay, Satun Province. Approximately six pirates, in a small boat, attacked a fishing boat and hijacked it.All crew of eight were taken hostage and landed at Le - La Islan", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.61666670007844, 7.200000000038585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-24", + "dateofocc": "2010-12-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 18-10N 057-50E at 0623Z on 27 Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.833333300025743, 18.166666700424742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-255", + "dateofocc": "2007-10-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "INDIA:Vessel boarded, robbed 8 Oct 07, in Panaji off the Yermal coast in Udupi district of Karnataka. Unknown persons in two canoes reportedly climbed into a rented boat carrying six scientists from the Waltair-Vishkhapatnam based regional centre Nationa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [73.749999999807585, 15.500000000396938] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-256", + "dateofocc": "2007-10-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "NORTHERN PERSIAN GULF:Container vessel boarded 12 Oct 07 at 0225 local time/2225 UTC while at anchor in position 29-52.0N 048-41.4E, near No. 5 buoy at entrance to Shatt al Arab. One small boat (about 7m) came along the starboard side. Four persons were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.690277800093611, 29.866666699813891] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-257", + "dateofocc": "2007-10-07", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CONTAINER VESSEL", + "descriptio": "INDONESIA:Bulk Carrier reported suspicious approach 7 Oct 07 at 0210 local time while underway in position 01:14.2N-104:59.3E, off Bitan Islands. The alarm was raised and the ship whistle sounded. After mustering the crew, the boat moved away. The Singa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.98833329960371, 1.236666699868238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-258", + "dateofocc": "2007-10-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF OMAN: At 0640Z nine pirates armed with guns, wearing masks in three high speed crafts approached a bulk carrier underway. Master raised alarm and crew mustered on forward and aft stations. Anti-piracy measures implemented. After around two hours", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.083333300258687, 25.366666700118003] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-259", + "dateofocc": "2007-10-10", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "HAITI:Refrigerated cargo vessel boarded, robbed 10 Oct 07 between 2200 and 2300 local time, in position 18-33.4N - 072-23.1W, at sector B and sector J Port Au Prince anchorage. Three perpetrators reportedly boarded the two vessels by climbing up with lon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.385000000147443, 18.556666699744881] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-260", + "dateofocc": "2007-10-19", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MOROCCO:Chemical tanker boarded, 19 Oct 07 at 0230 local time, while at berth in Safi port. Thirty robbers armed with knives boarded the vessel. The crew confronted the robbers at the gangway and the alarm was raised. The robbers threatened the crew with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.250000000178659, 32.366666700344354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-261", + "dateofocc": "2007-10-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FPSO", + "descriptio": "NIGERIA:Floating Production Storage and Offloading FPSO (MYSTRAS) attacked, hostages kidnapped 26 Oct 07, shortly before dawn, 20 miles south of Bonny Island oil and gas export complex, Lagos. The gunmen overpowered an oil industry vessel and used it to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 4.486666700198157] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-262", + "dateofocc": "2007-10-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FPSO", + "descriptio": "NIGERIA:Floating Production Storage and Offloading (FPSO) vessels attacked, support vessel hijacked, oil workers kidnapped, 20 Oct 07 at approximately 2045 local time, off Bayelsa State. The FPSO vessels belong to Shell Petroleum Development Company of N", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.999999999640067, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-130", + "dateofocc": "2009-03-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (TITAN) hijacked 19 Mar 09 at 1430 UTC while underway in position 12-35N 047-21E. Six men in a speed boat armed with AK47s and pistols boarded and hijacked the vessel. The pirates are in control of the vessel and sailing her t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.350000000032992, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2007-263", + "dateofocc": "2007-10-18", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "NIGERIA:General cargo vessel boarded 18 Oct 07 at 0200 local time in position 04-29.2N - 007-10.7E, Bonny Inland anchorage. During heavy rain, robbers armed with long knives boarded the vessel. They tied-up the duty AB and took the OS as hostage to open", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.178333299884969, 4.486666700198157] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-85", + "dateofocc": "2008-04-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CRUISE SHIP", + "descriptio": "GULF OF ADEN:Cruise Ship (LE PONANT) hijacked 04 Apr 08 at 0948 UTC while underway in position 13-20N 050-23E, 80NM north of Caluula, Somalia. The French maritime transport company CMA-CGM and the French government confirmed that the vessel had been seiz", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.383333300099594, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-86", + "dateofocc": "2008-04-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GULF OF ADEN:Fishing vessel hijacked 02 Apr 08 at 1300 local time while in position 11-14.9N 047-15.5E, 10NM off the coast of Somalia. An offshore supply vessel picked up two small boats on radar moving towards a research vessel. The Somaliland Coast Gua", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.25833329988609, 11.248333300007573] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-87", + "dateofocc": "2008-04-02", + "subreg": "62", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 02 Apr 08 at 0220 UTC while underway in position 12-57.4N 049-04.8E, 67NM off coast of Yemen. A high speed motor boat traveling at approximately 25kts suddenly stopped approximately 1 mile off the starboar", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.07999999973822, 12.956666700283222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-88", + "dateofocc": "2008-04-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER VESSEL", + "descriptio": "GULF OF ADEN:Tanker fired upon 01 Apr 08 at 0915 local time while underway in position 13-45.81N 049-18.79E, 36NM off the coast of Yemen. The vessel was later reportedly chased by another five speedboats while in position 14-00.96N 049-42.09E, 41NM off c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.313055600223208, 13.763611100083722] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-89", + "dateofocc": "2008-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "GULF OF ADEN:Merchant ship fired upon 29 Mar 08, while underway in position 14-12.2N 050-44.8E, 66NM off coast of Yemen. Three boats with armed men onboard approached the vessel and attempted to board. The vessel began evasive maneuvers and raised the sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.74666669973368, 14.203333299595045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-90", + "dateofocc": "2008-03-31", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "INDIAN OCEAN:Vessel reported several suspicious approaches 31 Mar 08 at 1020 local time, while underway in position 06-41.7N 057-59.98E, 450NM east of the coast of Somalia. A suspicious fishing vessel was sailing on the opposite course, on the starboard", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.999722199847554, 6.6950000002156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-91", + "dateofocc": "2008-03-19", + "subreg": "63", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "TANKER VESSEL", + "descriptio": "INDIAN OCEAN:Tanker reported suspicious approach 19 Mar 08 at 0312 UTC while underway in position 10-46.8N 066-44.5E, in the Arabian Sea. The suspicious craft was detected about 6NM ahead of the vessel. The vessel altered to keep clear of the craft, howe", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.741666699994653, 10.780000000208304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-248", + "dateofocc": "2008-07-20", + "subreg": "62", + "hostility_": "Pirate Hijacking", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier (STELLA MARIS) hijacked 20 Jul 08 at 0430 local time/0011 UTC while underway in position 13:16N-050:02E, approximately 87NM northwest of Caluula, Somalia. The vessel was enroute Suez when UKMTO Dubai was alerted via INMARSAT tha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.033333300133222, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-249", + "dateofocc": "2008-07-18", + "subreg": "62", + "hostility_": "Suspisious Approach", + "victim_d": "Container Vessel", + "descriptio": "GULF OF ADEN:Container ship reported aggressive skiffs 18 Jul 08 at 0720 UTC while steaming in position 12-47.5N 051-02E, approximately 48NM north of Caluula, Somalia. Two, six meter yellow fiberglass crafts with 5-6 heavily armed men chased the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.033333300165566, 12.791666699913662] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-250", + "dateofocc": "2008-07-15", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "Chemical Tanker", + "descriptio": "GULF OF ADEN:Chemical tanker fired upon 15 Jul 08 at 1030 local time while underway in position 13-31N 049-11E, 131NM northwest of Caluula, Somalia. The vessel was enroute Red Sea to Dahej, India when the master reported two boats in vicinity at the time", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.183333299701019, 13.516666700229393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-251", + "dateofocc": "2008-07-15", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Container Ship", + "descriptio": "GULF OF ADEN:Container ship reported suspicious approach 15 Jul 08 at 0735 local time, 125NM northwest of Caluula, Somalia. Vessel was approached by two speedboats, which finally turned away (Operator, UKMTO).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.449999999831107, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-252", + "dateofocc": "2008-07-12", + "subreg": "63", + "hostility_": "unknown", + "victim_d": "unknown", + "descriptio": "INDIA:Sri Lankan Navy (SLN) reportedly fired upon fishing vessel, fishermen killed 12 Jul 08, early morning, off Point Calimere. According to an injured fisherman on board the vessel at the time, two of his fellow fishermen were killed by the SLN in an", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.833333299837875, 10.749999999568843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-253", + "dateofocc": "2008-07-22", + "subreg": "63", + "hostility_": "Unknown", + "victim_d": "Unknown", + "descriptio": "SRI LANKA:Sri Lankan Navy attacks LTTE boats 22 Jul 08 at 0130 local time, Pulmoddai. An LTTE boat was destroyed and two more were heavily damaged when the Sri Lanka Navy¿s Fast Attack Craft (FAC) engaged a cluster of LTTE boats detected. According to t", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.750000000001592, 8.249999999937643] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-254", + "dateofocc": "2008-07-20", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:Bulk carrier boarded, 20 Jul 08 at 0155 local time, 1NM from buoy no. 2, Belawan Anchorage. The duty watchman onboard the vessel noticed robbers trying to open the watertight door to the forecastle store. He immediately reported to the OOW who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-255", + "dateofocc": "2008-07-13", + "subreg": "91", + "hostility_": "Pirates", + "victim_d": "LPG Tanker", + "descriptio": "PHILIPPINES:LPG tanker boarded 13 Jul 08 at 0250 local time, Manila Quarantine Anchorage. The shore security guard noticed four robbers on the forecastle of the vessel armed with knives and pipes, while the crew was busy preparing to receive bunkers. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.983333299864626, 14.566666700128451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-256", + "dateofocc": "2008-07-23", + "subreg": "51", + "hostility_": "Pirates", + "victim_d": "Personal Craft", + "descriptio": "CANARY ISLANDS:Personal craft boarded, robbed 23 Jul 08, at Pontoon 17, Muelle Deportivo de Las Palmas. Personal craft was docked wide open at the head of pontoon number 17 with lock on the gate. Burglars boarded vessel at night while owners slept, ste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-15.416666699870007, 28.133333300054517] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-257", + "dateofocc": "2008-07-25", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tugboat", + "descriptio": "NIGERIA:Tugboat (HERKULES) hijacked 25 Jul 2008, Bonny River. The vessel was sailing to Akpo Oil Field when armed gunmen in speedboats seized the vessel and its 12-man crew. According to local reports, upon taking control of the vessel, the gunmen steere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-36", + "dateofocc": "2010-02-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 1 Feb 10 at 1150 UTC while underway in position 15-18.2N 052-32E, approximately 200NM northeast of Al Mukalla, Yemen. The captain reported being chased by a vessel and seeing a mother ship in the vicini", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.533333299764422, 15.303333300260135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-37", + "dateofocc": "2010-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship boarded 29 Jan 10 at 0300 local time while anchored in position 06-00.5S 105-56.5E, Ciwandan anchorage. Four robbers in a speedboat approached the vessel from the port quarter. One robber boarded by using a hook attached t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.941666699823429, -6.008333300334584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-38", + "dateofocc": "2010-02-05", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PERU: Bulk carrier robbed 5 Feb 10 at 1935 local time while in Callao anchorage. Robbers armed with guns boarded the vessel via the hawse pipe. The alarm was raised, but the robbers managed to steal ship's stores before escaping. The incident was report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.190000000199461, -12.02333330039869] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-39", + "dateofocc": "2010-02-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (ARIELLA) fired upon 5 Feb 10 at 0600 UTC while underway in position 13-00N 048-45E, approximately 93NM southwest of Al Mukalla, Yemen. Six armed men in a speedboat opened fire on the vessel while underway. The vessel raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.749999999898421, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-40", + "dateofocc": "2010-02-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BARGE/TUG BOAT", + "descriptio": "BAY OF BENGAL: Barge (RAPID 3312), tug (TOPNICHE 7) robbed 10 Feb 10 at 1137 local time while underway in position 20-24.61N 092-15.56E, approximately 40NM northwest of Sittwe, Burma. Two robbers in a boat named (MAYER DUAI) boarded the barge and stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [92.25944440021874, 20.410277800114329] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-41", + "dateofocc": "2010-02-06", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA: Tug (ASTA) missing, reportedly hijacked 6 Feb 10 while underway in position 02-59.4N 104-00.6E, off Pulau Tioman. The tug, towing the barge (CALLISTA) departed Singapore on 5 Feb 10. At about 0130 on 6 Feb 10, the vessel (AGENT) reported los", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.009999999724982, 2.98999999992941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-42", + "dateofocc": "2010-02-15", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "LANDING CRAFT", + "descriptio": "PORT AU PRINCE, HAITI: Robbers atempted to board an anchored landing craft. The alert master and duty crew managed to prevent the robbers from boarding the vessel. The crew and vessel safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.371666700304445, 18.582222199654211] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-43", + "dateofocc": "2010-02-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VISHAKHAPATNAM ANCHORAGE, INDIA: Three robbers using ropes and a hook boarded an anchored LPG tanker from astern. When sighted the OOW raised general alarm and duty security patrol rushed to the poop deck. Robbers escaped with stolen ship's stores. Maste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.359999999911508, 17.628333299908149] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-44", + "dateofocc": "2010-02-13", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CONAKRY, GUINEA: Pirates armed with rifles boarded a chemical tanker underway. Master raised alarm, crew locked all access doors, mustered on bridge and hide in a safe place. Pirates tried to gain entry into the locked accommodation door but were unsucce", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.533333299643516, 9.189722199914797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-45", + "dateofocc": "2010-02-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIA: Tanker boarded 14 Feb 10 at 0835 local time while anchored in Vishakhapatnam. One boat with three robbers approached the vessel from the port side. When the boat did not cross the bows the master raised the alarm. As the crew went forward to inv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.350000000297882, 17.616666700092196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-46", + "dateofocc": "2010-02-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Vessel (BARAKAALE I) fired upon 21 Feb 10 while underway in position 13-07N 047-37E, 120NM southwest of Al Mukalla, Yemen. Master reported coming under fire from at least one skiff with men onboard. During the attempted boarding, the mast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.61666670016308, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-47", + "dateofocc": "2010-02-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM: Bulk carrier boarded 24 Feb 10 at 0240 local time while anchored in Vung Tau. Three robbers boarded the vessel using ropes with hooks and attempted to enter the forecastle store. The duty crew spotted them and reported to the officer on watch w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-436", + "dateofocc": "2008-11-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 9 Nov 08 at 0940 UTC while underway in position 13-08N 047-01E. Two armed blue speedboats began pursuing the vessel. The vessels alarm was raised and all crew mustered. The speedboats then abandoned it's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.016666699963821, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-437", + "dateofocc": "2008-11-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach on 11 Nov 08 at 0715 local time while underway in position 12-45N 046-04E. The vessels bridge team detected two suspicious speedboats with three to four people armed with guns onboard each boat. Al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.066666699798191, 12.74999999963353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-438", + "dateofocc": "2008-11-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach on 14 Nov 08 at 0635 UTC while underway in position 13-21N 047-18E. The deck watch reported three small speedboats approaching from the port side approximately nine miles out with about three pe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.300000000166278, 13.349999999832789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-439", + "dateofocc": "2008-11-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon on 13 Nov 08 at 0630 local time while underway in position 13-28N 049-21E. Six pirates in a fast speedboat approached the vessel. The master raised the alarm, took evasive maneuvers, and the crew activated fire hose", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.35000000009768, 13.46666670036268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-440", + "dateofocc": "2008-11-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Oil tanker reported suspicious approach on 12 Nov 08 at 1610 local time while underway in position 12-33N 045-10E. Vessel reported being chased by four speedboats with approximately two to four pirates onboard each, armed with automatic we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.166666700398594, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-441", + "dateofocc": "2008-11-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Oil tanker reported suspicious approach on 14 Nov 08 at 0325 UTC while underway in position 12-32N 045-21E. A small boat with four persons onboard approached the tanker from 2NM away with a speed of 25kts. Master ordered rocket parachutes", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.349999999968304, 12.533333300269476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-451", + "dateofocc": "2008-11-13", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CARRIER", + "descriptio": "COLOMBIA: Cement carrier boarded and robbed on 13 Nov 08 at 1000 UTC while at anchor, Cartagena. Robbers armed with a gun and knives boarded the vessel, tied up one crewmember and stole ships stores. The coast guard boarded vessel for investigation (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.583333299684284, 10.399999999602471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-442", + "dateofocc": "2008-11-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (TANYO 8) hijacked 14 Nov 08 early morning while off the coast of Kenya. The Chinese vessel was hijacked by pirates armed with rocket launchers and automatic weapons while it was fishing off the coast of Kenya, according to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.850000000401792, -4.850000000216198] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-443", + "dateofocc": "2008-11-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 13 Nov 08 while underway in position 04-51S 044-51E, off the coast of Kenya. Master of the vessel reported to RCC Halifax that they were being chased and fired upon by pirates in a speedboat. The master increased", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.850000000401792, -4.850000000216198] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-444", + "dateofocc": "2008-11-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "REEFER VESSEL", + "descriptio": "INDIAN OCEAN: Reefer vessel fired upon 10 Nov 08 at 1005 UTC while underway in position 01-12N 050-41E, approximately 250NM off the coast of Somalia. Armed pirates in two white speedboats approached the vessel from astern. One boat approached the ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.850000000401792, 1.199999999844522] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-445", + "dateofocc": "2008-11-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BANGLADESH: Oil tanker boarded 7 Nov 08 at 2055 local time in Chittagong anchorage A. Five robbers boarded an oil tanker at anchorage. They jumped overboard with sighted by the ship¿s crew. Nothing was reported stolen and no injury to the crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-123", + "dateofocc": "2009-03-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported attempted hijacking 1 Jan 09 at 1730 local time while underway in position 14-36N 051-07E, per 18 Mar 09 reporting. Eight men in a speed boat armed with machine guns and an RPG approached the vessel. The men in the speed bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.116666699826567, 14.600000000098021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-124", + "dateofocc": "2009-03-08", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship robbed 8 Mar 09 at 1255 local time while anchored in Vung Tao. Robbers boarded the vessel unnoticed and got access into the paint locker. The ship's crew, returning to work at the forecastle, noticed a boat leaving the ship's sid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-125", + "dateofocc": "2009-03-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 22 Mar 09 at 0840 UTC while underway in position 02-26S 051-11E, approximately 395NM southeast of Mogadishu, Somalia. Seven men in two white colored speed boats chased the vessel armed with AK47s and RPGs. They op", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.18833330002218, -2.446666700089054] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-126", + "dateofocc": "2009-03-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "380 NM OFF MOGADISHIU, SOMALIA: While underway a bulk carrier was chased by two boats with pirates armed with automatic weapons and RPGs. Pirates fired upon the vessel. Vessel increased speed, made evasive maneuvers. Later, the boats aborted the attempt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.216666700427027, -2.233333300055108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-127", + "dateofocc": "2009-03-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "INDIAN OCEAN: Vehicle carrier fired upon 22 Mar 09 at 1307 UTC while underway in position 02-46S 052-11E, approximately 500NM southeast of Mogadishu, Somalia. Two speed boats with pirates armed with automatic weapons and RPGs chased and opened fire on t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.183333299798051, -2.766666700315227] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-128", + "dateofocc": "2009-03-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "INDIAN OCEAN: Dhow (AL RAFIQUEI) boarded, robbed 21 Mar 09 at 0600 local time while underway in position 04-11N 050-25E, approximately 130NM east of Hobyo, Somalia. Men in speed boats chased the dhow and then boarded it. They stole ship's stores and cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.416666699893881, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-129", + "dateofocc": "2009-03-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 20 Mar 09 at 1002 local time while underway in position 07-51S 045-04E, approximately 330NM east of Dar es Salaam, Tanzania. Five armed men in a boat chased the vessel while underway. The captain raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.075000000251691, -7.863333300156228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-131", + "dateofocc": "2009-03-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "INDIAN OCEAN: Cargo vessel fired upon 23 Mar 09 at 1740 local time while underway in position 02-28N 050-49E, approximately 215NM off the coast of Somalia. Vessel sighted a mother ship vessel ahead launching two skiffs with lengths about 6-7m. The men o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.816666699726966, 2.466666700006954] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-132", + "dateofocc": "2009-03-25", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "HAITI: Chemical tanker boarded 25 Mar 09 at 0020 local time while anchored in Port au Prince outer anchorage. A watchman onboard the vessel spotted two robbers armed with knives on the forecastle deck. The alarm was raised and the crew mustered. Upon in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40416670017288, 18.572222200040585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-133", + "dateofocc": "2009-03-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "BAB-EL-MANDEB: Vessel reported suspicious approach 20 Mar 09 at 0600 UTC while underway in position 13-42N 042-27E. Men in two speed boats armed with machine guns chased the vessel. The boats crossed the ship's bow and came onto the port side. The capt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.449999999604756, 13.699999999799104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-134", + "dateofocc": "2009-03-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 20 Mar 09 at 0600 local time while underway in position 13-07N 049-12E. A suspicious craft was sighted by a nearby tanker and approached her port bow heading towards the stern. The tanker contacted coali", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-326", + "dateofocc": "2009-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 4 Jul 09 at 1800 UTC while underway in position 14-51.3N 058-29.8E, approximately 220NM southeast of Sawqirah, Oman. The master of the vessel reported that one small boat approached the vessel dur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.496666699759487, 14.854999999688062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-327", + "dateofocc": "2009-07-12", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship robbed 12 Jul 09 at 0330 local time while anchored in position 10-16.2N 107-04.6E, Vungtau outer anchorage. Robbers boarded the vessel and stole ship's stores before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.076666699585871, 10.270000000128846] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-328", + "dateofocc": "2009-07-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "OFF TANJONG STAPA, MALAYSIA: Six robbers armed with long knives in a boat came alongside and boarded a product tanker at anchor. The robbers tied up the Master and crew members. They stole ship's and crew properties. During the incident the Malaysian Mar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.153888900191305, 1.298888899801284] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-329", + "dateofocc": "2009-07-23", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PUERTO LIMON ANCHORAGE, COSTA RICA: Two robbers in a boat boarded a container vessel at anchor. Crew noticed one robber trying to transfer stolen ship's stores into the boat. The robber escaped with stores by jumping into water. The ship and crew are saf", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.008333300126765, 9.975000000285718] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-330", + "dateofocc": "2009-07-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "75NM OFF MIRI, SARAWAK, MALAYSIA: Twelve pirates, in a seven meter long, unlit boat approached a container ship underway. They chased the ship and tried to get alongside. Alarm raised, took evasive maneuvers, alerted crewmembers and master fired rocket f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.750000000169507, 4.654999999897825] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-331", + "dateofocc": "2009-08-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BONNY RIVER PORT HARCOURT NIGERIA: Heavily armed pirates in two speedboats, seven in each boat approached and opened fired on a bulk carrier at anchor. The vessel immediately heaved anchor and proceeded to open seas for safety reasons. One crew member in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.621944399843699, 3.924444399974561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-332", + "dateofocc": "2009-07-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BRAZIL: Bulk carrier robbed 27 Jul 09 at 2355 local time while anchored in position 01-05.41S - 048-29.08W, Mosqueiro anchorage. Robbers armed with knives boarded the vessel at anchor. They tied up the watch officer's hands and stole ship's stores befor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.484722200328576, -1.090277800381671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-333", + "dateofocc": "2009-07-24", + "subreg": "37", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SWEDEN: Vessel (ARCTIC SEA) boarded 24 Jul 09 at approximately 0300 local time while underway in Swedish territorial waters. Eight to twelve armed men allegedly wearing masks and uniforms bearing the word \"police¿ boarded the vessel using a black rubbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-6.215277799760543, 48.39194440019628] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-334", + "dateofocc": "2009-08-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "GULF OF ADEN: Vessel fired upon 4 Aug 09 at 1310 UTC while underway in position 13-32N - 048-50E. Eight men in a 7-8m long, blue wooden boat armed with automatic weapons approached the vessel from the stern and opened fire. The general alarm was sounded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.833333299734704, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-336", + "dateofocc": "2009-08-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "LPG TANKER", + "descriptio": "PUNTA ARENA ANCHORAGE GUAYAQUIL, ECUADOR: Robbers approached and boarded a launch carrying six ships (LPG taker anchored) crew ashore. The 10 robbers wearing masks and armed with guns fired warning shots and boarded the boat. They stole crew personal bel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.933333299779974, -2.166666700115968] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-337", + "dateofocc": "2009-08-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: Vessel (SATURNAS) boarded, crewmembers kidnapped 3 Aug 09 while operating in the vicinity of the Escravos River in the western Niger Delta. The Lithuanian-flagged vessel came under attack by an unidentified group in a high-speed boat, according", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.07361110040523, 5.473888899913845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-338", + "dateofocc": "2009-08-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon 3 Aug 09 at 1500 UTC while underway in position 13-46.5N 050-42.3E. Ten heavily armed pirates in two boats fired upon the vessel underway. The pirates failed to board the vessel due to evasive action taken by the m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.705000000352811, 13.775000000048863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-268", + "dateofocc": "2008-07-31", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "VIETNAM:Chemical tanker boarded, robbed 31 Jul 08 at 2015 local time while in position 10-16.36N 107-02.85E, Vung Tau Anchorage. Robbers boarded the vessel. The D/O raised the alarm and the crew rushed to the forecastle. Upon seeing the crew alertness, t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.047499999946865, 10.272777799932612] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-269", + "dateofocc": "2008-07-25", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM:Bulk carrier boarded, robbed 25 Jul 08 at 2130 local time, Go Dau. Two robbers armed with long knives boarded the vessel. They broke open the padlocks to the forward store. The duty crew noticed the open stores and raised the alarm, the robbers e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.7333333000783, 10.450000000368505] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-270", + "dateofocc": "2008-08-09", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "SAILBOAT", + "descriptio": "GUATEMALA:Sailboat boarded, robbed, US passenger killed 9 Aug 08, in the evening while at anchorage, Lake Izabal. Four perpetrators armed with long machetes, boarded the vessel, possibly swimming from shore. The perpetrators assaulted the couple and dema", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-89.099999999568354, 15.433333299733704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-271", + "dateofocc": "2008-08-12", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "GULF OF ADEN:Cargo vessel (THOR STAR) hijacked 12 Aug 08 at 1418 UTC while underway in position 13-07.35N 050-10.75E, 75NM northwest of Caluula. A Yemeni naval official reportedly stated that the ship sent out a distress signal after coming under heavy f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.179166700302119, 13.122499999854654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-272", + "dateofocc": "2008-08-11", + "subreg": "63", + "hostility_": "N/A", + "victim_d": "N/A", + "descriptio": "SRI LANKA:Sri Lankan Army battle LTTE, casualties, 11 Aug 08 at 1630 local time, Adampankulam area. The Media Centre for National Security (MCNS) stated that the troops monitoring a flotilla of five to six boats of the LTTE had directed artillery attacks", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.249999999568104, 9.2999999998367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-273", + "dateofocc": "2008-08-02", + "subreg": "63", + "hostility_": "N/A", + "victim_d": "N/A", + "descriptio": "SRI LANKA:Sri Lankan Navy raids LTTE camp 2 Aug 08, evening, Iranathivu Island. Sri Lanka Navy's Rapid Action Boats Squadron (RABS) and Special Boats Squadron (SBS) destroyed an LTTE make-shift camp, destroying one LTTE boat, killing four LTTE cadres and", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.000000000234536, 7.999999999704698] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-274", + "dateofocc": "2008-08-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "INDONESIA:Product tanker boarded 06 Aug 08 at 2330 local time, Belawan port. Robbers boarded the vessel while at anchorage by climbing the anchor chain. They opened the forecastle store and attempted to steal ship¿s stores. The duty crew noticed them an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-275", + "dateofocc": "2008-08-13", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "REFRIGERATED CARGO SHIP", + "descriptio": "ECUADOR:Refrigerated cargo ship boarded, robbed 13 Aug 08 at 0130 local time, Outer Anchorage, Guayaquil. Duty watchman onboard the vessel spotted two robbers hiding behind a 40 container. They had stolen the ships stores from the paint locker and lowere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.016666700340352, -2.416666700348912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-276", + "dateofocc": "2008-08-13", + "subreg": "22", + "hostility_": "Pirates", + "victim_d": "Unknown Vessel", + "descriptio": "PERU:Ship boarded, robbed 13 Aug 08 at 0005 UTC while in position 12-00.8S 077-12.1W, Callao Anchorage. The duty crew noticed robbers boarding the vessel. The alarm was raised and the crew mustered. The robbers overpowered a duty crewmember and tied him", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.149999999946317, -12.04999999990946] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-277", + "dateofocc": "2008-08-15", + "subreg": "57", + "hostility_": "Unknown", + "victim_d": "Unknown", + "descriptio": "NIGERIA:Nigerian Navy (NN) clash with unidentified gunmen 15 Aug 08, Niger Delta, southern Rivers State. Two naval vessels were on patrol, heading to a base near a Royal Dutch Shell PLC installation when attackers in speedboats fired on their convoy, pro", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.10000000024047, 5.333333299676895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-279", + "dateofocc": "2008-08-21", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Cargo Vessel", + "descriptio": "GULF OF ADEN:Bulk cargo reported suspicious approach 21 Aug 08 at 0920 local time/0620 UTC, while underway in position 13-15.8N 048-52.8E, approximately 50NM off the Yemen coast. The vessel detected two boats. The first boat was of dark grey without a su", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.880000000271309, 13.26333329994236] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-446", + "dateofocc": "2008-11-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier boarded, robbed 5 Nov 2008 at 0300 local time in position 03:40S ¿ 114:26E, Taboneo anchorage, Kalimantan. Four robbers armed with catapults, knives, and hacksaws boarded a bulk carrier at anchor. They threatened the duty crew w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.666666699714824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-447", + "dateofocc": "2008-11-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "REEFER VESSEL", + "descriptio": "Bonny Outer Road, Nigeria: Six robbers armed with automatic weapons opened fire at a refrigerated cargo ship at anchor. Robbers in a speedboat circled 4 times around the ship and left. No injury to crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.833333299981007, 4.133333300177696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-448", + "dateofocc": "2008-11-13", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CEMENT CARRIER", + "descriptio": "Robbers armed with gun and knives boarded a cement carrier at anchor. They tied up one crewmember and stole ship's stores. Coast guard boarded vessel for investigation.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.583333299684284, 10.399999999602471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-449", + "dateofocc": "2008-11-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "Gulf of Aden: Armed pirates attacked and hijacked a chemical tanker underway. Further details are awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.714166699735927, 12.844722200334274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-450", + "dateofocc": "2008-11-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "Singapore Straits: Five pirates armed with long knives boarded a tug towing a barge underway. Pirates stole personal belongings and escaped. No injury to crew. Master informed port authority.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.868333299711367, 1.18472220029895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-453", + "dateofocc": "2008-11-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GULF OF ADEN: Fishing vessel (EKAWATNAVA 5) was hijacked on 18 Nov 08 at 0600 UTC while underway in position 14:17.15N-050:15.7E. There are twelve crewmembers onboard (IMB). UPDATE: The fishing vessel was destroyed and subsequently sunk later the same da", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.261666700037267, 14.285833300229456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-454", + "dateofocc": "2008-11-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (DELIGHT) was hijacked on 18 Nov 08 at 0600 UTC while underway in position 14:23N-051:05E. Further details on this incident are awaited (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.08333330003228, 14.383333299834646] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-455", + "dateofocc": "2008-11-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (CHEMSTAR VENUS) hijacked on 15 November at 0915 UTC while underway in position 12-51N 046-43E. At 0907 UTC the ship transmitted VHF distress call stating armed pirates were attacking their vessel. At 0910 UTC the ship transmitted t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.716666699864163, 12.850000000266277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-456", + "dateofocc": "2008-11-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 11 Nov 08 at 0415 UTC while underway in position 13-50N 049-22E. Vessel was approached parallel by one boat with five persons onboard at a speed of approximately 8 kts. A second boat approached from the north at approxima", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.366666699994823, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-457", + "dateofocc": "2008-11-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 10 Nov 08 at 1505 UTC while underway in position 13-38N 048-44E. The vessel was approached and chased by a fast boat from the starboard side that tried to position itself along the side of the v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.733333300001277, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-458", + "dateofocc": "2008-11-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 14 Nov 08 at 2134 UTC while underway in position 04-25S 048-58E. Pirates heavily armed with automatic weapons and RPGs in two speedboats chased and fired upon a container ship underway. The master increased speed,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.966666700161738, -4.4166667004136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-459", + "dateofocc": "2008-11-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "SINGAPORE STRAIT: Tug (MAJU DAYA 3) and barge (MARCOPOLO 188) boarded and robbed on 10 Nov 08 at 1730 UTC while underway in position 01:11N ¿ 103:52E, Batu Berhenti. The tug and barge were boarded by five robbers armed with parangs. The robbers took th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.866666700408359, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-135", + "dateofocc": "2009-03-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (BOW ASIR) hijacked 26 Mar 09 at 0745 UTC while underway in position 02-26S 048-11E, approximately 315NM southeast of Mogadishu, Somalia. Armed pirates boarded and hijacked the vessel. There are 23 crew members onboard. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.183333299668675, -2.433333300421339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-136", + "dateofocc": "2009-03-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (NIPAYIA) hijacked 25 Mar 09 at 1503 UTC while underway in position 01-42N 053-41E, approximately 370NM east/southeast of Hobyo, Somalia. Armed pirates boarded and hijacked the vessel while underway. Nineteen crewmember are being he", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.683333300296226, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-137", + "dateofocc": "2009-03-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "RESEARCH VESSEL", + "descriptio": "INDIAN OCEAN: Research vessel reported suspicious approach 25 Mar 09 at 0730 UTC while underway in position 00-24N 056-01E, approximately 600NM east of Mogadishu, Somalia. Two speed boats chased the vessel while underway. The boats eventually abandoned", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.016666700254859, 0.400000000178409] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-138", + "dateofocc": "2009-03-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 25 Mar 09 at 0506 UTC while underway in position 07-55S 046-52E, approximately 440NM east of Dar es Salaam, Tanzania. While underway, vessel was chased and fired upon by two speed boats from either side of the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.866666700363623, -7.916666700077087] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-139", + "dateofocc": "2009-03-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CATAMARAN", + "descriptio": "INDIAN OCEAN: Catamaran (SERENITY) hijacked Mar 09 based on 25 Mar 09 reporting while en route Madagascar from Seychelles. The vessel was transiting to Madagascar on 28 Feb 09 but had not reported its whereabouts since its departure. One of the hostages", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.266666700261396, 6.916666699836071] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-140", + "dateofocc": "2009-03-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship robbed 15 Mar 09 at 0715 local time while anchored in Chittagong anchorage. Robbers boarded the vessel and broke open the rope locker, stealing ship¿s stores. They were not spotted by the crew (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-141", + "dateofocc": "2009-03-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker reported attempted boarding 26 Mar 09 at 2220 local time while at Lagos anchorage. The vessels crew noticed a boat with several persons armed with machine guns, RPGs, and machetes attempting to climb onboard with the use of a ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-142", + "dateofocc": "2009-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker reported attempted boarding 29 Mar 09 at 2123 local time while underway in position 11-50N 044-53E. Men in a speed boat approached and attempted to board the vessel by using metal hooks and ropes. A crew member on watch hea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.883333300371362, 11.83333330033679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-143", + "dateofocc": "2009-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GERMAN NAVY TANKER", + "descriptio": "GULF OF ADEN: German navy tanker (FGS SPESSART) fired upon 29 Mar 09 at 1204 UTC while underway in position 12-57N 049-31E. Seven pirates in a skiff opened fire on the naval ship, mistaking it for a merchant vessel. Men on the ship returned fire, forcin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.516666699594964, 12.949999999999704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-144", + "dateofocc": "2009-03-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 28 Mar 09 at 1400 UTC while underway in position 12-25N 046-25E. The vessel was approached by one skiff with seven men onboard armed with AK-47s. The men in the skiff fired shots in the air upon their approach. Coalition", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.416666699764505, 12.416666699564303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-145", + "dateofocc": "2009-04-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 1 Apr 09 at 1251 UTC while underway in position 09:00N - 059:03E, approximately 340NM southeast of Socotra Island. The captain spotted a speed boat approaching the vessel at a speed of 17kts. The master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.050000000321461, 8.999999999737042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-146", + "dateofocc": "2009-04-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 1 Apr 09 at 1130 UTC while underway in position 13-50N 055:15E, approximately 90NM northeast of Socotra Island. A dhow described as having a brown hull and blue superstructure with a length of 30 meters", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.249999999658939, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-339", + "dateofocc": "2009-08-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship fired upon 16 Aug 09 at 1250 UTC while underway in position 06-17.3N 054-41.2E, approximately 320NM east of Garacad. Two skiffs launched from a mother ship chased the vessel and opened fire with automatic weapons and RP", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.686666700382716, 6.288333300098998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-340", + "dateofocc": "2009-08-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BOMA ANCHORAGE, DEMOCRATIC REPUBLIC OF CONGO: Two robbers armed with sticks boarded a refridgerated cargo ship at anchor. Duty crew spotted the robbers and raised alarm. Upon hearing the alarm, the robbers jumped in the water and escaped. Traffic control", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-280", + "dateofocc": "2008-08-21", + "subreg": "62", + "hostility_": "Hijacking", + "victim_d": "Chemical Tanker", + "descriptio": "GULF OF ADEN:Chemical tanker (IRENE) hijacked 21 Aug 08 at 0358 UTC, while underway in position 14-26.42N 049-56.46E, 45NM east of Al Mukalla, Yemen. The vessel is transporting approximately 10,000 mt of chemical / flammable cargo. There are 19 crewmembe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.941111099560715, 14.440277799660464] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-341", + "dateofocc": "2009-08-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker (KIRANA TRITYA) boarded 15 Aug 09 at 0345 local time while anchored in position 01-18.9N 104-16.19E, approximately 3NM south of Tanjong Ramunia. Three robbers climbed onboard the vessel from a small wooden fast boat on the starboard si", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.269722199895966, 1.315000000347368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-342", + "dateofocc": "2009-08-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (ELGIZNUR CEBI) fired upon 14 Aug 09 at 0320 UTC while underway in position 12-35N 047-25E. Five men armed with automatic weapons and an RPG in a speedboat opened fire on the vessel. The master conducted evasive maneuvers to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.416666699796849, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-343", + "dateofocc": "2009-08-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "KAKINADA, INDIA: Six robbers on a fishing boat approached a chemical tanker at anchor. Two of the robbers tried to board the vessel from starboard side midships using hooks. The duty officer raised alarm, sounded the foghorn and reported to the port cont", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.393333299848734, 17.041666700275925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-344", + "dateofocc": "2009-08-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 26 Aug 09 at 0829 UTC while underway in position 13-09N 048-45E. The vessel reported coming under fire by one small cargo vessel with a blue hull with 14 people onboard. The vessel changed course and managed to evade the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.749999999898421, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-345", + "dateofocc": "2009-08-26", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MOIN ANCHORAGE, COSTA RICA: Two robbers boarded a container ship by using hooks. Duty watchman alerted the master and crew. On noticing the crew robbers jumped overboard and escaped without stealing anything. Local authorities informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.083333300376523, 9.999999999769386] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-346", + "dateofocc": "2009-08-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "APAPA PORT, LAGOS, NIGERIA: Four robbers boarded a chemical tanker at berth and threatened the duty watchman with a gun. The robbers stole ship's properties and escaped by boat. Local authorities informed, no one injured.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-347", + "dateofocc": "2009-08-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIPPA ANCHORAGE, SINGAPORE STRAITS: Five robbers armed with two machine guns in a boat attempted to board a bulk carrier at anchor. The robbers used hooks attached with ropes to board the ship but were noticed by duty crew who raised the alarm. Robbers a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.61500000014837, 1.15166670000491] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-348", + "dateofocc": "2009-08-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel fired upon 27 Aug 09 at 0230 UTC while underway in position 00-08N 044-50E, approximately 140NM northeast of Kismayo, Somalia. Vessel reported coming under fire by four skiffs firing RPGs. UKMTO reported the vessel had increased spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.833333299605329, 0.133333300048321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-349", + "dateofocc": "2009-09-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DOUALA PORT, CAMEROON: Armed robbers in two skiffs approached a tanker restricted in her ability to maneuver. One skiff managed to throw a hook and line over the vessel. The alert crew raised the alarm switched on the deck lights and mustered. Seeing ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.417222199892933, 3.800555600358848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-350", + "dateofocc": "2009-09-04", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MAMONAL INNER ANCHORAGE, COLOMBIA: Robbers boarded a product tanker at anchor, unnoticed and stole ship's property and escaped. Duty crew observed the padlock of the forward store broken and raised the alarm. Crew mustered and searched the area and found", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.517222200170806, 10.325555599603092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-351", + "dateofocc": "2009-09-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOMALIA: Cargo ship fired upon 5 Sep 09 at 1610 UTC while anchored in position 02-03.8N 045-30.65E, approximately 10NM east of Mogadishu. Ten heavily armed robbers in two speedboats opened fire at the vessel while it was making repairs to the engines.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.510833300182583, 2.063333300119723] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-460", + "dateofocc": "2008-11-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "Singapore Straits:Five pirates armed with guns and knives boarded a tanker underway. They stole ship's equipment and escaped once alarm raised. No injury to crew reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.306666699595212, 1.304166699733287] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-281", + "dateofocc": "2008-08-21", + "subreg": "62", + "hostility_": "Hijacking", + "victim_d": "Bulk Cargo Vessel", + "descriptio": "GULF OF ADEN:Bulk carrier (IRAN DEYANAT) hijacked 21 Aug 08 at 0223 UTC, while underway in position 13-49.3N 050-23.9E, approximately 82NM southeast of Al Mukalla, Yemen. The vessel was fired upon and boarded, no further information. It is reported that", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.398333299969636, 13.821666699686205] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-282", + "dateofocc": "2008-08-21", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Cargo Vessel", + "descriptio": "GULF OF ADEN:Bulk cargo reported suspicious approach 20 Aug 08 while underway in position 13-37N 050-11E, 79NM southeast of Al Mukalla, Yemen (UKMTO).", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.183333299733363, 13.616666699962821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-283", + "dateofocc": "2008-08-19", + "subreg": "62", + "hostility_": "Hijacking", + "victim_d": "Chemical Tanker", + "descriptio": "GULF OF ADEN:Chemical tanker (BUNGA MELATI DUA) hijacked 19 Aug 08, 1730 local time while underway in position 12-45.2N 047-57.7E, 123NM southwest of Mukulla, Yemen. There are 39 crewmembers onboard the vessel, traveling from Indonesia to Rotterdam with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.961666699872922, 12.753333299862902] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-284", + "dateofocc": "2008-08-06", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:LPG tanker boarded, robbed 6 Aug 08 at 0400 local time while in position 00-10-19N 117-36-12E: Bontang Anchorage. The duty crew onboard the vessel spotted robbers stealing the ship¿s equipment. The alarm was raised and the crew alerted. Alertn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.603333300061081, 0.171944399949894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-285", + "dateofocc": "2008-08-24", + "subreg": "53", + "hostility_": "Pirates", + "victim_d": "Civilian Yacht", + "descriptio": "CORSICA:Yacht (TIARA) boarded, robbed 24 Aug 08 at 2340 local time, while at anchorage in position 41-30.3N 009-16E, Golfe de Porto Novo. Four armed masked men in a speedboat boarded the vessel and robbed the passengers and crew of more than 100,000 euro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [9.26666669986713, 41.504999999695599] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-286", + "dateofocc": "2008-08-24", + "subreg": "57", + "hostility_": "Pirate Hijacking", + "victim_d": "Oil Supply Vessel", + "descriptio": "NIGERIA:Oil supply vessel (BENUE) hijacked 24 Aug 08 at 1440 UTC, Bonny Channel, Rivers State. The vessel was traveling from Agbami oilfield to Onne when it was seized by unknown militants. The vessel is owned by West Africa Offshore and has a crew of ei", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-287", + "dateofocc": "2008-08-26", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "GULF OF ADEN:Cargo vessel reported suspicious approach 26 Aug 08 at 1040 local time/0740 UTC while underway in position 13-30N 048-34E, 87NM southwest of Al Mukalla, Yemen. While transiting the Gulf of Aden the vessel reported a number of suspicious boat", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.56666670032871, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-288", + "dateofocc": "2008-08-26", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 26 Aug 08 while underway near Aden, Yemen. A vessel heard an announcement on VHF Ch. 16 that another near by vessel stated that it had spotted three speedboats traveling at 22kts and getting off a reported", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.733333299871902, 12.466666700330336] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-289", + "dateofocc": "2008-08-24", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "GULF OF ADEN:Cargo vessel reported suspicious approach 24 Aug 08 at 0655 local time while underway in position 12-49N 050-30E, 52NM north northwest of Caluula, Somalia. The vessel reported a suspicious craft approaching. The suspicious craft¿s speed was", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 12.816666700296707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-290", + "dateofocc": "2008-08-23", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "Bulk Cargo Vessel", + "descriptio": "GULF OF ADEN:Bulk cargo vessel fired upon 23 Aug 08 at 1605 local time, while underway in position 14-11.3N 050-20.3E, 68NM southeast of Al Mukalla, Yemen. The master of the vessel reported that it had been fired upon and there were shots on the bridge.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.338333299589976, 14.188333299724945] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-291", + "dateofocc": "2008-08-23", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "Cargo Vessel", + "descriptio": "GULF OF ADEN:Cargo vessel fired upon 23 Aug 08 at 1708 local time/1008 UTC, while underway in position 14-16N 050-19.40E, 65NM southeast of Al Mukalla, Yemen. The master reported the vessel had been fired upon. The master raised the alarm, increased its", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.323333299719934, 14.26666670002885] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-462", + "dateofocc": "2008-11-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "Gulf of Aden: Chemical tanker (BISCAGLIA) hijacked 28 Nov 08 at 0447 UTC while underway in position 13-49N 049-44E. Information received from the owners confirmed the tanker had been hijacked. The tanker was reportedly carrying a cargo of vegetale oil wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.733333300033564, 13.816666700329051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-463", + "dateofocc": "2008-11-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 23 Nov 08 while underway in position 14:03N-049:43E. The vessel took evasive maneuvering and later reported they avoided the boarding and were safe (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.716666699961195, 14.049999999765475] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-464", + "dateofocc": "2008-11-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 23 Nov 08 while underway in position 13:59.41N-049:34.33E. The master reported two suspicious speedboats in the vicinity of the vessel. The vessel was able to contact another vessel in the area a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.571944399568963, 13.990000000285136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-465", + "dateofocc": "2008-11-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker (KIRAN DWITYA) robbed on 22 Nov 08 at 0230 local time while at anchorage in position 01-18.25N 104-12.34E, approximately 2nm south of Tanjon Ayam, Johor. The tanker was performing tank cleaning when five robbers armed with a pistol and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.205555600085063, 1.304166699733287] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-466", + "dateofocc": "2008-11-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE STRAIT: Tanker boarded and robbed on 22 Nov 08 at 0230 local time while underway in position 01:18.25N-104:18.40E. Five pirates armed with guns and knives boarded the vessel, stole the ship's equipment and escaped once alarm was raised (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.306666699595212, 1.304166699733287] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-467", + "dateofocc": "2008-11-21", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PHILIPPINES: Bulk carrier reported suspicious approach on 21 Nov 08 at 0130 local time while underway in position 16-17N 119-32E, West Coast Luzon. Three blue speedboats chased the vessel. The ship increased speed, made evasive maneuvers, raised alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.53333330013254, 16.283333300165907] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-468", + "dateofocc": "2008-11-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "Lagos Anchorage, Nigeria: Armed robbers in a small craft boarded a chemical tanker at anchor. They stole ship's property and escaped before the duty A/B raised the alarm. The craft was observed approaching another vessel. The tanker warned the vessel. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-469", + "dateofocc": "2008-11-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CRUISE SHIP", + "descriptio": "Gulf of Aden: Two pirate boats with three pirates in each boat attempted to intercept a passenger ship underway. Master sighted a gun on the second boat and later the pirates fired upon the ship. Master increased speed and the pirate boats were unable to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.728333299777148, 14.045000000408322] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-470", + "dateofocc": "2008-11-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "Gulf of Aden:Two speedboats with ten pirates armed with guns and rockets attempted to board a bulk carrier underway. Boats closed the ship's bow and quarter. Master raised alarm, took evasive maneuvers and activated fire hoses. After 25 minutes of chasin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.183333300438676, 12.333333299903302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-471", + "dateofocc": "2008-11-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "Gulf of Aden: Ten speedboats with 3 masked men in each boat cae close to an oil tanker underway. One of these boats came very close and the pirates were sighted as carrying guns. Master raised alarm and took evasive maneuvers. Pirate boats then moved awa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.433333299933963, 13.900000000165335] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-472", + "dateofocc": "2008-11-29", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "Vung Tau, Vietnam: Six robbers in a fishing boat approached a general cargo ship at anchor. Two robbers armed with knives boarded the ship. One of them threatened the duty crew with a knife while the other robber stole ship's stores. Later they jumped ov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.036666700232104, 10.268333300101801] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-473", + "dateofocc": "2008-11-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "Gulf of Aden: Armed pirates, in two speedboats approached and chased a bulk carrier underway. Master took evasive maneuvers, activated fire hoses and raised alarm. Pirates opened fire but could not board due to anti-piracy measures. Later the pirates gav", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.991666699677808, 14.195000000008463] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-147", + "dateofocc": "2009-03-30", + "subreg": "63", + "hostility_": "PIRTATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 30 Mar 09 at 1615 local time while underway in position 09:45N ¿ 058:50E, approximately 300NM southeast of Socotra Island. A speed boat approached the vessel while a mother ship was sighted further back. The men in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.833333300058086, 9.750000000435818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-148", + "dateofocc": "2009-03-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 28 Mar 09 at 1555 local time while underway in position 07-21S 046-44E, approximately 420NM east of Dar es Salaam, Tanzania. A high speed boat launched from a mother ship chased the vessel. The v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.733333299936589, -7.349999999847398] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-149", + "dateofocc": "2009-03-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "PASSENGER SHIP", + "descriptio": "INDIAN OCEAN: Passenger ship (INDIAN OCEAN EXPLORER) hijacked 27 Mar 09 while underway in position 08-30S 046-30E, approximately 420NM east of Dar es Salaam, Tanzania. Owners have confirmed that the vessel has been hijacked. Seven crewmembers are report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.499999999600789, -8.500000000379202] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-150", + "dateofocc": "2009-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN:PIRATES IN A SPEED BOAT APPROACHED AND ATTEMPTED TO BOARD A CHEMICAL TANKER UNDERWAY BY USING METAL HOOKS AND ROPES. ALERT CREW PREVENTED THE BOARDING AND INFORMED DUTY OFFICER ON BRIDGE. VESSEL MADE EVASIVE MANOEUVERES AND ESCAPED FROM THE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.884166700297271, 11.83388889968785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-151", + "dateofocc": "2009-03-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIA:A HIGH SPEED BOAT LAUNCHED FROM A MOTHER SHIP CHASED A CONTAINER SHIP. THE VESSEL INCREASED SPEED AND COMMENCED MADE EVASIVE MANOEUVRES. THE SPEED BOAT CAME AS CLOSE AS 3 CABLES TO THE SHIP BUT STOPPED, PROBABLY DUE TO ENGINE PROBLEM. SHIP CONTI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.734444399713254, -7.351944399725255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-152", + "dateofocc": "2009-03-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOMALIA:PIRATES IN A SPEED BOAT ATTACKED AND HIJACKED A CHEMICAL TANKER UNDERWAY. PIRATES ARE IN CONTRO OF THE VESSEL AND HAVE TAKEN HOSTAGE 19 CREW. PRESENTLY PIRATES ARE SAILING THE VESSEL TO AN UNDISCLOSED LOCATION IN SOMALIA. FURTHER REPORT AWAITED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.685833300424463, 1.714722199605603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-153", + "dateofocc": "2009-03-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA:A BULK CARRIER UNDERWAY WAS ATTACKED BY PIRATES IN SPEED BOATS. THE VESSEL AVOIDED THE ATTEMPT BY EMPLOYING EFFECTIVE ANTI PIRACY MEASURES. NO FURTHER DETAILS AVAILABLE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.566666700134647, 13.516666700229393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-154", + "dateofocc": "2009-04-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "M/V MAERSK ALABAMA", + "descriptio": "SOMALIA: M/V MAERSK ALABAMA, 21 CREW MEMBERS ON BOARD, BOARDED BY PIRATES IN 02-25N 051-14E AT 080430Z APR. CAUTION ADVISED. NO FURTHER DETAILS AVAILABLE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.23333329963242, 2.41666670014024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-155", + "dateofocc": "2009-03-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDIAN OCEAN:A yacht with seven crew departed from Seychelles. Pirates boarded and hijacked it. On 04 Jan 09 the master contacted the owners to inform that the yacht had been hijacked. The pirates are believed to be sailing the yacht to the Somali coast.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.00000000006662, -8.999999999945715] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-156", + "dateofocc": "2009-03-24", + "subreg": "71", + "hostility_": "THREE PIRATES", + "victim_d": "YACHT", + "descriptio": "THAILAND: Three robbers armed with knives and a hammer attacked and boarded a yacht. They assaulted and killed the skipper and threw his body overboard while in the mooring bay off the Buntang Islands. The skipper's wife was also injured. They tied her", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.233333300285437, 6.666666699603184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-157", + "dateofocc": "2009-03-26", + "subreg": "62", + "hostility_": "TWO WHITE SPEED BOATS", + "victim_d": "UKNOWN VESSEL", + "descriptio": "BAB-EL-MANDEB: Vessel reported suspicious approach 26 Mar 09 at 1828 local time while underway in position 12-38N 043-18E, per 7 Apr 09 reporting. Two white colored speed boats were sighted with five men onboard each. They approached from the port quarte", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.300000000036903, 12.633333300002903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-158", + "dateofocc": "2009-04-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier hijacked 6 Apr 09 at 0620 UTC while underway in position 12-33N 049-02E. The vessel was boarded and hijacked by pirates while underway. The vessel was reportedly carrying iron and had a crew of 24 (IMB, AP).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.033333300100878, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-159", + "dateofocc": "2009-03-20", + "subreg": "62", + "hostility_": "WHITE CRAFT", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported attempted boarding 20 Mar 09 at 0530 local time while underway in position 13-10N 049-13E, per 6 Apr 09 reporting. A white craft with blue stripes was sighted at the starboard bow heading towards the vessel. At a distance o", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.216666700394683, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-352", + "dateofocc": "2009-09-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Duty watchmen on an anchored vessel noticed a speed boat come alongside. Two robbers armed with long knives boarded. Alarm raised and crew alerted. Robbers stole ship's stores and escaped. Authorities informed but no res", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.773333299846286, 22.176666700167743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-353", + "dateofocc": "2009-09-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYASIA: Tanker (MMM KINGSTON) reported attempted boarding 14 Sep 09 at 0445 local time while anchored in position 01-18.3N 104-12.56E, approximately 2NM south of Tanjung Ayam. Six men armed with long knives attempted to board the vessel from a speed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.209444399840777, 1.304999999834422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-354", + "dateofocc": "2009-09-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "NIGERIA: Tug briefly hijacked, vessel robbed 7 Sep 09 at 0600 UTC in position 03-53.50N 006-47.50E, approximately 30NM from Port Harcourt. Nine men armed with automatic weapons in a speedboat boarded and hijacked an offshore tug. They then used the tug", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.791666699719656, 3.891666700255371] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-355", + "dateofocc": "2009-09-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier robbed 15 Sep 09 at 2200 local time while anchored in position 22-09.4N 091-47.2E, Chittagong anchorage. Twelve robbers armed with long knives boarded the vessel from the stern. They took the stern duty watchman hostage and beg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.786666700413377, 22.156666700041171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-356", + "dateofocc": "2009-09-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Vessel reported suspicious approach 16 Sep 09 at 1320 local time while underway in position 15-29N 041-34E. Vessel reported being chased by two high speed boats with approximately eight people dressed in black in each boat. The approach was ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.566666700102303, 15.483333299600474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-357", + "dateofocc": "2009-09-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker (PACIFIC HARMONY) reported attempted boarding 14 Sep 09 at 0240 local time while anchored in position 01-18.5N 104-13.8E, approximately 2NM south of Tanjung Ayam. Five men attempted to board the vessel from a boat. The duty watch raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.230000000217728, 1.30833330006385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-358", + "dateofocc": "2009-09-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: Container ship robbed 13 Sep 09 at 2150 local time while anchored in position 03-56.7N 098-46.1E, Belawan anchorage. Robbers with long knives boarded the ship while anchored. The duty watch spotted the robbers and informed the duty officer w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.76833329981622, 3.945000000351513] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-359", + "dateofocc": "2009-09-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: Cargo ship robbed 20 Sep 09 at 0815 local time while underway in position 03-59N 006-46E, Bonny River. Six armed men boarded the vessel, stealing ship's stores and cash. They ransacked the crew cabins stole personl belongings and left the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-308", + "dateofocc": "2008-09-09", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier (BRIGHT RUBY) hijacked 9 Sep 08 at 0657 UTC while underway in position 13-09N 047-57E, approximately 100NM southwest of Al Mukalla, Yemen. There are 21 crewmembers on board the vessel, eight Koreans and 13 Myanmar (IMB, UKMTO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.950000000232251, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-360", + "dateofocc": "2009-09-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (BBC PORTUGAL) fired upon 20 Sep 09 at 1545 local time while underway in position 12-49.48N 048-11.82E. One speed boat with seven armed men onboard approached the vessel. The master activated counter-piracy measures, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.196944400086579, 12.824722200207702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-361", + "dateofocc": "2009-09-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon 19 Sep 09 at 0645 UTC while underway in position 13-52N 051-07E. Approximately seven armed men in a six meter long, while colored skiff fired upon the vessel. They attempted to board the vessel but were unable to do", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.116666699826567, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-292", + "dateofocc": "2008-08-23", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown Vessel", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 23 Aug 08 at 0630 UTC while underway in position 13-16.9N 042-55.3E, 53NM north northwest of Caluula, Somalia. A white colored speedboat with five persons onboard approached the vessel. The alarm was raise", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.921666700357491, 13.281666699866548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-293", + "dateofocc": "2008-08-24", + "subreg": "63", + "hostility_": "Pirate Robbery", + "victim_d": "Chemical Tanker", + "descriptio": "INDIA:Chemical tanker boarded, robbed 24 Aug 08 at 0005 local time while at anchorage in position 16-59.7N 082-21.4E, Kakinada. Two robbers boarded the vessel. The robbers attempted to steal the fire wire and other ship stores. Upon hearing the emergency", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.356666699649793, 16.994999999739321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-294", + "dateofocc": "2008-08-20", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "INDIA:Container ship (OEL DUBAI) boarded, robbed 20 Aug 08 at 0350 local time/2130 UTC while at anchorage in position 09-55N 076-05E, Cochin. Four robbers boarded the vessel from a wooden boat and stole the 10 drums of paint from the paint locker. The sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.083333299941444, 9.916666699933103] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-295", + "dateofocc": "2008-08-12", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Vehicle Carrier", + "descriptio": "INDONESIA:Vehicle carrier boarded, robbed 12 Aug 08 at 0600 local time while at berth, Jakarta car terminal. Robbers boarded the vessel and stole spare parts of considerable value from the spare parts locker. The incident was unnoticed by the ship¿s cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.216666700439362, -5.38333329975228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-278", + "dateofocc": "2008-08-21", + "subreg": "62", + "hostility_": "Pirate Hijacking", + "victim_d": "Cargo Ship", + "descriptio": "GULF OF ADEN:Cargo ship (BBC TRINIDAD) hijacked 21 Aug 08 at 0945 UTC while underway in position 12-57.9N 048-56.7E, 107NM south of Al Mukalla, Yemen. The vessel was attacked by two fast crafts. An additional orange mother-ship was spotted during the hij", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.945000000008122, 12.964999999869804] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-296", + "dateofocc": "2008-08-12", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "DOMINICA:Yacht boarded 12 Aug 08 at 0415 local time while mooring, Roseau. Two perpetrators boarded the vessel. When an audible alarm sounded, one perpetrator jumped off the vessel, while the other attempted to hide in a small inflatable under the yacht.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.383333299764672, 15.283333300133563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-297", + "dateofocc": "2008-08-27", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "unknown", + "descriptio": "VENEZUELA:Dinghy stolen 27 Aug 08 at 1830 local time, Porlamar, Margarita Island. The owner stated that there were approximately 12 other dinghies tied to the dock when boat was stolen. He stated that he had paid the dock attendant to \"safeguard\" the boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.850000000325622, 10.949999999935017] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-298", + "dateofocc": "2008-08-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "IVORY COAST:Tanker boarded, robbed 30 Aug 08 at 2330 local time while in position 05-13N 004-02E, Port Abidjan Anchorage. The duty crew onboard the vessel spotted a robber on the poop deck. The bridge was informed and the alarm was raised. The robber jum", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.033333300444269, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-299", + "dateofocc": "2008-09-09", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "NIGERIA:Container ship boarded 9 Sep 08 at 2345 local time, Lagos anchorage. Four perpetrators boarded the vessel while drifting from the poop deck. The perpetrators hit the duty watchman causing minor head injuries and escaped with ships stores. The por", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-300", + "dateofocc": "2008-09-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug boat", + "descriptio": "NIGERIA:Tug (FULMAR LAMNACO) hijacked, sailor killed 7 Sep 08 in the early hours Sabriero River off Bonny in southern Rivers state. Nigerian militants killed one sailor and kidnapped another when they hijacked a vessel belonging to the Nigerian Unit of I", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-301", + "dateofocc": "2008-09-09", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug Boat", + "descriptio": "NIGERIA:Tug (HD BLUE OCEAN) hijacked 9 Sep 08 at 1430 local time at the entrance of Sabriero River, Delta. Unidentified gunmen hijacked the vessel with five foreign workers and eight Nigerians. Nigerian military officials were not immediately able to con", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.50000000017053, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-302", + "dateofocc": "2008-09-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply Vessel", + "descriptio": "NIGERIA:Supply vessel (POLARIS) boarded, robbed 8 Sep 08, 35NM southwest of Bonny. According to media reports, men onboard two speedboats first opened fire on the vessel. The perpetrators boarded the vessel and stole personal belongings and damaging equi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-303", + "dateofocc": "2008-08-25", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:Chemical tanker boarded 25 Aug 08 at 0030 local time while in position 06-10.7N 003-23.8E, Lagos anchorage. Robbers armed with long knives boarded the vessel and stole the ships stores. The duty crew spotted them and informed the duty officer, wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.396666700046012, 6.178333299852625] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-474", + "dateofocc": "2008-11-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Chemical tanker boarded and robbed on 26 Nov 08 at 0430 local time while at anchorage Lagos. Armed robbers boarded the tanker from a small craft, stole the ships property and escaped before the alarm was raised. The craft was seen approaching a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-475", + "dateofocc": "2008-11-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 25 NOV 2008 while underway in 13-38N 049-06E. A single craft approximately 2 miles off the starboard side was observed by the watch and Master. The craft increased speed and approached the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.099999999864735, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-476", + "dateofocc": "2008-12-03", + "subreg": "62", + "hostility_": "PIRATE", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker fired upon 3 Dec 08 at 0419 UTC while underway in position 12-59N 047-41E. Speed boat observed approximately 2-3 NM off forward bow. The number of persons onboard the speedboat is unknown, but were carrying firearms due to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.68333330010222, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-477", + "dateofocc": "2008-11-23", + "subreg": "63", + "hostility_": "PIRATE", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIA: Indian fishing trawler (KUBER) hijacked on 23 Nov 08 probably near Jakhau. The hijackers were militants involved in the 23 Nov 08 attacks in Mumbai, India. The militants killed four crewmembers and threw their bodies overboard. The captain was kep", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.207499999762717, 22.898888899780388] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-478", + "dateofocc": "2008-11-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "WARRI RIVER, NIGERIA:SEVERAL SPEEDBOATS WITH HEAVILY ARMED MEN APPROACHED A GENERAL CARGO SHIP UNDER PILOTAGE. THEY FIRED WARNING SHOTS INTO THE AIR, ORDERED THE PILOT TO STOP THE SHIP AD DEMANDED THE GANGWAY LADDER TO BE LOWERED. THE PIRATES BOARDED THE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.37750000008532, 5.581388900031982] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-479", + "dateofocc": "2008-12-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "TEMA ANCHORAGE, GHANA:FOUR ROBBERS BOARDED A OIL TANKER AT ANCHOR. ROBBERS STOLE SHIP'S STORES AND ESCAPED WHEN NOTICED. NO INJURIES TO CREW.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-480", + "dateofocc": "2008-12-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "COTAINER SHIP", + "descriptio": "SOMALIA:TWO PIRATE SKIFFS WERE SEEN APPROACHING A CONTAINER SHIP UNDERWAY. THE 2ND MATE INCREASED SPEED, RAISED ALARM, ACTIVATED FIRE HOSES AND MUSTERED CREW ON BRIDGE. THE PIRATES FIRED UPON THE SHIP WITH GUNS AND RPG. MASTER ACTIVATED SSAS, DSC DISTRES", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.966666700097051, -6.699999999781426] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-481", + "dateofocc": "2008-12-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "TELUK JUARA, MALAYSIA:TEN ARMED PIRATES BOARDED A TUG UNDERWAY. THEY THREATENED THE MASTER AND CREW WITH KNIVES. PIRATES TIED UP THE CREW WITH ROPES AND LOCKED THEM IN A COMPARTMENT . THEY ESCAPED WITH TUG'S AND CREW CASH, DOCUMENTS AND PERSONAL BELONGIN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.316666700108158, 2.849999999942838] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-482", + "dateofocc": "2008-12-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BELAWAN, INDONESIA:ROBBERS BOARDED A CHEMICAL TANKER AT ANCHOR. THEY BROKE THE BOSUN STORE PADLOCK AND STOLE SHIP'S STORES. ATTEMPT TO CONTACT AUTHORITIES WERE FUTILE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.751944399594606, 3.934722200163037] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-483", + "dateofocc": "2008-11-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "NIGERIA:GENERAL CARGO VESSEL BOARDED 16 NOV 08 AT 1142Z WHILE UNDERWAY IN POSITION 05-34N 005-22E, WARRI RIVER, PER 9 DEC REPORTING. SERVERAL SPEEDBOATS WITH HEAVILY ARMED MEN APPROACHED THE VESSEL UNDER PILOTAGE. THEY FIRED WARNING SHOTS INTO THE AIR, O", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.366666700370558, 5.566666699837413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-160", + "dateofocc": "2009-04-02", + "subreg": "62", + "hostility_": "TWO SPEED BOATS", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 2 Apr 09 at 1300 UTC while underway in position 13-51N 051-14E. Two speed boats, blue and white in color, with three or four persons onboard approached the vessel underway at over 20 kts. The speed", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.23333329963242, 13.850000000298621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-161", + "dateofocc": "2009-04-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship hijacked 8 Apr 09 at 0430 UTC while underway in position 02-24N 051-40E, approximately 235NM southeast of Hobyo, Somalia. Four pirates in a skiff boarded and hijacked the vessel while underway. The crew of 20 onboard managed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.666666700159169, 2.400000000243097] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-162", + "dateofocc": "2009-04-06", + "subreg": "61", + "hostility_": "UNKNOWN BOAT", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel hijacked 6 Apr 09 at 0300 local time while underway in position 01-50S 055-27E, approximately 585NM off the coast of Somalia. The vessel reported being chased and then boarded by at least one boat. According to the owners of", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.45000000002517, -1.833333300222023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-163", + "dateofocc": "2009-04-05", + "subreg": "61", + "hostility_": "WHITE BOAT", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 5 Apr 09 at 1630 local time while underway in position 01-00S 056-10E, approximately 590NM off the coast of Somalia. The vessel passed a white boat with four men onboard at a speed of 4 kts. The boat inc", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.166666699855, -0.99999999968702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-164", + "dateofocc": "2009-04-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 4 Apr 09 at 0641 UTC while underway in position 09-24N 058-15E, approximately 280NM southeast of Socotra Island. Six pirates in a speed boat armed with AK-47s chased the vessel underway. The captain contacted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.249999999755971, 9.399999999570127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-165", + "dateofocc": "2009-04-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "INDIAN OCEAN: Vessel hijacked 4 Apr 09 at 0530 UTC while underway in position 02-40S 048-03E, approximately 320NM southeast of Mogadishu, Somalia. Pirates armed with automatic weapons and RPGs boarded and hijacked the vessel. There are 24 crewmembers on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.049999999965678, -2.66666669968248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-193", + "dateofocc": "2009-04-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA: Eight pirates armed with knives boarded a chemical tanker and stole crew cash and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.497222199906446, 3.416111099922205] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-167", + "dateofocc": "2009-04-02", + "subreg": "63", + "hostility_": "TWO BLUE SKIFFS", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 2 Apr 09 at 1400 UTC while underway in position 05-31N 056-32E, approximately 420NM southeast of Eyl, Somalia. Two blue skiffs were launched from a mother ship at 8NM abeam from the vessel. Each skiff had four arm", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.533333299893798, 5.516666699970699] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-168", + "dateofocc": "2009-04-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "MALAYSIA: Tug robbed 1 Apr 09 at 0510 local time while underway in position 02-30N 104-24E, approximately 6NM northwest of Pulau Aur. Five pirates with masks and armed with knives boarded the tug underway. They stole cash and personal belongings and esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.399999999944441, 2.499999999976524] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-169", + "dateofocc": "2009-03-30", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM: Bulk carrier robbed 30 Mar 09 at 0045 local time while anchored in position 10-42N 106-44E, Ho Chi Minh port. Six robbers in a wooden boat boarded the vessel from the bow. They stole ship's properties and escaped. The incident was reported to l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.7333333000783, 10.699999999702129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-170", + "dateofocc": "2009-03-25", + "subreg": "26", + "hostility_": "TWO PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "PORT AU PRINCE, HAITI:Watchman on board a chemical tanker spotted two robbers armed with knives on forecastle, robbers had tried to steal ship's shores but failed due to vigilant anti piracy watch. Port control did not respond to calls.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.66666670014763, 18.749999999827537] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-171", + "dateofocc": "2009-04-06", + "subreg": "63", + "hostility_": "SPEED BOATS", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN:A bulk carrier underway, detected on radar speed boats approaching own vessel on stbd bow/port bow at a distance or 12nm. As the speed boat increased speed and approached closer with cpa .01nm, master increased speed, all crew mustered, acti", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.250277799722539, 15.229722200361948] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-362", + "dateofocc": "2009-09-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier reported attempted boarding 19 Sep 09 at 0600 UTC while underway in position 13-54.2N 051-09.8E. Approximately six armed men in a white colored speedboat attempted to attack the vessel while it was underway with a convoy of tw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.163333299639191, 13.903333300394706] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-363", + "dateofocc": "2009-09-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker fired upon 19 Sep 09 at 0550 UTC while underway in position 13-52.10N 051-04.17E. Four men armed with machine guns in a six meter long, white colored skiff, fired upon the vessel. The master raised the alarm increased speed, took e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.069444399938902, 13.868333300398092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-364", + "dateofocc": "2009-09-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 18 Sep 09 0120 local time while underway in position 14-20.2N 049-47.1E. Men in a small boat approached the vessel and came as close as five meters. The alarm was raised and the crew was alerted. The sma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.784999999927379, 14.336666700022079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-365", + "dateofocc": "2009-09-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 16 Sep 09 at 1400 UTC while underway in position 15-20N 056-27.8E, approximately 170NM southeast of Salalah, Oman. A boat drifting on the port beam of the vessel increased speed and approached th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.463333299900512, 15.333333300000277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-366", + "dateofocc": "2009-09-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIA: Container ship robbed 18 Sep 09 at 0440 local time while anchored in position 21-41.8N 088-01.0E, Sagar road, Kolkata. While anchored robbers armed with knives boarded the vessel from the starboard side when the duty watchman was taking rounds on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.016666700390374, 21.696666699828427] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-367", + "dateofocc": "2009-09-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier robbed 22 Sep 09 at 2155 local time while anchored in Chittagong anchorage. Five robbers boarded the vessel from the stern anchor when the duty seaman spotted the suspects on his rounds. Upon encountering the robbers, the duty se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-368", + "dateofocc": "2009-09-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker robbed 18 Sep 09 at 1927 UTC while anchored in position 03-55.2N 098-45.8E, Belawan outer anchorage. Three robbers armed with long knives boarded the vessel via the forecastle by using a rope and a hook. The robbers threatened the forw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.763333299559747, 3.919999999968468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-369", + "dateofocc": "2009-09-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker (PROSPECT) robbed 19 Sep 09 at 0020 local time while underway in position 03-20.01N 105-19.50E, approximately 50NM northwest of Anambas Islands. Six men armed with knives and machetes boarded the tanker. They hit the duty officer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.324999999727027, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-370", + "dateofocc": "2009-09-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "STRAIT OF MALACCA: Report of attempted sea robbery on 26 Sep 09 at 1300 local time at position 05-48.3N 096-34.0E. Mariners advised to take precautions and increase look-out for suspicious small fast moving craft approaching their vessels. Mariners to m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [96.566666700082351, 5.805000000429629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-371", + "dateofocc": "2009-09-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CHITTAGONG ANCHORAGE BANGLADESH: Duty officer onboard a container ship arrived at poop deck and spotted one robber near entrance to rope store. When duty officer approached the robber, two other robbers armed with long knives began to chase him. He retre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725000000006673, 22.256666699774598] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-372", + "dateofocc": "2009-09-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Eight robbers armed with long knives in a small wooden fishing boat boarded a product tanker at anchor. Duty bosun sighted them and informed OOW who raised the alarm. Robbers threatened one watchman with long knives, cut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.72055560000058, 22.186944399632125] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-373", + "dateofocc": "2009-09-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Eight pirates armed with guns in two high powered speed boats attempted to board a bulk carrier underway. Master raised alarm, took evasive maneuvers, fired parachute signals, activated SSAS and contacted coalition warships for assistance.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.418611099739394, 13.192777800422789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-304", + "dateofocc": "2008-08-30", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Container ship boarded 30 Aug 08 at 0001 local time while drifting in position 06-47.4S 039-40.2E, Dar es Salaam Roads. Three perpetrators armed with knives boarded the vessel. Another three perpetrators were seen climbing up using a knotted lin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.670000000000471, -6.789999999901227] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-305", + "dateofocc": "2008-08-29", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "TANZANIA:Container ship boarded, robbed 29 Aug 08 at 2005 local time while in position 06-46.95S 039-21.68E, Dar es Salaam Anchorage. Robbers boarded the vessel. The duty crew noticed one robber on the starboard side armed with a knife. The robber threw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.361388899739438, -6.782500000415837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-306", + "dateofocc": "2008-09-07", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier (MONIMA) reported suspicious approach 7 Sep 08 at 1500 local time, while underway in position 13-06.87N 045-41E, approximately 12NM off the Yemen coast. Three speedboats reportedly chased the vessel. The Master contacted the IMB", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.683333300037532, 13.114444400118884] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-307", + "dateofocc": "2008-09-10", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 10 Sep 08 at 0125 UTC while underway in position 15-46N 053-07E. Three suspicious small boats were reportedly following the vessel. Coalition warships were urgently requested to render necessary assi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.116666699891255, 15.766666699627649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-309", + "dateofocc": "2008-09-08", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Container Ship", + "descriptio": "GULF OF ADEN:Container ship reported suspicious approach 8 Sep 08 at 0900 UTC while underway in position 12-54.2N 046-04.2E. Two suspicious speedboats crossed the bow from starboard to port at 20kts approximately 1NM away before altering course towards t", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.070000000027562, 12.903333300362362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-310", + "dateofocc": "2008-09-08", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker Vessel", + "descriptio": "Tanker reported suspicious approach 8 Sep 08 at 0655 UTC while underway in position 12-45.48N 046-05.3E. There were reportedly more than ten speedboats in the surrounding area with many personal on board. Incident was reported to coastal authority (Oper", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.088333300127033, 12.758055600268563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-311", + "dateofocc": "2008-09-08", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Unknown", + "descriptio": "GULF OF ADEN:IMB reported suspicious vessel, per 8 Sep 08 reporting. A suspicious boat was transmitting the AIS with a different call sign VRWO. The IMO and MMSI number remains unchanged and untraceable. The passing ship reported to have seen the names a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.3074999997487, 14.228888900228412] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-312", + "dateofocc": "2008-09-07", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 7 Sep 08 at 1020 UTC while underway in position 12-46N 045:54E. Suspected pirates in two speedboats reportedly chased the vessel. The owner contacted the IMB Piracy Reporting Center (PRC) for assista", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.900000000300849, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-313", + "dateofocc": "2008-09-06", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker Vessel", + "descriptio": "GULF OF ADEN:Tanker (FRONT VOYAGER) fired upon 6 Sep 08 at 0950 UTC while underway in position 12-54.9N 047-05.1E, 39NM off the coast of Yemen. The vessel spotted a blue-hulled speedboat with five armed men onboard approximately 6NM away. The speedboat a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.084999999930005, 12.91500000000309] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-315", + "dateofocc": "2008-09-05", + "subreg": "62", + "hostility_": "ARMED PIRATES", + "victim_d": "GENERAL CARGO", + "descriptio": "GULF OF ADENGeneral cargo fired upon 5 Sep 08 at 0510 UTC, while underway in position 12-57N 047-04E, 118NM east of Aden, Yemen. The ship reportedly sighted a suspected mother-ship described as a blue tug towing a small boat about six miles off, bearing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.066666699830535, 12.949999999999704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-484", + "dateofocc": "2008-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 28 Oct 08 at 1127 local time while underway in position 12-40N 045-28E, per 10 Dec reporting. Tanker reported being approached by six speedboats with approximately three to four persons onboard each. Eac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.466666699598932, 12.666666699797247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-485", + "dateofocc": "2008-12-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 2 Dec 08 at 0400 UTC while underway in position 13-57N 049-35E. A suspicious craft was spotted on the port side at about 2 miles. Approximately 15 minutes later they were able to see 7 persons onboard in military uniforms", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.583333300433424, 13.950000000032048] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-486", + "dateofocc": "2008-12-10", + "subreg": "81", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "GULF OF ADEN: Two Yemeni fishing vessels, (FALLUJAH) and (KANA), reportedly hijacked 10 Dec 08 while underway from the Mait area near the port of Aden. According to Yemeni Coastguard, 22 men from both vessels were seized by the pirates. Seven men manage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [149.433333299570677, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-25", + "dateofocc": "2010-12-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "MOZAMBIQUE CHANNEL: Fishing vessel attacked in 14-28S 041-42E at 1934Z on 31 Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.6999999998053, -14.466666699704376] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-487", + "dateofocc": "2008-12-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN:ONE WOODEN SPEED BOAT WITH 5-6 PERSONS ARMED WITH AUTOMATIC WEAPONS AND RPG CHASED AND OPENED FIRE ON A CONTAINER SHIP UNDERWAY. PIRATES ATTEMPTED TO BOARD WITH A LADDER. MASTER TOOK EVASIVE MANOEUVRES AND CONTACTED COALITION WARSHIPS FOR AS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.283333300301479, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-488", + "dateofocc": "2008-12-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:ONE PIRATE BOAT WITH SEVEN ARMED MEN CHASED A TANKER UNDERWAY. PIRATES WERE SEEN CARRYING AUTOMATIC WEAPONS, RPG AND A WOODEN LADDER FOR BOARDING. LATER, THE BOAT ABORTED THE CHASE AND HEADED TOWARS ANOTHER VESSEL NEARBY. A NAVY HELICOPTER A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.650000000164994, 13.516666700229393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-489", + "dateofocc": "2008-12-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:EIGHT PIRATES ARMED WITH MACHINE GUNS AND RPG IN A BLUE COLOURED SPEED BOAT DOING 17 KNOTS ATTACKED A GENERAL CARGO SHIP UNDERWAY. THEY FIRED UPON THE SHIP WITH MACHINE GUNS AND ATTEMPTED TO BOARD THE SHIP TWICE USING A LADDER. CREW MANAGED", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.618055599647619, 13.535277800004394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-490", + "dateofocc": "2008-12-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CHITTAGONG 'A' ANCHORAGE, BANGLADESH:SIX ROBBERS ARMED WITH KNIVES BOARDED A TANKER AT ANCHOR. ALARM RAISED AND CREW MUSTERED. COAST GUARD BOARDED FOR INVESTIGATION . SHIP'S STORES STOLEN FROM BOSUN STORE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-491", + "dateofocc": "2008-12-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MALAYSIAN TUG", + "descriptio": "GULF OF ADEN:Tug (MASINDRA 7) and barge hijacked 16 Dec 08 at 0715 local time while underway in position 13-54N 049-39E. Owners confirmed that pirates have hijacked the tug with barge in tow. There are 11 crewmembers onboard (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.650000000197281, 13.900000000165335] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-492", + "dateofocc": "2008-12-02", + "subreg": "62", + "hostility_": "Somalian Pirates", + "victim_d": "Car Carrier", + "descriptio": "GULF OF ADEN:Car Carrier reported being fired upon on 02 Dec 08 at 1715 UTC while underway in position 13-23.2N 048-14.9E. 4 pirates in a small boat was spotted on the starboard side at about 6-7 miles. Pirates approached the vessel and fired about 20 ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.235833299663682, 13.383888900052739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-493", + "dateofocc": "2008-12-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship fired upon 12 Dec 08 at 1212 local time while underway in position 13-32N 048-37E. Eight pirates armed with machine guns and RPGs in a blue colored speed boat doing 17 knots fired upon the vessel and attempted to board t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.616666700195424, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-494", + "dateofocc": "2008-12-13", + "subreg": "62", + "hostility_": "TWO BOATS", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo ship GIBE fired upon on 13 DEC 2008 at 0300Z while underway in position 13-19N 047-58E. The GIBE reported two boats were firing small arms at it when it sent out a rescue call. Indian warship INS MYSORE sailing nearby intervened with", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, 13.316666699863219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-172", + "dateofocc": "2009-04-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: A bulk carrier underway detected on radar speed boats approaching from the starboard bow/port bow at a distance on 12 miles. The speed boats increased speed and approached closer with a CPA of 0.01 miles, master increased speed, all crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.251666700074111, 15.224444400429945] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-173", + "dateofocc": "2009-04-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BUENAVENTURA ANCHORAGE, COLOMBIA: Seven robbers armed with long knives boarded a bulk carrier at anchor during heavy rain. Duty crew saw movement at ship's store and raised alarm. Crew mustered and rushed to the location. The robbers escaped with ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, 3.824999999592194] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-174", + "dateofocc": "2009-04-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: A general cargo ship underway sighted a suspicious mother vessel which later launched two skiffs. The boats chased the vessel ad opened fire with guns and RPG. Master raised alarm, carried out evasive maneuvers and succeeded in deterring th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.466666699792938, 14.133333299601759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-175", + "dateofocc": "2009-04-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Pirates in a skiff chased and fired upon a bulk carrier underway. The vessel commenced evasive maneuvers and contacted the coalition naval forces for assisstance. A military helicopter arrived and upon sighting the aircraft the pirates abor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.216666700394683, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-176", + "dateofocc": "2009-04-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "DAR ES SALAAM ANCHORAGE, TANZANIA: While the crew kept a vigilant anti piracy watch on board a container ship, robbers boarded her and succeeded in throwing one life raft into the sea. The crew raised alarm, mustered and reported to the authorities. Vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.733333299750996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-177", + "dateofocc": "2009-04-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MOGADISHU, SOMALIA: Eight pirates armed with guns and rpgs in two skiffs, launched by a pirate mother vessel, attacked a container ship underway. Master increased speed to 22.8 knots and the skiffs followed at 23.5 knots. They approached very close and f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.738333300354725, 0.303333299775034] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-178", + "dateofocc": "2009-04-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "Either pirates armed with guns in a speed boat (blue color, plastic hull, 12 length) attacked a bulk carrier underway. Vessel took evasive maneuvers and contacted coalition warship. A coalition warship acknowledged and came to the location. The pirates a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.383333299970218, 12.266666699964162] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-179", + "dateofocc": "2009-04-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: A 35,000 ton bulk carrier M/V Irene (E.M) was hijacked by unconfirmed number of pirates on 14 Apr 09 at 0200 local while underway in position 12-51N 084-11E, approximately 100 miles south of Al Mukala, Yemen in the Gulf of Aden. The crew on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.250000000331909, 12.900000000132991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-180", + "dateofocc": "2009-04-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Six pirates armed with guns in a skiff fired upon a bulk carrier 12 Apr 09 at 0400 UTC while underway. Vessel sent distress messages and took evasive maneuvers finally prevented the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.816666699662278, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-181", + "dateofocc": "2009-04-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "GULF OF ADEN: An american-owned and Italian-flagged tug towing two barges, and operated by UAE company, was hijacked while travelling westbound through the Gulf of Aden at 1104 UTC this morning. The 16 man crew are believed to be unharmed and shipping in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.316666700031078, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-182", + "dateofocc": "2009-04-08", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA: Bulk carrier robbed 8 Apr 09 at 0200 local time while anchored in position 03:49N - 077:10W, Buenaventura anchorage. Seven robbers armed with long knives boarded the vessel at anchor during heavy rain. The duty watchman saw movements at the bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-183", + "dateofocc": "2009-04-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GULF OF ADEN: Fishing vessel (AHMED SAMARAH) hijacked 10 Apr 09 in the vicinity of Ras Kampomi off Bosaso, Somalia. Pirates attacked and hijacked the vessel with 18 crew members onboard. It is suspected they may be using the fishing vessel as a pirate m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 11.266666699931818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-184", + "dateofocc": "2009-04-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Vessel (LIBERTY SUN) fired upon 14 Apr 09 at 1810 local time while underway in position 02:42S - 046:24E, approximately 265NM southeast of Barawe, Somalia. Pirates in skiffs launched from mother ships chased a bulk carrier underway and ope", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.399999999867362, -2.69999999965205] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-185", + "dateofocc": "2009-04-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo ship (SEA HORSE) 14 Apr 09 at 1400 UTC while underway in position 02:16N - 047:37E, approximately 137NM northeast of Mogadishu, Somalia. Pirates in three skiffs chased the vessel and successfully boarded it. They hijacked the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.61666670016308, 2.26666669964078] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-374", + "dateofocc": "2009-09-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Four pirates armed with guns chased and fired upon a bulk carrier underway. Master increased speed and carried out evasive maneuvers and also contacted coalition warships. Coalition warship came to assist and the pirates aborted the attack", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.318888899681497, 13.199166700131457] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-375", + "dateofocc": "2009-09-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Pirates in a skiff chased a bulk carrier underway. Master carried out evasive maneuvers, increased speed and informed coalition warships. A coalition warship and a helicopter intervention prented the pirates to continue the attempt. No inju", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.650000000067962, 12.250000000067018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-376", + "dateofocc": "2009-09-28", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VENEZUELA: Chemical tanker boarded 28 Sep 09 at 2350 local time in position 10-16.7N 064-42.1W, Puerto le Cruz anchorage. Three robbers boarded the boat, but when the crew spotted them, they immediately jumped overboard and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.70166669988555, 10.278333299715428] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-377", + "dateofocc": "2009-09-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "NIGERIA: Supply vessel robbed 28 Sep 09 close to midnight while underway in position 04-10N 007-00E, approximately nine nautical miles off Bonny and close to the Bonny Fairway Buoy. The robbers took crew valuables (Risk Intelligence/MaRisk).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-378", + "dateofocc": "2009-09-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 28 Sep 09 at 2030 local time in position 22-14.2N 091-43.5E, Chittagong anchorage. Eight robbers in a fishing boat attempted to board the vessel when the duty AB spotted them and raised the alarm. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725000000006673, 22.236666699648083] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-379", + "dateofocc": "2009-10-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Vehicle carrier (HOEGH PUSAN) fired upon 4 Oct 09 at 1900 UTC while underway in position 01-47.2S 056-07.1E, approximately 150NM north of Seychelles. Two unlit boats chased the vessel from astern and opened fire. The master increased spee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.118333300190613, -1.786666700409455] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-380", + "dateofocc": "2009-10-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "STRAITS OF BA EL MANDAB RED SEA: A chemical tanker under way reported a suspicious, white colored skiff around 10 meters long with a high rise bow and two blue camouflaged skiffs in tow in above position. Ships are advised to be vigilant and cautious whi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.166666700333906, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-381", + "dateofocc": "2009-10-06", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GUINEA: Tanker robbed 6 Oct 09 at 2314 UTC while drifting in position 09-08.56N 014-06.06W, approximately 30NM southwest of Conakry. Men armed with automatic rifles and pistols in one boat boarded the vessel while drifting. They stole the crew's cash a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.099999999840861, 9.1427778004267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-382", + "dateofocc": "2009-10-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon 5 Oct 09 at 1759 UTC while underway in position 13-39N 050-30E. Two skiffs approached the vessel and opened fire with RPGs and automatic weapons. The master conducted evasive maneuvers and contacted coalition force", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 13.64999999993239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-383", + "dateofocc": "2009-10-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FRENCH NAVAL VESSEL", + "descriptio": "INDIAN OCEAN: French navy vessel (SOMME) fired upon 6 Oct 09 at 2119 UTC while underway in position 01-35N 050-42E, approximately 320NM east of Mogadishu, Somalia. One skiff with approximately six men onboard opened fire on the ship, likely mistaking t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.700000000096338, 1.583333299780463] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-384", + "dateofocc": "2009-10-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (ALAKRANA) hijacked 2 Oct 09 at 0345 UTC while underway in position 02-36S 048-34E, approximately 330NM southeast of Mogadishu, Somalia. Armed pirates attacked and hijacked the vessel. The vessel is currently anchored off t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.56666670032871, -2.599999999918623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-385", + "dateofocc": "2009-10-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 3 Oct 09 at 2230 local time while anchored in position 22-00N 091-40E, Chittagong anchorage. Approximately 10 robbers in a wooden boat approached the vessel and attempted to board. The crew's alertne", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-386", + "dateofocc": "2009-10-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE STRAITS: A small boat with six robbers came alongside a product tanker at anchor from stbd side aft. Two robbers boarded the vessel and stole ship's properties. They were spotted by ship's crew who raised alarm and crew mustered. Robbers escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.175000000094542, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-202", + "dateofocc": "2009-04-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (PATRIOT) hijacked 25 Apr 09 at 0335 local time while underway in position 14-01N - 051-34E. Pirates in skiffs armed with guns attacked and hijacked the vessel. Seventeen crew members are onboard (Reuters, IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.566666700425685, 14.016666699795906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-387", + "dateofocc": "2009-10-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: A fishing vessel closed onto a general cargo vessel underway. Master increased speed ad took evasive maneuvers raised general alarm and contacted coalition warship. At distance of around 0.5 miles a white and blue hull skiff with 5 armed pi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.078888899799836, 12.263888900160396] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-314", + "dateofocc": "2008-09-06", + "subreg": "62", + "hostility_": "Pirate Attack", + "victim_d": "Tanker Vessel", + "descriptio": "GULF OF ADEN:Tanker fired upon on 6 SEP 2008 at 0705Z while underway in position 12-57.8N 47-01.6E. A white speedboat, less than 10 meters long with six persons on board approached from the port side, near the accommodation ladder. The general alarm was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.02666669957739, 12.963333299842702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-316", + "dateofocc": "2008-09-03", + "subreg": "62", + "hostility_": "SPEED BOAT", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADENContainer ship reported suspicious approach 3 Sep 08 at 0310 local time while underway in position 14-18.3N 050-34E. The vessel detected an unlit speedboat approaching the vessel approximately 2.2NM on starboard bow. As the speedboat approach", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.566666700393341, 14.305000000254836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-317", + "dateofocc": "2008-09-03", + "subreg": "62", + "hostility_": "SUSPICIOUS BOAT", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN Tanker reported suspicious approach 3 Sep 08 at 2030 UTC, while underway in position 13-44.4N 049-02.2E. The suspicious boat traveling at 14.5kts towards the vessel. Coalition forces were informed of the boats location and then the boat alt", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.036666700155024, 13.740000000052248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-318", + "dateofocc": "2008-09-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADENContainer ship (AL MANSOURAH) hijacked 3 Sep 08 at 0900 local time while underway in position 12-57.5N 047-04E, 17 miles off Al Mukalla, Yemen. The pirates reportedly sailed the vessel and anchored it off Caluula, Somalia. There are reportedl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.066666699830535, 12.958333299586229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-319", + "dateofocc": "2008-09-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier (ORSOLINA BOTTIGLIERI) fired upon 3 Sep 08 at 1450 UTC while underway in position 13-36.8N 049-13.16E approximately 40NM off the Yemen coast. Reported pirates attempted to close in on the vessel for boarding; however the vessel w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.221111100400776, 13.613333299908675] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-320", + "dateofocc": "2008-09-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "GULF OF ADENYacht (CARRE D'AS IV) hijacked 2 Sep 08 at 1853 UTC while underway in position 13-48N 050-32E, approximately 80NM north of Caluula, Somalia. The vessel reportedly departed Cocos Islands on 5 Aug 08 enroute to Aden, Yemen. There are reportedly", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.533333299699734, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-321", + "dateofocc": "2008-09-01", + "subreg": "62", + "hostility_": "SUSPICIOUS BOAT", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier reported suspicious approach 1 Sep 08 at 0600 UTC while underway in position 13-40.5N 049-08.7E. The suspicious boat was spotted on starboard bow at a distance of 3.7 miles. The vessel began evasive maneuvers. The suspicious boat", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.145000000374353, 13.675000000315435] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-194", + "dateofocc": "2009-04-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Two speed boats with five to six pirates in each boat armed with guns approached a general cargo ship on the stbd quarter at a distance of 100-150 meters. Vessel fired rocket flares at the pirate boats and contacted the coalition warship fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.791666700146266, 12.725000000149805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-322", + "dateofocc": "2008-09-01", + "subreg": "62", + "hostility_": "TWO SPEEDBOATS", + "victim_d": "LPG TANKER", + "descriptio": "GULF OF ADENLPG tanker reported suspicious approach 1 Sep 08 at 0735 local time while underway in position 12-48.5N 049-42.3E, Gulf of Aden. Two small speedboats approached the vessel from starboard side with entering ladders. A mother-ship was sighted a", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.705000000320467, 12.808333299986089] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-323", + "dateofocc": "2008-09-01", + "subreg": "63", + "hostility_": "SPEEDBOAT", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADENContainer ship reported suspicious approach at 0250 UTC, while underway in position 11-23.32N 066-22.72E, per 1 Sep 08 reporting. The vessel reported one suspicious blue fishing trawler with one speedboat. No further information (UKMTO).", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.378611100036096, 11.392222199574576] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-495", + "dateofocc": "2008-12-13", + "subreg": "62", + "hostility_": "SIX OR SEVEN SPEED BOATS", + "victim_d": "VESSEL (UNKNOWN TYPE)", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 13 Dec 08 at 0519 UTC while underway in position 14-33N 050-16E. Six or seven speed boats going approximately 20 kts with about six or seven persons onboard each boat approached the vessel and attempted", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.26666670029374, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-496", + "dateofocc": "2008-12-13", + "subreg": "62", + "hostility_": "WOODEN SPEED BOAT", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN: Container ship fired upon 13 Dec 08 at 1145 UTC while underway in position 13-43N 048-17E. One wooden speed boat with five to six persons armed with automatic weapons and RPGs chased and opened fire on the vessel. They attempted to board w", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.283333300301479, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-497", + "dateofocc": "2008-12-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (BOSPHORUS PRODIGY) hijacked 16 Dec 08 at 0904 UTC while underway in position 13-20N 047-57E. Ten pirates in two speed boats armed with automatic weapons and RPGs boarded the vessel. Three Turkish and eight Ukrainian cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.950000000232251, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-498", + "dateofocc": "2008-12-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BANGLADESH: Tanker robbed 11 Dec 08 at 0142 local time while anchored at position 22-15N 091-44E, Chittagong ¿A¿ anchorage. Six robbers armed with knives boarded the tanker. The alarm was raised and the crew mustered. The coast guard boarded for inves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-499", + "dateofocc": "2008-12-08", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TWO CARGO SHIPS", + "descriptio": "PHILIPPINES:Two cargo ships fired upon 8 Dec 08 at approximately 2330 local time in the Sultan Kudarat province in position 06-30N 124-00E. Armed bandits raided two cargo ships in the southern Philippines, wounding two sailors on board. Gunmen onboard p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.999999999858801, 6.500000000105899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-500", + "dateofocc": "2008-12-16", + "subreg": "57", + "hostility_": "TWO SPEED BOATS", + "victim_d": "TANKER", + "descriptio": "NIGERIA:OOW onboard a tanker drifting in position 03-43.3N 007-13.8E, observed two speed boats approachig it. Engines were started and crew alerted. Several bullets from automatic guns were fired towards the accommodation. The boats were white in color.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.218888900388436, 3.717500000373377] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-501", + "dateofocc": "2008-12-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "HEAVY LIFT SHIP", + "descriptio": "GULF OF ADEN:Nine pirates in two speed boats chased and successfully boarded a heavy lift ship in position 14-28N 051-36E. The pirates were on the main deck and could not enter the accommodation. Ship sent a distress message to the IMB Piracy Reporting C", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.600000000395255, 14.466666700395024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-502", + "dateofocc": "2008-12-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Tanker fired upon 16 Dec 08 at 0740 local time while underway in position 03-43N 007-13E, 41NM south of Bonny River. A crewmember on watch onboard the tanker observed two speed boats approaching. Engines were started and the crew was alerted. S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.216666699935729, 3.716666700272185] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-195", + "dateofocc": "2009-04-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Twelve pirates, in two white coloued speedboats ared with automatic wapons, chased and fired upon a bulk carrier underway. Vessel made evasive maneuvers and enforced anti piracy measures and prevented the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.666666700029793, 13.250000000099305] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-503", + "dateofocc": "2008-12-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel (ZHEN HUA 4) boarded, reported attempted hijacking 17 Dec 08 at 0424 UTC while underway in position 14-28N 051-36E. Nine pirates in two speed boats chased and successfully boarded the heavy lift ship. The pirates were on the main d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.600000000395255, 14.466666700395024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-504", + "dateofocc": "2008-12-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "GULF OF ADEN: Yacht reported suspicious approach on 17 DEC at 0935 local time while underway in position 14-24N 049-52E. Two high-speed boats converged on the yacht from port and starboard quarters at the same distance. The captain contacted UKMTO and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.866666699561335, 14.399999999731847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-186", + "dateofocc": "2009-04-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 14 Apr 09 at 1300 local time while underway in position 03:45S - 048:20E, approximately 385NM southeast of Mogadishu, Somalia. Two speed boats approached the vessel from the starboard bow at a distance of 4NM. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.333333300168192, -3.749999999551108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-187", + "dateofocc": "2009-04-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 11 Apr 09 at 1240 UTC while underway in position 00:18N - 051:44E, approximately 330NM off the coast of Somalia. Eight pirates armed with guns and an RPG in two skiffs launched from a mother ship, attacked the ves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.733333300098252, 0.300000000444982] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-188", + "dateofocc": "2009-04-12", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PHILIPPINES: Container ship robbed 12 Apr 09 at 1625 UTC in Manila. While waiting for pilot, duty crew member on routine rounds noticed robbers on the forecastle. The alarm was raised and the crew mustered, and proceeded to the forecastle to prevent any", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.983333299864626, 14.566666700128451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-189", + "dateofocc": "2009-04-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: A general cargo ship detected a speed boat approaching her at distance of seven nautical miles. Warship contacted and informed of the speed boat and mother vessel nearby. The speed boat doing a speed of 15 knots approached the vessel on the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.816666699629934, 12.850000000266277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-190", + "dateofocc": "2009-04-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "SOMALIA: A passing vessel relayed sighting of one large skiff loaded with fuel tanks towing two smaller skiffs in position 00-36S 049-14E, course 300, speed 3 knots. All vessels to remain vigilant and stay clear of the suspicious boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.233333299567732, -0.599999999853935] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-191", + "dateofocc": "2009-04-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Vessel (POMPEI) hijacked 18 Apr 09 at 0327 UTC while underway in position 02:45S - 056:48E, approximately 680NM off the coast of Somalia. Pirates in skiffs armed with automatic weapons and an RPG attacked and hijacked the vessel. Ten crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.800000000023829, -2.750000000418083] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-192", + "dateofocc": "2009-04-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "LAGOS, NIGERIA: Two motor boats with eleven robbers armed with long knives boarded a bulk carrier at berth. Robbers climbed using hooks and ropes. Robbers broke into store room and stole ship's stores. Duty officer raised alarm, crew mustered and rushed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-196", + "dateofocc": "2009-04-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DAR ES SALAAM ANCHORAGE, TANZANIA: Alert duty crew onboard a tanker at anchor saw a boat near the port quarter. The duty watchman raised alarm. On hearing the alarm ten robbers were sighted on the poop deck. The robbers jumped overboard and escaped. On i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-197", + "dateofocc": "2009-04-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SANDAKAN PORT, MALAYSIA: While at berth, two robbers boarded a container ship from a small boat during heavy rain. Alarm raised and crew mustered. Robbers jumped overboard and escaped in their boat. An inspection showed three container seals were tempere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-198", + "dateofocc": "2009-04-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (FRONT ARDENNE) reported attempted hijacking 18 Apr 09 at 1530 local time while underway in position 12:18N ¿ 046:29E. Seven armed men in a blue skiff approached the tanker from the starboard quarter. No shots were fired, but the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.483333299703645, 12.299999999933732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-388", + "dateofocc": "2009-10-11", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CONAKRY GUINEA: Nine priates armed with machine guns in a 15 meter length speed boat attempted to board a chemical tanker underway using hooks and ladders. Master raised alarm, activated DSC alert increased speed and took evasive maneuvers. Crew mustered", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.016666700004578, 9.249999999969987] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-389", + "dateofocc": "2009-10-10", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VENEZUELA: Tanker robbed 10 Oct 09 in the early morning while anchored in position 10-15.48N 064-41.5W, Puerto le Cruz anchorage. Robbers boarded the vessel and escaped with ship's stores. A crewmember discovered the theft at 0810 local time when he no", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.691666700271924, 10.2580555997381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-390", + "dateofocc": "2009-10-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "CAMEROON: Fishing vessel (ROSE III) attacked 10 Oct 09, while operating off the Bakassi Peninsula. No crewmembers were injured in the attack and the vessel was not damaged. Cameroon forces reportedly seized the men responsible for the attack (Reuters, R", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.833333300239758, 4.833333300110382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-391", + "dateofocc": "2009-10-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF OMAN: Container ship reported suspicious approach 11 Oct 09 at 1100 local time while underway in position 25-16.2N 058-14.9E, approximately 30NM southeast of Jask, Iran. A white speedboat 7 meters in length approached the vessel at a speed of 1", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.248333299728927, 25.269999999714628] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-392", + "dateofocc": "2009-10-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 7 Oct 09 at 1320 local time while underway in position 12-07N 045-26.7E. Three skiffs approached the vessel underway. The vessel increased speed, conducted evasive maneuvers, and enforced counter-piracy", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.445555599695638, 12.116666700363965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-393", + "dateofocc": "2009-10-15", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (KOTA WAJAR) hijacked 15 Oct 09 at 0237 UTC while underway in position 01-33S 054-52E, approximately 190NM north of Port Victoria, Seychelles. Owners of the vessel received a call stating that the vessel has been attacked a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.866666699723055, -1.550000000019566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-394", + "dateofocc": "2009-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (DRENNEC) fired upon 10 Oct 09 at 0359 UTC while underway in position 02-05S 055-58E, approximately 160NM north of Port Victoria, Seychelles. Vessel reported coming under fire from two skiffs, one white and one blue. A secu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.966666700388146, -2.083333299555647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-395", + "dateofocc": "2009-10-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier robbed 13 Oct 09 at 2105 UTC while anchored in position 22-10.2N 091-47.4E, Chittagong anchorage. Robbers armed with long knives boarded the vessel from the stern where one crew member was held hostage until they gained access", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.789999999743486, 22.169999999884169] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-396", + "dateofocc": "2009-10-12", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PHILIPPINES: Container ship robbed 12 Oct 09 while berthed in Pier 5, South Harbor, Manila. An undetermined number of robbers boarded the vessel and stole equipment. Port State Control Center dispatched personnel to intercept the robbers as they fled in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.966666699792199, 14.603333300327449] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-397", + "dateofocc": "2009-10-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (DE XIN HAI) hijacked 19 Oct 09 at 0815 UTC while underway in position 01-53S 060-05E, approximately 325NM northeast of Port Victoria, Seychelles. Pirates boarded and hijacked the vessel while underway. There are 25 crew memb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.083333300323318, -1.883333300088736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-398", + "dateofocc": "2009-10-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: One skiff with 5-6 armed pirates chased and fired upon a general cargo ship underway. Master increased speed carried out evasive maneuvers and, headed towards a coalition warship. The vessel had rigged barbed wires along the railing and act", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.924999999946237, 13.725000000182149] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-399", + "dateofocc": "2009-10-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker robbed 16 Oct 09 at 0300 local time while anchored at Lagos anchorage. Six robbers armed with guns boarded the vessel. They stole and transferred a cargo of oil into their boat and escaped. No injuries to the crew were reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-400", + "dateofocc": "2009-10-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOUTH CHINA SEA: Fishing vessel fired upon 14 Oct 09 at 1025 local time while underway in position 06-29N 107-43E, approximately 230NM northeast of the Anambas Islands. Men armed with machine guns in a boat chased the vessel and opened fire. The vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.716666700038218, 6.483333300208699] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-324", + "dateofocc": "2008-08-29", + "subreg": "62", + "hostility_": "SPPEDBOAT", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADENChemical tanker (BUNGA MELATI 5) hijacked 29 Aug 08 at 1400 UTC while underway in position 13-11N 046-38E, approximately 14NM off the coast of Yemen. The vessel was reportedly chased by a speedboat and requested coalition warship assistance.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.633333300203162, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-325", + "dateofocc": "2008-08-26", + "subreg": "62", + "hostility_": "SUSPICIOUS BOATS", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 26 Aug 08 at approximately 2052 local time/1652 UTC while underway in position 12-27.29N 045-02.10E. Two suspicious small boats reportedly chased the vessel. The general alarm was raised; the crew mustered", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.034999999998604, 12.454722200114816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-326", + "dateofocc": "2008-08-26", + "subreg": "62", + "hostility_": "SUSPICIOUS VESSEL", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADENContainer ship reported suspicious approach 26 Aug 08 while underway in position 12-29.7N 044-59.44E. The vessel requested assistance. UKMTO Note: No weapons were seen and no concerted attempt to attack. CTF-150 investigated and now assess mi", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.990555599739423, 12.495000000043433] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-327", + "dateofocc": "2008-08-26", + "subreg": "62", + "hostility_": "SMALL CRAFT", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERSIAN GULF:Container ship reported suspicious approach 26 Aug 08 at 1930 local time while underway in position 25-41.3N 054-49.2E, 36NM northwest of Dubai, UAE. A small craft was sighted stationary, 4NM off the starboard bow. The small craft had a CPA", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.820000000085713, 25.688333299647184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-328", + "dateofocc": "2008-08-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "LPG TANKER", + "descriptio": "INDONESIALPG tanker boarded, robbed 30 Aug 08 at 0430 local time while at anchorage in position 00:04.8S 117:34.3E, Santan Port. Several robbers boarded the vessel at the forward mooring station. The ship¿s crew raised the alarm and the intruders esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.571666700118612, -0.080000000160908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-329", + "dateofocc": "2008-09-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SINGAPORE:Bulk carrier (STAR CAPPELLA 1) boarded, robbed 1 Sep 08 at 0305 local time while at anchorage in position 01-18.11N 104-11.58E, south of Tg Ayam, Johor. Three robbers armed with knives boarded the ship from the starboard quarter using grappling", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.199444400227151, 1.303055599956565] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-330", + "dateofocc": "2008-09-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "SAILBOAT", + "descriptio": "VENEZUELASailboat boarded, robbed, tourist killed 15 Sep 08 while at anchorage, Caraballeda. Several armed robbers boarded the vessel. The robbers killed the French tourist. Four shots were fired at the victim when he resisted the armed men on his vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.99999999999045, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-331", + "dateofocc": "2008-09-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL PIPLINE", + "descriptio": "NIGERIAEmancipation of Niger Delta (MEND) and Niger Delta Volunteer Force (NDVF) claim Shell/Agip facility attack 17 Sep 08 at 0930 local time/0830 UTC, Rumuekpe, Rivers State. According to a MEND spokesman, a major trunk crude oil pipeline, believed to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.266666699705411, 5.416666700237272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-332", + "dateofocc": "2008-09-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PIPELINE", + "descriptio": "NIGERIAMEND and NDVF claim Shell facility attack 16 Sep 08 at 2200 local time/2100 UTC Orubiri flow station. The groups claim they attacked and destroyed the Orubiri flow station. The MEND also stated that it killed all soldiers on guard at the station a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.283333299777837, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-505", + "dateofocc": "2008-12-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Vessel (WADI AL-ARAB) fired upon 25 Dec 08 at 0815 UTC while underway in position 14-13N 050-50E. Vessel reported coming under fire by a single boat. Another ship passing by alerted the IMB who then requested assistance from coalition forc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.833333299799392, 14.216666700162136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-506", + "dateofocc": "2008-12-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "Johor outer port limit Malaysia: At 0340 local time six armed robbers boarded an offshore vessel 01-18.3N 104-08.54E and stole ship's stores and properties. Authorities informed who later boarded for investigation.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.148333299684452, 1.300833299679141] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-507", + "dateofocc": "2008-12-25", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "Saigon river, Vietnam: At 0030 local time an AB stationed on forecastle deck heard some noises and he immediately conducted a search. Two robbers were seen escaping. Upon investigation store padlocks were found roken. Nothing stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.75999999958907, 10.686944399709887] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-508", + "dateofocc": "2008-12-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "Chittagong anchorage, Bangladesh: At 0340 local time duty oiler onboard a tanker spotted armed robbers ear the engine store area. The alarm was raised, crew alerted and authorities contacted. Robbers escaped with stolen engine spares.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-1", + "dateofocc": "2009-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:SIX PIRATES IN ONE WHITE COULOURED SPEED BOAT ATTEMPTED TO BOARD A BULK CARRIER UNDERWAY. THREE OF THESE PIRATES WERE ARMED WITH MACHINE GUNS AND OPENED FIRE ON THE VESSEL. MASTER CARRIED OUT EVASIVE MANOEUVRES AND CONTACTED A COALITION WARS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.701388900383222, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-2", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:PIRATES IN THREE SKIFFS ATTACKED A TANKER UNDERWAY. THEY FIRED UPON THE TANKER AND ATTEMPTED TO BOARD. MASTER RAISED ALARM, CONTACTED COALITION WARSHIPS, INCREASED SPEED AND TOOK EVASIVE MANOEUVRES. A COALITION HELICOPTER ARRIVED AND THE PI", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.650000000229625, 13.699999999799104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-3", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:PIRATES IN SPEED BOATS APPROACHED A TANKER UNDERWAY. ONE SPEED BOAT WAS SPOTTED FOUR NM AND THE OTHER TWO WERE DRIFTING SEVEN NM AHEAD OF THE TANKER. MASTER RAISED ALARM, INCREASED SPEED, TOOK EVASIVE MANOEUVRES AND CREW ACTIVATED ANTI-PIRA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.534722199954274, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-4", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:ARMED PIRATES ATTACKED AND HIJACKED A GENERAL CARGO SHIP UNDERWAY. 28 CREWMEMBERS TAKEN HOSTAGE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, 13.916666700062478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-6", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:TWO SKIFFS APPROACHED A TANKER UNDERWAY AND OPENED FIRE WITH AUTOMATIC WEAPONS. MASTER INCREASED SPEED AND MADE EVASIVE MANOEUVRES, AND SENT A DISTRESS MESSAGE VIA VHF RADIO. A WARSHIP AND A HELICOPTER WERE SENT TO ASSIST THE TANKER. UPON SE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.049999999933334, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-7", + "dateofocc": "2008-12-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:A BULK CARRIER UNDERWAY WAS CHASED AND FIRED UPON BY PIRATES IN SPEED BOAT. NAVAL WARSHIPS INFORMED AND ATTACK WAS PREVENTED. FURTHER REPORT IS AWAITED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.449999999766419, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-8", + "dateofocc": "2008-12-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "GULF OF ADEN:VEHICLE CARRIER REPORTED SUSPICIOUS APPROACH 22 DEC 08 AT 0530 LOCAL TIME WHILE UNDERWAY IN POSITION 13-44N 049-05E. AN 8 METER WHITE COLORED SKIFF APPROACHED THE VESSEL FROM THE STARBOARD BOW AT A SPEED OF APPROXIMATELY 25 KTS. THE MASTER C", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.083333299967592, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-9", + "dateofocc": "2008-12-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOUS APPROACH 27 DEC 2008 AT 1450 LOCAL TIME WHILE UNDERWAY IN POSITION 13-52N 049-27E. A SUSPICIOUS BOAT APPROACHED THE VESSEL FROM THE STARBOARD QUARTER APPROXIMATELY 3 MILES AWAY AT A SPEED OF 25 KTS. THE ALARM WAS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.449999999831107, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-10", + "dateofocc": "2008-12-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "VESSEL (S VENUS)", + "descriptio": "GULF OF ADEN:VESSEL (S VENUS) REPORTED BEING FIRED UPON 31 DEC 08 AT 1330Z WHILE UNDERWAY IN POSITION 13-09N 047-29E. A FRENCH FRIGATE IN THE VICINITY INTERCEPTED THE PIRATES AFTER RESPONDING TO THE DISTRESS CALL FROM THE VESSEL (MSCHOA, AFP,IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.483333299735989, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-11", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOUS APPROACH 1 JAN 09 AT 0755 LOCAL TIME WHILE UNDERWAY IN POSITION 14-23N 051-14E. THE VESSEL WAS APPROACHED BY THREE SPEED BOATS THAT BEGAN FOLLOWING THE VESSEL.. THE VESSEL INCREASED SPEED AND THE BOATS EVENTUALLY D", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.23333329963242, 14.383333299834646] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-12", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL FIRED UPON 1 JAN 09 AT 1530 LOCAL TIME WHILE UNDERWAY IN POSITION 13-53N 049-29E. FOUR ARMED MEN IN A SPEED BOAT APPROACHED THE VESSEL AND BEGAN FIRING. THE VESSEL CONDUCTED EVASIVE MANEUVERS AND THE PIRATES ABORTED THEIR ATTEMPT.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.483333299800677, 13.883333300268191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-199", + "dateofocc": "2009-04-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker fired upon 18 Apr 09 at 0745 UTC while underway in position 12:14N ¿ 045:45E. A 20 meter black hull boat with a black sail was spotted. Once the boat was astern, it launched a white hull skiff which proceeded towards the t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.749999999801389, 12.233333300169818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-200", + "dateofocc": "2009-04-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GULF OF ADEN: Fishing dhow hijacked 5 Apr 09 in position 10:40N - 045:00E. The dhow reported being hijacked by approximately 20 pirates. On or about 22 Apr 09, a private security team from Puntland rescue the crew members and release the dhow. Two pirat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.00000000000199, 10.666666699732559] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-201", + "dateofocc": "2009-04-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "SOUTH CHINA SEA: Tug (PROSPAQ T1) hijacked 7 Apr 09 at 2035 local time while underway in position 04:48N - 106:34E, approximately 60NM north of Anambas Islands. While en route from Singapore to Vietnam, 12 pirates armed with two hand guns and knives boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.566666700405733, 4.800000000140813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-203", + "dateofocc": "2009-04-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship fired upon 25 Apr 09 at 0600 local time while underway in position 14-00N - 051-31E. Two small speed boats with five persons armed with guns approached the vessel. When they were approximately three cables away from the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.516666699659652, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-204", + "dateofocc": "2009-04-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported coming under pirate attack at 1050 UTC on 27 APR 09 in position 13-10N 056-37E. A white colored wooden speed boat 10-12m in length was launched from mothership and traveled at a speed of 23 knots toward the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.616666699554798, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-205", + "dateofocc": "2009-04-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (GNA) hijacked 26 Apr 09 at 1130 UTC while underway in position 13-25N - 047-24E. The vessel was attacked and hijacked by approximately 14 pirates. The tanker was later taken back by Yemeni forces (AFP, IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.399999999899705, 13.416666699596647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-206", + "dateofocc": "2009-04-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "PASSENGER VESSEL", + "descriptio": "Pirates in a skiff attacked and fired upon a passenger vessel underway. The attempted boarding was unsuccessful due to vessels evasive maneuvers and the armed security team onboard the vessel. Vessel sustained light damages.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.666666700288488, -1.283333299889478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-207", + "dateofocc": "2009-04-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported being fired upon at 0704 UTC on 28 APR 09 in position 13-50N 056-26E 44 miles north by northwest of the incident reported on the 27 APR 09. Two skiffs were reportedly launched from mothership and fired upon the ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.433333300160314, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-208", + "dateofocc": "2009-04-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker robbed, crew members kidnapped 20 Apr 09 at 2030 local time while underway in position 04-00N - 006-07E, approximately 50NM southwest of Onne. Eight pirates in a speed boat wearing masks and armed with guns fired upon the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.116666700169958, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-209", + "dateofocc": "2009-04-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 28 Apr 09 at 0630 UTC while underway in position 12-31N - 046-07E. One blue colored speed boat with six armed men onboard approached the vessel and opened fire with automatic weapons. The vessel conducted evasive maneuver", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.116666699664904, 12.51666670019705] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-401", + "dateofocc": "2009-10-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: RoRo vessel (JOLLY ROSSO) fired upon 22 Oct 09 at 0415 UTC while underway in position 03-45.28S 046-43.24E, approximately 320NM southeast of Kismayo, Somalia. Men armed with automatic weapons and RPGs in two skiffs opened fire on the vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.720555600343914, -3.754722200132051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-402", + "dateofocc": "2009-10-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "570 MILES SE OF MOGADISHU, SOMALIA: Pirates armed with automatic weapons and rpgs in skiffs opened fire on a bulk carrier underway. The pirates boarded, took hostage 26 crewmembers and hijacked her. The vessel is now under the control of the pirates and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.583333299631136, -4.150000000283512] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-403", + "dateofocc": "2009-10-21", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "35 MILES N OFF CONAKRY, GUINEA: Eight pirates in a small black hull boat approached a general cargo ship underway. D/O raised alarm, took evasive maneuvers and increased speed. As the boat approached at a distance of 150 meters, crew noticed one pirate w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.199999999574288, 9.216666700000417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-404", + "dateofocc": "2009-10-25", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "HAIPHOG ANCHORAGE, VIETNAM: Robbers boarded an anchored container ship from the forecastle and stole ship's stores before escaping. Local authorities informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.880000000348389, 20.641666699672896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-405", + "dateofocc": "2009-10-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "475 MILES SOUTH OF MOGADISHU, SOMALIA: Six pirates armed with machine guns in a white plastic hull speedboat, chased a container ship underway. Ship raised alarm, adopted anti-piracy preventive measures and increased to maximum speed. At a distance of ab", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.166666700398594, -6.128333300194583] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-406", + "dateofocc": "2009-10-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (CAP ST. VINCENT) fired upon 27 Oct 09 at 1020 UTC while underway in position 01-25N 050-41E, approximately 330NM east of Mogadishu, Somalia. The vessel reported being chased and fired upon by two skiffs with approximately", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.683333300199195, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-407", + "dateofocc": "2009-10-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "INDIAN OCEAN: Sailing vessel (LYNN RIVAL) hijacked 23 Oct 09 while underway approximately 60NM west of Port Victoria, Seychelles. The vessel was bound for Tanzania when it dispatched an emergency distress signal on 23 Oct, and then lost contact (AP, AFP", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.355555599866875, -4.580833299957931] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-408", + "dateofocc": "2009-10-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship robbed 19 Oct 09 at 2106 local time while anchored in position 22-10.7N 091-43.3E, Chittagong anchorage. Approximately 25 robbers in three wooden boats armed with long knives approached the vessel from astern. Fifteen of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.721666699777245, 22.17833330037007] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-409", + "dateofocc": "2009-10-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (THAI UNION 3) hijacked 29 Oct 09 at 0247 UTC while underway in position 01-55S 055-53E, approximately 165NM north of Port Victoria, Seychelles. Armed pirates in two skiffs approached the vessel from both sides. The vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.883333299827768, -1.916666699883081] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-410", + "dateofocc": "2009-11-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "450 MILES FROM SEYCHELLES: A merchant vessel reported coming uder attack at 1213 UTC on 02 Nov 09 in position 07-55S 047-40E, approximately 450 miles from Seychelles. Two skiffs with 5-6 persons on board fired at the vessel with AK-47's, damaging the por", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.666666700029793, -7.916666700077087] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-411", + "dateofocc": "2009-11-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "320 MILES EAST OF MOMBASA, KENYA: A bulk carrier is under attack at 0800 UTC on 02 Nov 09 in position 03-44.1S 045-41.3E by armed pirates in skiffs with rpgs and automatic rifles. Ships area advised to be extra cautious.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.688333300294005, -3.734999999681008] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-412", + "dateofocc": "2009-10-26", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "NICARAGUA: Sailing vessel (BLU INTERLUDE) robbed 26 Oct 09 at 0700 local time while underway in position 15-04.7N 082-55.1W, approximately 14NM off Cabo Gracias a Dios. While sailing along the Nicaraguan banks, the vessel was flagged down by a green pa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.918333300006964, 15.078333300410236] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-333", + "dateofocc": "2008-09-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PIPELINE", + "descriptio": "NIGERIA:MEND attack two oil installations 15 Sep 08 Bakan, Rivers State. The MEND claimed responsibility for sabotaging a pipeline operated by Shells Nigeria unit and Chevron operated oilfield. However, a military spokesman dismissed MEND's claims, sayin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.416666700237272, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-334", + "dateofocc": "2008-09-08", + "subreg": "57", + "hostility_": "SUSPICIOUS BOAT", + "victim_d": "CONTAINER SHIP", + "descriptio": "NIGERIAContainer ship boarded 8 Sep 08 at 0500 local time, Tincan Island container terminal, berth no. 4, Lagos. The Duty AB onboard detected a suspicious boat. Upon checking, he discovered one robber had already boarded. There were six more persons in t", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.385555599756401, 6.168611099914528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-335", + "dateofocc": "2008-09-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "GULF OF ADEN:General cargo vessel hijacked 18 Sep 2008 at 0618 UTC while drifting in position 14-12N 050-08E, 40NM off Yemen coast. The vessel reportedly had engine problems and was later reported to have been hijacked by seven to eight pirates (Operator", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.133333299866649, 14.200000000264936] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-336", + "dateofocc": "2008-09-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADENChemical tanker reported suspicious approach 18 Sep 08 at 0730 UTC while underway in position 13-57N 049-34E. Suspected pirates were reportedly following the vessel before moving away. The ship and crews are reportedly safe and the vessel is", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.566666700360997, 13.950000000032048] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-337", + "dateofocc": "2008-09-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADENChemical tanker (STOLT VALOR) hijacked 15 Sep 08 at 1047 UTC/1316 local time, while underway in position 13-33N 049-09E, 60NM south of Al Mukalla, Yemen. There are approximately 15 pirates onboard and 22 crewmembers held hostage. The crew con", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.149999999731449, 13.550000000198963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-338", + "dateofocc": "2008-09-15", + "subreg": "62", + "hostility_": "BLUE SPEEDBOAT", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 15 Sep 08 at 1453 UTC while underway in position 13-38.87N 048-59.0E. The duty officer onboard the vessel noticed a possible red mother-ship releasing speedboats. The blue speedboat had approximately six pirate", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.983333300234165, 13.635555600312728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-339", + "dateofocc": "2008-09-13", + "subreg": "62", + "hostility_": "GREEN AND WHITE WOODEN BOAT", + "victim_d": "TANKER", + "descriptio": "GULF OF ADENTanker (GOLDEN ELIZABETH) reported suspicious approach 13 Sep 08 at 0845 local time/0445 UTC while underway in position 13-32.5N 048-47.5E. A suspicious green and white wooden boat, 7-10 meters long traveling at approximately 20kts had a crew", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.791666700178553, 13.541666699713119] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-340", + "dateofocc": "2008-09-11", + "subreg": "62", + "hostility_": "25 SPEEDBOATS", + "victim_d": "GENERAL CARGO", + "descriptio": "GULF OF ADENGeneral cargo vessel reported suspicious activity 11 Sep 08 at 0600 local time/0300 UTC while underway in position 12-38.3N 045-39.0E. The vessel reported approximately 25 speedboats in the vicinity in position 12-35.9N 045-35.3E (UKMTO, Oper", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.650000000067962, 12.638333300259376] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-341", + "dateofocc": "2008-09-11", + "subreg": "62", + "hostility_": "BLUE SPEEDBOAT", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier reported suspicious approach 11 Sep 08 at 0925 UTC while underway in position 13-17N 047-36E. A blue speedboat with three masked men onboard reportedly followed the vessel at full speed. The speedboat was initially stationary bef", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.600000000265936, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-342", + "dateofocc": "2008-09-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADENChemical tanker reported attacked 11 Sep 08 at 1335 UTC, while underway in position 12-24N 045-23E, off Yemen coast. A failed piracy attack was reported by the vessels Master. Naval helicopters from UKMTO promptly arrived and chased the pirat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.383333299937874, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-343", + "dateofocc": "2008-09-10", + "subreg": "62", + "hostility_": "SPEEDBOAT", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier fired upon 10 Sep 08 at 0343 UTC while underway in position 12-39.4N 048-23.0E. One speedboat chased and fired at the vessel. The vessel took evasive actions and contacted the IMB Piracy Reporting Centre for assistance. They duty", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.383333300034906, 12.656666700183621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-344", + "dateofocc": "2008-09-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO", + "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 9 Sep 08 at 1513 UTC while underway in position 13-24N 048-20E. Eight pirates in a skiff reportedly chased the vessel. They fired upon the vessel and attempted to board. The Master contacted the coalition warsh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.333333300168192, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-13", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL FIRED UPON 2 JAN 09 WHILE UNDERWAY IN POSITION 13-07N 047-27E. VESSEL REPORTED COMING UNDER ATTACK BY PIRATES. THERE IS NO FURTHER INFORMATION TO PROVIDE AT THIS TIME.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.449999999766419, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-14", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "VESSEL (BLUE STAR)", + "descriptio": "GULF OF ADEN:VESSEL (BLUE STAR) HIJACKED 2 JAN 09 AT 0715 LOCAL TIME WHILE UNDERWAY, APPROXIMATELY 50 NM SOUTHWEST OF AL MUKALLA, YEMEN. FIFTEEN ARMED PIRATES OVERTOOK THE VESSEL AFTER THE SHIP EXITED THE RED SEA, THE VESSEL WAS CARRYING A CARGO OF 6,00", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.233333299600076, 14.116666700428652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-15", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL FIRED UPON 2 JAN 09 AT 727 LOCAL TIME WHILE UNDERWAY IN POSITION 13-11N 047-32E. ONE SPEED BOAT WAS SPOTTED 4 NM AWAY ON THE STARBOARD QUARTER, APPROACHING WITH A SPEED OF 17 KTS. ANOTHER TWO WERE 7 NM AHEAD DRIFTING. THE BRIDGE AND E", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.533333299602702, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-16", + "dateofocc": "2008-12-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "UNKNOWN VESSEL", + "descriptio": "MALAYSIAVessel robbed 12 Dec 08 at 0340 local time while anchored at position 01-18N 104-08E, Johor outer port limit. Six armed robbers boarded the offshore support vessel and stole ship¿s stores and properties. Authorities were informed and later board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-17", + "dateofocc": "2008-12-28", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PERU:Bulk carrier boarded 28 Dec 08 at 1950 local time while anchored at position 12-01.9S 077-11.1W, Callao anchorage. Ten robbers took hostage one duty crew and tied his hands and legs. Robbers stole ship's stores, property and escaped. Port control wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183611099591417, -12.019166700068126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-18", + "dateofocc": "2008-12-26", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "BRAZIL:Yacht robbed 26 Dec 08 while anchored at position 12-53.05S 038-41.15W, Bahia de Todos Os Santos. Two armed robbers boarded the yacht and assaulted the two crew members. Robbers stole ship's properties, cash and crew properties before escaping. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.687500000175135, -12.884722199896714] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-19", + "dateofocc": "2009-01-03", + "subreg": "22", + "hostility_": "ONE PIRATE", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA:Bulk carrier boarded 03 Jan 09 at 0305 local time while anchored at position 03-49.6N 077-09.4W, Buenaventura anchorage. One robber was sighted near the forward cargo compartment. Master raised alarm and mustered ship's crew. Master reported to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.151111099723039, 3.818333300207939] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-20", + "dateofocc": "2009-01-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:ARMED PIRATES IN FOUR BOATS ATTACKED AND HIJACKED A PRODUCT TANKER UNDERWAY. INFORMATION INDICATES THE VESSEL HAS BEEN TAKEN TO EYL. 15 CREWMEMBERS TAKEN HOSTAGE. FURTHER DETAILS ARE AWAITED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.166666700398594, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-21", + "dateofocc": "2009-01-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:A MERCHANT VESSEL REPORTED COMING UNDER FIRE WHILE UNDERWAY IN POSITION 12-24.5N 044-57.7E AT 0810Z ON 13 JAN 2009, APPROXIMATELY 21 NM SSW OF ADEN, YEMEN. ATTACK SKIFF WAS DISCRIBED A BLACK ZODIAC-TYPE APPROXIMATELY 6 METERS IN LENGTH WITH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.951944400013076, 12.401388900018674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-22", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:TANKER (SEA PRINCESS II) HIJACKED 2 JAN 09 AT 0829 UTC WHILE UNDERWAY IN POSITION 13-07N 047-27E. VESSEL REPORTED COMING UNDER ATTACK BY PIRATES. THE TANKER IS NOW ANCHORED AT EYL, SOMALIA. THERE IS NO FURTHER INFORMATION TO PROVIDE AT THIS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.866666699593679, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-23", + "dateofocc": "2009-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:CARGO SHIP REPORTED SUSPICIOUS APPROACH 2 JAN 09 AT 1240 LOCAL TIME WHILE TRANSITING THE GULF OF ADEN. THE SHIP DISCOVERED TWO BLUE SPEED BOATS FOLLOWING IT AT 1240 LOCAL TIME. THE MASTER CONTACTED THE IMB AND TWO COALITION WARSHIPS NEARBY A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.749999999898421, 13.616666699962821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-24", + "dateofocc": "2009-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:TANKER (DONAT) REPORTED ATTEMPTED BOARDING 4 JAN 09 WHILE UNDERWAY. TEN PIRATES IN A SPEED BOAT ATTEMPTED TO BOARD THE VESSEL WHILE UNDERWAY. ACCORDING TO THE SHIP'S MASTER, THE CREW OF THE TANKER MANAGED TO DEFEND THEMSELVES BY USING FIRE-F", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.866666699593679, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-25", + "dateofocc": "2009-01-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOS APPROACH 7 JAN 09 AT 1330 UTC WHILE UNDERWAY IN POSITION 12-30N 043-47E. THE MASTER REPORTED TWO SUSPICIOUS BOATS FOLLOWING THE VESSEL. NO FURTHER INFORMATION WAS PROVIDED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.783333299706271, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-210", + "dateofocc": "2009-04-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel fired upon 29 Apr 09 at 1550 local time while underway in position 01-40S - 047-12E, approximately 280NM southeast of Barawe, Somalia. Five men armed with automatic weapons in a white colored speed boat approached the vessel from th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.200000000432851, -1.666666699650136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-211", + "dateofocc": "2009-04-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel fired upon 28 Apr 09 at 0704 UTC while underway in position 13-49N - 056-30E, approximately 380NM northeast of Caluula, Somalia. Two skiffs were launched from a mother ship and fired two RPGs at the bridge and missed. Automatic weap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.499999999924228, 13.816666700329051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-212", + "dateofocc": "2009-04-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (NS COMMANDER) fired upon 27 Apr 09 at 1050 UTC while underway in position 13-10N - 056-37E, approximately 320NM east of Caluula, Somalia. One speed boat with three armed men approached the vessel and ordered it to stop. The captain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.616666699554798, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-213", + "dateofocc": "2009-04-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "PASSENGER SHIP", + "descriptio": "INDIAN OCEAN: Passenger ship (MELODY) fired upon 26 Apr 09 at 1942 UTC while underway in position 01:17S ¿ 055:40E, approximately 480NM east of Hobyo, Somalia. Six men in a small white speed boat attacked and fired upon the ship. An armed security onbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.666666700288488, -1.283333299889478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-214", + "dateofocc": "2009-04-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TANZANIA: Tanker robbed 21 Apr 09 at 0510 local time while anchored in position 06-46S - 039-21E, Dar es Salaam anchorage. Alert duty crew member onboard saw a boat near the port quarter and raised the alarm. On hearing the alarm, 10 robbers were sighte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.349999999774298, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-215", + "dateofocc": "2009-04-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MALAYSIA: Container ship boarded 21 Apr 09 at 0345 local time while in Sandakan port. While at berth, two robbers boarded the vessel from a small boat during a heavy rain. The alarm was raised and the crew mustered. The robbers jumped overboard and esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-216", + "dateofocc": "2009-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SOUTH CHINA SEA: Container ship robbed 22 Apr 09 at 2145 local time while underway in position 03-10N - 105-28E, approximately 30NM west of the Anambas Islands. Five pirates armed with long knives in a boat boarded the vessel. They attacked the captain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.466666699740642, 3.16666669993964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-217", + "dateofocc": "2009-04-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker robbed 20 Apr 09 at 1841 UTC in position 03-24N - 105-29E, approximately 30NM northwest of the Anambas Islands. Eight pirates armed with knives boarded the vessel and stole cash before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.483333299813069, 3.40000000027544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-218", + "dateofocc": "2009-05-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: A merchant vessel reported coing under pirate attack at 0430 UTC on 01 May 09 in position 03-05S 053-19E approximately 180 miles northwest of Seychelles. Vessel first observed mothership with 2 high speed boats in the distance, and after 30", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.316666700257485, -3.083333299587991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-219", + "dateofocc": "2009-05-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Another merchant vessel reported coming under attack at 0530 UTC on 01 May 09 in position 04-52S 060-06E approximately 250 miles east of Seychelles. Vessel first sighted pirates about 11 miles away bearing 120 degrees. After about 20 minute", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.100000000220518, -4.866666700113399] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-249", + "dateofocc": "2011-05-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "AROUND 183 MILES OFF COMOROS: Four pirates in a skiff chased and fired upon a vehicle carrier underway. Master raised alarm, increased speed and took evasive maneuvers resulting in the pirates aborting the attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.743333300255472, -9.410000000291745] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-220", + "dateofocc": "2009-04-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ALPHOUSE ISLAND: Two speed boats the first, white hull and black stripes with 6-7 pirates and the second boat with white hull and 3-4 pirates chased a container ship and fired automatic weapons and rpg. The vessel sustained damages to it's stbd side acco", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.533333299732078, -7.766666699577627] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-413", + "dateofocc": "2009-10-26", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ECUADOR: Container ship robbed 26 Oct 09 at 2222 UTC while underway in position 02-30S 080-04W, Guayaquil. Five men armed with guns and knives boarded the vessel underway. They broke open containers, stole goods, and escaped in their boat. The coast gu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.066666700207065, -2.500000000185196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-414", + "dateofocc": "2009-10-25", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GUINEA: Bulk carrier robbed 25 Oct 09 at 1500 local time while anchored in position 09-25.4N 013-43.3W, approximately 6NM south of Conakry. Five robbers armed with guns boarded the vessel and stole ship's stores and crewmembers¿ personal belongings.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.721666700161393, 9.423333299926071] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-415", + "dateofocc": "2009-10-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA: Bulk carrier robbed 30 Oct 09 at 2125 UTC while anchored in position 06-08.16N 003-27.68E, Lagos anchorage. Nine armed men in a speedboat boarded the vessel and opened fire. They took all the crewmembers hostage. They assaulted the crew and da", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.461111100431765, 6.135833300370621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-416", + "dateofocc": "2009-10-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker robbed 30 Oct 09 at 2015 local time while underway in position 06-10N 003-33E, Lagos anchorage. Six men armed with guns and knives in a speedboat boarded the vessel as it was drifting. The master raised the alarm, activated SSA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.549999999875581, 6.166666700036672] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-417", + "dateofocc": "2009-10-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon 31 Oct 09 at 1530 UTC while underway in position 13-26N 049-42E. Two skiffs chased and opened fire on the vessel. They attempted to board, but due to effective counter piracy measures, the two skiffs aborted the at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.700000000064051, 13.433333299669073] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-418", + "dateofocc": "2009-11-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (JO CEDAR) fired upon 2 Nov 09 at 1213 UTC while underway in position 07-55S 047-40E, approximately 530NM southeast of Mombassa, Kenya. One skiff with five armed men onboard chased the vessel and opened fire while two more", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.666666700029793, -7.916666700077087] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-419", + "dateofocc": "2009-11-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (HARRIETTE) fired upon 2 Nov 09 at 0810 UTC while underway in position 03-34.3S 045-40.1E, approximately 270NM southeast of Kismayo, Somalia. Two skiffs with six armed men in each boat chased and fired upon the vessel. The me", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.668333300167433, -3.57166670023787] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-420", + "dateofocc": "2009-10-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (AVEL VAD) fired upon 31 Oct 09 at 0831 UTC while underway in position 01-29N 051-38E, approximately 370NM east of Mogadishu, Somalia. Two blue skiffs, 5-6 meters long, opened fire on the vessel. They aborted the attack aft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.633333300364825, 1.483333300047036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-421", + "dateofocc": "2009-10-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (ARTZA) fired upon 31 Oct 09 at 0730 UTC while underway in position 02-00N 050-10E, approximately 290NM east of Mogadishu, Somalia. Three skiffs opened fire on the vessel. A security team onboard the vessel returned fire in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.166666699660993, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-422", + "dateofocc": "2009-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "690 MILES SOUTH OF MOGADISHU, SOMALIA: Pirates have attacked and hijacked a bulk carrier underway. Further information awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.091388899573985, -9.672500000266496] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-423", + "dateofocc": "2009-11-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CIWANDAN ANCHORAGE, INDONESIA: Four robbers in a small boat boarded a bulk carrier at anchor from the stern. The robbers tied up one duty AB and took the other one at knife point to the engine room. The robbers stole engine spares and escape. No injuries", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.939999999796385, -6.010000000361629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-424", + "dateofocc": "2009-11-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: A small speedboat was sighted at a distance of four miles by a general cargo ship underway. When the boat passed the port beam of the ship it immediately changed course and approached the ship from astern. Duty officer raised alarm contacte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.934999999559864, 13.713333299642159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-425", + "dateofocc": "2009-11-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "CHENNAI ANCHORAGE, INDIA: Four robbers in a boat attempted to board an anchored chemical tanker from the forecastle. Duty crew sighted the robbers and raised the alarm. All crew mustered and rushed to the location. On seeing the crew alertness, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.358333299787432, 13.081666700399694] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-345", + "dateofocc": "2008-09-13", + "subreg": "61", + "hostility_": "THREE WHITE SPEEDBOATS", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEANGeneral cargo vessel hijacked 18 Sep 08 at 0200 UTC while underway in position 02-21.49N 050-52.02E, 236NM off Somali coast. No further information (IMB, Operator).", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.869999999823051, 2.363611099894911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-346", + "dateofocc": "2008-09-13", + "subreg": "63", + "hostility_": "THREE WHITE SPEEDBOATS", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEANFishing vessel (LE DRENNEC) fired upon 13 Sep 08 at 0500 UTC while underway in position 02-10N 054-37E, 427NM off Somali coast. Three white speedboats, possibly from a mother-ship, fired rockets and tried to close onto the vessel. The master", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.61666670038943, 2.166666699907296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-347", + "dateofocc": "2008-09-11", + "subreg": "63", + "hostility_": "TUNA BOAT", + "victim_d": "TRAWLER", + "descriptio": "INDIAN OCEANTrawler (PLAYA DE ANZORAS) reported suspicious approach 11 Sep 08 during nightfall, 415NM off Somali coast. The tuna boat reacted quickly and headed out to sea, and the suspected pirates followed it for a while but eventually moved away. No s", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.61666670038943, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-348", + "dateofocc": "2008-09-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "INDIAGeneral cargo vessel (KINSHIP PROSPERITY) boarded 13 Sep 08 at 0320 local time while at anchorage in position 09-57.7N 076-15.8E, Port of Kochi. Two robbers dressed in local attire boarded the vessel from a speedboat while 10 other men waited in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.252222199891492, 9.95194439978053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-349", + "dateofocc": "2008-09-09", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAMContainer ship reported attempted boarding 9 Sep 08 at 0200 local time, Vung Tau anchorage. The duty AB onboard the vessel, noticed one perpetrator attempting to board via the anchor chain. The crew was alerted. Upon seeing the alert crew, the per", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.000000000208388, 10.166666700166047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-350", + "dateofocc": "2008-09-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIABulk carrier boarded, robbed 6 Sep 08 at 0240 local time, Tanjung Bara anchorage. Robbers boarded the vessel via the forecastle and stole ship¿s stores. The alarm was raised and the crew mustered. The robbers escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.452222199752555, -2.536666700208912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-351", + "dateofocc": "2008-09-07", + "subreg": "71", + "hostility_": "15 PIRATES", + "victim_d": "TUG", + "descriptio": "MALAYSIATug hijacked 7 Sep 08 at 2030 local time off Tioman Island. Approximately 15 pirates armed with long knives boarded and hijacked the tug towing a barge. The vessel was traveling from Singapore to Thailand in ballast. The pirates landed the seven", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.499999999710212, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-352", + "dateofocc": "2008-09-19", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "VENEZUELA General cargo ship boarded 19 Sep 08 at 2145 local time while in position 10-16.3N 064-34.3W, 2nm north of Guanta port, Venezuela. Five robbers broke into the forecastle store and stole ship's stores and property. The ships alarm was raised and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.571666700411924, 10.271666700155947] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-353", + "dateofocc": "2008-09-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADENTanker (GENIUS) hijacked on 26 Sep 08 while underway in position 13-32N 048-26E, 30 NM off Yemen. The attack was reported to the shipping company by the ship's captain by radio shortly before the pirates boarded the vessel. The pirates fired", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.433333299901619, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-354", + "dateofocc": "2008-09-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier (GREAT CREATION) hijacked on 18 Sep 08 at 0618 UTC while in position 14-13.0N 049-59.0E, Gulf of Aden. About eight pirates armed with guns boarded the vessel. The vessel was drifting due to engine problems and had requested assis", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.983333300266509, 14.216666700162136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-355", + "dateofocc": "2008-09-16", + "subreg": "62", + "hostility_": "SPEED BOAT", + "victim_d": "BULK CARGO SHIP", + "descriptio": "GULF OF ADENBulk cargo ship reported suspicious approach on 16 Sep 08 at 0830 UTC while in position 12-28N 44-53E, 20nm miles southwest from Aden, Yemen. A speed boat with five armed pirates approached and attempted to board the vessel. The master raised", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.883333300371362, 12.466666700330336] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-356", + "dateofocc": "2008-09-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "INDIAN OCEANRoll-on/roll-off cargo vessel (FAINA) hijacked 25 Sep 08 at 1600 local time while in position 02-01N 050-40 E, approximately 280NM east of Mogadishu, Somalia. Three pirate boats attacked the ship. Pirates, armed with automatic weapons, then b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.666666700126825, 2.016666700307155] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-26", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:VESSEL (BLUE STAR) HIJACKED 1 JAN 09 AT 0715 LOCAL TIME WHILE UNDERWAY IN POSITION 13-55N 047-58E. FIFTEEN ARMED PIRATES OVERTOOK THE VESSEL AFTER THE SHIP EXITED THE RED SEA. THE VESSEL WAS CARRYING A CARGO OF 6,000 TONS OF FERTILIZER WITH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, 13.916666700062478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-27", + "dateofocc": "2009-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:FIVE PIRATES, IN A SPEED BOAT, ARMED WITH MACHINE GUNS ATTEMPTED TO BOARD A TANKER UNANOEUVRES AND CONTACTED A COALITION WARSHIP. WITHING 15 MINUTES A HELICOPTER ARRIVED AT THE LOCATION. THE SPEED BOATS MOVED AWAY ON SEEING THE HELICOPTER .", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.250000000331909, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-28", + "dateofocc": "2009-01-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:ARMED PIRATES IN FOUR BOATS ATTACKED AND HIJACKED A PRODUCT TANKER.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.166666700398594, 12.916666700030135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-29", + "dateofocc": "2009-01-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "KIUNGA, KENYA:HEAVILY ARMED PIRATES IN A SPEEDBOAT, PRESUMED TO BE FROM SOMALIA, CAME ALONGSIDE A FISHING VESSEL AT ANCHOR, THEY BOARDED THE VESSEL AND TIED UP ALL CREWMEMBERS. THEY STOLE CASH, SOME VALUABLE EQUIPMENT AND FORCED THREE CREWMEMBERS INTO TH", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.485277800143876, -1.74944440013536] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-30", + "dateofocc": "2009-01-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY TANKER", + "descriptio": "BONNY RIVER NIGERIA:SUPPLY VESSEL (BOURBON LEDA) HIJACKED 4 JAN 09, SUBSEQUENTLY RELEASED 7 JAN 09 WHILE TRANSITING ALONG THE BONNY RIVER, NIGER DELTA. THE VESSEL AND ITS NINE CREW MEMBERS WERE HIJACKED BY AN UNKNOWN NUMBER OF GUNMEN AS IT WAS MAKING ITS", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.249999999905299, 3.833333300078039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-31", + "dateofocc": "2009-01-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:TANKER REPORTED SUSPPICIOUS APPROACH 14 JAN 09 AT 1645 LOCAL TIME WHILE UNDERWAY IN POSITION 13-02N 046-41E. ONE FISHING BOAT WAS DETECTED ON STARBOARD BOW TOWING A SMALL SKIFF WITH A SPEED OF 7 KTS. THE FISHING BOAT REDUCED SPEED AND THE DU", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.683333300069876, 13.033333299835988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-32", + "dateofocc": "2009-01-14", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "SAILBOAT", + "descriptio": "ST. LUCIA:SAILBOAT ROBBED WHILE ANCHORED IN SOUFRIERE BAY, 14 JAN 09 REPORTING. WHILE OWNERS WERE OUT, ROBBERS BROKE THE LOCK AND BOARDED THE SAILBOAT. A LAPTOP, JEWELRY, AND A VIDEO CAMERA WERE REPORTED STOLEN.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.033333299798301, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-33", + "dateofocc": "2008-11-08", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "ST. VINCENT AND THE GRENADINES:YACHT ROBBED 8 NOV 08 WHILE ANCHORED IN PORT ELIZABETH, BEQUIA, PER 14 JAN 09 REPORTING. WHILE OWNERS WERE AWAY, ROBBERS BROKE IN AND STOLE A SUBSTANTIAL AMOUNT OF MONEY AND A CELL PHONE. THE POLICE WERE CONTACTED AND A REP", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.266666699958819, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-76", + "dateofocc": "2009-02-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "HO CHI MINH CITY, VIETNAM: Robbers boarded a bulk carrier moored to mooring buoys. They stole ship's stores, opened the hose pipe cover ad escaped thru the hose pipe. Incident reported to police but no result.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-34", + "dateofocc": "2009-01-06", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PERU: Bulk carrier boarded 06 jan 2009 at 1945 local time while anchored at 12-01S 077-13W, Callao. Five robbers boarded the bulk carrier at anchor. Duty crew noticed the robbers trying to break the forepeak store hatch and raised the alarm. on hearing t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.216666699710231, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-35", + "dateofocc": "2009-01-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU:Container ship robbed 09 Jan 2009 at 0130 utc while anchored in position 12-01S 077-12W, callao anchorage no. 1. crew member onboard spotted armed robbers lowering ship's stores. two of the robbers tried to attack the crew member but he managed to r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-36", + "dateofocc": "2009-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "LOME ANCHORAGE, TOGO:SEVEN, ARMED ROBBERS IN A MOTOR BOAT ATTEMPTED TO BOARD A BULK CARRIER AT ANCHOR. DUTY OFFICER RAISED ALARM AND CREW PREPARED FIRE HOSES. UPON SEEING CREW ALERTNESS THE ROBBERS ABORTED THE ATTEMPTED ATTACK. PORT CONTROL INFORMED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.251666699738337, 6.09361109966477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-37", + "dateofocc": "2009-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "Lome anchorage, togo:Four robbers in a motor boat attempted to board a bulk carrier at anchor. Duty officer raised alarm and crew activated fire hoses. Upon seeing crew alertness the robbers aborted the attempt. Master heaved up anchor and proceeded to o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.251666699738337, 6.09361109966477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-38", + "dateofocc": "2009-01-12", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "RORO SHIP", + "descriptio": "PORT AU PRINCE ANCHORAGE, HAITI:THREE ROBBERS IN A SMALL BOAT APPROACHED A RORO SHIP AT ANCHOR. ONE OF THE ROBBERS ATTEMPTED TO BOARD VIA SIDE RAMP. DUTY A/B SHOUTED AT THE ROBBER AND RAISED ALARM. THE ROBBER JUMPED OFF THE RAMP AND ESCAPED WITH HIS ACCO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.466666699781399, 18.600000000227396] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-39", + "dateofocc": "2009-01-10", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "FORTALEZA PORT, BRAZIL:FOUR ROBBERS IN A BOAT APPROACHED A PRODUCT TANKER AT BERTH. ONE OF THE ROBBERS BOARDED THE TANKER USING A HOOK ATTACHED TO A ROPE. DUTY A/B NOTICED THE ROBBER AND RAISED ALARM. THE ROBBER JUMPED OVERBOARD AND ESCAPED WITH HIS ACCO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.416666700296616, 6.066666700303244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-221", + "dateofocc": "2009-05-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "960 MILES OF MOGADISHU, SOMALIA: Pirates in two small boats armed with automatic guns attacked a bulk carrier underway. Duty officer raised alarm ad crew locked all access spaces. 1st boat attempted to board the ship using ladder ad the 2nd boat fired up", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.066666700250948, -4.733333299686308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-222", + "dateofocc": "2009-05-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "MOGADISHU, SOMALIA: Armed pirates attacked and hijacked a general cargo ship underway. Additional information awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, 4.199999999941554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-223", + "dateofocc": "2009-05-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (ARIANA) hijacked 2 May 09 at 0230 UTC while underway in position 07-19S - 052-11E, approximately 245NM southwest of Port Victoria, Seychelles. Armed pirates attacked and hijacked the vessel while underway. Twenty four crewmem", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.183333299798051, -7.316666699877828] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-224", + "dateofocc": "2009-05-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "560 MILES SOUTHEAST OF MOGADISHU, SOMALIA: A pirate mother vessel and two high speedboats were observed at a distance of six miles from a tanker underway. Master altered course and the boats started chasing the tanker. Master raised alarm, sent distress", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.199999999630506, -6.11666670037863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-225", + "dateofocc": "2009-05-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SANDAKAN ANCHORAGE, MALAYSIA: A fisherman offering fresh fish approached on the stbd side of a container ship at anchor. While four robbers in a speedboat approached from the port side of the vessel and attempted to board. Alert crew saw the robbers and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.116666700194742, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-226", + "dateofocc": "2009-05-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYSIA: Four robbers in a fishing boat approached a chemical tanker at berth. While crew members were busy at the manifold, the robbers boarded the tanker using hook attached to a rope. Several crewmembers saw unidentified persons on forecastle deck an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.000000000305363, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-250", + "dateofocc": "2011-05-15", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SAMARINDA ANCHORAGE, INDONESIA: Robbers boarded an anchored bulk carrier via the hawse pipe. They broke open the bosun store padlock and stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.283333299834908, -1.166666700083624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-227", + "dateofocc": "2009-05-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 6 May 09 at 0910 UTC while underway in position 13-34N - 048-38E. Armed men in a skiff fired shots at the vessel while underway. The captain conducted evasive maneuvers, and in doing so, caused the pirate skiff to capsize", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.633333300267793, 13.566666700096107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-228", + "dateofocc": "2009-05-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (VICTORIA) hijacked 5 May 09 at 1304 UTC while underway in position 13-24N - 049-22E. Pirates boarded and hijacked the vessel while underway. Eleven crewmembers are currently onboard (IMB, Bloomberg).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.366666699994823, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-229", + "dateofocc": "2009-05-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel (MICHAEL S) fired upon 5 May 09 at 0444Z while underway in position 13-09N - 049-08E. Four men onboard a boat opened fire on the vessel with an RPG. An Italian frigate in the vicinity arrived to provide assistance and the vessel was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.133333299834305, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-230", + "dateofocc": "2009-05-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: Vessel reported attempted boarding 5 May 09 at 0930 local time while underway in position 02-38S - 053-49E, approximately 155NM northwest of Port Victoria, Seychelles. Eight pirates in two speed boats armed with automatic weapons approache", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.816666699823998, -2.633333299888193] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-231", + "dateofocc": "2009-05-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 1 May 09 at 1100 local time while underway in position 08-04S - 057-11E, approximately 220NM southeast of Port Victoria, Seychelles. Vessel reported being chased for approximately 20 minutes after the su", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.18333329995977, -8.066666699677285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-232", + "dateofocc": "2009-04-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 30 Apr 09 at 1224 UTC while underway in position 04-01S - 059-33E, approximately 250NM east of Port Victoria, Seychelles. Eight pirates in two speedboats armed with guns and RPGs chased the vessel. The master rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.549999999887916, -4.016666699681195] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-233", + "dateofocc": "2009-04-30", + "subreg": "61", + "hostility_": "PRIATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (JOLLY SMERALDO) fired upon 30 Apr 09 at 0350 UTC while underway in position 00-36N - 050-08E, approximately 250NM off the coast of Somalia. Pirates armed with automatic weapons in a skiff chased the vessel and opened fire. The capt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.133333299866649, 0.599999999645263] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-426", + "dateofocc": "2009-11-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Six pirates armed with automatic weapons and rpg in a skiff fired upon a general cargo ship underway. Master raised alarm contacted coalition warship, increased speed and took evasive maneuvers. The pirates attempted to board the ship using", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.19166669994695, 12.625000000416378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-427", + "dateofocc": "2009-11-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (BW LION) fired upon 9 Nov 09 at 0830 UTC while underway in position 01-09S 061-35E, approximately 420NM northeast of Port Victoria, Seychelles. Several men in two skiffs armed with assault rifles and RPGs chased and opened fire on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.583333299922174, -1.150000000186481] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-428", + "dateofocc": "2009-11-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (NELE MAERSK) fired upon 10 Nov 09 at 0200 UTC while underway in position 00-43.7S 061-57.8E, approximately 455NM northeast of Port Victoria, Seychelles. Men in two skiffs armed with assault rifles and RPGs chased and opene", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.963333299628687, -0.716666700383882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-359", + "dateofocc": "2008-09-21", + "subreg": "61", + "hostility_": "THREE SPEED BOATS", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEANBulk carrier (CAPT STEFANOS) hijacked 21 Sep 08 at 0310 UTC while underway in position 02-30.0N 051-59.5E, 250 nm off Somali coast. Four pirates in three speedboats boarded a bulk carrier underway. They took hostage the 19 crewmembers compose", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.991666699742495, 2.499999999976524] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-429", + "dateofocc": "2009-11-06", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "VENEZUELA: Sailing vessel (JUPITER) reported suspicious approach 6 Nov 09 at 1700 local time while underway between positions 10-55N 065-00W (Isla la Tortuga) and 11-00N 064:30W (Isla de Margarita). A skiff painted in bright colors with three men onbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.999999999958106, 10.916666699965447] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-430", + "dateofocc": "2009-11-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 5 Nov 09 at 0648 UTC while underway in position 13-42.8N 050-56.1E. A small speedboat was sighted at a distance of 4NM. When the boat passed the port beam, it immediately changed course and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.934999999559864, 13.713333299642159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-431", + "dateofocc": "2009-11-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (THEOFOROS I) fired upon 5 Nov 09 at 0333 UTC while underway in position 13-10N 049-11E. According to Greek authorities, the crewmembers activated high-pressure fire hoses against the attackers until a Turkish warship arrived", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.183333299701019, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-432", + "dateofocc": "2009-11-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (FILITSA) reportedly hijacked 11 Nov 09 at 0200 UTC while underway in position 00-35S 062-40E, approximately 500NM northeast of Port Victoria, Seychelles. According to the owners, pirates boarded the vessel and all communicat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.666666699615575, -0.583333299956792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-433", + "dateofocc": "2009-11-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (FELICITAS RICKMERS) fired upon 10 Nov 09 at 0430 UTC while underway in position 06-33S 048-14E, approximately 500NM southeast of Kismayo, Somalia. The vessel reported being under attack by two skiffs. Shots were fired, but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.233333300434765, -6.550000000181285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-434", + "dateofocc": "2009-11-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Cargo ship (JOLLY ROSSO) reported suspicious approach 13 Nov 09 at 0720 UTC while underway in position 11-26S 043-42E, approximately 15NM east of Comoros. Men in two small skiffs armed with guns chased the vessel. The master raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.699999999869988, -11.433333299813057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-435", + "dateofocc": "2009-11-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: General cargo ship fired upon 13 Nov 09 at 0446 UTC while underway in position 00-42S 047-58E, approximately 220NM southeast of Mogadishu, Somalia. Men in a white skiff armed with guns chased and opened fire on the vessel while underway.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, -0.699999999587362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-436", + "dateofocc": "2009-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (DELVINA) hijacked 5 Nov 09 at 0426 UTC while underway in position 09-40.36S 045-05.48E, approximately 690NM south of Mogadishu, Somalia. The owners reported the vessel came under attack and was boarded by pirates (AFP, IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.091388899573985, -9.672777799942025] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-357", + "dateofocc": "2008-09-23", + "subreg": "61", + "hostility_": "SMALL BOATS", + "victim_d": "USNS VESSEL", + "descriptio": "INDIAN OCEANUSNS (JOHN LENTHALL) reported suspicious approach 23 Sep 08 while underway off the central east coast of Somalia. Despite defensive measures to deter them from approaching, the small boats continued to approach the ship. An embarked security", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-358", + "dateofocc": "2008-09-21", + "subreg": "61", + "hostility_": "NINE SMALL BOATS", + "victim_d": "DRY CARGO SHIP", + "descriptio": "INDIAN OCEANDry cargo ship reported suspicious approach 21 Sep 08 while underway in position 01-27N 052:15E. The vessel reported being followed by eight to nine small boats (IMB).", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.249999999561908, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-360", + "dateofocc": "2008-09-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEANTanker fired upon 20 Sep 08 at 1700 UTC while in position 02-37N 051-25E, 250 nm east of the Somali coast. Three pirates armed with machine guns and RPG in a white-colored fast boat chased and fired upon the ship. The ship's master increased", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.416666699926225, 2.616666699607094] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-361", + "dateofocc": "2008-09-18", + "subreg": "61", + "hostility_": "SPEEDBOAT", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEANBulk carrier (CENTAURI) hijacked 18 Sep 08 at 0250 UTC while underway in position 02-22.22N 050-55.26E, 250nm east of Mogadishu, Somalia. Five armed pirates in a speedboat attacked the carrier. 25 crewmembers were taken hostage (IMB)..", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.923888900169572, 2.372777800306665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-362", + "dateofocc": "2008-09-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TANZANIA:Tanker robbed 18 Sep 08 at 0045 UTC while drifting in position 06-40S 039-35E, 18nm east of Dar es Salaam, Tanzania. Six pirates boarded the tanker, broke forward store, and stole ship's stores. Alarm was raised and crew was mustered. Pirates ju", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.583333300110041, -6.666666699811856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-363", + "dateofocc": "2008-09-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIAContainer ship robbed 20 Sept 08 at 0030 local time while in position 06-41.1S 039-26.2E, Dar es Salaam anchorage. 16 pirates in a 15-meter long boat armed with knives boarded the ship. The pirates gained access to the ship via the forecastle dec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.436666699664727, -6.684999999911327] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-364", + "dateofocc": "2008-08-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIA:Container ship boarded 30 Aug 08 at 0001 local time while drifting in position 06-47.4S 039-40.2E, Dar es Salaam Roads. Three perpetrators armed with knives boarded the vessel. Another three perpetrators were seen climbing up using a knotted lin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.670000000000471, -6.789999999901227] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-365", + "dateofocc": "2008-08-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "TANZANIAContainer ship boarded, robbed 29 Aug 08 at 2005 local time while in position 06-46.95S 039-21.68E, Dar es Salaam Anchorage. Robbers boarded the vessel. The duty crew noticed one robber on the starboard side armed with a knife. The robber threw a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.351666699801342, -6.769166699673519] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-366", + "dateofocc": "2008-09-15", + "subreg": "62", + "hostility_": "RED SPEED BOATS", + "victim_d": "GENERAL CARGO VESSEL", + "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 15 Sep 08 at 1453 UTC while underway in position 13-38.87N 048-59.0E. The duty officer onboard the vessel noticed a possible red mother-ship releasing speedboats. The blue speedboat had approximately six pirate", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.983333300234165, 13.635555600312728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-40", + "dateofocc": "2009-01-15", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VUNGTAU ANCHORAGE, VIETNAM:Two robbers boarded a bitumen tanker at anchor. Duty a/b noticed the robbers and raised the alarm. The ship's whistle was sounded and crew mustered. Upon hearing the alarm, robbers jumped into the water and escaped with the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.067222200397907, 10.235833300233367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-41", + "dateofocc": "2009-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "LAGOS OUTER ANCHORAGE, NIGERIA:10 ROBBERS ARMED WITH GUNS AND KNIVES BOARDED A TANKER AT ANCHOR. THEY ATTACKED THE CAPTAIN, ROBBED CASH AND VALUABLES AND ESCAPED. AUTHORITIES INFORMED.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.083333300343327, 5.349999999574038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-42", + "dateofocc": "2009-01-12", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "HAITI: RORO vessel reported an attempted boarding 12 Jan 09 at 0340 local time, while anchored at Port Au Prince. Three robbers in a small boat approached the ship at anchor. One of the robbers attempted to board via side ramp. The duty officer shouted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40416670017288, 18.572222200040585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-43", + "dateofocc": "2009-01-10", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BRAZIL: Tanker robbed 10 Jan 09 at 2300 local time while at berth in Fortaleza port. Four robbers in a boat approached a product tanker at berth. One of the robbers boarded the tanker using a hook attached to a rope. A duty crewmember noticed the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.533333300419656, -3.716666699581538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-44", + "dateofocc": "2009-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "TOGO: Bulk carrier reported an attempted boarding 15 Jan 09 at 0145 UTC while anchored in position 06-05N 001-15E, Lome anchorage. Seven armed robbers in a motor boat attempted to board the vessel at anchor. The duty officer raised the alarm and the cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-45", + "dateofocc": "2009-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "TOGO: Bulk carrier reported an attempted boarding 15 Jan 09 at 0235 UTC while anchored in position 06-05N 001-15E, Lome anchorage. Four robbers in a motor boat attempted to board the vessel at anchor. The duty officer raised the alarm and the crew activ", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.287222200160613, 6.139999999626582] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-46", + "dateofocc": "2009-01-18", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL, TANKER, TUG", + "descriptio": "NIGERIA: Loading vessel (LAMNALCO WAXBILL), tanker (FRONT CHIEF), tug boat attacked 18 Jan 09, early morning at a crude loading platform in the Bonny oil terminal, owned by Shell and the Nigerian National Petroleum Corporation. According to sources, Nig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-47", + "dateofocc": "2009-01-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Tanker (MEREDITH) attacked 21 Jan 09, early morning while underway in the Bonny Fairway Buoy in the Niger Delta. Heavily armed assailants riding in four speedboats hit the tanker with dynamite at around dawn as it was in transit to Port Harcour", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-48", + "dateofocc": "2009-01-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CABLESHIP", + "descriptio": "NIGERIA: Cable ship (VIKING FORCADOS) fired upon 13 Jan 09 while underway in the Niger Delta. Gunmen reached the ship on two or three swift boats and managed to climb aboard its deck but were unable to get inside. Crew members barricaded themselves in t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-49", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 1 Jan 09 at 0730 local time while underway in position 14-21N 050-34E. One skiff with six pirates approached the vessel underway. Owners contacted the IMB Piracy Reporting Centre for assistance. Du", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.566666700393341, 14.349999999865133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-50", + "dateofocc": "2009-01-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "KENYA: Fishing vessel robbed 8 Jan 09 at 0030 local time while anchored at position 01-44S 041-29E, Kiunga. Heavily armed men in a speedboat came alongside the fishing vessel at anchor. They boarded the vessel and tied up all crewmembers. They stole cas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.483333300441302, -1.733333299589276] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-51", + "dateofocc": "2009-01-15", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VIETNAM: Tanker robbed 15 Jan 09 at 0415 local time while anchored in position 10-14N 107-04E, Vungtau outer anchorage. Two robbers boarded the tanker while anchored. A duty crewmember noticed the robbers and raised the alarm. The ship's whistle was sou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-234", + "dateofocc": "2009-04-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 30 Apr 09 at 0224 UTC while underway in position 07-46S - 051-32E, approximately 290NM southwest of Port Victoria, Seychelles. A speed boat with 6-7 persons onboard and a second speed boat with 3-4 persons onboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.533333299732078, -7.766666699577627] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-235", + "dateofocc": "2009-04-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (JOLLY SMERALDO) fired upon 29 Apr 09 at 1250 UTC while underway in position 01-40S - 047-12E, approximately 245NM southeast of Mogadishu, Somalia. Pirates armed with automatic weapons chased and fired upon the vessel. The captain c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.200000000432851, -1.666666699650136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-255", + "dateofocc": "2009-05-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Pirates in two skiffs attempted to board a tanker underway. The tanker took evasive maneuvers, fired rocket flares and contacted warship for assistance. Later, pirates aborted the attempt and returned to the mother vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.083333299935248, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-236", + "dateofocc": "2009-04-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (SIDER LION) robbed 23 Apr 09 at 0405 local time while underway in position 03-13N - 105-29E, approximately 30NM northwest of the Anambas Islands. They entered the second officer¿s cabin and held him hostage before proceed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.483333299813069, 3.216666699806353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-237", + "dateofocc": "2009-05-05", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "HAITI: General cargo ship boarded 5 May 09 at 0330 local time while anchored in Port au Prince. Robbers boarded the vessel via the forecastle. Due to crew alertness, they aborted the attempt and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.40416670017288, 18.572222200040585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-238", + "dateofocc": "2009-05-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Vessel fired upon 13 May 09 at 1310 UTC while underway approximately 115NM south of al Mukalla, Yemen. The vessel reported being fired upon with RPGs from two skiffs. Coalition forces nearby arrived and provided assistance (Operator).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.4333332997399, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-239", + "dateofocc": "2009-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 10 May 09 at 0715 UTC while underway in position 12:33N ¿ 043:26E. Two speed boats with approximately 13 persons onboard approached the vessel¿s starboard quarter at high speed. The master raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.4333332997399, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-240", + "dateofocc": "2009-05-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (MARATHON) hijacked 7 May 09 at 1105 UTC while underway in position 13:43N ¿ 050:35E. Armed pirates in skiffs attacked, boarded, and hijacked the vessel with reportedly eight Ukrainian crew members onboard (Reuters, IM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.583333299566448, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-241", + "dateofocc": "2009-05-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:Bulk carrier fired upon 7 May 09 at 0930 UTC while underway in position 13:04N ¿ 049:00E. Seven pirates in a boat came close to the vessel and attempted to board by using an aluminum ladder and firing at the ship using automatic weapons an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.000000000131308, 13.066666699630275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-242", + "dateofocc": "2009-05-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported attempted boarding 7 May 09 at 1220 local time while underway in position 12:12N ¿ 045:45E. One blue colored skiff with nine men onboard armed with guns approached the vessel and attempted to board. The captain raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.749999999801389, 12.200000000200248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-243", + "dateofocc": "2009-05-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 6 May 09 at 1145 UTC while underway in position 13:23N ¿ 048:28E. Two suspicious crafts were spotted and reportedly began chasing the vessel from the port quarter. The crew was alerted and immediately a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.466666699695907, 13.383333299802359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-244", + "dateofocc": "2009-05-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN:Container ship fired upon 12 May 09 at 1615 local time while underway in position 01-02S 057-18, approximately 250NM northeast of Port Victoria, Seychelles. Nine pirates in two skiffs chased and fired on the vessel using automatic weapons an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.299999999590341, -1.03333329965659] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-245", + "dateofocc": "2009-05-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TANZANIA:Container ship boarded 7 May 09 at 0020 UTC while anchored in Dar es Salaam. Two robbers armed with knives boarded the vessel at anchor using hooks attached to long poles. The alert crew spotted the robbers and raised the alarm. Upon hearing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.349999999774298, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-246", + "dateofocc": "2009-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIA: Tanker robbed 5 May 09 at 0250 local time, Cochin anchorage. Three robbers boarded the vessel at anchor using a rope and hook. Robbers stole and lowered ship's stores into a waiting boat. The 2nd officer noticed the robbers and approached them", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [75.000000000072816, 9.999999999769386] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-437", + "dateofocc": "2009-11-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier robbed 16 Nov 09 at 0120 local time while underway in position 03-12.4N 105-29.1E, approximately 33NM northwest of the Anambas Islands. Ten men armed with knives and crowbars boarded the vessel. They entered the bridge and threa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.484999999840113, 3.206666700192784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-438", + "dateofocc": "2009-11-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (THERESA VIII) hijacked 16 Nov 09 at 1053 UTC while underway in position 08-00.11S 045-58E, approximately 600NM south of Mogadishu, Somalia. Pirates armed with machine guns attacked and hijacked the vessel, taking hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.966666700064764, -8.001666699940472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-439", + "dateofocc": "2009-11-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "275 MILES SOUTH OF MOGADISHU: A merchant vessel reported coming under fire on 18 November 09 at 0715 UTC in position 01-48S 049-01E. The vessel was attacked by 2 skiffs who fired automatic weapons and at least 2 rpg rounds. The master conducted counter", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.016666700028452, -1.800000000252453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-440", + "dateofocc": "2009-11-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (MAERSK ALABAMA) fired upon 18 Nov 09 at 0320 UTC while underway in position 06-35N 054-30E, approximately 285 miles east of Eyl, Somalia. The vessel reported coming under fire by one skiff with four men onboard. The skiff m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.49999999985954, 6.583333299942126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-441", + "dateofocc": "2009-11-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (FENG LI 8) fired upon 12 Nov 09 at 0536 UTC while underway in position 14-33N 054-08E, approximately 115NM north of Socotra Island. Men armed with assault rifles chased and opened fire on the vessel. The vessel increased spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.133333299996025, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-442", + "dateofocc": "2009-11-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (FULL STRONG) fired upon 12 Nov 09 at 0330 UTC while underway in position 14-36.1N 054-14.5E, approximately 115NM north of Socotra Island. Men armed with assault rifles in skiffs opened fire on the vessel and attempted to boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.241666700040071, 14.601666700125122] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-443", + "dateofocc": "2009-11-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "470 MILES NORTH EAST OF PORT VICTORIA, SEYCHELLES: A merchant vessel reported coming under fire on 20 November 2009 at 1530 UTC. The vessel was attacked by armed men on board a skiff with ak-47s and rpgs. The second officer was reportedly injured by a pi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.466666700148664, -1.133333300289337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-444", + "dateofocc": "2009-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "9 MILES WEST OF PULAU MANGKAI, SOUTH CHINA SEA: Pirates armed with knives and swords in a small fishing boat boarded a product tanker underway. They tried to enter the accommodation but were unable to as all doors were locked. Upon hearing the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.449999999843499, 3.161666699683167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-445", + "dateofocc": "2009-11-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "1050 MILES EAST OF MOGADISHU, SOMALIA: Eight pirates in one craft and four pirates in another craft armed with machine guns and rpgs, chased a bulk carrier underway from the port and stbd sides. They fired at the vessel with machine guns and rpg and atte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.666666699615575, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-446", + "dateofocc": "2009-11-21", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BALIKPAPAN OUTER ANCHORAGE, INDONESIA: Three robbers boarded a chemical tanker at anchor using hooks attached to ropes. They stole ship's stores and escaped in a small boat. Local authorities informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.988333299991723, -1.356666699936909] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-447", + "dateofocc": "2009-11-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MOGADISHU, SOMALIA: Six pirate boats with a mother vessel in sight chased and opened fire upon an oil tanker underway. Two rpgs penetrated into port bridge door. Ship sustained damages and one crew member was injured. Pirates aborted the attempt after ab", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.416666700281951, -1.416666700316568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-448", + "dateofocc": "2009-11-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "554 MILES NORTH EAST OF PORT VICTORIA, SEYCHELLES: A merchant vessel reported coming under fire on 24 November 2009 at 1307 UTC. The vessel was attacked by 4 armed men on board a skiff who fired shots at the vessel's wheelhouse and accommodation. Vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.200000000050977, 0.483333300014692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-367", + "dateofocc": "2008-09-13", + "subreg": "63", + "hostility_": "THREE WHITE SPEEDBOATS", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIAThree white coloured speed boats, possibly, from a mother ship, fired on and tried to close onto a fishing vessel underway. The master increased speed and moved away.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.61666670038943, 2.166666699907296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-368", + "dateofocc": "2008-09-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 9 Sep 08 at 1513 UTC while underway in position 13-24N 048-20E. Eight pirates in a skiff reportedly chased the vessel. They fired upon the vessel and attempted to board. The Master contacted the coalition warsh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.333333300168192, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-369", + "dateofocc": "2008-09-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "GHANA:Container ship robbed on 23 Sep 08 at 1751 local time while at Tema port, Ghana. Robbers boarded a container ship at anchor. Robbers took one crewmember hostage and stole ships stores. Robbers fled when master alerted the authorities (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.033333299624246, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-370", + "dateofocc": "2008-09-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker Ship", + "descriptio": "NIGERIA:Tanker robbed on 20 Sep 08 at: 0100 local time while at anchor 6.6 nm off Lagos breakwater, Nigeria. Two robbers armed with knives boarded a tanker at anchor. Duty A/B noticed the robbers on the poop deck. He shouted at them and informed the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-371", + "dateofocc": "2008-10-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:Bulk carrier fired upon 01 Oct 08 at 0700 local time while underway. Two boats were following the vessel on the port side. The ship altered course to increase distance. The ship's general alarm and ship security alarm were sounded. A boat on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.499999999665476, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-372", + "dateofocc": "2008-10-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "GULF OF ADEN:Container ship fired upon 01 Oct 08 at 1435 UTC while underway in position 12-42.8N 049-09.9E. Four pirates fired upon the vessel and unsuccessfully attempted to board. Master and crew activated the fire hose and conducted evasive maneuvers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.164999999601548, 12.713333299609815] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-373", + "dateofocc": "2008-10-01", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Chemical Tanker", + "descriptio": "GULF OF ADEN:Chemical tanker reported suspicious approach on 01 Oct 08 at 0345 UTC while in position 13-10N 047-43E. Four pirates attempted to board the vessel. A naval ship engaged the pirates and the ship's master conducted evasive maneuvers. Pirates w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.716666699896507, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-374", + "dateofocc": "2008-09-28", + "subreg": "62", + "hostility_": "THREE SPEEDBOATS", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier reported suspicious approach on 28 Sep 08 at 0210 local time while underway in position 13-30.4N 048-31.8E. Three speedboats chased the vessel. All crew was alerted and the master of the ship executed evasive maneuvers and increa", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.530000000304995, 13.506666699716448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-375", + "dateofocc": "2008-09-22", + "subreg": "62", + "hostility_": "FOUR SPEEDBOATS", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier reported suspicious approach on 22 Sep 08 at 1151 UTC while underway in position 13-33.7N 048-37.5E. Four boats began chasing the vessel on the portside. The master transmitted distress message via VHF, HF and INM-C. Evasive mane", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.624999999781949, 13.561666699839634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-376", + "dateofocc": "2008-09-25", + "subreg": "62", + "hostility_": "TWO SPEEDBOATS", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADENBulk carrier reported suspicious approach on 25 Sep 08 at 1930 UTC while underway in position 13-16.9N 057-13.3E. Two speed boats and a possible mothership attacked the vessel. The ship conducted evasive maneuvers and the pirates aborted the", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.22166670001053, 13.281666699866548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-377", + "dateofocc": "2008-09-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADENContainer ship reported suspicious approach on 19 Sep 08 at 1349 local time while underway in position 13-13.6N 049-31.4E. Twelve pirates in three speedboats, armed with automatic guns and rocket propelled grenade launchers chased the ship. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.523333300053764, 13.226666699743362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-378", + "dateofocc": "2008-09-24", + "subreg": "62", + "hostility_": "FOUR BOATS", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADENCargo vessel reported suspicious approach on 24 Sep 08 at 1105 UTC while underway in position 13-37N 048-53E. Four boats chased the vessel. The crew was mustered, alarm raised and, speed increased. After speed was increased, one boat aborted", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.883333299601418, 13.616666699962821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-379", + "dateofocc": "2008-09-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIAContainer ship robbed on 23 Sep 08 at 0050 local time: while at anchorage Dar es Salaam anchorage. Approximately six robbers boarded the ship. Alarm was raised, and crew mustered. Upon seeing crew alertness, the robbers jumped into a waiting boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-381", + "dateofocc": "2008-09-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (JKM MUHIEDDINE) boarded and robbed on 30 Sep 08 at 0350 local time while underway in position 02-48.00N 105-09.2E, 64nm east of Pulau Tioman, Maylasia. At least seven pirates armed with long knives boarded the vessel from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.153333299973269, 2.800000000076125] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-52", + "dateofocc": "2009-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "Gulf of Aden: Two skiffs approached the bulk carrier from aft. Pirates in both skiffs were armed with automatic weapons and RPGs. Ship made evasive and preventive measures to prevent boarding. Pirates opened fire with automatic weapons at ship. One skiff", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.783333299964966, 14.783333299667731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-53", + "dateofocc": "2009-01-22", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "La Pampilla Port, Peru: A chemical tanker, at berth was boarded by an uknown number of robbers, while cargo operations were in progress. The deck security watchman was found to be beaten up and tied up. Upon searching, no robbers were found onboard. Auth", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.005555600018397, -8.233333300249171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-54", + "dateofocc": "2009-01-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TEMA ROADS, GHANA: Robbers boarded a container ship at anchor. They broke into a container and escaped with its contents and other ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-55", + "dateofocc": "2009-01-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "LAGOS OUTER ANCHORAGE, NIGERIA: 10 Robers armed with guns and knives boarded a tanker at anchor. They attacked the captain robbed cash adn valuables and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.083333300343327, 5.349999999574038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-56", + "dateofocc": "2009-01-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: A suspicious skiff was reported on 27 JAN 09, approximately 75 miles southeast of Al Mukalla, Yemen. The suspicious skiff was described as a blue hull speed boat, 10 meters in length with five to six people onboard, heading 358 degrees wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.199999999630506, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-57", + "dateofocc": "2009-01-11", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VENEZUELA: Container ship robbed 11 Jan 09 at 0255 local time while anchored in Guanta port. Four robbers armed with long knives boarded the vessel during cargo operations. They broke open one reefer container and stole contents from it. Upon seeing the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.600000000125021, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-58", + "dateofocc": "2009-01-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GHANA: Container ship robbed 19 Jan 09 at 2300 local time while anchored in Tema roads. Robbers boarded the container ship and broke into a container, then escaping with its contents and other ship's stores (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-59", + "dateofocc": "2009-01-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "CAMEROON: Fishing vessels attacked, skipper killed 24 Jan 09 while operating just off the port of Douala near Kribi. According to reports some 30 armed men used three small craft to board and seize a fishing vessel. They attempted to take it into intern", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.699999999669785, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-60", + "dateofocc": "2009-01-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (LONGCHAMP) hijacked 29 Jan 09 at 0340 UTC while underway in position 14-10N 049-58E. The tanker was reportedly en route from Norway to Vietnam when it was attacked and boarded by seven pirates, according to a spokesman for the ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.966666700194082, 14.166666700295366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-61", + "dateofocc": "2009-01-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "Dar es Salaam, Tanzania: Four robbers in a small wooden boat attempted to climb onboard an anchored container vessel. Alert duty watchmen informed the duty officer who raised the general alarm and directed the ship search light towards the robbers. Seein", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.308333300393429, -6.728333300393842] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-62", + "dateofocc": "2009-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "Balongan anchorage, Indonesia: Four robbers boarded a chemical tanker at anchor. They tried to enter into the accommodation but were noticed by the duty crew who raised the alarm. Upon hearing the alarm, the robbers climbed down into their boat and escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.424999999557485, -6.173333299804824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-63", + "dateofocc": "2009-01-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Armed pirates six speed boats surrounded a bulk carrier underway. Master raised alarm, took evasive action and crew activated fire hoses. One of the speedboats chased the vessel for about one mile. Seeing the alert crew and the aggressive a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.174999999952774, 12.461666700073863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-64", + "dateofocc": "2009-01-20", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "ANTIGUA AND BARBUDA: Yacht boarded, attacked 20 Jan 09 in the early morning while anchored in Moscito Cove, per 4 Feb 09 reporting. Three men attacked the vessel early in the morning and one of them managed to slip into the cabin. A fist fight ensued an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.899722199552798, 17.083055599981265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-247", + "dateofocc": "2009-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BANGLADESH: General cargo ship reported attempted boarding 5 May 09 at 0830 UTC, Chittagong anchorage. Robbers in a boat approached the vessel and attempted to board via anchor cable. The crew was alerted and the robbers aborted the attempt and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 21.86666669955514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-248", + "dateofocc": "2009-05-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARRIER", + "descriptio": "SOMALIA:Eight pirates in two boats attempted to board a vehicles carrier underway. Pirates closed to 10 meters and attempted to board serveral times. Master increased speed and carried out evasive maneuvers and prevented the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.816666699823998, -2.633333299888193] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-249", + "dateofocc": "2009-05-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOMALIA:Armed pirates attacked and hijacked a general cargo ship underway. Further report are awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, 4.199999999941554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-250", + "dateofocc": "2009-05-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Tanker fired upon 19 May 09 at 0214 local time while underway in position 12-56N - 048-30E. Five pirates armed with machine guns in a wooden boat approached the vessel and opened fire on the port side. The vessel increased speed and conduc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.526666700075566, 12.940000000386078] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-251", + "dateofocc": "2009-05-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Two boats with five pirates in each boat chased and fired upon a bulk carrier with automatic rifles and rpg. An orange and white colored mother vessel was noticed around 3 miles astern of the vessel. Master carried out evasive maneuvers, in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-252", + "dateofocc": "2009-05-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO/RORO SHIP", + "descriptio": "GULF OF ADEN: RO/RO reported suspicious approach 15 May 09 at 0639 UTC while underway in position 14-44N - 051-15E. Armed men wearing masks in four speed boats approached the vessel, coming as close as 500 meters. The vessel conducted evasive maneuvers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.25000000042894, 14.733333299801018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-253", + "dateofocc": "2009-05-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "880 MILES SOUTHEAST MOGADISHU, SOMALIA: Pirates in skiffs, chased ad fired upon a chemical tanker underway. Master made evasive maneuvers and escaped from the pirates.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.000000000293028, -9.983333300080915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-254", + "dateofocc": "2009-05-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: A high speed boat chased a tanker underway. Master altered course to increase CPA and contacted warship for assistance. The speed boat came very close ut due to ship;s evasive maneuvers, aborted the attempt and moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.996666699901937, 13.279999999839504] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-257", + "dateofocc": "2009-05-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "GULF OF ADEN: Tanker fired upon 17 May 09 at 1012 local time while underway in position 14-10N - 051-55E. Six armed pirates in a white skiff approached the vessel from astern at 20 knots, and began opening fire with automatic weapons and RPGs. The capta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.916666700392057, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-258", + "dateofocc": "2009-05-14", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "DOMINICA: Yacht (CLYPEUS) attacked, robbed 14 May 09 shortly after midnight while anchored in Prince Rupert Bay. Three men armed with machetes and a pistol boarded the vessel and attacked the couple onboard. They beat them, tied them up, and threatened", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.999999999861075, 15.99999999996345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-259", + "dateofocc": "2009-05-14", + "subreg": "25", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "GRENADA: Yacht attacked 14 Apr 09 while anchored in Mt. Hartman Bay, per 15 May reporting. Two men boarded the vessel while the owner was away and assaulted the owner¿s wife. They tied her up and threatened to kill her. The owner returned shortly after", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.749999999628187, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-260", + "dateofocc": "2009-05-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "JAKARTA ANCHORAGE, INDONESIA: Two robbers using hook and rope from a small boat attempted to board a product tanker at anchor. While climbing to the ship's rail the robbers saw alert ship's watchmen. Robbers jumped back into the waiting boat and moved aw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.89833330044786, -6.01166670038873] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-261", + "dateofocc": "2009-05-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship robbed 9 May 09 while anchored in Pier 5D, Callao port. Robbers boarded the vessel at berth during cargo operations and managed to steal ship's rescue boat's engine and escape. Local authorities were informed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-449", + "dateofocc": "2009-11-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (MARAN CENTAURUS) hijacked 29 Nov 09 at 1213 UTC while underway in position 03-09.39N 061-30.3E, approximately 590NM northeast of Port Victoria, Seychelles. Pirates boarded the tanker and have since anchored it off the coast of Som", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.505000000342363, 3.156388899751164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-450", + "dateofocc": "2009-11-19", + "subreg": "62", + "hostility_": "Yemeni Coast Guard", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (RED SEA SPIRIT) reported suspicious approach 19 Nov 09 at 2200 local time while underway in position 13-37.9N 047-41.0E. A suspicious craft was observed following the vessel until a distance of approximately 1.5 cables. The ve", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.68333330010222, 13.63166669983292] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-451", + "dateofocc": "2009-11-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BALONGAN ANCHORAGE, INDONESIA: Tanker reported attempted boarding 21 Nov 09 at 0120 local time while anchored in position 06-13S 108-31E, Balongan anchorage. One robber armed with a knife attempted to board the vessel. Alert crew member saw a hook stuck", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.516666699704388, -6.216666700112057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-452", + "dateofocc": "2009-11-21", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "PHILIPPINES: Tug (MARINERO) robbed, crewmembers kidnapped 21 Nov 09 at 2100 local time while anchored in postion 07-42.95N 122-06.51E, Siocon Bay, Zamboanga Del Norte. Nine robbers armed with high powered firearms approached the tug in three motor boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.108333300013442, 7.715833299576332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-453", + "dateofocc": "2009-11-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BENIN: Tanker (CANCALE STAR) robbed, crewmember killed 24 Nov 09 early morning while underway approximately 18 NM off Fairway Bouy, Cotonou. The tanker's Latvian captain said around six or seven men had approached the tanker in a speed boat. The Ukraini", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.433333300212666, 6.349999999606382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-454", + "dateofocc": "2009-11-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA: Bulk carrier robbed 20 Nov 09 at 0500 local time while berthed at Port Harcourt. A tug came alongside the vessel when three robbers armed with knives boarded her and threatened two duty crewmembers who approached them. The robbers stole two dru", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-455", + "dateofocc": "2009-12-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "1200 MILES NORTH EAST OF SOMALIA: Pirates in a skiff armed with guns chased and opened fire on a tanker uderway. The pirates attempted to board from port side but failed and then tried to board from stbd side. The use of water jets from fire hoses and ev", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.533333300120148, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-456", + "dateofocc": "2009-11-28", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "EAST OF CERAM ISLANDS, INDONESIA: Four persons in a white colored speed boat, flying Indonesian flag approached a bulk carrier underway at 20-25 knots. Master raised alarm, sounded ship's whistle continuously and crew activated fire hoses. It was noticed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [132.000000000117552, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-457", + "dateofocc": "2009-11-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "470 MILES SOUTH WEST OF MOGADISHU, SOMALIA: Pirates armed with rpg and machine guns in two skiffs chased and fired upon a container ship underway with intent to hijack her. Master raised alarm, activated SSAS increased speed and took evasive maneuvers. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.766666699633845, -5.883333300218112] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-458", + "dateofocc": "2009-11-25", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CALLAO ANCHORAGE, PERU: During routine radio communications with deck watcmen, on an anchored bulk carrier, the Chief officer did not get a response from the forward AB. He instructed the bosun to check. The bosun found the forward AB tied up with injuri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-380", + "dateofocc": "2008-10-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA: Chemical tanker (SUN GERANIUM) boarded and robbed on 02 Oct 08 at 0220 local time while underway in position 03-11.84N 105-22.40E, 70 nm north-east of Pulau Tioman, Mayalsia. Eight pirates armed with long knives and pipes boarded the ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.373333299566696, 3.197222200105443] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-382", + "dateofocc": "2008-09-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: Container ship boarded at on 24 Sep 08 at 0325 local time while in position 06:02.45S ¿ 106:54.61E, Tg. Priok, Jakarta, Indonesia. Three robbers armed with knives boarded the ship at anchor via the stern. Alert watchman notified the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.91000000008853, -6.040833300202962] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-383", + "dateofocc": "2008-10-02", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship reported attempted boarding on 02 Oct 08 at 2305 local time while at anchorage Callao anchorage No.12. Five masked robbers attempted to board the ship via the anchor chain. Alert crew used fire hoses and flashlights to scare off the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-384", + "dateofocc": "2008-10-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OILER SHIP", + "descriptio": "NIGERIA: Oil service vessel boarded, hostages taken on 04 Oct 08 between Port Harcourt and Bonny, Niger Delta. A speedboat carrying 12 gunmen attacked the vessel and took six Filipino hostages, including the boats captain and two engineers. No group has", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.096388900335512, 5.339444399710032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-433", + "dateofocc": "2011-10-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Fishing vessel attacked in 06-27S 040-08E at 2114Z on 17 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.133333300442587, -6.450000000447801] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-385", + "dateofocc": "2008-10-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: Refrigerated cargo ship boarded on 02 Oct 08 at 1215 UTC while the ship was drifting 20nm south of Bonny signal station. About ten pirates armed with submachine guns and hand grenades boarded the vessel. The ship contacted authorities and en", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-386", + "dateofocc": "2008-09-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "NIGERIA: Container ship boarded and robbed on 27 Sep 08 at 2140 UTC while at anchor in position 06-17.8N 003-24.0E, Lagos fairway buoy. Duty crew spotted one robber and raised the alarm and mustered crew. Robber jumped overboard and escaped in a waiting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.285555600119949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-387", + "dateofocc": "2008-10-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN:Dry cargo ship reported suspicious approach 07 Oct 08 at 0900 UTC while in position 11-43.56N 047-15.02E. The ship's master reported that two speed boats, each with nine armed persons onboard, chased the vessel in the above position and att", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.250555599650625, 11.732222199927321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-388", + "dateofocc": "2008-10-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo ship reported suspicious approach 02 Oct 08 at 0745 local time while underway in position 13-07.4N 048-45.8E. A look out sighted a suspicious vessel five miles off from starboard bow. A fast moving wooden craft powered by outboard mot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.750277799573951, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-389", + "dateofocc": "2008-10-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 01 Oct 08 at 0523 UTC while underway in position 13-13.59N 047-57.52E, about 43 miles off the Yemen coast. Pirates attempted to board the ship but the ship increased speed and diverted from course. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.964444399851971, 13.233055600351406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-390", + "dateofocc": "2008-10-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship fired upon 09 Oct 08 at 1330 local time while underway in position 02:07S-043:09E. The ship conducted evasive maneuvers and avoided boarding(IMB, Operator).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.150000000436762, -2.116666700249255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-391", + "dateofocc": "2008-10-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: Cargo ship boarded and robbed 04 Oct 08 at 0050 local time while underway in position 01:12.5N-103:54.5E, approximately 2nm east of Batu Berhanti buoy in the east bound lane of the Straits of Singapore. Three masked robbers armed with long", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.901388899830124, 1.201388900196093] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-65", + "dateofocc": "2009-02-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "NIGERIA: Vessel attacked, captain killed 5 Feb 09 at 0200 UTC while operating in an oilfield off the coast of southern Nigeria's Akwa Ibom state. Two private security groups working in the sector said a gang in two boats attacked the vessel. The captain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-66", + "dateofocc": "2009-01-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 29 Jan 09 at 0620 UTC while underway in position 12-27N 044-10E. Gunmen in six speed boats surrounded the vessel underway. The master raised the alarm, took evasive maneuvers and the crew activate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.16666670036625, 12.450000000433192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-67", + "dateofocc": "2009-02-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 2 Feb 09 while underway in position 12-21N 043-58E. A total of approximately 14 skiffs approached the vessel with armed persons onboard. Some of the men in the boats were dressed in camouflage military st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.966666700000076, 12.349999999800445] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-461", + "dateofocc": "2009-11-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIAN OCEAN: Tug reported suspicious approach 27 Nov 09 at 1340 UTC while underway in position 03-41S 044-48E, approximately 240NM southeast of Kismayo, Somalia. The vessel reported being approached by two skiffs. A warship nearby dispatched a helicop", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.799999999635759, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-68", + "dateofocc": "2009-01-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIA: Container ship reported attempted boarding 28 Jan 09 at 2340 UTC while anchored at position 06-43S 039-18E, Dar es Salaam. Four robbers in a small wooden boat attempted to climb onboard an anchored container vessel. Alert duty watchmen informe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.299999999907584, -6.716666699678569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-69", + "dateofocc": "2009-01-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: Chemical tanker boarded 29 Jan 09 at 0345 local time while anchored in position 06:10S ¿ 108:25E, Balongan anchorage. Four robbers boarded the vessel at anchor. They tried to enter into the accommodation but were noticed by the duty crew who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.416666699970961, -6.166666700245344] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-70", + "dateofocc": "2009-01-22", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "PHILIPPINES: Yacht robbed 22 Jan 09 while anchored in Subic Bay Yacht marina. During the night while the owner slept, robbers boarded the vessel and stole a laptop and cellphone. Incident was reported to local authorities (Noonsite.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.216666699992857, 14.749999999698161] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-71", + "dateofocc": "2009-02-06", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CALLAO ANCHORAGE, PERU: Six masked robbers armed with long knives in black clothes boarded a container ship at anchor. They attacked and seized two duty watchmen, broke into the bosun store and stole ship's stores. Other watchmen noticed the robbers and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-73", + "dateofocc": "2009-02-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (POLARIS) reported attempted boarding 11 Feb 09 at 1430 local time while underway in position 12-59N 048-16E. Seven men in a white speedboat armed with automatic weapons and an RPG approached the tanker from the west. The captain sou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.266666700229052, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-74", + "dateofocc": "2009-02-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (PREM DIVYA) fired upon 12 Feb 09 at approximately 0330 local time while underway in position 12-46N 047-52E. The vessel sent out a distress call reporting shots being fired upon it by a small skiff and that men onboard the skiff we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.866666700395967, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-72", + "dateofocc": "2009-02-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Vessel fired upon 11 Feb 09 at 0630 UTC while underway in position 10-39N 055-54E. Vessel was approached by a light blue colored skiff described as 5 to 7 meters long with five men onboard armed with guns and an RPG, travelling more than", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.899999999724912, 10.649999999835359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-262", + "dateofocc": "2009-05-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "NIGERIA: Vessel robbed 21 May 09 at 0320 local time while anchored in Lagos roads. Six robbers armed with automatic weapons boarded the vessel. They broke down the captain and chief officer's cabin doors and stole cash. The captain raised the distress s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-263", + "dateofocc": "2009-05-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (ANTONIS) fired upon 26 May 09 at 0430 local time while underway in position 13-05N - 048-58E. Two skiffs with four armed men onboard each approached the vessel from the port side and opened fire with machine guns. The vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.966666700161738, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-264", + "dateofocc": "2009-05-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon 25 May 09 at 0028 local time while underway in position 13-11N - 049-19E. Four armed men in a skiff approached the vessel from the port quarter and opened fire. The captain mustered the crew and conducted evasive ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.31666670012811, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-265", + "dateofocc": "2009-05-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel (MARIA K) fired upon 22 May 09 at 0900 local time while underway in position 13-13N - 049-10E. One speed boat with nine men onboard fired an RPG at the vessel and missed. Coalition forces nearby responded, and the men in the skiff a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.166666699628649, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-266", + "dateofocc": "2009-05-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 22 May 09 at 1120 UTC while underway in position 12-53N - 048-02. A small boat was observed 3NM away on the starboard side. A small skiff then detached from the boat and started approaching the vessel¿s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.033333300068534, 12.883333300235847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-267", + "dateofocc": "2009-05-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 19 May 09 at 0755 local time while underway in position 13-16N - 048-59E. A high speed boat chased the vessel while underway. The captain altered course to increase the distance and contacted nearby wars", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.983333300234165, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-268", + "dateofocc": "2009-05-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 18 May 09 while underway in position 12-46N - 048-05E. Men in two skiffs approached the tanker while underway. The captain conducted evasive maneuvers, fired rocket flares, and contacted nearby warships", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.083333299935248, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-269", + "dateofocc": "2009-05-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker fired upon 19 May 09 at 0026 UTC while underway in position 09-59S - 054-00E, approximately 320NM south of Port Victoria, Seychelles. Men in skiffs chased and fired upon the vessel while underway. The captain conducted evas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.000000000293028, -9.983333300080915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-270", + "dateofocc": "2009-05-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported coming under pirate attach at 0729 UTC on 28 May 09 approximately 110 NM southwest of Al Mukalla, Yemen in position 13-01-24N - 048-48-36E. The pirate boat approached the vessel's port quarter as the merchant vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.81000000027808, 13.023333300222362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-271", + "dateofocc": "2009-05-28", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA: Tug (TOPNICHE 5) robbed 28 May 09 at 0200 local time while underway in position 02-14N - 104-14E, approximately 19NM southwest of Pulau Aur. Five robbers armed with guns and knives boarded the tug as it was towing a barge, the (CHRISNICHE 4).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.2333333004471, 2.233333299846436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-272", + "dateofocc": "2009-05-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CONGO: Vessel boarded 29 May 09 at 0340 local time while anchored in Boma roads. Two robbers armed with machetes boarded the vessel and threatened the duty watchman. The alarm was raised and crew mustered. The robbers escaped upon hearing the alarm (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-273", + "dateofocc": "2009-05-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BURMA: Container ship boarded 28 May 09 at 2330 local time while anchored in position 16-30N - 096-15E, Yangon anchorage. Two robbers boarded the vessel, but were spotted by duty crew members. The crew members raised the alarm and the two robbers jumped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [96.258888899922454, 16.514722199724474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-459", + "dateofocc": "2009-11-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA: Bulk carrier robbed 15 Nov 09 at 2100 local time while anchored in position 06-12.8N 003-23.7E, Lagos anchorage. Robbers armed with guns and knives in a speedboat boarded the vessel by using bamboo sticks with hooks. They fired warning shots w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.395000000018968, 6.213333299849239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-460", + "dateofocc": "2009-12-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (BBC TOGO) fired upon 02 Dec 09 at 1206 UTC while underway near position 14-26N 054-18E, approximately 100NM north of Socotra Island. Armed men aboard two skiffs, which were launched from a mothership, fired upon the vessel with au", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.300000000392629, 14.433333299701417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-463", + "dateofocc": "2009-12-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (CORAL GLOBE) fired upon 7 Dec 09 at 1343 UTC while underway in position 00-27N 061-39E, approximately 977NM east of Mogadishu, Somalia. Armed men in two skiffs chased and fired on the vessel with automatic weapons and RPGs.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.649999999686088, 0.450000000045122] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-464", + "dateofocc": "2009-12-01", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "HAITI: Vessel robbed 1 Dec 09 at 2300 local time while in position 18-33N 072-23W, Port au Prince anchorage. The duty officer heard noises on the poop deck and upon investigation, found three robbers already in the process of leaving in their boat afte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.550000000360683] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-465", + "dateofocc": "2009-12-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (NORDIC SPRITE) fired upon 7 Dec 09 at 0501 UTC while underway in position 12-54N 048-07E, approximately 120NM northwest of Bosasso, Somalia. Armed men aboard two skiffs fired upon the vessel with automatic weapons and RPGs. The ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.116666699729592, 12.900000000132991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-466", + "dateofocc": "2009-12-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing Vessel (SHAHBAIG) hijacked on 6 December 09 while underway in position 11-52N 62-36E, approximately 470NM southeast of Socotra Island. Vessel reportedly has 29 crewmembers on board, all believed to be Pakistani. Vessel is reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.599999999851661, 11.866666700131077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-467", + "dateofocc": "2009-12-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "BANGLADESH: Tug (TROPICAL STAR) reported attempted boarding 8 Dec 09 at 0440 local time while anchored in position 22-12.7N 091-46.3E, Chittagong Port outer anchorage B. The officer on watch spotted men in a powered driven wooden boat attempt to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.771666699643959, 22.211666700164358] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-468", + "dateofocc": "2009-12-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker boarded 8 Dec 09 at 0325 local time while in position 06-13.62S 108-28.29E, Balongan anchorage. Four robbers boarded the vessel from the poop deck. They were spotted by the duty watchman who immediately informed the bridge duty office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.471388900418617, -6.226944399576439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-469", + "dateofocc": "2009-12-16", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "PERU: Vessel robbed 16 Dec 09 at 1735 local time while anchored in Callao anchorage. Robbers boarded the vessel via the anchor chain and by cutting the hawse pipe cover. They stole ship's stores and escaped. The incident was only discovered after the ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-470", + "dateofocc": "2009-12-14", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship robbed 14 Dec 09 at 2100 local time while anchored in position 12-02.0S 077-11.6W, Callao anchorage. The duty officer onboard raised the alarm when he failed to get a response from the watchman on deck. The crew went forward to inv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.193333300428833, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-471", + "dateofocc": "2009-12-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "INDIAN OCEAN: Dhow (LAXMI SAGAR) hijacked on 10 December 09 while underway near position 06-00N 51-00E, approximately 115NM southeast of Garacad, Somalia. Vessel was controlled by armed men for approximately five days before being released. Reportedly", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.000000000195996, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-392", + "dateofocc": "2008-10-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: LPG tanker boarded and robbed on 03 Oct 08 at 0230 local time while underway off Mangkai Island. Six pirates armed with long knives boarded the tanker. They stole ships and crew cash before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.796111099628718] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-393", + "dateofocc": "2008-10-02", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "PHILLIPINES: Four fishing vessels fired upon per 02 Oct 08 reporting at sea near Tawi Tawi coast. The pirates, armed with M-16 rifles, attacked the fishermen. One fisherman was killed and 17 fishermen were reportedly seized by the pirates. (Xinhua).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.445277799780001, 12.074722200408303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-77", + "dateofocc": "2009-02-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "DAR ES SALAAM, TANZANIA: Three robbers armed with knives boarded a container ship at anchor. They tied up the duty A/B, took his personnel belongings and then opened a contaier and stole the cargo. At 0200 UTC, the robbers left the ship in a small boat a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.341666700187716, -6.772222200227418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-394", + "dateofocc": "2008-09-25", + "subreg": "95", + "hostility_": "CHINESE FISHERMAN", + "victim_d": "SOUTH KOREAN COAST GUARD", + "descriptio": "YELLOW SEA: South Korean Coast Guard officer killed on a Chinese fishing boat on 25 Sep 08, southwest of Jeolla Province. Chinese fishermen are accused of attacking the coast guard officer as he tried to board the Chinese vessel. They hit him with a s", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.833333300426148, 35.83333330021361] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-395", + "dateofocc": "2008-10-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "NIGERIAN NAVY", + "descriptio": "NIGERIA: Nigerian naval vessels fired upon on 15 Oct on Bonny Island near main crude oil and liquefied natural gas export terminals, the Nigerian military and security sources said. Gunmen in six speedboats attacked the vessels while they were protectin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-396", + "dateofocc": "2008-10-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker reported suspicious approach on 04 Oct 08 at 1530 local time while underway in position 03:36.00N 06:19.50E, 53nm southwest of Bonny River. Men, armed with guns, approached the ship in a wooden boat. The ship increased speed whi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.325000000122714, 3.599999999742295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-397", + "dateofocc": "2008-10-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARGO SHIP", + "descriptio": "GULF OF ADEN: Bulk cargo ship (AFRICAN SANDERLING) hijacked on 15 Oct 08 at 0315 UTC while underway in position 13:28.9N-050:08.5E. The ship contacted coalition forces via VHF channel 16 and reported being chased by two light-green speed boats with abo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.141666700177268, 13.481666700232779] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-398", + "dateofocc": "2008-10-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo ship reported suspicious approach on 10 Oct 08 at 0900 local time while underway in position 15-10.0N 051-45.0E. A small craft with three armed men onboard was sighted four miles off the ship-s port beam and the craft began to approac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.749999999995396, 15.16666670032771] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-399", + "dateofocc": "2008-10-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker hijacked on 10 Oct 08 while underway in position 13:06.1N-047:13.43E. At the time of the attack the ship had no working satellite comms or VHF. She was only able to get the message to her owner by GMDSS Telex. A coalition aircraft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.223611099565005, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-400", + "dateofocc": "2008-10-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Dry cargo ship (WAEL H) hijacked on 09 Oct 08 at 1700 UTC while underway in position 014:04.52N 050:52.24E. The vessel was carrying 3000 MT of cement bags and was enroute Bosasso at the time of the hijacking. The vessel had 11 crewmembers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.87055560007343, 14.07527779982405] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-401", + "dateofocc": "2008-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach on 10 Oct 08 at 2020 local time while underway in position 01:44N-052:51E, off Somalia. A speed boat was seen being released from a suspicious vessel about 8.5 NM away. The ship increased speed, a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.849999999761224, 1.733333300279924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-402", + "dateofocc": "2008-10-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "MALAYSIA: Container ship boarded, robbed 08 Oct 08 while at anchor in position 1:18.9N - 104:15.0E, 2.7 nm south of Teluk Ramunia, Johor. Robbers stole engine spares and escaped unnoticed (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.908333299964454, 1.208333300330423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-75", + "dateofocc": "2009-02-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "KAKINADA, INDIA: Robbers boarded a bulk carrier via forecastle and stole ship's stores and escaped before being noticed by watchkeepers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.224999999761053, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-78", + "dateofocc": "2009-02-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "OFF TANJUNG BULAT, MALAYSIA: Five robbers in a wooden boat approached a bulk carrier at anchor. One of the robers boarded the ship and attempted to steal ship's stores. Duty crew noticed the robber and informed bridge who raised the alarm, sounded ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.239999999831355, 1.313333300320323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-79", + "dateofocc": "2009-02-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Five pirates armed with RPG's in black/white color speed boat approached and fired upon a bulk carrier underway. They attempted to board the ship from the port side using a steel ladder. Master raised alarm, sent distress messages and took", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.149999999731449, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-80", + "dateofocc": "2009-02-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SE OF PENNINGTON TERMINAL, NIGERIA: Ten heavily armed pirates in a speed boat approached and attempted to stop a tanker underway. The pirates opened fire at the vessel. Alarm raised and crew alerted. Master took evasive measures and prevented boarding. P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.783333300276013, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-81", + "dateofocc": "2009-02-08", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CATAMARAN", + "descriptio": "ITAPARICA MARINA, BRAZIL: Two robbers armed with guns in a small row boat boarded a catamaran at anchor. The captain confronted the robbers and they shot and killed him. Robbers jumped overboard and swam off leaving their row boat. Nothing stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.673333300406171, -12.884999999572244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-82", + "dateofocc": "2009-02-14", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship robbed 14 Feb 09 at 0300 local time while anchored at Callao anchorage. Robbers boarded the vessel and broke open the bosun store, stealing ship's stores. The master informed local police, but the authorities did not arrive (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-83", + "dateofocc": "2009-02-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Tanker attacked, robbed 14 Feb 09 at 2130 UTC while at Lagos anchorage. Around 12 to 14 robbers wearing masks and armed with AK-47s boarded the vessel at anchor. They took a crewmember hostage and forced him to guide them to the bridge. They op", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-84", + "dateofocc": "2009-02-14", + "subreg": "42", + "hostility_": "RUSSIAN WARSHIP", + "victim_d": "CHINESE CARGO VESSEL", + "descriptio": "RUSSIA: Vessel (NEW STAR) fired upon 14 Feb 09 while underway off the coast of Vladivostok. The Chinese cargo vessel was being detained at the Russian port of Nakhodka after being suspected of smuggling. The vessel left the port without permission, and", + "hostilityt": 2, + "hostilit_D": "Naval Engagement", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XX" + }, + "geometry": { + "type": "Point", + "coordinates": [77.54999999957073, 67.783333299583092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-85", + "dateofocc": "2009-02-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Armed pirates attacked a bulk carrier(M/V SALDANHA) underway. They boarded the ship, took hostage crewmembers and hijacked it to an undisclosed location. The vessel was provided with assistance from a US Coalition warship however the pirate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.020277799868722, 12.566111099813384] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-86", + "dateofocc": "2009-02-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Pirates in an unlit high-speed oat chased a general cargo ship underway. The boat came close to the ship and attempted to board. Master raised alarm, increased speed, took evasive action, crew switched on additional lighting and activated f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.718333300292841, 14.518333299564745] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-87", + "dateofocc": "2009-02-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "STRAIT OF MALACCA: Tug boat (MLC NANCY 5) robbed 19 Feb 09 at 1430 local time while underway in position 05:10N ¿ 099:06E. The (MLC NANCY 5) was towing a barge en route to Singapore from Colombo when it was attacked by a group of 12 pirates from a smal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.10027780025797, 5.174999999590852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-274", + "dateofocc": "2009-05-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 29 May 09 at 1045 UTC while underway in position 12-20N - 046-26E. Six armed men in a speed boat approached the vessel. The vessel conducted evasive maneuvers to prevent a possible boarding and con", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.433333299836931, 12.333333299903302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-472", + "dateofocc": "2009-12-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "BANGLADESH: Tug robbed 5 Dec 09 at 1800 local time while anchored in position 22-12.6N 091-46.4E, Chittagong anchorage. Approximately 12 robbers armed with long metal bars in a small boat boarded the vessel and stole ship¿s stores before escaping. Loc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.773333299846286, 22.210000000137313] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-275", + "dateofocc": "2009-05-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 29 May 09 at 1050 UTC while underway in position 12-11N - 046-22E. Five pirates in a blue colored speed boat approached the vessel from less than 1NM away. The captain alerted UKMTO and MSCHOA a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.366666699897792, 12.198333300173203] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-276", + "dateofocc": "2009-05-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Armed pirates in a boat attempted to board a tanker underway. Ship raised alarm sounded whistle, switched lights on, activated fire hoses, increased speed and commenced evasive maneuvers. Pirate boat came about 2-3 meters off the ship's sid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.70500000028818, 12.994999999609945] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-277", + "dateofocc": "2009-05-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Tanker (STOLT STRENGTH) fired upon 31 May 09 at 1000 UTC while underway in position 13-29N - 043-01E, approximately 60NM northwest of the Bab el Mandeb. Seven armed men in a skiff chased and opened fire on the vessel. The captain increased spee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.016666699834445, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-278", + "dateofocc": "2009-06-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MALAYSIA: Bulk carrier (GARNET) robbed 1 Jun 09 at 0245 local time while anchored in position 01-19N - 104-15E, 2NM south of Tanjung Ramunia. Seven or eight robbers armed with knives boarded the vessel from the stern. They entered the engine room and ti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.264722199639493, 1.320555599954901] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-279", + "dateofocc": "2009-06-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker fired upon 1 Jun 09 at 0615 local time while underway in position 13-33N - 050-29E. Five armed men in a white skiff approached the vessel. The captain increased speed, activated high pressure fire hoses, mustered the crew, contacted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.483333299833021, 13.553333300428392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-280", + "dateofocc": "2009-05-21", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "COSTA RICA: Container ship robbed 21 May 09 at approximately 2200 local time while anchored in Puerto Moin outer roads. Two robbers boarded a container ship at anchor. They broke the padlock of a paint locker and stole ship's stores before escaping. Loc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.07833330012005, 10.005555600276239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-281", + "dateofocc": "2009-05-23", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship robbed 23 May 09 at 2045 local time while anchored in 12-01S - 077-11W, Callao anchorage. Duty crew reported sighting of robbers at forecastle. The alarm was raised and crew mustered. A search was conducted and found ship's properti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-282", + "dateofocc": "2009-06-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported being fired upon 3 Jun 09 at 1530 UTC while underway in position 13-19N - 046-51E. The captain reported men armed with guns and RPGs attacked the vessel while underway. No further information to report at this time (Operato", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.84999999956716, 13.316666699863219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-283", + "dateofocc": "2009-05-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "BANGLADESH: Vessel robbed 23 May 09 at 2054 local time, Chittagong anchorage. After dropping anchor, the ship's crew spotted eight armed robbers on the poop deck. The alarm was raised and the crew mustered. Robbers stole ship's stores and escaped. Port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-284", + "dateofocc": "2009-05-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker reported attempted boarding 23 May 09 at 0400 local time while anchored in position 06-00S - 106-53E, Jakarta anchorage. Two robbers using hook and rope from a small boat attempted to board the vessel at anchor. While climbing to the s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-285", + "dateofocc": "2009-06-10", + "subreg": "57", + "hostility_": "Five pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA: Bulk carrier robbed 10 June 09 at 0545 UTC while anchored in position 04-01N 006-48E, approximately 20NM off Nigeria. Five heavily armed robbers boarded the vessel using a hook attached to a rope. Once on board, they fired warning shots and thr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.8000000002055, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-286", + "dateofocc": "2009-06-09", + "subreg": "57", + "hostility_": "Sixteen Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "CAMEROON: Cargo vessel robbed 9 June 09 at 0324 UTC while at anchorage in Douala. Sixteen robbers armed with guns and knives damaged communication equipment and stole all cash located on the vessel. Three crewmembers were injured in the incident (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.666666699700215, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-473", + "dateofocc": "2009-12-11", + "subreg": "73", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship reported suspicious approach 11 Dec 09 at 0820 local time while underway in position 05-15.9S 123-25.1E, approximately 11NM east of Pulau Buton. Four men armed with a gun and spear in a speedboat chased the vessel. The cap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.41833329975907, -5.215000000052669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-474", + "dateofocc": "2009-12-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIA: Tanker robbed 17 Dec 09 at 1929 UTC while anchored in Kochi anchorage. Two robbers boarded the vessel via the anchor chain. They broke open the forepeak store and stole ship's stores. The crew noticed and chased them away. Seeing the crew, the ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.216666700368535, 9.966666699799816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-475", + "dateofocc": "2009-12-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VENEZUELA: Container ship reported attempted boarding 15 Dec 09 at 2150 local time while in Puerto la Cruz. Duty seaman onboard the vessel spotted six robbers in a boat attempting to board the vessel. The alarm was raised and the crew alerted. The robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.616666700022165, 10.216666700032761] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-476", + "dateofocc": "2009-12-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "SOMALIA: About nine pirates armed with guns in a small boat attacked, boarded and hijacked a dhow underway along with its 13 crewmembers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.618333300203687, -2.761666700058811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-477", + "dateofocc": "2009-12-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TEMA ROADS, GHANA: Ten robbers ared with machetes boarded a container ship at anchor via the anchor chain. They held three duty crewmembers, threatened them with the machetes at their throat and tied the up to bollards. The robber stole ship's property a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.048333300184993, 5.646666700343587] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-478", + "dateofocc": "2009-12-18", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CONARKY, GUINEA: Pirates armed with machine guns in a speedboat approached and fired upon a chemical tanker drifting. The tanker, increased speed, enforced anti-piracy measures, reported to authorities and prevented the pirates from boarding it. No injur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.821666699927221, 9.296666699607272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-479", + "dateofocc": "2009-12-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "INDIAN OCEAN: Dhow hijacked and likely conducting mothership operations. Last reported location underway near position 004-01S 048-47E. Vessel was headig north. Mariners are warned to steer clear of this area if possible.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.783333299867991, -4.016666699681195] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-480", + "dateofocc": "2009-12-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: Container ship robbed 22 Dec 09 at 1710 UTC while anchored in position 03-55.5N 098-46.1E, Belawan anchorage. Five robbers armed with knives boarded the vessel unnoticed. They tied up the hands and feet of the duty watchman and stole propertie", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.76833329981622, 3.925000000224941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-481", + "dateofocc": "2009-12-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "525 MILES SOUTHEAST OF SEYCHELLES: A merchant vessel reported coming under fire on 30 December 2009 at 0448 UTC in position 11-42N 063-01E. The vessel was attacked by a skiff and mothership using rpg only for approximately 30 mins. The captain maintained", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.01666669958189, 11.699999999734416] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-482", + "dateofocc": "2009-12-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOMALIA: Pirates attacked and hijacked a bulk carrier underway. The hijackers are sailing the vessel to Somali coast. Further reports awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.733333300357003, -3.366666699615223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-483", + "dateofocc": "2009-12-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Pirates attacked and hijacked a chemical tanker underway. The hijackers are sailing the tanker to an undisclosed location in Somalia. Further reports awaited.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.56666670032871, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-484", + "dateofocc": "2009-12-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SINGAPORE STRAITS: About six small unlit boats chased a chemical tanker underway. Pirates from one boat attempted to board. The tanker made evasive maneuvers and enforced anti-piracy measures and prevented the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.64166669965914, 1.078333299957478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-485", + "dateofocc": "2009-12-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "OFF SOMALIA: While underway a container ship detected a white-hull fishing vessel with two small craft on each side. The fishing vessel lowered one craft, which chased the ship for around 45 minutes before aborting the attempt due to preventive measures.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.016666700416522, 8.46666670020096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-97", + "dateofocc": "2009-02-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MALAYSIA: Duty 3rd engineer onboard a bulk carrier noticed robers escaping from the engine room. He informed duty officer on bridge. Alarm raised and crew mustered. After a search, it was revealed that five robbers boarded the vessel and entered the engi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.168333299810968, 1.295000000220853] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-486", + "dateofocc": "2009-12-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "LAGOS ANCHORAGE, NIGERIA: Robbers armed with automatic weapons attacked and boarded an anchored general cargo ship. They assaulted and fired at the crew. Three crew members were injured. The robbers stole crew personal properties and ship's stores and eq", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-403", + "dateofocc": "2008-10-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: A BULK CARRIER WAS ATTACKED AND HIJACKED BY PIRATES IN POSITION 14 DEGREES NORTH 050 DRGEESS, GULF OF ADEN ON 15102008 AT 0344 UTC.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.000000000163652, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-404", + "dateofocc": "2008-10-13", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: In Vung Tau anchorage, Vietnam. Robbers boarded an anchored container ship unnoticed by crew. They stole ship's stores and escaped, crew on routine patrol noticed bos'n store padlock was broken and ship's store stolen. Authorities informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.438333300267459, 10.243333299718756] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-405", + "dateofocc": "2008-10-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: BULK CARGO SHIP HIJACKED ON 15 OCT 08 AT 0409 UTC WHILE UNDERWAY ALONG WITH 21 CREW IN POSITION 13-33.92N 050-10.70E. THE PIRATES ARE SAILING THE SHIP TO AN UNDISCLOSED LOCATION IN SOMALIA. THE SHIP WAS ENROUTE FROM AQABA, JORDAN TO A PORT", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.17833330037621, 13.565277799744592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-406", + "dateofocc": "2008-10-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 16 Oct 08 at 1700 UTC while underway in position 12 44.0N - 045 52.0E. Three small boats chased the vessel. The ship changed course, increased speed and conducted evasive maneuvers to avoid boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.86666670033128, 12.73333329973633] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-407", + "dateofocc": "2008-10-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "GULF OF ADEN: Dhow hijacked on 14 Oct 08 while underway in position 12:59N 048:29E. Owners confirmed that the dhow was hijacked by nine armed Somali pirates in speed boats. The vessel was carrying a cargo of sugar from India to Berberra, Somalia when i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.483333299768333, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-408", + "dateofocc": "2008-10-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Containership fired upon 23 Oct 08 at 1732 UTC while underway near position 03:47S-047:46E, approximately 180 NM off Mombasa, Kenya. Vessel was chased and fired upon by two small boats. Vessel escaped but sustained bullet damage (IMB, Op", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.783333299673927, -3.783333300419997] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-409", + "dateofocc": "2008-10-22", + "subreg": "63", + "hostility_": "LTTE PIRATES", + "victim_d": "VESSEL RUHUNA AND VESSEL NIMALAWA", + "descriptio": "SRI LANKA: M/V (RUHUNA) and M/V (NIMALAWA) attacked by LTTE Sea Tiger suicide boats on 22 Oct 08 at 0500 local time while underway off Kankesanthurai harbor. Sri Lankan Navy spokesperson D. K. P. Dassanayake claimed three LTTE suicide vessels were invo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [80.833333299870219, 9.233333300072843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-410", + "dateofocc": "2008-10-13", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship robbed on 13 Oct 08 at 0600 local time while at anchor in position 10-14.6N 107-26.3E, Vung Tau. Robbers, unnoticed by crew, boarded the ship, stole ship's stores and escaped. The crew on routine patrol noticed the store padlock", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.069444399951237, 10.338888900345466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-411", + "dateofocc": "2008-10-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GHANA: Chemical tanker robbed on 21 Oct 08 at 0330 local time while at anchorage, Tema. The robbers boarded the vessel, broke open the forecastle locker, stole the ships stores and escaped (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.036111100327332, 5.625000000189971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-412", + "dateofocc": "2008-10-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "CAMEROON: Tug attacked, crewmembers kidnapped 31 Oct 08 at approximately midnight local time, while off the coast of Cameroon. An unknown number of hijackers, reportedly part of a militia group, riding speedboats and carrying small arms boarded the tug", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.680833299644348, 4.006388900183367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-98", + "dateofocc": "2009-02-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "COCHIN, INDIA: Robbers boarded a general cargo ship at achor. They broke forward lockers and stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.233333300440904, 9.916666699933103] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-413", + "dateofocc": "2008-10-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (YASA NESLIHAN) hijacked on 29 Oct 08 at 1030 UTC while underway in position 13:00N-046:40E. The ship reported to coalition aircraft that two boats, each with four men inside, were chasing. The ship conducted evasive manoeuvr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.66666669999745, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-414", + "dateofocc": "2008-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Bulk cargo ship reported suspicious approach on 28 Oct 08 at 0800 local time while underway in position 12:42.6N-045:47.4E. The chief officer observed one speed boat from aft, two speed boats from the port side and two speed boats from th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.790000000054476, 12.410000000180105] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-88", + "dateofocc": "2009-02-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING TRAWLER", + "descriptio": "EAST COAST, SOMALIA: Five pirates in a boat fired upon a fishing trawler underway. Pirates attempted to board the ship. Master carryout evasive maneuvers, increased speed and moved away. The ship sustained bullet hole damage. There were no leakage and no", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.9166667004244, 4.549999999907925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-89", + "dateofocc": "2009-02-18", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CALLAO ANCHORAGE, PERU: An anchored container ship, waiting for a bunker barge, was approached by two small boats. The two boats asked for heaving lines to assist securing the bunker barge. The OOW suspecting them for robbers and raised the alarm. Crew m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-90", + "dateofocc": "2009-02-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "HOBYO, SOMALIA: A commercial fishing vessel reported a pirate attack 19 Feb 09 at 16:30 UTC while underway in location 004-33N 052-55E, approximately 265 miles east of Hobyo Somalia. Victim observed a small white skiff with a blue bow. Four or five men w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.9166667004244, 4.549999999907925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-91", + "dateofocc": "2009-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (YAN DANG HAI) fired upon 25 Feb 09 at 0556 local time while underway in position 13-11N 049-16E. The vessel reported coming under fire and sent out a distress call. The Danish destroyer (ABSALON) responded and seized the pira", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.266666700261396, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-92", + "dateofocc": "2009-02-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:A group of armed pirates in three high speed boats approached and attempted to attack a bulk carrier underway. Master raised alarm and took evasive manoeuvres. Pirates aborted the attempted attack due to the evasive manoeuvres taken by the s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.516666700300277, 12.183333300303104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-93", + "dateofocc": "2009-02-25", + "subreg": "62", + "hostility_": "FOUR PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:Four pirates in a speed boat armed with rocket launcher fired upon a bulk carrier underway. Master raised alarm, sent distress message, took evasive manoeuvres. Crew activated fire hoses and threw empty bottles. Pirates aborted the attempted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.15138890008302, 13.134444400245457] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-94", + "dateofocc": "2009-02-24", + "subreg": "22", + "hostility_": "EIGHT ARMED PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU:Eight armed robbers boarded a container ship at anchor. They took hostage two shore employed security watchmen and tied them up. They broke into the forecastle store and stole ship's stores and escaped. One of the watchmen managed to inform the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.185555600193368, -12.017222200365552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-95", + "dateofocc": "2009-02-22", + "subreg": "57", + "hostility_": "SEVEN PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA:Five pirates armed with automatic guns in a high speed boat and two pirates in a fishing boat approached a product tanker underway. They opened fire at the bridge and attempted to board the tanker. Master raised alarm, increased speed and took ev", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.768055599688182, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-96", + "dateofocc": "2009-03-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "GULF OF ADEN: Pirates armed with guns fired upon an oil tanker underway. Master reported to coalition warship adn UKMTO Dubai and increased speed took evasive maneuvers and altered away from the pirate boats. Later pirates aborted the atttack, all crew s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.550000000334535, 12.150000000333534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-99", + "dateofocc": "2009-03-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FERRY BOAT", + "descriptio": "NIGERIA: Ferry hijacked, passengers kidnapped 4 Mar 09 midday local time while underway near the Bonny Island gas terminal at Dutch Island Creek. While transiting from Port Harcourt to Bonny Island, the ferry was hijacked by gunmen, who then robbed all t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.166666700069015, 4.450000000174498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-100", + "dateofocc": "2009-03-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 5 Mar 09 at 1420 UTC while underway in position 13-45N 050-44E. A suspicious white boat towing three small, white boats was observed moving east with a speed of approximately 7kts. The same suspicious bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.733333300065908, 13.749999999665818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-287", + "dateofocc": "2009-06-09", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "CAMEROON: Tanker robbed 9 June 09 at 0224 UTC while underway near Douala anchorage. Robbers disabled communication equipment, stole all money on board an escaped. The 3rd officer was injured in the incident. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.649999999803072, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-288", + "dateofocc": "2009-06-15", + "subreg": "62", + "hostility_": "Skiff", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker fired upon 15 June 09 at 1305 local time while underway in position 12-58N 048-27E. One skiff approached the vessel to within about ten meters and fired with gun and RPG rounds. The vessel conducted evasive maneuvers and the skiff e", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.449999999798763, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-289", + "dateofocc": "2009-06-14", + "subreg": "62", + "hostility_": "Speed Boats", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker fired upon 14 June 09 at 1700 local time while underway in position 12-33N 043-29E, near Bab el Mandeb. Several speed boats approached the vessel, crossed its bow, and opened fire with automatic weapons. The tanker performed evasive", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.483333299606613, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-290", + "dateofocc": "2009-06-14", + "subreg": "62", + "hostility_": "Four Speed Boats", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 14 June 09 at 1740 local time while underway in position 12-58N 043-09E. Four speed boats with five to six persons in each armed with automatic weapons approached the vessel. The tanker performed evasive", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.150000000436762, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-291", + "dateofocc": "2009-06-14", + "subreg": "62", + "hostility_": "Skiffs", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 14 June 09 at 1435 UTC while underway in position 12-25N 043-28E. Several skiffs chased the vessel but aborted after the tanker applied anti-piracy measures to prevent boarding (Operator, IMB).", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.466666700433564, 12.416666699564303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-292", + "dateofocc": "2009-06-14", + "subreg": "62", + "hostility_": "Unknown Vessel", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 14 June 09 at 1453 UTC while underway in position 12-59N 043-09E. Vessel took evasive maneuvers to prevent possible boarding (Operator, IMB).", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.150000000436762, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-293", + "dateofocc": "2009-06-13", + "subreg": "62", + "hostility_": "Skiffs", + "victim_d": "Chemical Tanker", + "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 13 June 09 at 0110 local time while underway in position 12-36N 043-25E. Vessel performed evasive maneuvers and contacted coalition warships via VHF channel 16. The skiffs later aborted the purs", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.41666669966753, 12.600000000033333] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-294", + "dateofocc": "2009-06-12", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "General Cargo Ship", + "descriptio": "OMAN: General cargo ship (CHARELLE) hijacked 12 June 09 at 1334 UTC while underway in position 21-55N 059-51E, approximately 11NM off the coast of Oman. An unknown number of armed men boarded and hijacked the vessel after pursuing it for some time (Oper", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.849999999987574, 21.916666700321173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-295", + "dateofocc": "2009-06-10", + "subreg": "62", + "hostility_": "Ten Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "OMAN: Bulk carrier reported attempted boarding 10 June 09 at 1420 UTC while underway in position 18-41N 058-01E, approximately 20NM off Ras al Madrakah. Approximately ten men armed with automatic weapons and an RPG in two speed boats chased the vessel a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.016666700319547, 18.68333330006368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-297", + "dateofocc": "2009-06-18", + "subreg": "53", + "hostility_": "Three Pirates", + "victim_d": "Yacht", + "descriptio": "ITALY: Yacht boarded, stolen 18 Jun 09 at approximately 2100 local time while underway in the Bay of Naples. Three armed men aboard a dinghy reportedly rammed the 38ft yacht and boarded the vessel, robbing the owner and his friend before forcing them to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [14.150000000398222, 40.666666699803386] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-153", + "dateofocc": "2010-04-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DEMOCRATIC REPUBLIC OF CONGO: Tanker robbed 24 Apr 10 while anchored at Boma. Robbers boarded the vessel and stole ship's properties before escaping unnoticed. No further details to provide (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-298", + "dateofocc": "2009-06-19", + "subreg": "62", + "hostility_": "Skiffs", + "victim_d": "Tanker", + "descriptio": "BAB EL MANDEB: Tanker reported suspicious approach 19 Jun 09 at 1220 UTC while underway in position 12-38N 043-21E. Armed men in skiffs chased the vessel while underway. The captain raised the alarm, sounded the whistle, and conducted evasive maneuvers.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.33333330023288, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-299", + "dateofocc": "2009-06-22", + "subreg": "62", + "hostility_": "White Skiff", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker (MAERSK PHOENIX) fired upon 22 Jun 09 at 0910 local time while underway in position 13-29N 050-20E. Approximately six to eight armed men in a white skiff approached the vessel and fired at it with an RPG. The vessel conducted evasiv", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.33333330023288, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-300", + "dateofocc": "2009-06-22", + "subreg": "62", + "hostility_": "Two White Skiffs", + "victim_d": "General Cargo Ship", + "descriptio": "GULF OF ADEN: General cargo vessel (BOLAN) fired upon 22 Jun 09 at 0850 local time while underway in position 13-33N 050-19E. Two small white skiffs with four to five armed men onboard chased and opened fire on the vessel while underway. The captain rai", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.316666700160454, 13.550000000198963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-301", + "dateofocc": "2009-06-18", + "subreg": "62", + "hostility_": "Three Speed Boats", + "victim_d": "Bulk Carrier", + "descriptio": "RED SEA: Bulk carrier reported suspicious approach 18 Jun 09 at 1500 UTC while underway in position 16-00N 041-24E, approximately 110NM northwest of Al Hudaydah, Yemen. Thirty men in three speed boats armed with guns and RPGs reportedly chased the vesse", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.399999999705699, 15.99999999996345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-1", + "dateofocc": "2009-12-26", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Sailing vessel", + "descriptio": "COLOMBIA: Sailing vessel robbed 26 Dec 09 in the early morning while anchored in Cartagena. Owner's sailboat was anchored on the outer south eastern edge of the anchorage and the dinghy was secured to a boat with galvanized chain. Robbers cut the chain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.700000000214231, 10.699999999702129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-2", + "dateofocc": "2009-12-11", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Catamaran", + "descriptio": "COLOMBIA: Catamaran (FRITZ THE CAT) robbed 11 Dec 09 during the night while anchored off Cartagena in front of club Nautico. Robbers approached the catamaran on a small boat, broke in through a hatch, and stole personal belongings including a computer,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.633333299550998, 10.866666700098733] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-3", + "dateofocc": "2009-12-05", + "subreg": "51", + "hostility_": "Suspicious boat", + "victim_d": "Sailing vessel", + "descriptio": "ATLANTIC OCEAN: Sailing vessel (MARANO) reported suspicious approach 5 Dec 09 at 1930 local time while underway in position 23-55N 023-28W, approximately 400NM southwest of the Canary Islands. The crew noticed white lights appearing to be coming from a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-23.466666699995415, 23.916666700385861] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-4", + "dateofocc": "2009-12-29", + "subreg": "57", + "hostility_": "Three Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA: Tanker robbed 29 Dec 09 at 2116 local time while anchored in position 06-17.73N 003-22.7E, Lagos anchorage. Three armed robbers boarded the vessel and stole crew personal belongings and ship¿s equipment before escaping approximately 2 hours la", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.378333300121767, 6.295277800058045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-5", + "dateofocc": "2009-12-29", + "subreg": "57", + "hostility_": "Small boat with armed pirates", + "victim_d": "Bulk carrier", + "descriptio": "NIGERIA: Bulk carrier fired upon 29 Dec 09 at 2010 UTC while anchored in position 06-10N 003-24E, Lagos anchorage. One small boat with armed robbers onboard opened fire on the vessel. Counter-piracy measures were enforced which prevented the boarding (", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.166666700036672] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-6", + "dateofocc": "2009-12-28", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "General cargo ship", + "descriptio": "NIGERIA: General cargo ship fired upon, robbed 28 Dec 09 at 0020 local time while anchored in Lagos anchorage. Robbers armed with automatic weapons boarded the vessel and opened fire at the crew, injuring three crewmembers. The robbers stole personal be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-7", + "dateofocc": "2009-12-19", + "subreg": "57", + "hostility_": "Fly boat", + "victim_d": "Supply vessel", + "descriptio": "NIGERIA: Supply vessel fired upon 19 Dec 09 at 0250 local time while in position 04-15N 008-11E, Ubit oil field. While at stand-by running security patterns at Ubit North anchorage, a fly boat was spotted approaching the vessel. Shot were fired and the", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.183333300173786, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-8", + "dateofocc": "2009-12-10", + "subreg": "57", + "hostility_": "Five Pirates", + "victim_d": "Fishermen", + "descriptio": "NIGERIA: Fishermen attacked, robbed 10 Dec 09 at 0700 local time at Beregede village along the Bonny River. Five men in one speedboat reportedly attacked two fishermen resulting in severe injuries. The robbers stole their 15 HP outboard engine before e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.133333300177696, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-9", + "dateofocc": "2009-12-28", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker (ST JAMES PARK) hijacked 28 Dec 09 at 1449 UTC while underway in position 12-58N 048-34E, approximately 97NM southwest of Al Mukalla, Yemen. Pirates attacked and hijacked the vessel while underway and are sailing the vessel toward S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.56666670032871, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-10", + "dateofocc": "2009-12-18", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Fishing dhow", + "descriptio": "GULF OF ADEN: Fishing dhow reportedly hijacked 18 Dec 09 while underway, exact position unknown. Men attacked and hijacked the vessel with its 15-crewmembers. The vessel¿s hull is red and white colored. It is believed the vessel may be used as a mothe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.733333300033564, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-11", + "dateofocc": "2009-12-30", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "INDIAN OCEAN: Vessel fired upon 30 Dec 09 at 0445 UTC while underway in position 11-42N 063-00E, approximately 500NM east of Socotra Island. Owners received a distress message that armed men opened fire on the vessel with automatic weapons. The vessel l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.999999999684746, 11.699999999734416] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-12", + "dateofocc": "2009-12-28", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Bulk carrier", + "descriptio": "INDIAN OCEAN: Bulk carrier (NAVIOS APOLLON) hijacked 28 Dec 09 at 1610 UTC while underway in position 03-22S 059-44E, approximately 268NM northeast of Port Victoria, Seychelles. Pirates attacked and hijacked the vessel while underway and are sailing it", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.733333300357003, -3.366666699615223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-415", + "dateofocc": "2008-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier fired upon on 28 Oct 08 at 1350 UTC while underway in position 13:17N-048:35E. A small speedboat was seen approaching the vessel from the starboard quarter. The general alarm was sounded and fire pumps were activated (hoses w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.58333330040108, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-416", + "dateofocc": "2008-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (LEANDER) fired upon, 28 Oct 08 at 0520Z while in position 13-23N 048-22E. Tanker was attacked by a group of three white, open boats. At 1300Z, the tanker was attacked again in position 12-54N 046-40E. The tanker reported a white m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.366666699962479, 13.383333299802359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-417", + "dateofocc": "2008-10-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 26 Oct 08 at 0820 UTC while underway in position 12:49.9N-046:11.2E. Four speed boats approached the vessel from the starboard bow astern. The crew was mustered on deck and high pressure fire hoses we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.18666669965819, 12.831666700166807] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-418", + "dateofocc": "2008-10-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo ship reported suspicious approach on 21 Oct 08 at 1500 UTC while underway in position near 14:08N-049:05E. The master reported that two speedboats were following the vessel. A coalition force dispatched a helicopter and the speedboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.083333299967592, 14.133333299601759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-419", + "dateofocc": "2008-10-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach on 29 Oct 08 at 0950 UTC while underway in position 02:13.5N-054:45.7E. A speedboat was sighted on the port bow at a distance of 14 nautical miles. The ship increased to speed of 15.2 knots. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.761666699733155, 2.225000000259911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-420", + "dateofocc": "2008-10-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE STRAIT: Tanker (AROWANA RANGER) boarded, robbed 31 Oct 08, at approximately 0115 local time while underway in position 01:11N-103:50E, west of Batu Berhenti in the east bound lane of the Traffic Separation Scheme. The tanker was enroute from S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.833333299714695, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-421", + "dateofocc": "2008-11-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: General cargo vessel boarded 2 Nov 08 at 0420 local time while in Apapa port, Lagos. Seven robbers boarded the vessel at berth. They broke the forecastle store padlocks, but escaped in a waiting speedboat as soon as the alert duty crew noticed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-422", + "dateofocc": "2008-10-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "DIVING VESSEL", + "descriptio": "CAMEROON: Diving support vessel boarded 25 Oct 08 at 0430 local time in Douala port. Robbers boarded the vessel while at berth. Alert shore security apprehended them. Nothing was stolen (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.680833299644348, 4.023055600080511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-423", + "dateofocc": "2008-11-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker fired upon on 2 Nov 08 at 1000 UTC while underway in position 13-02N 046-37E. A fishing boat, white hull and orange inboard, was observed on port bow. Suddenly, a small open boat, which had been hiding behind the fishing boat, appro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.616666700130736, 13.033333299835988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-424", + "dateofocc": "2008-11-08", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "Punta Pedernales, Ecuador: Five armed robbers in a small fishing boat boarded an anchored yacht on 08 Nov 08 at 1400 UTC in 00:48N 080:07W. They roughed up the crew and stole valuables and yacht's property. With the assistance of another yacht, the incid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.116666700073779, 0.800000000011494] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-101", + "dateofocc": "2009-03-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 4 Mar 09 at 0735 UTC while underway in position 12-17N 044-09E. One suspicious boat was spotted at the port bow quarter at a distance of approximately 2NM. The boat increased speed and tried to cross in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.149999999569786, 12.283333300036531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-102", + "dateofocc": "2009-03-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel (MV COURIER) fired upon 3 Mar 09 at 0612 UTC while underway in position 13-02N 048-43E. The master reported coming under fire by pirates with rifles and an RPG. The vessel sent out a distress call, which was received by the German f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.716666699928851, 13.033333299835988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-103", + "dateofocc": "2009-03-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (PRO ALLIANCE) fired upon 2 Mar 09 at 0649 UTC while underway in position 12-09N 045-33E, 45NM southeast of the port of Aden. Men armed with guns fired upon an oil tanker underway. The master reported to coalition warships and UKMTO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.550000000334535, 12.150000000333534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-104", + "dateofocc": "2009-03-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA: A merchant vessel reported coming under fire 6 March 2009 at 0658 UTC while underway in location 003:51S - 044:10E, approximately 265 NM east of Mombasa, Kenya. One skiff with six men came within 100 meters of the vessel and fired what was believe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.16666670036625, -3.850000000183854] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-105", + "dateofocc": "2009-03-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: At 091820z UTC Mar 09 M/V SHANGHIA VENTURE reports being attacked by pirates. RPG and rifles have been fired. Merchants vessels are advised to use extra precaution when transiting the area and maintain a vigilant lookout reporting any suspi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.700000000355089, 7.999999999704698] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-106", + "dateofocc": "2009-03-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "INDIAN OCEAN: At 10 0500 UTC Mar 09 M/V MAR REINA reports being attacked by pirates. Small arms have been fired. Position is close to the attack from last nigh attack on SHANGHAI VENTURE.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.183333300024458, 8.100000000337502] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-107", + "dateofocc": "2009-03-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: While underway, OOW onboard a bulk carrier noticed an unidentified and unlit target on the radar about 9 nautical miles on starboard bow. Target did not transmit AIS signal and did not respond to calls on VHF radio. About 45 minutes later,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.466666700245696, 7.933333299940841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-108", + "dateofocc": "2009-03-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "KAKINADA ANCHORAGE, INDIA: Robbers boarded an anchored bulk carrier by climbing thru the hawse pipe. When sighted by duty watchmen, robbers jumped overboard and escaped with ship's stores. Port control and agent informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.025000000294142, 23.036111099963136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-109", + "dateofocc": "2009-03-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: TANKER BOARDED 11 MAR 09 AT 0252Z WHILE ANCHORED IN POSITION 06-19N 003-25E, LAGOS ANCHORAGE. MEN ARMED WITH GUNS, KNIVES, AND IRON RODS BOARDED THE VESSEL AND ASSULTED THE CREW. THE CAPTAIN AND ANOTHER CREW MEMBER WERE SERIOUSLY INJURED. THE CA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.416666700172584, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-110", + "dateofocc": "2009-03-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOUS APPROACH 11 MAR 09 AT 0520Z WHILE UNDERWAY IN POSITION 13-16N 049-44E. A SUSPICIOUS BOAT WAS SIGHTED DRIFTING AT 5 MILES DISTANCE ON THE STARBOARD BEAM. THE VESSEL CONTINUED IT'S TRANSIT, AND THE DISTANCED TO THE S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.733333300033564, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-111", + "dateofocc": "2009-03-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "INDIAN OCEAN:VESSEL REPORTED SUSPICIOUS APPROACH 13 MAR 09 AT 0713Z WHILE UNDERWAY IN POSITION 07-11N 058-50E. THE VESSEL REPORTED BEING CHASED BY ONE SPEED BOAT WITH SIX MEN ONBOARD ARMED WITH AK-47S. THE MASTER CONDUCTED EVASIVE MANEUVERS AND THE MEN I", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.833333300058086, 7.183333300141442] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-112", + "dateofocc": "2009-03-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "INDIAN OCEAN:VESSEL FIRED UPON 11 MARCH 09 AT 2240Z WHILE UNDERWAY IN POSITION 04-02S 046-33E, APPROXIMATELY 410 NM EAST OF MOMBASA, KENYA. ONE WHITE SKIFF WITH AN UNKNOWN NUMBER OF ASSAILANTS CAME WITHIN 100 METERS OF THE VESSEL AND FIRED MACHINE GUNS A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.550000000366879, -4.033333299753622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-302", + "dateofocc": "2009-06-19", + "subreg": "63", + "hostility_": "Pirate", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH: Bulk carrier robbed 19 Jun 09 at 1220 UTC while berthed in Chittagong port. While reading the forward drafts from the jetty, the officer on duty was robbed of his personal belongings. The officer called for help but the robber managed to esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-303", + "dateofocc": "2009-06-19", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH: Container ship robbed 19 Jun 09 at 0400 local time while anchored in position 22-10N 091-46E, Chittagong anchorage. Armed robbers boarded the vessel using hooks and lines while another two remained in a nearby boat. They threatened the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-304", + "dateofocc": "2009-06-12", + "subreg": "63", + "hostility_": "Four Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH: Bulk carrier robbed 12 Jun 09 at 0300 local time while anchored in position 22-14N 091-42E, Chittagong anchorage. Four robbers boarded the vessel while four others waited in a nearby boat. The men climbed onboard using a hook and line and th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 22.233333299593937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-121", + "dateofocc": "2009-03-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "BAB-EL-MANDEB: Vessel reported suspicious approach 16 Mar 09 at 1505 UTC while underway in position 12-33N 043-25E. Five men in two speed boats armed with guns approached the vessel from the port bow. The captain conducted evasive maneuvers while report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.41666669966753, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-305", + "dateofocc": "2009-06-22", + "subreg": "71", + "hostility_": "Seven Pirates", + "victim_d": "Tug", + "descriptio": "SINGAPORE: Tug (SALVICEROY) boarded 22 Jun 09 at 1600 local time while anchored in position 01-08N 103-35E, off Nipa transit anchorage. Seven robbers in a small wooden boat approached the portside of the vessel. Three of the robbers reportedly armed wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-306", + "dateofocc": "2009-06-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker (SIGLOO DISCOVERY) robbed 27 June 09 at 0040 local time while underway in position 02-47.1N 105-07.6E, approximately 33NM southwest of Pulau Mangkai. Six robbers armed with knives, crowbars and batons boarded the vessel via the b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.126666700287217, 2.785000000206082] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-307", + "dateofocc": "2009-06-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: Eight pirates armed with long knives boarded a general cargo vessel underway in 02-58N 105-11E at 251930 UTC Jun. They held hostage an AB and Second Officer on watch. Pirates stole cash and belongings and escaped in a small boat, caution", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.183333299713411, 2.966666699573466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-308", + "dateofocc": "2009-06-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: Five pirates armed with long knives boarded a general cargo vessel underway in 02-58N 105-14E at 251340 UTC Jun. Pirates stole cash and belongings and escaped in a small boat, caution advised (Navarea XI 405/09).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.233333299580124, 2.966666699573466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-309", + "dateofocc": "2009-06-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ABIDJAN ANCHORAGE IVORY COAST: Four armed robbers in a boat came close to a bulk carrier at anchor. Two robbers boarded and were cutting the ship line when the alert duty watchman sighted and shouted at the men and also reported to the duty officer. One", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.049722199975236, 5.216388900195511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-310", + "dateofocc": "2009-06-24", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier reported attempted boarding 24 June 09 at 1930 UTC while anchored in position 01-20.2S 117-02.8E, Balikpapan outer anchorage. Two robbers in a small boat attempted to board the vessel. The alert crew raised the alarm and sounded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.046666700169112, -1.336666699810337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-311", + "dateofocc": "2009-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: General cargo ship (WHITE TOKIO) robbed 28 June 09 at 0115 local time while underway in position 01-57.18N 104-47.83E, approximately 34NM south of Pulau Aur, Malaysia. Six robbers boarded the vessel stealing all cash on board. No one w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.79694440029823, 1.952777800347064] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-312", + "dateofocc": "2009-06-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "LAGOS, NIGERIA: Armed robbers attempted to board an anchored bulk carrier using hooks and ropes. Noticing the robbers the ship's crew tried to drive away the attackers. One robber managed to board but was forced back. In the attempt to board the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-313", + "dateofocc": "2009-06-30", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "ATLANTIC OCEAN: General cargo ship reported attempted boarding 30 Jun 09 at 0500 UTC while underway in position 11-20N 017-15W, approximately 60NM off the coast of Guinea Bissau. Twelve armed men in a boat reportedly attempted to board the vessel while", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-17.250000000437353, 11.333333299870958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-13", + "dateofocc": "2009-12-27", + "subreg": "63", + "hostility_": "Three small vessels", + "victim_d": "Container ship", + "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 27 Dec 09 at 1230 local time while underway in position 08-28N 061-01E, approximately 660NM northeast of Eyl, Somalia. Vessel detected a white-hull fishing vessel with two small craft on each sid", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.016666700416522, 8.46666670020096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-14", + "dateofocc": "2009-12-21", + "subreg": "63", + "hostility_": "Three speedboats", + "victim_d": "Tanker", + "descriptio": "INDIAN OCEAN: Tanker reported suspicious approach 21 Dec 09 at 1710 UTC while underway in position 17-09N 066-06E, approximately 400NM southwest of Mumbai, India. A group of armed men in three speedboats pursued the vessel. Evasive maneuvers, including", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.100000000414525, 17.149999999595934] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-15", + "dateofocc": "2009-12-25", + "subreg": "63", + "hostility_": "Six pirates", + "victim_d": "General cargo ship", + "descriptio": "BANGLADESH: General cargo ship (SANTA SURIA) robbed 25 Dec 09 at 0229 local time while anchored in position 22-14.42N 091-43E, Chittagong port anchorage B. Six robbers armed with small knives boarded the vessel by using a small wooden boat to approach i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.245000000133928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-16", + "dateofocc": "2009-12-28", + "subreg": "71", + "hostility_": "Five or six small boats", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT: Tanker (GULF CORAL) reported attempted boarding 28 Dec 09 at 2030 local time while underway in position 01-04.7N 103-38.5E. About five or six unlit boats approximately 7-8 meters in length approached the tanker¿s bow on both sides. On", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.634722199700093, 1.068611100019382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-17", + "dateofocc": "2010-01-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN: Tanker (PRAMONI) hijacked 1 Jan 10 at 0944 UTC while underway in position 12-31N 047-17E, approximately 135NM southeast of Aden, Yemen. Pirates hijacked the vessel with its 24 crewmembers and are sailing the vessel to an undisclosed locat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.283333300269135, 12.51666670019705] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-18", + "dateofocc": "2010-01-01", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Ro Ro", + "descriptio": "INDIAN OCEAN: RO/RO (ASIAN GLORY) hijacked 1 Jan 10 at 2250 UTC while underway in position 10-48N 061-54E, approximately 425NM southeast of Socotra Island. Pirates hijacked the vessel with its 25 crewmembers and are sailing the vessel to an undisclosed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.899999999918975, 10.800000000334876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-19", + "dateofocc": "2010-01-04", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Container ship", + "descriptio": "INDONESIA: Container ship robbed 4 Jan 10 at 0200 local time while berthed in position 06-05.86S 106-54.15E, Koja container terminal, Tanjung Priok. Robbers boarded the vessel and entered the engine room by breaking open the locks on the steering gear r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.902499999703821, -6.09750000035325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-20", + "dateofocc": "2009-12-30", + "subreg": "93", + "hostility_": "Pirate", + "victim_d": "Tanker", + "descriptio": "CHINA: Tanker robbed 30 Dec 09 at 0645 local time while anchored in position 22-41.4N 113-41.8E, Nansha anchorage. A duty crewmember on rounds noticed a robber on forecastle. He informed the duty officer on bridge who raised the alarm and alerted the cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.685555599816098, 22.684444399969721] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-21", + "dateofocc": "2010-01-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "COTE D'IVOIRE: Tanker robbed 5 Jan 10 at 2356 local time while anchored at Abidjan outer anchorage. Three robbers armed with long knives in a small boat boarded the tanker. One of the robbers a crewmember hostage and threatened him with a knife while th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.026666700194141, 5.33638890005551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-22", + "dateofocc": "2010-01-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 9 Jan 10 while underway in position 11-48.5N 043-39.8E, approximately 30NM northeast of the port of Djibouti. Four armed security team were cross decking from a launch after a rendezvous with the tanker", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.663333299846272, 11.808333299953745] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-23", + "dateofocc": "2010-01-03", + "subreg": "81", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship reported attempted boarding 3 Jan 10 at 0900 local time while underway in position 01-39.4N 132-45.3E, approximately 165NM northeast of Sorong. More than 10 robbers in three big boats chased and attempted to board the vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [132.755000000173482, 1.656666699827895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-449", + "dateofocc": "2010-11-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "Pirate action group in 01-00S 052-06E at 130938Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution. Pirate action group consisted of 1 mother ship with 4 persons onboard and 1 skiff.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.099999999961767, -0.99999999968702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-425", + "dateofocc": "2008-11-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "Lagos, Nigeria:Two robbers armed with knives boarded and anchored tanker in 06:19N 003:26E at 2205 local time from the stern. They overpowered the duty crew, tied up his hands, stole his walkie-talkie and threatened him that they would kill him if he scr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.433333300244954, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-426", + "dateofocc": "2008-11-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO", + "descriptio": "Gulf of Aden: Somolia pirates hijacked a general cargo ship underway in 12:46N 045:56E at 1241 UTC. There was no radio communication or any alarm received from ship. There are 13 crew members onboard. Further information waitig.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.933333300270419, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-427", + "dateofocc": "2008-11-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "Chittagong, Bagladesh: Five robbers boarded an oil tanker at anchorage. Robbers jumped overboard when sighted by ship's crew. Nothing stolen and no injury to crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-428", + "dateofocc": "2008-11-15", + "subreg": "61", + "hostility_": "Pirate Hijacking", + "victim_d": "MT Sirius Star", + "descriptio": "450 Miles South-East of Mogadishu:It has been reported that the MT Sirius Star (VLCC) was attacked some 450 NM south-east of Mogadishu. The Liberian flagged vessel is the largest to be hijacked to date, with a deadweight (DWT) of 319,430 tons. Furthermor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.716666699928851, -4.683333299819594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-429", + "dateofocc": "2008-11-09", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "VENEZUELA: Sailboat (CHILL) boarded, captain killed 9 Nov 2008 at 1730 local time while anchored at position 10:17N 064:45W at Isla Borracha. Three men onboard a small fishing pibelow with water, they shot him in the chest. Another couple from a sailb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.749999999725162, 10.2833332999719] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-430", + "dateofocc": "2008-11-08", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "ECUADOR: Yacht boarded, robbed 8 Nov 2008 at 0800 local time while anchored in position 00-48N 080-07W, Punta Pedernales. Five armed robbers boarded the yacht at anchor. They roughed up the crew and stole money and electronic items. Injuries consiste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.116666700073779, 0.800000000011494] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-431", + "dateofocc": "2008-11-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Tanker robbed on 1 Nov 2008 at 2205 local time while anchored at 06-19N 003-26E, Lagos OPL anchorage. Two robbers armed with knives boarded an anchored tanker from the stern. They overpowered the duty crewmember, tied up his hands, stole his ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.433333300244954, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-432", + "dateofocc": "2008-11-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker (KARAGOL) hijacked 12 Nov 08 at 1415 UTC while underway in position 13-07N 046-48E. The tanker was in transit from Haifa, Israel to Mumbai, India with a cargo of petroleum products. There are 14 Turkish crewmembers onboard (", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.799999999700447, 13.116666700396308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-433", + "dateofocc": "2008-11-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker (STOLT STRENGTH) hijacked 10 Nov 08 at 1440 UTC while underway in position 13-56N 049-31E. The vessel was in route to Kandla, India from Senegal with a cargo of phosphoric acid, according to sources. Twenty-three Filipino c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.516666699594964, 13.933333300134905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-434", + "dateofocc": "2008-11-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo vessel (CEC FUTURE) hijacked 7 Nov 08 at 1320 UTC while underway in position 12-46N 045-56E. At 1235 UTC, (CEC FUTURE) was in contact with a coalition warship and was reporting that she was being pursued by a speedboat with si", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.933333300270419, 12.766666700429994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2008-435", + "dateofocc": "2008-11-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "GULF OF ADEN: Vessel reported suspicious approach on 3 Nov 08 at 0820 UTC while underway in position 13-13N 047-46E. Pirates in three speedboats approached from the port side at approximately three miles. Each boat had approximately four to five persons", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.766666699763221, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-113", + "dateofocc": "2009-03-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN:BULK CARRIER FIRED UPON 10 MAR 09 AT 0500Z WHILE UNDERWAY IN POSITION 08-06N 059-11E. FOUR MEN IN A LIGHT BLUE BOAT APPROACHED THE VESSEL ARMED WITH AUTOMATIC RIFLES AND BEGAN FIRING SHOTS TOWARD THE STARBOARD SUPERSTRUCTURE. THE VESSEL COND", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.183333300024458, 8.100000000337502] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-114", + "dateofocc": "2009-03-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN:BULK CARRIER SHANGHAI VENTURE FIRED UPON 09 MAR 09 AT 1751Z WHILE UNDERWAY IN POSITION 08-01N 058-43E. DUTY OFFICER ONBOARD NOTICED ONE SPEED BOAT APPROACHING FROM 1.5 NM AWAY AT A SPEED OF APPROXIMATELY 17 KTS. THE CAPTAIN ALERTED THE CREW", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.716666700252233, 8.016666699601899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-115", + "dateofocc": "2009-03-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "INDIAN OCEAN:VESSEL FIRED UPON 6 MARCH 09 AT 0658Z WHILE UNDERWAY IN POSITION 03-51S 044-10E, APPROXIMATELY 265NM EAST OF MOMBASA, KENYA. ONE SKIFF WITH SIX MEN CAME WITHIN 100 METERS OF THE VESSEL AND FIRED WAT WAS BELIEVED TO BE A ROCKET PROPELLED GREN", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.16666670036625, -3.850000000183854] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-116", + "dateofocc": "2009-03-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 5 Mar 09 at 0345 local time while underway in position 07-56N 065-28E. The officer on watch onboard the vessel noticed an unidentified and unlit target on the radar about 9NM away on the starboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.466666700245696, 7.933333299940841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-117", + "dateofocc": "2009-03-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "EAST COAST SOMALIA: While underway a fishing vessel was chased by a skiff with six pirates armed with automatic weapons. Vessel increased speed and headed into the waves/swell and thus the skiff was prevented from advancing towards the fishing vessel. La", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.833333300058086, 7.183333300141442] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-118", + "dateofocc": "2009-03-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "MOGADISHU, SOMALIA: While underway, a general cargo ship was chased by a speed boat launched from a mother vessel. Pirates fired RPG and automatic guns at the vessel. aster made evasive maneuvers and escaped the attack. Once crew received minor injuries", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.550000000366879, -4.033333299753622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-119", + "dateofocc": "2009-03-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "NIGERIA: Passenger boats attacked, women abducted 14 Mar 09 while underway from Bonny Island to Part Harcourt. According to a Nigerian military spokesman, gunmen attacked two passenger boats, forcing the men to jump overboard. They then abducted at leas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.016666699569555, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-120", + "dateofocc": "2009-03-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MOTOR VESSEL", + "descriptio": "CAMEROON: Vessel (SIL TIDE) attacked, crewmembers kidnapped 14 Mar 09 while underway approximately 8NM off the coast of Bakassi, on the Nigeria-Cameroon border. According to security officials, approximately 30 gunmen in speedboats attacked the vessel e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.833333300239758, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-122", + "dateofocc": "2009-03-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "GULF OF ADEN: Cargo vessel (DIAMOND FALCON) fired upon 14 Mar 09 at 0629 UTC while underway in position 13-42N 049-19E, approximately 50NM southeast of Al Mukalla, Yemen. Two skiffs with men onboard armed with automatic weapons and RPGs fired upon the v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.31666670012811, 13.699999999799104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-314", + "dateofocc": "2009-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "OMAN: The master of a bulk carrier reported that one small boat attacked the vessel from her stern and fired a rpg at her. Master took evasive action, increased speed and managed to escape. The sea condition at the time of the incident was beaufort scale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.496666699759487, 14.854999999688062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-315", + "dateofocc": "2009-07-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Chemical tanker (SIEHEM PEACE) boarded, crewmembers kidnapped 5 Jul 09 at 2045 local time while underway, approximately 20NM from Escravos. The militant organization MEND claimed it seized the six crewmembers from the vessel and would hold the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.109999999854097, 5.550833300041404] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-316", + "dateofocc": "2009-07-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (HORIZON I) hijacked 8 Jul 09 at 0530 UTC while underway in position 13-44N 050-43E. Owners have verbally confirmed that pirates have taken hostage of crewmembers and are now sailing the vessel. There are currently 23 Turkish", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.716666699993539, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-317", + "dateofocc": "2009-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 4 Jul 09 at 1800 UTC while underway in position 14-51.3N 058-29.8E, approximately 220NM southeast of Sawqirah, Oman. The master of the vessel reported that one small boat approached the vessel dur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.496666699759487, 14.854999999688062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-318", + "dateofocc": "2009-07-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship robbed 6 Jul 09 at 1804 UTC while anchored in position 22-11N 91-46E, Chittagog achorage. The duty officer detected some boats near the stern of the vessel at anchor. The crew mustered and saw 15 robbers onboard. A duty watchm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-319", + "dateofocc": "2009-07-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CÔTE D'IVOIRE: Tanker robbed 12 Jul 09 at 2336 UTC while anchored in position 05-12.5N 004-03.9E, Abidjan anchorage. Two robbers armed with knives boarded the tanker via the forecastle. The robbers stole the ships stores, and escaped in a small boat w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.059999999955039, 5.208333299560422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-320", + "dateofocc": "2009-07-12", + "subreg": "57", + "hostility_": "MILITANTS/PIRATES", + "victim_d": "OIL FACILITY", + "descriptio": "NIGERIA: Oil facility attacked 12 Jul 09 at 2230 local time at the Atlas Cove jetty in Lagos. Four naval officers and four civilians were killed in an attack reportedly carried out by MEND. The militants exchanged gunfire with naval officers guarding t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-321", + "dateofocc": "2009-07-13", + "subreg": "62", + "hostility_": "FOUR PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (A ELEPHANT) fired upon 13 Jul 09 at 0420 UTC while underway in position 12-20.8N 043-54.3E, approximately 30NM southeast of Bab el Mandeb. Four pirates armed with automatic weapons in a skiff, operating with the previously hijacked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.904999999593315, 12.346666699571017] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-322", + "dateofocc": "2009-07-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "GULF OF ADEN: Dhow (NAFEYA) hijacked 10 Jul 09 while underway approximately 14NM off the coast of Bosasso, Somalia. Pirates boarded and hijacked the dhow with a crew of 11 Indians. The vessel was used as a mothership in a failed attack on the tanker (A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.66666669999745, 11.083333299638014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-31", + "dateofocc": "2010-01-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "RESEARCH VESSEL", + "descriptio": "INDIA: Research vessel boarded 22 Jan 10 at 0140 local time while in position 17-00.3N ¿ 082-18.8E, Kakinada anchorage. Three robbers in a small fishing boat approached the vessel from the stern. One robber boarded the vessel thru the mooring port hole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.313333300241823, 17.005000000252267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-323", + "dateofocc": "2009-07-12", + "subreg": "71", + "hostility_": "FIVE PIRATES", + "victim_d": "TUG", + "descriptio": "SINGAPORE: Tug (WEIHAI 5) robbed 12 Jul 09 at 0225 local time while underway in position 01-08.29N 103-46.81E, approximately 2nm southeast of Raffles Lighthouse, Singapore Strait. Five men armed with knives boarded the vessel as it was underway. The rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.767777799552277, 1.141388899816434] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-324", + "dateofocc": "2009-07-12", + "subreg": "71", + "hostility_": "FIVE PIRATES", + "victim_d": "TUG", + "descriptio": "SINGAPORE: Tug (KENRYO) robbed 12 Jul 09 at 0200 local time while underway in position 01-09.90N 103-46.0E, approximately 2NM southeast of Raffles Lighthouse, Singapore Strait. Five men armed with knives boarded the vessel as it was underway, towing a b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.766666699775612, 1.164999999847907] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2009-325", + "dateofocc": "2009-07-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier robbed 6 Jul 09 at 1110 UTC while anchored in position 00-01N 117-36E, Bontang anchorage. Robbers gained access to the vessel via the anchor chain and through the hawse pipe cover, which had been secured by the crew. They stole s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.599999999831766, 0.016666700242467] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-24", + "dateofocc": "2010-01-12", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship robbed 12 Jan 10 at 0205 local time while underway in position 10-15N 107-04E, Vung Tau anchorage. Three robbers boarded the vessel while underway near the Vung Tau anchorage. The robbers proceeded to the forward store and stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-25", + "dateofocc": "2010-01-12", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "SAILING VESSEL", + "descriptio": "CAPE VERDE: Sailing vessel (ENEA) stolen 12 Jan 10, marina of Mindelo. The 38 foot sailboat was stolen during the night from in front of the marina of Mindelo where it was anchored. The vessel has a blue hull with a yellow line (Noonsite.com).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-24.996666700233789, 16.898333300235265] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-26", + "dateofocc": "2010-01-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (MILTIADES) fired upon 17 Jan 10 at 1630 UTC while underway in position 12-39.3N 047-33.9E, approximately 140NM southwest of Al Mukalla, Yemen. Four men armed with automatic weapons in a white colored skiff approached", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.565000000269265, 12.655000000156519] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-27", + "dateofocc": "2010-01-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (JAG LAYAK) fired upon 16 Jan 10 at 0425 UTC while underway in position 12-58N 048-42E, approximately 95NM southwest of Al Mukalla, Yemen. Five armed men in a high speed skiff approached the vessel from the direction of the sun, ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.700000000031707, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-28", + "dateofocc": "2010-01-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 20 Jan 10 at 0330 UTC while underway in position 13-23N 047-22E, approximately 14NM south of the Yemeni coast and 140NM east of Aden, Yemen. Vessel reported coming under fire from one skiff with seven men onboard. The ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.366666699930136, 13.383333299802359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-29", + "dateofocc": "2010-01-20", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ECUADOR: Bulk carrier boarded 20 Jan 10 at 0220 local time while anchored in position 02-46.5S 080-26.6W, Guayaquil outer anchorage. Robbers boarded the vessel and tried to gain access into the forward store. The duty crew noticed them and informed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.443333299859432, -2.774999999901809] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-30", + "dateofocc": "2010-01-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "INDIAN OCEAN: Unidentified dhow hijacked on or about 5 Jan 10 while underway, exact location unknown. The vessel was reported underway 26 Jan 10 in position 13-08N 056-56E, likely conducting mothership operations (UKMTO).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.933333299726826, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-448", + "dateofocc": "2010-11-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Pirate action group in 13-12N 048-59E at 130708Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution. The pirate action group consisted of 2 skiffs, white hull with atleast 6 persons on board.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.983333300234165, 13.200000000232592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-32", + "dateofocc": "2010-01-21", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "PHILIPPINES: Tanker (BRITISH HOLLY) robbed 21 Jan 10 at 1400 local time while anchored in position 14-33.74N 120-55.24E, Manila Bay. The duty crew noticed wet footprints on the deck. Upon inspection of the whole deck, he discovered the ship's inflatabl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.920555600405351, 14.56222220029764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-33", + "dateofocc": "2010-01-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "153 MILES EAST OF SOCOTRA ISLAND: Possible mothership activity noted near position 13-08N 056-56E on 26 January at 1128 UTC. Mariners are warned to avoid this area if possible as it will remain high risk for at least the next 24-48 hours. If necessary t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.933333299726826, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-34", + "dateofocc": "2010-02-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: At 1325 UTC a merchant vessel was under attack by two skiffs in position 12-44N 047-27E. One skiff had four persons onboard and was white and blue, the other skiff was the same color. While navigating in the region vessels are urged to ope", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.449999999766419, 12.73333329973633] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-35", + "dateofocc": "2010-02-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo ship (RIM) hijacked 3 Feb 10 at 0813 UTC while underway in position 13-04N 047-04E, approximately 120NM east of Aden, Yemen. Pirates boarded and hijacked the vessel. There is no further information to provide at this time (ONI, AP).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.066666699830535, 13.066666699630275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-439", + "dateofocc": "2010-11-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker boarded 7 Nov 10 at 0140 local time while at anchor in position 01-41N 101-27E, in Dumai Inner Anchorage. Two robbers boarded a product tanker at anchor. Duty watch keepers spotted the robbers and raised the alarm. The robbers jumped o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-440", + "dateofocc": "2010-11-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier robbed 6 Nov 10 at 1953 local time while underway in position 01-01N 106-41E, approximately 40NM west of Kepulauan Tembelan. Six pirates armed with long knives boarded a bulk carrier underway. Pirates entered the bridge and tied", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.683333300211586, 1.016666700274811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-441", + "dateofocc": "2010-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Armed pirates attacked and boarded a general cargo ship underway with intent to hijack. The ship sent a distress message and all crew mustered in the citadel. Indian authorities received the message and sent two warships and a maritime aircr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.016666699646578, 17.216666700259111] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-442", + "dateofocc": "2010-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "ARABIAN SEA: Pirates in a skiff chased a chemical tanker (HANNIBAL II) underway. Pirates opened fire on her and boarded. Crew locked in master's cabin. Awaiting further details.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.083333299618062, 11.433333299604385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-443", + "dateofocc": "2010-11-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "RORO VESSEL", + "descriptio": "300 MILES SOUTHEAST OF MOGADISHU, SOMALIA: Seven pirates armed with automatic weapons chased a RORO vessel. Effective anti-piracy measures resulted in the pirates aborting the attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.53333329966739, -0.833333300189679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-444", + "dateofocc": "2010-11-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN, KENYA:Piracy action group reported in 04-01S 041-12E at 120355Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.200000000238788, -4.016666699681195] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-445", + "dateofocc": "2010-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "ARABIAN SEA: Piracy action group reported in 17-37N 065-45E at 111700Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.750000000448154, 17.616666700092196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-446", + "dateofocc": "2010-11-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel pirated in 17-27N 065-07E at 121651Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.116666700279325, 17.449999999695592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-447", + "dateofocc": "2010-11-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "KENYA: A hijacked fishing vessel was observed being used by pirates as a mother ship at 1340Z on 12 November approximately 125 miles east of Mombasa, at 03-56S 041-45E. This area will remain high risk for atleast 24-48 hours. Caution advised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.749999999672013, -3.933333300020138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-132", + "dateofocc": "2011-02-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDIAN OCEAN: Yacht (ING) was hijacked 24 Feb while underway in position 14-30N 058-19E, approximately 250NM NE of Socotra Island, Yemen. Pirates took the crew of seven, including three minors, hostage. (ONI, Open press)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.316666700419148, 14.500000000364594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-450", + "dateofocc": "2010-11-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "KENYA: Bulk cargo carrier (AFRICAN EAGLE) fired upon on 16 Nov at 0642Z while waiting for berthing instructions at position 04-35S 039-57E, approximately 17 miles east of Mombasa, Kenya. Individuals in one skiff conducted the attack. (IMB and Open Press", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.949999999973556, -4.583333300086167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-451", + "dateofocc": "2010-11-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "WESTERN INDIAN OCEAN, KENYA: Six pirates wearing masks, armed with guns and rpg in a skiff fired upon a drifting bulk carrier with intent to hijack. Ship increased speed and took evasive maneuvers. The pirates aborted the attempted boarding due to the ba", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.958333299560081, -4.028333300396469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-452", + "dateofocc": "2010-11-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: POL Tanker fired upon (SAMURAI) on 16 Nov at 0645 local time while underway in position 05-09N 066-42E, approximately 412 miles west of Male, Maldives. Individuals in one skiff conducted the attack. A supporting mother ship was nearby. (IM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.699999999714464, 5.150000000107184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-453", + "dateofocc": "2010-11-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "INDIAN OCEAN: Fishing vessels fired upon 17 Nov at 0516Z while underway in position 06-34S 050-01E, approximately 639 miles east of Dar-es-Salaam, Tanzania. Pirates operating out of two skiffs fired rpgs at the vessels. Armed security fired warning shot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.016666700060796, -6.566666700078429] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-454", + "dateofocc": "2010-11-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA, GULF OF ADEN: Pirate action group in 16-54N 057-25E at 180920Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.416666700120288, 16.900000000262366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-455", + "dateofocc": "2010-11-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate action group in 06-12S 050-02E at 180953Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.033333300133222, -6.200000000214914] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-115", + "dateofocc": "2011-02-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker was robbed 17 Feb at 2030 local time while underway 11NM off Kota Kinabalu, Sabah, Malaysia. Five robbers wearing masks armed with long knives boarded the vessel, tied up all crew, and stole tanker and crew cash and personal belongings a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.06666670026334, 5.983333299742867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-116", + "dateofocc": "2011-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA:A bulk carrier underway noticed a mother vessel at a distance of 8 miles and two skiffs at a distance of 2 miles. The skiffs approached the vessel at approximately 21 knots. Master alerted the crew instructed them to proceed to the citadel an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.400000000255432, 15.333333300000277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-117", + "dateofocc": "2011-02-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Oil tanker (BANI YAS) was fired upon 25 Feb at 0952 UTC while underway in position 11-41N 061-29E, approximately 420NM east of Socotra Island, Yemen. One skiff and a mother ship with five pirates onboard reportedly fired automatic weapons", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.483333300188747, 11.683333299837273] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-118", + "dateofocc": "2011-02-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 11-41N 061-29E at 0952Z on 25 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [61.483333300188747, 11.683333299837273] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-119", + "dateofocc": "2011-02-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-19N 044-06E at 1416Z on 19 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.099999999703073, 12.316666699830876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-120", + "dateofocc": "2011-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA: A container ship underway noticed a mother vessel at a distance of 4.5 miles. At around 3 miles the mother vessel was seen to launch a white colored attack skiff. The skiff approached the vessel at approximately 24 knots. Master alerted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.649999999589056, 14.766666699595362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-121", + "dateofocc": "2011-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (GREAT LEGEND) was fired upon 25 Feb at 0829 UTC while underway in position 14-28 058-39E, approximately 250NM ENE of Socotra Island, Yemen. A skiff with five pirates onboard pursued the vessel and fired automatic weapons and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.649999999589056, 14.466666700395024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-122", + "dateofocc": "2011-02-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (DOVER) was hijacked 28 Feb at 0606 UTC while underway in position 18-48N 058-26E, approximately 35NM SE of Madrakah, Oman. Pirates took hostage the crew of 23. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.416666700152575, 18.799999999694251] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-123", + "dateofocc": "2011-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "295 MILES SOUTHEAST OF SALALAH, OMAN: A container ship noticed an orange and blue colored fishing vessel doing 10 kots at a distance of 3 miles. The fishing vessel was seen to launch a white skiff which approached the container vessel at around 24 knots.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.835000000085131, 14.986666700088108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-124", + "dateofocc": "2011-02-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (KIRAN ASYA) was fired upon 27 Feb at 0534 UTC while underway in position 20-29N 060-08E, approximately 66NM east of Masirah, Oman. A single skiff with seven pirates with small arms and RPGs fired upon the vessel, but it evade", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.133333300190031, 20.483333299762137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-125", + "dateofocc": "2011-03-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDIAN OCEAN: Yacht (CAPRICORN) was fired upon 2 Mar at 0752 UTC while underway in position 12-11N 063-58E, approximately 580NM east of Socotra Island, Yemen. Automatic weapons were fired, and pirates boarded but were repelled by armed security personne", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.96666669974752, 12.183333300303104] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-126", + "dateofocc": "2011-03-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Fishing vessel attacked in 02-24S 046-07E at 1100Z on 01 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.116666699664904, -2.399999999552449] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-127", + "dateofocc": "2011-03-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 11-50N 058-48E at 0923Z on 03 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.800000000088517, 11.83333330033679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-128", + "dateofocc": "2011-03-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "OMAN-SOUTHEAST COAST: A dhow with white and black hull, 1 speed boat with four armed pirates with automatic weapons ad rpgs chased a tanker underway. The tanker made evasive maneuvers, fire hoses, increased speed and sent SSAS alert. The skiff later abor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.531666699723758, 17.519999999688821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-129", + "dateofocc": "2011-03-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Crude oil tanker (FRONT PRIDE) was fired upon 3 Mar at 1113 UTC while underway in position 09-59N 062-26E, approximately 600NM ESE of Socotra Island, Yemen. Pirates fired automatic weapons and RPG on the vessel. They attempted to board usi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.433333300354377, 9.983333299872243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-350", + "dateofocc": "2011-07-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BANGLADESH: General cargo ship was boarded 29 July at 0018 UTC while anchored in position 22-03.76N 091-46.31E, approximately 11NM south of Pattanga Lt House, Chittagong OPL, Bangladesh. Thirteen robbers boarded the vessel. The deck cadet and bosun saw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.771944400394091, 22.062777800340882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-351", + "dateofocc": "2011-07-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF GUINEA: Tanker experienced an attempted boarding 30 July at 1934 UTC while drifting in position 05-42N 003-05E, approximately 48NM southwest of Lagos, Nigeria. An inflatable boat with six people onboard approached at high speed and attempted to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.083333300278639, 5.700000000439729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-352", + "dateofocc": "2011-08-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Five pirates armed with rpgs and guns in a 12 meter white plastic skiff chased and fired upon a general cargo ship underway. Onboard security team fired warning shots resulting in the pirates moving away. A warship in the vicinity carried o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.693333299748133, 13.146666700136507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-353", + "dateofocc": "2011-08-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "POINT NOIRE ANCHORAGE, CONGO: Ship watchman onboard an anchored container vessel spotted four armed robbers on the main deck. He immediately informed the duty officer who raised the alarm, alerted all crew members and informed the port control. Seeing cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.778333300213603, -4.76500000035287] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-354", + "dateofocc": "2011-08-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: An LPG tanker was boarded 8 August at 0200 LT while at anchor in position 01-15N 103-27E, approximately 13NM west of Singapore. Four robbers armed with long knives boarded an anchored LPG tanker. They entered the engine room, tied up the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.459722199716907, 1.261111100000903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-261", + "dateofocc": "2010-07-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOUTHERN RED SEA: Possible pirate activity in 14-18N 042-05E at 291023 UTC Jul. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.083333299741241, 14.299999999998363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-355", + "dateofocc": "2011-08-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ASSAB, ERITREA, RED SEA: Tweleve skiffs with five to eight pirates in each approached a bulk carrier underway. As the skiff closed guns and ladders were noticed. Warning flares were deployed by the onboard security team. The skiffs continued to approach", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.081666699571258, 13.119999999726417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-356", + "dateofocc": "2011-08-04", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL", + "descriptio": "MAMONAL INNER ANCHORAGE, COLOMBIA: Six robbers in a wooden speed boat attempted to board an anchored chemical tanker via the anchor chain. Alert duty A/B noticed the robbers, raised the alarm and flashed lights on them. Upon seeing crew alertness the rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.527777800034812, 10.321666700022661] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-357", + "dateofocc": "2011-08-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: A robber boarded an anchored container ship via the stern and tried to steal the ship's rope. The alert security guard spotted the robber and informed the duty officer who raised the alarm. Seeing crew alertness the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.721666699777245, 22.176666700167743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-358", + "dateofocc": "2011-08-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Bulk carrier (CARAVOS HORIZON) was boarded by six pirates on 11 August at 1115 UTC while underway in position 15-09N 041-55E, approximately 44NM southwest of Ras Isa, Yemen. Three skiffs behind a mothership approached the bulk carrier at high s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.916666700068674, 15.150000000430566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-359", + "dateofocc": "2011-08-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "12 MILES OFF PULAU MERUNDUNG, SOUTH CHINA SEA: Eight pirates armed with knives boarded a tug underway. They stole ship stores and crew personal belongings. Pirates left the ship after one hour. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.258611099768018, 2.192777800067006] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-360", + "dateofocc": "2011-08-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: A chemical tanker was boarded 12 August at 0230 LT while anchored in postion 01-42.27N 101-28.70E, 2NM off the coast of Dumai, Indonesia. Three robbers boarded the vessel via the poop deck. The alert deck crew saw the robbers and notified the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.47833330032654, 1.704444400316447] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-361", + "dateofocc": "2011-08-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GUAYAQUIL ROADS, ECUADOR: Duty watchman onboard a drifting container vessel spotted two robbers on the main deck and informed the duty officer and Captain. Alarm raised and crew mustered. The robbers escaped upn seeing the crew alertness. Inspection reve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.583333299846004, -2.833333300254367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-362", + "dateofocc": "2011-08-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: LPG tanker (GAS PRIDE) was fired upon by pirates on 12 August at 1406 UTC while underway in position 14-34.2N 042-23.9E, approximately 40NM southwest of Ras Isa, Yemen. Pirates in two skiffs, one with three pirates onboard and one with four pir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.398333299710941, 14.570000000357879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-236", + "dateofocc": "2010-06-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BAB EL MANDEB, RED SEA: Persons in an unlit boat approached a chemical tanker underway at high speed. Master raised alarm, increased speed took evasive maneuvers. Deck lights switched on and searchlights directed towards the boat. The boat chased the tan", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.643333299687413, 13.453333299795588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-237", + "dateofocc": "2010-06-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Armed pirates attacked and hijacked a chemical tanker underway.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.966666700194082, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-238", + "dateofocc": "2010-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAIT: Tug robbed 28 Jun 10 at 1150 local time while underway in position 01-06N 103-44E, approximately 2NM east of Pulau Takong Kecil lighthouse, Indonesia. Five men in a rubber boat armed with long guns approached the vessel towing a barge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.733333299981268, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-239", + "dateofocc": "2010-06-28", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "KARIMUN BESAR, INDONESIA: Two speed boats approached a chemical tanker underway from the stbd and port side. Crew raised alarm and directed the search lights towards the boats. Ship's whistle sounded and evasive maneuvers undertaken. Later the boats abor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.564722199706807, 1.059166699756815] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-240", + "dateofocc": "2010-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Chemical tanker (MOTIVATOR) hijacked 4 Jul 10 at 0944 UTC while underway in position 13-16N 042-56E, approximately 18NM west of Mokha, Yemen. Pirates boarded and hijacked the vessel along with its 18 crewmembers (IMB, AP, Mercury chat).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.933333300173388, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-241", + "dateofocc": "2010-07-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Merchant vessel attacked in 11-33N 045-28E at 050332 UTC Jul. Vessels are advised to exercise extreme caution area involved should be avoided if possible.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.466666699598932, 11.550000000134276] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-242", + "dateofocc": "2010-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Tanker reported suspicious approach 4 Jul 10 at 1000 UTC while underway in position 15-18.4N 041-49.6E, approximately 48NM northwest of Ras Isa, Yemen. Two suspicious boats with six to seven persons onboard each approached the vessel at a dist", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.826666699948817, 15.303333300260135] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-243", + "dateofocc": "2010-06-29", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM: Bulk carrier robbed 29 Jun 10 at 0403 local time while anchored in position 10-15.8N 107-02.3E, Vung Tau anchorage. Crew on anti-piracy watch noticed the bosun store broken into. The alarm was raised and the crew rushed onto the deck. Upon see", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.038333300434431, 10.263333299845328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-244", + "dateofocc": "2010-07-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CEMENT CARRIER", + "descriptio": "GUYANA: Cement carrier robbed 3 Jul 10 at 2035 local time while anchored at Georgetown roads. Robbers in a small boat boarded the vessel at anchor, broke into the bosun store and stole ship's stores before escaping. The chief engineer noticed that the d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.8000000002055] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-245", + "dateofocc": "2010-07-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MALAYSIA: Vessel robbed 7 Jul 10 at 1610 UTC while underway in position 01-19.5N 104-15.6E, STS lighting area, Johor port. Crewmembers on deck patrol noticed a small motor boat moving away from the ship's stern. The duty officer on the bridge was immed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.25999999995787, 1.324999999960994] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-246", + "dateofocc": "2010-07-08", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "GUINEA: Vehicle carrier robbed 8 Jul 10 at 0500 UTC while berthed in position 09-31N 013-43W, Conakry berth no. 4. Robbers boarded the vessel via the forward mooring ropes and stole ship's stores before escaping (IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-247", + "dateofocc": "2010-07-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Two fishing boats approached a bulk carrier underway fro the starboard side at high speed. Master conducts evasive maneuvers and fired a rocket flare when the boats were about 100 meters off the ship. Later C/O saw three more fishing boats about", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.706666700088874, 15.48666669965462] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-248", + "dateofocc": "2010-07-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "RED SEA: Container ship reported suspicious approach 9 Jul 10 at 2220 UTC while underway in position 13-20N 042-55E, approximately 18NM west of Mokha, Yemen. An unlit small boat doing a speed of 17 knots approached the vessel. Vessel increased speed ,c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.916666700101018, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-249", + "dateofocc": "2010-07-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier boarded 12 Jul 10 at 2030 UTC while berthed at Chittagong anchorage. Four robbers armed with knives boarded the vessel via the stern using ropes. Duty watch spotted the robbers, informed the watch officer and raised the alarm. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-130", + "dateofocc": "2011-03-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (CMA CGM MUSSET) was fired upon 4 Mar at 1030 UTC while underway in position 11-03N 064-42E, approximately 600NM SE of Socotra Island, Oman. Two skiffs with four to five pirates onboard fired automatic weapons and RPG on the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.699999999649776, 11.049999999668444] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-131", + "dateofocc": "2011-03-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Oil products tanker (AEGEA) was fired upon 4 Mar at 0922 UTC while underway in position 18-35N 063-47E, approximately 300NM SE of Masirah Island, Oman. Automatic weapons and RPG were fired. All crew apart from bridge team and unarmed secu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.783333300353036, 18.583333300330253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-133", + "dateofocc": "2011-03-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE STRAITS: Tanker was robbed while at anchorage in position 01-19.67N 104-17.23E, approximately 2.1NM SSW of Pulau Mungging. Five robbers armed with machetes and handguns boarded the tanker.The robbers stole two computers and some engine spare p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.287222199894302, 1.32777779976476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-134", + "dateofocc": "2011-03-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-34N 060-37E at 2029Z on 04 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.616666699684174, 17.566666700225483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-135", + "dateofocc": "2011-03-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-34N 063-47E at 2102Z on 04 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.783333300353036, 17.566666700225483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-136", + "dateofocc": "2011-03-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Pirates in a mother vessel and a skiff chased a tanker underway. Master raised alarm, sent distress message and took evasive maneuvers. The pirates opened fire, came alongside and boarded the tanker. All crew retreated into the citadel from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.766666700248322, 16.049999999830163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-137", + "dateofocc": "2011-03-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (CHARIOT) was fired upon 5 Mar at 1347 UTC while underway in position 12-02N 066-14E, approximately 450NM northwest of Minicoy Island, India. Two speed boats with five to six armed persons each fired upon the vessel. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.233333300117522, 12.033333299803644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-138", + "dateofocc": "2011-03-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDIAN OCEAN: Tug (KMC RHINO) was fired upon 6 Mar at 0901 UTC while underway in position 07-24N 051-50E, approximately 130NM east of Eyl, Somalia. One mother ship and a skiff approached and fired upon the vessel, but the tug evaded a boarding. (ONI, UK", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.833333299831679, 7.400000000404759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-139", + "dateofocc": "2011-03-07", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "VIETNAM: Wood chip carrier was boarded and robbed at anchor 7 Mar at 0200 local time while anchored in position 20-41N 107-13E, near the Cai Lan Pilot Station. Robbers boarded via the anchor chain. The bosun store was broken into and ship's stores were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.216666699572386, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-140", + "dateofocc": "2011-03-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "115 MILES SOUTH OF RAS AL HAD, OMAN: Pirates in three skiffs doing 20 knots chased a bulk carrier underway. Master raised alarm, increased speed, altered course and contacted navy for assistance. A NATO warship responded and the pirates aborted the attem", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.201666699948646, 20.636666700315743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-141", + "dateofocc": "2011-02-26", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CAMPHA ANCHORAGE, VIETNAM: Two robbers armed with long knives in a small boat boarded a bulk carrier at anchor. Duty crew raised alarm and crew mustered. The robbers escaped. Due to proper securing of stores and hatches no ship property stolen. Vessel co", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.211666700215233, 20.716666699922655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-142", + "dateofocc": "2011-03-07", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "TRAWLER", + "descriptio": "PERU: Trawler was robbed 7 Mar while at anchor off the port of Callao. Twenty robbers boarded the vessel via two rowboats and tied up the 15 crewmembers and stole cash, crew valuables and ship's communication equipment before escaping. The incident was r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-143", + "dateofocc": "2011-03-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: A chemical tanker was suspiciously approached 3 March at 1730 UTC while underway in position 06-18.7N 003-25.0E, approximately 3NM south of the Lagos fairway buoy. Three persons in a green colored fast craft approached the vessel. One person wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.416666700172584, 6.311666700279659] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-144", + "dateofocc": "2011-03-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "INDIAN OCEAN: Crude oil tanker (GUANABARA) was boarded 5 Mar at 1310 UTC while underway in position 16-00N 062-54E, approximately 328 NM SE of Duqm, Oman. Pirates fired automatic weapons and RPG on the vessel, and the crew retreated to the citadel. Pira", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.899999999951319, 15.99999999996345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-145", + "dateofocc": "2011-03-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (VOGE DIGNITY) was fired upon 3 Mar at 0906 UTC while underway in position 11-55N 058-02E, approximately 200NM east of Socotra Island, Yemen. A skiff and mother ship were visually sighted heading towards the vessel. All non", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.033333300391917, 11.916666699997791] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-146", + "dateofocc": "2011-03-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Multi-purpose vessel (BRATTINGSBORG) was fired upon 3 Mar at 0840 UTC while underway in position 15-23.2N 052-04.3E, approximately 160NM SW of Salalah, Oman. Two skiffs with four pirates onboard each, approached the vessel from the aft and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.07166670024867, 15.386666699921136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-147", + "dateofocc": "2011-03-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Product tanker was boarded 9 Mar at 0245 local time while at anchorage in position 06-00S 106-53E, at Tanjung Priok anchorage, Indonesia. Six robbers armed with long knives boarded the product tanker. They were noticed by the duty crew who ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-148", + "dateofocc": "2011-03-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Chemical tanker was boarded 8 Mar at 0800 local time while at anchorage in position 01-19.7N 104-17.3E, off of Pulau Mungging, Malaysia. Unnoticed by crew members, robbers boarded the vessel. The boarding was noticed in the morning when bosun", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.288333299670967, 1.328333300190423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-149", + "dateofocc": "2011-03-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 13-49N 065-21E at 0646Z on 10 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.349999999715806, 13.816666700329051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-150", + "dateofocc": "2011-03-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA: Pirates armed with rpg and guns in two skiffs chased and fired upon a container ship underway with intent to hijack. Master raised alarm, increased speed and took evasive maneuvers. The skiffs came alongside and attempted to hook ladders but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.550000000114323, 10.916666699965447] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-151", + "dateofocc": "2011-03-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA: A bulk carrier was robbed 14 Mar at 0830 local time while at anchorage in position 22-49N 070-02E, off Kandla. Multiple robbers boarded the vessel using grappling hooks, and broke into the forward paint store and stole supplies. The port authorit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.033333299880667, 22.81666669972077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-152", + "dateofocc": "2011-03-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Four robbers armed with long knives boarded a bulk carrier at anchor. One of the pirates held the duty watchman, threatened him with a knife under his throat. The watchman kicked the pirate and raised the alarm. All crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-153", + "dateofocc": "2011-03-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Eight armed pirates in a rigid boat approached a tanker underway at high speed. Alert crew noticed the boat and informed the duty officer who raised the alarm, activated SSAS and anti-piracy measures. Upon seeing the crew alertness the p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.371666700263688, 3.00833330002888] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-154", + "dateofocc": "2011-03-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "446 MILES OFF MINICOY ISLAND, INDIA: Pirates armed with guns in two skiffs launched from a black hull and white superstructure mother vessel, chased and fired upon a vehicle carrier underway with intent to hijack. Master raised alarm, contacted authoriti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.699999999714464, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-155", + "dateofocc": "2011-03-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "550 MILES OFF MINICOY ISLAND, INDIA: Two skiffs with 4-5 pirates in each skiff chased a tug underway with intent to board. The tug increased speed and enforced anti piracy measures. When skiffs were about 3 cables from the tug the onboard security team f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.333333299818605, 13.64999999993239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-156", + "dateofocc": "2011-03-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "215 MILES EAST OF SOCOTRA ISLAND: A mother vessel approached a bulk carrier underway at 8.5 miles and launched a skiff. The skiff approached the vessel at around 23 knots. Five pirates armed with guns were noticed when the skiff came at a distance of 0.8", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.050000000289117, 11.933333300070217] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-157", + "dateofocc": "2011-03-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo ship (SINAR KUDUS) was hijacked 16 Mar at 1639 UTC while underway in position 14-21N 059-25E, approximately 357NM SE of Salalah, Oman. The vessel was en route Singapore to Suez when it was hijacked with a crew of 20 Indonesia nationa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.416666700184919, 14.349999999865133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-48", + "dateofocc": "2010-03-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (AL NISR AL SAUDI) hijacked 01 March while underway approximately 45 miles southwest of Al Mukalla, Yemen. Pirates boarded and hijacked the vessel, with its crew of 14, and have sailed it toward the Somalia coast. No further informat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.600000000330567, 14.049999999765475] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-49", + "dateofocc": "2010-03-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Tanker reported suspicious approach 3 Mar 10 at 0628 UTC while underway in position 13-37N 042-58E, approximately 25NM northwest of Mokha, Yemen. Men in two small boats approached the vessel from the starboard side. The master raised the alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.966666699967732, 13.616666699962821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-50", + "dateofocc": "2010-02-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BAB EL MANDEB: Tanker reported suspicious approach 28 Feb 10 at 0350 local time while underway in position 12-32.5N 043-26E. The duty officer onboard noticed two crafts on radar sailing parallel to the vessel. The crafts then started approaching the ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.4333332997399, 12.541666699680775] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-51", + "dateofocc": "2010-03-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 2 Mar 10 at 0345Z while underway in position 12-38.4N 044-47.4E, approximately 14NM southwest of Aden, Yemen. The master reported four men in a skiff approached the vessel and attempted to board. The ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.790000000022133, 12.640000000286477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-52", + "dateofocc": "2010-03-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Tanker reported suspicious approach 2 Mar 10 at 0530 UTC while underway in position 15-33N 059-33E, approximately 360NM northeast of Socotra Island. The master reported five men in one skiff approached the vessel underway and attempted to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.549999999887916, 15.550000000263651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-53", + "dateofocc": "2010-02-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 28 Feb at 1451 UTC while underway in position 12-22.8N 060-42.1E, approximately 360NM east of Socotra Island. Master first observed suspicious vessel, noted to be what looked like a fishing vessel, on rad", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.701666700446822, 12.380000000439907] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-54", + "dateofocc": "2010-02-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 23 Feb 10 at 1645 UTC while underway in position 16-30N 058-50E, approximately 340NM northeast of Socotra Island. Armed men in a high-speed boat attempted to board the vessel using a ladder. The m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.833333300058086, 16.500000000429281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-55", + "dateofocc": "2010-03-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN:Chemical tanker (UBT OCEAN) hijacked 05 Mar 10 at 0535 UTC while underway in position 08-53S 043-23E, approximately 263NM southeast of Dar es Salaam, Tanzania. Vessel and its 21-member crew are currently being held off the Somali coast (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.383333299873186, -8.883333300315144] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-56", + "dateofocc": "2010-03-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "300 MILES SOUTH OF MOGADISHU, SOMALIA: Pirates armed with guns in two small skiffs and one large skiff attempted to attack a fishing vessel. Crew raised alarm, informed coalition forces and secured themselves inside the vessel. Security team took their p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.86666670033128, -2.933333299987794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-57", + "dateofocc": "2010-03-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Vessel reported suspicious approach 8 Mar 10 at 1354 UTC while underway in position 13-37.5N 042-31E, approximately 15NM southwest from Hanish Island. Master reported armed men in five skiffs approached the vessel from the port quarter, port b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.516666700267933, 13.625000000448722] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-58", + "dateofocc": "2010-03-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (ALBACAN) fired upon 4 Mar 10 at 0728 UTC while underway in position 03-26S 047-11E, approximately 340NM south of Mogadishu, Somalia. Men in two skiffs attacked and opened fire on the vessel while underway. Armed security g", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.183333299636388, -3.433333299554306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-250", + "dateofocc": "2010-07-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo vessel reported attempted boarding 14 Jul 10 at 0200 local time while underway in position 01-58.9N 108-43.8E, approximately 5NM northeast of Muri Island. Nine robbers attempted to board the vessel underway. The men had secured", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.729999999913559, 1.981666700310541] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-251", + "dateofocc": "2010-07-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIPS", + "descriptio": "RED SEA: Bulk carrier reported suspicious approach 21 Jul 10 at 1252 UTC while underway in position 14-22N 042-08E, approximately 70NM southeast of Tio, Eritrea. Two white skiffs approached the vessel, one at the port bow and the other at the starboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.133333299607955, 14.366666699762277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-252", + "dateofocc": "2010-07-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Vessel reported suspicious approach 18 Jul 10 at 1001 UTC while underway in position 15-10N 041-43E, approximately 53NM northeast of Tio, Eritrea. Master reported being approached by one skiff with four persons onboard equipped with two black", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.716666699702444, 15.16666670032771] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-253", + "dateofocc": "2010-07-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: Container ship robbed 18 Jul 10 while anchored in position 03-55N 098-46E, approximately 9NM north of Belawan port. During the night while, robbers boarded the vessel undetected and broke into the paint locker and stole ship's stores. The th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-254", + "dateofocc": "2010-07-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAIT: Tug reported suspicious approach 23 Jul 10 at 0540 local time while anchored in position 01-21.4N 104-27.5E, approximately 3NM northeast of Horsburgh Lighthouse, Singapore. The master reported two men in a small fast craft approached", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.458333300296999, 1.356666699728237] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-255", + "dateofocc": "2010-07-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SURVEY VESSEL", + "descriptio": "CAMEROON: Seismic survey vessel fired upon 25 Jul 10 at 0200 UTC while underway in position 04-16N 008-52E, approximately 2NM off the coast. The vessel supported by four chase boats with armed personnel onboard was approached by two boats with six arme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.866666700034045, 4.266666699705411] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-256", + "dateofocc": "2010-07-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SINGAPORE STRAIT: Bulk carrier (CAPE COSMOS) boarded 22 Jul 10 at 0330 local time while anchored in position 01-23.5N 104-30.9E, approximately 7NM northeast of Horsburgh Lighthouse, Singapore. Five men onboard a speedboat armed with guns and knives boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.515000000447287, 1.391666699724851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-257", + "dateofocc": "2010-07-20", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "PUERTO BOLIVAR ANCHORAGE, ECUADOR: Four robbers armed with guns and knives boarded a refrigerated reefer vessel from a boat. The robbers were spotted by a member of the ship's crew who raised the alarm. The robbers hit the crew member on the back, forced", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.000000000443208, -3.249999999984595] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-258", + "dateofocc": "2010-08-02", + "subreg": "62", + "hostility_": "pirates", + "victim_d": "mv", + "descriptio": "Gulf of Aden.Piracy.M/V Attacked in 13-05N 049-05EAt 050430Z Aug. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.083333299967592, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-259", + "dateofocc": "2010-08-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "M/V", + "descriptio": "Gulf of Aden.Piracy.M/V Suez attacked in 13-35N 050-25EAt 011918Z Aug. vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.416666699893881, 13.583333300168533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-260", + "dateofocc": "2010-07-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BANGLADESH: Chemical tanker (KASUGTA) reported attempted boarding 28 Jun 10 at 0330 local time while anchored in position 22-13.5N 091-43.7E, Chittagong anchorage. About 17 robbers from two wooden boats attempted to board the vessel. The incident was r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.728333300236045, 22.225000000007356] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-262", + "dateofocc": "2010-07-31", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "PHILIPPINES: Tanker robbed 31 Jul 10 at 0145 local time while anchored in position 13-44.3N 121-01.7E, Batangas anchorage. Three robbers in a small craft approached the vessel at anchor. One robber boarded the vessel and broke into the bosun store. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.028333300374243, 13.738333300025147] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-263", + "dateofocc": "2010-08-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Bulk carrier reported suspicious approach 4 Aug 10 at 1345 UTC while underway in position 15-48.6N 041-25.7E, approximately 220NM northwest of the Bab el Mandeb. Captain reported seeing two skiffs with seven armed men in each approach the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.428333300318116, 15.810000000110165] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-456", + "dateofocc": "2010-11-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: At 1304Z Nov a merchant vessel was attacked by pirates in 12-24N 066-30E. One crewmember was shot but remains alive. The pirates remain in the area. Vessels are to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.50000000024761, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-457", + "dateofocc": "2010-11-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "WEST OF KEPULAUAN TAMBELAN, INDONESIA: Eight pirates armed with long knives boarded a bulk carrier underway. Pirates stole ship's cash, crew personal properties and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.66666670013916, 1.028333300090765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-458", + "dateofocc": "2010-11-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GRESIK PORT, INDONESIA: Two robbers armed with knives boarded a bulk carrier at berth while the other two robbers wait on a boat. Duty crew sighted the robbers on the forecastle stealing ship's property and raised the alarm. The robber escaped with stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.658333300022605, -7.141666699894643] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-459", + "dateofocc": "2010-11-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: A pirate skiff was observed two miles abeam of a chemical tanker underway. The skiff increased speed to 22 knots and approached the chemical tanker. At a distance of around five cables the onboard armed security team fired warning shots. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.133333299834305, 14.049999999765475] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-460", + "dateofocc": "2010-11-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo vessel (YUAN XIANG) hijacked on 12 Nov at 0701Z while underway in position 18-02N 066-03E, approximately 634 miles east of Salalah, Oman. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.049999999648492, 18.033333299997707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-461", + "dateofocc": "2010-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "WESTERN INDIAN OCEAN: Pirates chased a tanker underway and opened fire on her. Due to anti-piracy measures, the tanker evaded the hijack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.383333299685376, 17.250000000228681] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-430", + "dateofocc": "2010-11-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "WESTERN INDIAN OCEAN, SOMALIA: Pirates armed with rpg and rifles in two skiffs chased and fired upon a chemical tanker. The vessel sent a distress signal and all crew members hid in the citadel. Upon receiving the distress the IMB piracy reporting center", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.166666699757968, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-432", + "dateofocc": "2010-11-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "Warship", + "descriptio": "INDIAN OCEAN: Spanish warship (ESPS INFANTA CRISTINA) fired upon 6 Nov 10 at 1725 UTC while underway in position 01-48S 042-31E, approximately 80NM south of Kismaayo, Somalia. The warship was attacked with AK-47 from pirates aboard a previously hijacked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.516666700267933, -1.666666699650136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-462", + "dateofocc": "2010-11-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo vessel (LE CONG) fired upon 18 Nov at 1250Z while underway in position 12-25N 066-33E approximately 704 miles east of Socotra Island, Yemen. Individuals in two skiffs chased and fired upon the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.550000000114323, 12.416666699564303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-463", + "dateofocc": "2010-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: POL tanker fired upon on 11 Nov at 0540Z while underway in position 17-12N 065-33E, approximately 660 miles east of Salalah, Oman. One skiff with 6 people on board fired on the vessel. (Mercury)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.55000000008198, 17.200000000361968] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-479", + "dateofocc": "2010-11-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-47N 058-10E at 222326Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.166666699919688, 15.783333299700075] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-464", + "dateofocc": "2010-11-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo vessel (BBC ORINOCO) illegally boarded on 11 Nov at 0512 local time while underway in position 17-06N 064-57E, approximately 625 miles east of Salalah, Oman. Armed pirates operating from two skiffs fired on and boarded a bulk carrier", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.949999999882721, 17.099999999729221] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-465", + "dateofocc": "2010-11-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker robber 16 Nov at 0435 local time while underway in position 02-00N 108-45.5E, near Pulau Merundung, Indonesia. Six robbers armed with knives boarded a product tanker underway. They entered the mess room and took an AB hostage. Later th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.758333299626656, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-466", + "dateofocc": "2010-11-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "PATROL BOAT", + "descriptio": "KENYA: Kenyan Naval Patrol Boat on 12 Nov at 2300 local time illegally boarded by Somali pirates near Kilifi, Kenya. Four pirates boarded the underway patrol boat. Kenyan navy officers shot dead three of the pirates, one pirate jumped into the water and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.850000000240129, -3.633333299920537] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-467", + "dateofocc": "2010-11-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 01-18S 052-47E at 181945Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.783333299997309, -1.299999999786621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-468", + "dateofocc": "2010-11-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel in 12-20N 066-22E at 200351Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.366666699645293, 12.333333299903302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-158", + "dateofocc": "2011-03-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: A general cargo ship was robbed 16 Mar at 0405 local time while at anchorage in position 03-56N 098-46E, Belawan anchorage. Multiple robbers were noticed onboard, the master raised the alarm, and the robbers escaped with ship¿s stores.(IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-159", + "dateofocc": "2011-03-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier was chased 18 Mar at 0300 local time while underway in position 01-05N 103-35E, approximately 5.9NM SW of Pulau Nippa, in the Philip Channel. Four small boats approached and chased the vessel. The crew used their search lights,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-160", + "dateofocc": "2011-03-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "45 MILES NORTHEAST OF HORSBURGH LIGHTHOUSE, SOUTH CHINA SEA: Eight pirates in a speed boat armed with long knives approached a general cargo ship underway. They attempted to baord the ship using a long bamboo pole attached with a hook. Duty A/B noticed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.126111100036837, 1.584999999807508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-161", + "dateofocc": "2011-03-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "522 MILES EAST OF SALALAH, OMAN:A chemical tanker was chased by five pirates armed with ak-47s in a white skiff doing 24 knots. Master increased speed, took evasive maneuvers, sent distress message and activated water jet from the fire monitor. Two of th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.305555600291257, 17.225277800420542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-162", + "dateofocc": "2011-03-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "495 MILES NORTHEAST OF MOGADISHU, SOMALIA: A tanker underway was chased by one mother vessel and two skiffs with four pirates in one skiff and ten pirates in the other skiff. The pirates fired upon the tanker with rpg and guns and attempted to board. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.000000000260684, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-163", + "dateofocc": "2011-03-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: Eight pirates armed with long knives in a speed boat boarded a general cargo ship underway. They took hostage the duty officer and brought him to the master's cabin. The pirates stole ship's cash, properties and master's personal belongi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.286666700400303, 2.918333299909079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-480", + "dateofocc": "2010-11-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOUTHERN ARABIAN SEA: Pirate action group sighted in 07-49N 055-53E at 230233Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.883333299827768, 7.816666700134988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-164", + "dateofocc": "2011-03-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "190 MILES NORTHEAST OF PEMBA ISLAND, TANZANIA: C/O onboard a container ship underway spotted one mother vessel and two skiffs at a distance of 6 miles from the ship. Alarm raised, speed increased and crew standby for safe room. When the skiffs closed to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.924999999687543, -3.900000000050568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-165", + "dateofocc": "2011-03-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: A bulk carrier underway was chased and fired upon by pirates in a skiff. The security team onboard enforced anti-piracy measures which prevented the pirates from boarding the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.099999999864735, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-166", + "dateofocc": "2011-03-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: Eight pirates in a speed boat armed with long knives approached a general cargo ship underway. They attempted to board the ship using a long bamboo pole attached with a hook. Duty A/B noticed the pirates and informed master who raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.123333300233071, 1.584999999807508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-167", + "dateofocc": "2011-03-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk carrier (FALCON TRADER II) was boarded 24 Mar at 0737 UTC while underway in position 22-26N 063-40E, approximately 230NM east of Sur, Oman. The vessel was attacked by a skiff that had tried attacking the vessel earlier in the day. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.733333299587002, 22.433333299960111] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-168", + "dateofocc": "2011-03-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "225 MILES EAST OF RAS AL HAD, OMAN: About eight pirates armed with rpgs and ak-47 rifles in a white skiff chased a tanker underway. Master increased speed all crew mustered in the citadel, sent distress message and security team onboard fired warning sho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.733333299587002, 22.96666670022023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-169", + "dateofocc": "2011-03-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "390 MILES WEST OF MINICOY ISLAND: Heavily armed pirates in two skiffs and a mother vessel chased and fired upon a container ship underway. Master raised alarm, sounded ship's whistle, increased speed and took evasive maneuvers and managed to outrun the s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.457499999866286, 8.999999999737042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-59", + "dateofocc": "2010-03-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Vessel reported suspicious approach 10 Mar 10 at 1251 UTC while underway in position 13-29.9N 042-35.4E, approximately 17NM southwest from Hanish Island. Vessel observed and reported two open type wooden speed boats on the vessel's starboard s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.589999999591271, 13.498333300305205] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-60", + "dateofocc": "2010-03-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (ARTXANDA) reported suspicious approach 5 Mar 10 at 0924 UTC while underway in position 03-21S 045-32E, approximately 315NM south of Mogadishu, Somalia. The master reported coming under attack by two skiffs. An embarked sec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.533333300437334, -3.349999999718023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-61", + "dateofocc": "2010-03-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN:Fishing vessel (TREVIGNON) fired upon 5 Mar 10 at 0639 UTC while underway in position 04-34S 048-09E, approximately 413NM southeast of Kismayo, Somalia. Armed men on two skiffs and one larger skiff fired at the vessel. The fishing vessel ha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.149999999699162, -4.566666700013741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-62", + "dateofocc": "2010-03-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "SURVEY SHIP", + "descriptio": "INDIAN OCEAN:Oceanographic vessel (BEAUTEPS BEAUPRE) fired upon 04 Mar 10 at 1437 UTC while underway in position 01-17S 047-07E, approximately 277NM southeast of Kismayo, Somalia. Armed men in two skiffs fired upon the vessel. Vessel employed evasive ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.116666699697248, -1.283333299889478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-63", + "dateofocc": "2010-03-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYSIA: Chemical tanker (SP ATHENS) robbed 11 Mar 10 at 0330 local time while anchored in position 01-17.8N 104-10.7E, approximately 3NM southwest of Tanjung Ayam. An unknown number of robbers armed with knives, boarded the tanker via the aft and ent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.178333300323914, 1.296666700247897] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-64", + "dateofocc": "2010-03-03", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "LIBERIA: Vessel robbed 3 Mar 10 at 2300 local time while in port Monrovia. While crew was busy during final stages of cargo operations, robbers broke into galley and stole ship's stores and provisions. Port authority was notified but no action was taken", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.816666700440692, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-65", + "dateofocc": "2010-03-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (ER LUBECK) fired upon 12 Mar 10 at 0045 UTC while underway in position 03-10S 062-06E, approximately 400NM northeast of Port Victoria, Seychelles. Armed men in two skiffs chased and opened fire on the vessel. The vessel conducted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.100000000285149, -3.166666700148312] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-66", + "dateofocc": "2010-03-15", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "146 MILES NORTHWEST OF MADAGASCAR: A merchant vessel reported coming under fire at 1317 UTC on 15 March 10 in position 11-02S 046-57E. Armed men onboard two skiffs are closing on the vessel firing automatic weapons in hopes of boarding. Vessel is report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.950000000199907, -11.033333299979972] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-67", + "dateofocc": "2010-03-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "160 MILES SOUTHEAST OF KISMAYO, SOMALIA: Possible pirate attack group (PAG) located at 0900 UTC on 17 Mar 10 near position 02-47S 043-16E. PAG is probably heading in a southerly direction in search of merchant vessels to attack and hijack. This area wil", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.266666700067333, -2.783333300387653] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-68", + "dateofocc": "2010-03-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "WARSHIP", + "descriptio": "INDIAN OCEAN: Warship (HNLMS TROMP) reported suspicious approach 17 Mar 10 at 0601 UTC while underway in position 05-22S 051-43E, approximately 225NM southwest of Port Victoria, Seychelles. Two small skiffs made a fast approach toward the warship, prom", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.716666700025883, -5.366666699679854] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-69", + "dateofocc": "2010-03-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "INDIAN OCEAN: Two fishing vessels reported suspicious approach 16 Mar 10 while underway in position 06-24S 050-53E, approximately 290NM southwest of Port Victoria, Seychelles. Three skiffs approached the fishing vessels. Armed security teams onboard f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.883333299666106, -6.399999999681768] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-264", + "dateofocc": "2010-08-03", + "subreg": "62", + "hostility_": "Suspicious craft", + "victim_d": "M/V", + "descriptio": "RED SEA: Chemical tanker reported suspicious approach 3 Aug 10 at 0300 UTC while underway in position 13:42.5N 042:57E, approximately 28NM northwest of Mokha, Yemen. Three skiffs approached the vessel from different directions. Alarm was raised, crew", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.950000000070588, 13.708333300285005] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-265", + "dateofocc": "2010-07-31", + "subreg": "62", + "hostility_": "Suspicious craft", + "victim_d": "M/V", + "descriptio": "RED SEA: Vessel reported suspicious approach 31 Jul 10 while underway in position 13:16.9N 043:03.5E, approximately 12NM west of Mokha, Yemen. Captain reported five high speed skiffs approached the vessel to less than 150 meters. Vessel conducted eva", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.05833330028986, 13.281666699866548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-266", + "dateofocc": "2010-08-03", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "M/V", + "descriptio": "GULF OF ADEN: Chemical tanker (BOW SAGA) fired upon 3 Aug 10 at 0317 UTC while underway in position 12:56N 048:08E, approximately 110NM southwest of Al Mukalla, Yemen. Six men in a skiff armed with automatic weapons and RPGs approached the vessel from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.133333299801961, 12.933333300102561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-267", + "dateofocc": "2010-08-02", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "M/V", + "descriptio": "GULF OF ADEN: General cargo ship (SUEZ) hijacked 2 Aug 10 at 0420 UTC while underway in position 13:02N 048:54E, approximately 90NM southwest of Al Mukalla, Yemen. Pirates in three skiffs armed with automatic weapons boarded the vessel, taking the 24", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.900000000397881, 13.033333299835988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-268", + "dateofocc": "2010-08-04", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "M/V", + "descriptio": "MALAYSIA: Tanker (HIRYU) boarded 4 Aug 10 at 0347 local time while anchored in position 01:21.7N 104:20.4E, approximately 2.5NM east of Pulau Mungging. Three robbers reportedly armed with guns boarded the vessel. The crew raised the alarm and began s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.339999999564782, 1.36166669998471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-269", + "dateofocc": "2010-08-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "LANDING CRAFT", + "descriptio": "NIGERIA: Landing craft vessel boarded, crewmembers kidnapped 11 Aug 10 at 1636 UTC while underway in position 04-05N 006-45E, approximately 2NM off Bonny River fairway buoy. Seven men armed with machine guns boarded the vessel while underway. The maste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.750000000338787, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-270", + "dateofocc": "2010-08-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "RED SEA: General cargo ship reported suspicious approach 11 Aug 10 at 0640 UTC while underway in position 13-35.9N 042-38.1E, approximately 40NM northwest of Mokha, Yemen. A group of fishing vessels was observed on the starboard side. Four skiffs then e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.635000000100831, 13.598333300038632] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-271", + "dateofocc": "2010-08-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BAB EL MANDEB: General cargo ship reported suspicious approach 5 Aug 10 at 1000 UTC while underway in position 12-34.8N 043-24E, Bab el Mandeb. Two white and two black colored skiffs with five persons onboard approached the vessel underway. The master i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.39999999977033, 12.579999999906818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-272", + "dateofocc": "2010-08-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (SYRIA STAR) hijacked 5 Aug 10 at 1514 UTC while underway in position 13-11N 049-04E, approximately 80NM south of Al Mukalla, Yemen. Armed men boarded and hijacked the vessel while underway. The vessel was released the f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.066666699895165, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-273", + "dateofocc": "2010-08-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "IRAQ: General cargo ship robbed 8 Aug 10 at 0400 local time while anchored in position 29-42N 048-40.3E, Umm Qasr anchorage. Two robbers armed with AK-47s boarded the vessel at anchor. They overpowered the duty crew and broke open the master's office lo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.67166670031861, 29.70000000031655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-274", + "dateofocc": "2010-08-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "IRAQ: Container ship robbed 8 Aug 10 at 0330 local time while anchored in position 29-41.7N 048-40.1E, Umm Qasr anchorage. Two robbers in a fishing boat wearing masks and armed with AK-47s boarded the vessel at anchor. They entered the bridge, took the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.668333300264464, 29.695000000060077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-469", + "dateofocc": "2010-11-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: A merchant vessel was attacked by a dhow and a skiff in 20-30N 060-10E at 200857Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.166666699984376, 20.499999999659281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-470", + "dateofocc": "2010-11-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARGO", + "descriptio": "INDIAN OCEAN: Bulk cargo ship (GRACEFUL MADONNA) fired upon 20 Nov 10 at 0715 UTC while underway in position 01-07S 067-05E, approximately 493NM northwest of Diego Garcia. One skiff approached vessel from port side firing eight to ten shots from automat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.083333299650405, -1.116666700216911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-471", + "dateofocc": "2010-11-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate action group in 02-41N 055-24E at 210911Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.400000000158457, 2.683333300445554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-473", + "dateofocc": "2010-11-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 01-35N 055-26E at 220545Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.43333330012797, 1.583333299780463] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-474", + "dateofocc": "2010-11-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: A merchant vessel reported being attacked by at least one skiff at 1300Z on 20 Nov in position 14-23N 065-31E, approximately 743 miles east of Socotra Yeman. Pirates were observed using a mother ship nearby. Vessels are advised to keep 100", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.51666670011241, 14.383333299834646] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-478", + "dateofocc": "2010-11-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: A merchant vessel reported coming under fire at 2034Z on 21 Nov in position 15-30N 059-18E, approximately 332 miles from Salalah, Oman. This area will remain high risk for at least the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.299999999655029, 15.500000000396938] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-483", + "dateofocc": "2010-11-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "IVORY COAST: Tanker robbed 21 Nov at 0235 local time while at anchor in position 05-13.5N 004-02.1W in the Abidjan anchorage. Three robbers ared with knives boarded a tanker at anchor. Duty officer noticed the robbers and raised the alarm. Robbers manag", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.034999999780666, 5.225000000356943] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-484", + "dateofocc": "2010-11-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Bulk cargo (PAGONA) attempted boarding 24 Nov at 1130Z while underway in position 14-47N 065-58E, approximately 460 miles southwest of Mumbai, India. No weapons or ladders were visible. Pirates attempted to board with a hook and rope. PAGO", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.966666699812208, 14.783333299667731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-485", + "dateofocc": "2010-11-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Product tanker (NORNA N) fired upon 24 Nov at 0312Z while underway in position 15-04N 067-05E, approximately 400 miles southwest of Mumbai, India. Master confirmed automatic weapons and rpg fired. NORNA N took evasive maneuvers as pirates", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.083333299650405, 15.066666699694963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-486", + "dateofocc": "2010-11-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (CARMENCITA) fired upon 22 Nov at 2300Z while underway in position 15-53N 058-14E, approximately 250 miles southeast of Salalah, Oman. Two white skiffs with five armed pirates in each skiff chased and fired upon a bulk carrier", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.233333299858828, 15.883333300332822] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-487", + "dateofocc": "2010-11-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Product tanker (SEA SPIRIT) fired upon 22 Nov at 0904Z while underway in position 01-31N 055-48E, approximately 620 miles east of Mogadishu, Somalia. Five skiffs with four to five armed pirates each chased and fired upon a product tanker u", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.799999999991485, 1.516666699841323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-488", + "dateofocc": "2010-11-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (CAMPOLIBRE ALAI) fired upon 22 Nov at 0500Z while underway in position 01-30N 055-25E, approximately 600 miles east of Mogadishu, Somalia. Armed pirates in two skiffs launched from a mother ship chased and attempted to boar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.4166667000556, 1.49999999994418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-170", + "dateofocc": "2011-03-21", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GHANA: A tanker was suspiciously approached 21 Mar at 1630 UTC while underway in position 03-42N 001-58W, approximately 70NM SW of Takoradi. A single boat with five persons onboard approached within 10 meters of the vessel. The Master raised the alarm a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.966666699749794, 3.700000000375042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-171", + "dateofocc": "2011-03-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (MSC EVA) was fired upon 23 Mar at 1451 UTC, while underway in position 09-00N 066-27E, approximately 684NM west of Cochin, India. Pirates in two skiffs fired upon the vessel causing damage to the master and chief officer's cabin, b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.450000000380896, 8.999999999737042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-172", + "dateofocc": "2011-03-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 22-00N 063-44E at 0455Z on 24 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.733333299587002, 22.833333299793196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-173", + "dateofocc": "2011-03-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Seven pirates armed with guns in two skiffs launched from a mother vessel, chased and fired upon a bulk carrier underway with intnet to hijack. Master raised alarm, contacted authorities, increased speed and took evasive maneuvers. As the sk", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.100000000382181, 11.649999999867703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-174", + "dateofocc": "2011-03-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Crude oil tanker (ZIRKU) was attacked 28 Mar at 0613 UTC while underway in position 15-36N 057-04E, approximately 237NM northeast of Socotra Island, Yemen. The vessel was attacked by two skiffs with small arms and RPGs. Vessel was reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.066666700153917, 15.600000000130365] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-175", + "dateofocc": "2011-03-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "122 MILES OFF SALALAH, OMAN: A mother vessel was seen launching a skiff which approached a tanker at high speed. Alarm sounded, crew mustered in citadel, SSAS unit activated, speed increased and coalition forces contacted. Onboard security team fired war", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.861666700398246, 15.921666700383639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-176", + "dateofocc": "2011-03-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONATAINER SHIP", + "descriptio": "24 MILES SORTHWET OF GRAND COMORE ISLAND: Three to four speed boats with 4-6 pirates in each boat chased a container ship underway. Master raised alarm, increased speed and took evasive maneuvers. The pirates approached the vessel from various directions", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.966666699967732, -11.133333299713399] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-177", + "dateofocc": "2011-03-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "COCHIN ANCHORAGE, INDIA: Five robbers boarded an anchored product tanker via the anchor chain. Duty crew saw the robbers on the forecastle deck and raised alarm. Seeing alert crew the robbers escaped with ship's stores. Incident reported to port control.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.098333299811543, 9.941666700316148] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-178", + "dateofocc": "2011-03-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: A product tanker was robbed 25 Mar at 2215 UTC while anchored in position 09-56N 076-05E, approximately 9 NM southwest of Cochin, India. Five robbers used the anchor chain to board the vessel. The robbers stole the ship's stores. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.083333299941444, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-179", + "dateofocc": "2011-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Oil product tanker (RUDEEF GNA) was attacked 29 Mar at 0612 UTC while underway in position 13-30N 047-30E, approximately 350NM northwest of Socotra Island, Yemen. The vessel was attacked by one skiff that placed a ladder on the vessel but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.499999999633133, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-180", + "dateofocc": "2011-03-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "INDIAN NAVAL VESSEL", + "descriptio": "INDIAN OCEAN: Indian Navy offshore patrol vessel (INS SUVARNA) was fired upon by the hijacked fishing vessel (MORTEZA) 26 Mar at 0750 UTC while underway in position 09-51N 067-05E, approximately 400NM east of Lakhadweep Islands, India. The MORTEZA was b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.083333299650405, 9.850000000169246] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-181", + "dateofocc": "2011-03-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA: A chemical tanker was chased by two speed boats 25 Mar at 1340 UTC while underway in position 03-11N 105-23E, approximately 15 NM off Palau Mangkai. The speedboats approached at 22 knots; the tanker increased its speed and evaded the sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.383333300079585, 3.183333300012066] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-182", + "dateofocc": "2011-03-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYSIA: Pirates in a speed boat approached a chemical tanker underway at a distance of less than four cables. Master raised alarm, took evasive maneuvers and warned all ship in the vicinity via vhf. The pirates aborted the attempted attack after 25 min", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.84999999964424, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-183", + "dateofocc": "2011-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Four pirates in a white colored skiff chased a product tanker underway. Master heard shots being fired and the onboard security guards returned fire. The pirates managed to close to around 50 meters of the vessel before aborting the attepte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.503888900112941, 13.501944400210107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-70", + "dateofocc": "2010-03-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (TXORI ARGI) reported suspicious approach 14 Mar 10 at 0910 UTC while underway in position 03-03S 055-08E, approximately 95NM north of Port Victoria, Seychelles. The vessel reported being approached by one mothership and tw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.133333300028369, -3.049999999618421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-71", + "dateofocc": "2010-03-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Four robbers armed with long knives boarded a bulk carrier at anchor via the forecastle. The alert crew noticed the robbers, informed the OOW. The robbers chased the watchmen who entered and locked the accommodation. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-72", + "dateofocc": "2010-03-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Cargo ship (ALMEZAAN) fired upon 23 Mar 10 at 0808 UTC while underway in position 03-45N 048-07E, approximately 30NM from the coast of Somalia and 200NM northeast of Mogadishu. Owner reported the vessel came under attack by three skiffs w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.116666699729592, 3.750000000241755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-492", + "dateofocc": "2010-11-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "ARABIAN SEA: A pirated vessel named HANNIBAL II has been conducting mothership activity in 18-50N 061-23E on 26 Nov at 0631Z. The mothership chased a merchant vessel. Vessels are advised to keep 100 miles clear of this position and to exercise extreme c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.383333299556, 18.833333299663821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-73", + "dateofocc": "2010-03-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker fired upon 22 Mar 10 at 1200 UTC while underway in position 14-56.4N 055-01.6E, approximately 140NM northeast of Socotra Island. Six armed men in a speedboat chased and fired upon the vessel while attempting to board from the port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.026666699836142, 14.939999999551446] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-74", + "dateofocc": "2010-03-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 20 Mar 10 at 1200 UTC while underway in position 11-10N 062-22.9E, approximately 760NM northeast of Eyl, Somalia. Five armed men chased and attempted to board the vessel while underway. The master raised the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.381666700285336, 11.166666700198391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-75", + "dateofocc": "2010-03-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "SOUTH CHINA SEA: Armed pirates in a 15 meter long boat chased and fired upon two fishing vessels underway with intent to board. The vessels increased speed and managed to evade the attempted boarding. No injuries to crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.499999999742556, 5.266666699737755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-76", + "dateofocc": "2010-03-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (FRIGIA) hijacked 23 Mar 10 at 0137 UTC while underway in position 11-41.5N 066-05.3E, approximately 680NM east of Socotra Island. Pirates boarded and hijacked the vessel with 21 crewmembers and are sailing it to an unknown d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.088333299874535, 11.691666700147891] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-77", + "dateofocc": "2010-03-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Vessel fired upon 24 Mar 10 at 0515 UTC while underway in position 13-24N 048-16E, approximately 80NM southwest of Al Mukalla, Yemen. Vessel reported shots fired, and reportedly a security team was on board. No further information to prov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.266666700229052, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-78", + "dateofocc": "2010-03-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 25 Mar 10 at 0804 UTC while underway in position 03-49S 046-10E, approximately 300NM southeast of Kismayo, Somalia. Vessel reported coming under fire from two skiffs with 4-5 persons onboard. Vessel increased spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.166666700430937, -3.816666700214341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-79", + "dateofocc": "2010-03-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo ship reported suspicious approach 24 Mar 10 at 1649 UTC while underway in position 14-09N 052-27E, approximately 105NM northwest of Socotra Island. Vessel reported being approached by two skiffs and a mothership. Master increased sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.449999999928139, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-80", + "dateofocc": "2010-03-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo ship (TALCA) hijacked 23 Mar 10 at 1258 UTC while underway in position 17-28N 056-42.7E, approximately 325NM northeast of Socotra Island. Pirates in two speed boats boarded and hijacked the vessel with 25 crewmembers while underway.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.711666699931072, 17.466666699592736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-81", + "dateofocc": "2010-03-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker (HESNES) boarded 20 Mar 10 at 0500 local time while anchored in position 01-18.9N 104-14.6E, approximately 2NM southeast of Tanjung Ayam. Five robbers armed with knives boarded the vessel while at anchor. Crewmembers spotted the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.243333300060726, 1.315000000347368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-82", + "dateofocc": "2010-03-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: A merchant vessel reported coming under fire at 0830 UTC on 28 Mar 10 in position 01-01S 057-14E. This area will remain high risk for the next 24-48 hours as weather conditions continue to be conducive to small boat operations.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.233333299826484, -1.016666699584164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-275", + "dateofocc": "2010-08-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker robbed 10 Aug 10 at 0330 local time while anchored in position 01-19.4N 104-14.7E, Pasir Gudang STS anchorage. Five robbers armed with pistols and knives boarded and entered the engine room. They tied up the duty motorman and stole spar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.245000000087828, 1.32333329993395] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-276", + "dateofocc": "2010-08-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier robbed 5 Aug 10 while underway in position 02-56N 105-21E, approximately 16NM southwest of Pulau Mangkai, Indonesia. Five robbers armed with knives boarded the vessel and took the 2nd officer and chief engineer hostage. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.350000000110072, 2.933333299779122] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-277", + "dateofocc": "2010-08-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SOUTH CHINA SEA: Tug (VOS HYPERION) reported suspicious approach 5 Aug 10 at 0048 local time while underway in position 03-09.1N 108-24.3E, approximately 28NM northwest of Pulau Subi Besar, Indonesia. The master spotted an unlit small speed boat approac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.405000000330233, 3.151666700069597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-278", + "dateofocc": "2010-08-03", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship robbed 3 Aug 10 at 0215 local time while anchored in position 20-39.7N 107-15.4E, southeast of Cailan pilot station. Robbers boarded the vessel using ropes and hooks. They broke in the forward store and stole ship's stores and pr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.25666669982553, 20.661666699799468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-279", + "dateofocc": "2010-08-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 18 Aug 10 at 1400 UTC while underway in position 13-15.5N 049-08E, approximately 75NM south of Al Mukalla, Yemen. Six armed men in a skiff chased the vessel for approximately 15 minutes. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.133333299834305, 13.258333299685887] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-280", + "dateofocc": "2010-08-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier (HONG KONG STAR) robbed 15 Aug 10 at 0345 local time while anchored in position 22-15.1N 091-41.7E, Chittagong anchorage. Four robbers armed with knives boarded the vessel via the stern from a single engine driven boat during h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.695000000266475, 22.251666700417445] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-281", + "dateofocc": "2010-08-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship boarded 12 Aug 10 at 1851 local time while anchored in position 01-42.8N 101-27.5E, Dumai port inner anchorage. Two robbers armed with knives boarded the vessel and threatened the duty watchman with knives. The duty office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.458333300199968, 1.713333300153408] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-282", + "dateofocc": "2010-08-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier reported suspicious approach 12 Aug 10 at 1210 UTC while underway in position 01-26N 106-49E, approximately 16NM north of Dum Dum Islands. Four boats approached the vessel. The ship watch keepers activated fire hoses, turned on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.816666699739358, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-283", + "dateofocc": "2010-08-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (VINALINES STAR) robbed 18 Aug 10 at 0350 local time while underway in position 03-05N 105-24E, approximately 11NM west of Pulau Mangkai, Indonesia. Six robbers armed with knives boarded the vessel via the starboard quarter", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.399999999976785, 3.083333300278639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-284", + "dateofocc": "2010-08-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Product tanker (CHEM ORCHID) robbed 17 Aug 10 at 0340 local time while underway in position 03-17N 105-29E, approximately 13NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with automatic weapons and long knives boarded the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.483333299813069, 3.283333299745493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-285", + "dateofocc": "2010-08-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (BET FIGHTER) robbed 17 Aug 10 at 0250 local time while underway in position 03-05N 105-07E, approximately 28NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with long knives boarded the vessel and entered the b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.116666699774271, 3.083333300278639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-286", + "dateofocc": "2010-08-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA: Chemical tanker (STOLT BOTAN) boarded 16 Aug 10 at 0145 local time while underway in position 03-15N 105-18.5E, approximately 19NM northwest of Pulau Mangkai, Indonesia. Five or six robbers armed with knives boarded the vessel via the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.308333299829883, 3.249999999775923] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-490", + "dateofocc": "2010-11-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mother ship activity in 09-29N 068-44E on 25 Nov at 1940Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.733333299748722, 9.483333300305731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-493", + "dateofocc": "2010-11-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (MEDI CHENNAI) fired upon 26 Nov at 0114Z while underway in position 00-26S 070-00E, approximately 185 miles west of the Maldives. Six armed pirates in a boat chased and fired upon a bulk carrier underway. The vessels enforced", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.999999999911154, -0.150000000154137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-494", + "dateofocc": "2010-11-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (MCL BREMEN) boarded by pirates 26 Nov at 1255Z while underway in position 09-39N 067-23E, approximately 1085 miles east of Garacad, Somalia. The crew moved to the citadel and the pirates stayed onboard the vessel for approx", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.383333299750007, 9.649999999803072] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-495", + "dateofocc": "2010-11-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 00-39N 065-03E on 27 Nov at 0820Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.049999999616148, 0.650000000411296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-496", + "dateofocc": "2010-11-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (26 AGUSTOS) boarded by pirates 27 Nov at 0901Z while underway in position 13-34N 057-06E, approximately 152 miles northeast of Socotra Island. Crew mustered in citadel where they had initial steering control and access to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.100000000123487, 13.566666700096107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-497", + "dateofocc": "2010-11-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "267 MILES SOUTHEAST OF SALALAH, OMAN: A merchant vessel reported coming under fire at 0907Z on 27 Nov in position 14-16N 057-15E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.249999999723627, 14.26666670002885] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-498", + "dateofocc": "2010-11-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (PISTIS) reported attempted boarding 28 Nov at 0700Z while underway in position 14-51N 068-13E, approximately 820 miles southeast of Salalah, Oman. Four armed pirates in a boat chased and attempted to board a bulk carrier unde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.216666700109784, 14.850000000330965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-499", + "dateofocc": "2010-11-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 16-57N 067-09E on 29 Nov at 0254Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.150000000313582, 16.95000000012908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-500", + "dateofocc": "2010-11-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Merchant vessel attacked in 13-35N 042-56E on 29 Nov at 1749Z. Vessels are advised to keep 100 miles clear of this position and exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.933333300173388, 13.583333300168533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-513", + "dateofocc": "2010-12-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOMALIA-SOUTH COAST: Possible mothership activity in 04-08N 049-28E at 051537Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.46666669972825, 4.133333300177696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-502", + "dateofocc": "2010-11-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (NORTHERN PROMOTION) fired upon 21 Nov 10 at 1114 UTC while underway in position 14-49N 059-55E, approximately 360NM southeast of Salalah, Oman. Pirates armed with guns in a skiff chased and fired upon a container ship under", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.916666699751431, 14.816666700361395] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-503", + "dateofocc": "2010-11-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (FRONT ALFA) illegally boarded 21 Nov 10 at 2145 UTC while underway in position 15-30N 059-17E, approximately 580NM southeast of Salalah, Oman. Armed pirates in a skiff chased and boarded a tanker underway. The crew locked themselve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.283333299757885, 15.500000000396938] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-504", + "dateofocc": "2010-11-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (INTERTUNA TRES) fired upon 21 Nov 10 at 0720 UTC while underway in position 02-43N 055-20E, approximately 600NM east of Mogadishu, Somalia. Pirates armed with guns and RPG in skiffs chased and fired upon a fishing vessel un", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.333333300394543, 2.716666700239841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-505", + "dateofocc": "2010-11-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (VEGA LIBRA) fired upon 20 Nov 10 at 1015 UTC while underway in position 13-05N 067-34E, approximately 720NM east of Socotra Island, Yemen. Pirates armed with guns and RPG in two skiffs chased and fired upon a bulk carrier und", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.566666700043811, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-184", + "dateofocc": "2011-03-22", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "OFF TIOMAN ISLAND, MALAYSIA: A group of more than ten pirates armed with long knives in a speed boat boarded a tug towing a barge enroute from singapore to koh kong cambodia. They took hostage the ten crewmembers, locked them in a cabin, cut off the trac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.404722199626065, 2.753611100114369] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-185", + "dateofocc": "2011-04-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 17 MILES OFF QISHN, YEMEN: A skiff with three pirates onboard came within ten meters of a bulk carrier underway. Onboard security team fired warning shots and the skiff moved away. Small arms were sighted in the skiff.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.98833329968835, 15.36499999976752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-186", + "dateofocc": "2011-04-03", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SAMARINDA ANCHORAGE, INDONESIA: Robbers boarded a general cargo ship at anchor. They broke the padlocks on the bosun store and stole ship's stores and escaped upon seeing the duty crew on patrol. Port authorities informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.249999999865395, -1.116666700216911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-187", + "dateofocc": "2011-04-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (ELENI G) was fired upon by one skiff 03 April at 0205Z while underway in position 05-35S 040-20E, approximately 96 miles northeast of Dar es Salaam, Tanzania. Six pirates fired rpgs and small arms at the vessel. The master ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.333333299909441, -5.583333300118511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-188", + "dateofocc": "2011-04-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk carrier (ARRILAH-I) was boarded 01 April at 0528Z while underway in position 19-17N 065-45E approximately 398 miles southeast of Sur, Oman. The vessel was attacked by two skiffs firing small arms fire (each skiff had three pirates). Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.233333300085178, 19.283333300262939] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-189", + "dateofocc": "2011-04-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: A chemical tanker underway noticed a suspicious fishing vessel. After monitoring the vessel for some time it was observed that a skiff as being launched which then headed directly for the tanker. Alarm sounded and navies contacted. Armed se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.716666700025883, 14.083333299735045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-190", + "dateofocc": "2011-04-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "AROUND 375 MILES OFF SOCOTRA ISLAND: Two large white hulled skiffs were noticed approaching a tanker underway at a distance of 2.5 miles. Master raised alarm and all crew except for the duty crew mustered in the safe room. The security team onboard fired", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.868333300087045, 16.009999999577076] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-191", + "dateofocc": "2011-04-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDOPALM TERMINAL, LUBUK GAUNG, DUMAI, INDONESIA: Five robbers in a small boat approached and came alongside a chemical tanker at berth. One of the robbers attempted to climb onboard using the fire wire. Duty crew noticed the robbers and informed other c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.369444399856832, 1.753611100082026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-192", + "dateofocc": "2011-04-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SOUTH CHINA SEA: A tug was robbed in transit 01 April at 1530Z while underway in position 02-48N 105-31E, approximately 135 miles northeast of Singapore. Eight suspects armed with knives boarded the vessel. (Commercial sources)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.516666699607356, 2.800000000076125] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-193", + "dateofocc": "2011-03-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SOUTH CHINA SEA: An offshore supply tug was robbed in transit 31 Mar at 1430Z while underway in position 02-04N 106-00E, approximately 137 miles northeast of Singapore. A speedboat with ten robbers in masks carrying knives boarded and robbed the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.000000000176044, 2.066666700173869] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-194", + "dateofocc": "2011-04-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel (PACIFIC OPAL) was fired upon 05 April at 0656Z while underway in position 15-53N 059-57E, approximately 381 miles northeast of Socotra Island, Yemen. The pirate attack group consisted of a mothership and two large, white-hu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.949999999721001, 15.883333300332822] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-195", + "dateofocc": "2011-04-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported being hijacked at 0234Z on 08 Apr in position 18-25N 057-27E, approximately 90 miles southeast of Duqm, Oman. Vessels are advised to keep 100 miles clear of this position and to exercise extreme cautioon.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.450000000089801, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-83", + "dateofocc": "2010-03-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "LAGOS ANCHORAGE, NIGERIA: Eight robbers armed with knives boarded a chemical tanker. The robbers injured two crew who had to be taken ashore by pilot vessel for treatment. Ship's and crew cash and properties stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.401666700302485, 6.311666700279659] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-84", + "dateofocc": "2010-03-28", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CONCHAN TERMINAL, PERU: Three robbers boarded a tanker from a small wooden boat. Alarm raised, crew mustered and proceeded to forecastle to investigate. Upon seeing the alert crew, the robbers jumped overboard and escaped with stolen ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.930000000352891, -12.258333299862215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-85", + "dateofocc": "2010-03-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Six pirates in a skiff chased the tanker underway. They fired upon the tanker and attempted to board. Master enforced anti piracy measures, contacted coalition forces, increased speed and took evasive maneuvers. Finally the pirates aborted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.189999999984593, 13.25666670038288] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-86", + "dateofocc": "2010-03-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Four pirates in a skiff armed with machine guns chased and fired upon the tanker underway. Alarm raised, SSAS alert sent out and coalition forces contacted. A warship advised it would arrive at location within 40 minutes. Tanker increased s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.749999999898421, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-87", + "dateofocc": "2010-03-28", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "PERU: Tanker robbed 28 Mar 10 at 0118 UTC while moored in position 12-15.5S 076-55.8W, Conchan terminal. Three robbers boarded the vessel from a small wooden boat. The alarm was raised and the crew proceeded to the forecastle to investigate. The robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-76.930000000352891, -12.258333299862215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-88", + "dateofocc": "2010-03-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "NIGERIA: Tug robbed 20 Mar 10 at 1411 UTC while underway in position 04-47N 008-18.5E, Calabar. Three armed men boarded the vessel and fired warning shots into the air with machine guns. The master sent SSAS alert and contacted local agents for assista", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.308333300290201, 4.783333300243669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-89", + "dateofocc": "2010-03-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (ICEBERG I) hijacked 29 Mar 10 at 0930 local time while underway in position 13-15N 046-40E, approximately 10NM off the Yemeni coast. Armed pirates boarded and hijacked the vessel, taking hostage the 24 crewmembers onbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.66666669999745, 13.250000000099305] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-90", + "dateofocc": "2010-03-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 26 Mar 10 at 1245 UTC while underway in position 12-32.2N 044-45.1E, approximately 20NM southwest of Aden, Yemen. Armed men in a skiff approached the vessel at a distance of 2NM. The vessel inc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.75166669979609, 12.536666700323622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-91", + "dateofocc": "2010-03-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (DELMAS NACALA) fired upon 31 Mar 10 at 1713 UTC while underway in position 01-28N 065-09E, approximately 680NM northeast of Port Victoria, Seychelles. The vessel reported being chased and fired upon by two small fast boats while t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.150000000248895, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-92", + "dateofocc": "2010-03-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel fired upon 31 Mar 10 at 1700 UTC while underway in position 10-32N 058-00E, approximately 235NM southeast of Socotra Island. Vessel reported being fired upon while transiting at a speed of 10 knots. One crewmember was repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.000000000422403, 10.533333300204788] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-93", + "dateofocc": "2010-03-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (DL COSMOS) fired upon 31 Mar 10 at 1320 UTC while underway in position 05-24S 040-05E, approximately 60NM southeast of Mombasa, Kenya. Captain reported being fired upon by two skiffs from the stern. Vessel was moving at approximat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.083333299676553, -5.399999999649424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-222", + "dateofocc": "2011-04-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (GEMINI) was hijacked 30 April at 0430 UTC while underway in position 07-01S 041-22E, 140NM southeast of Zanzibar, Tanzania. Pirates attacked from two skiffs. (IMB, UKMTO)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.366666699736129, -6.999999999881027] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-94", + "dateofocc": "2010-03-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (CHOL SAN BONG CHONG NYON HO) fired upon 31 Mar 10 at 0610 UTC while underway in position 02-15S 041-31E, approximately 150NM northeast of Mombasa, Kenya. Armed men opened fire on the vessel with automatic weapons and R", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.516666700235589, -2.249999999952252] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-95", + "dateofocc": "2010-03-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (EVITA) fired upon 31 Mar 10 at 0513 UTC while underway in position 02-03N 052-27E, approximately 425NM east of Mogadishu, Somalia. Vessel reported coming under fire by two skiffs. Vessel conducted evasive maneuvers and evaded the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.449999999928139, 2.050000000276725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-96", + "dateofocc": "2010-03-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel reportedly hijacked 30 Mar 10 while underway in last reported position 10-08N 056-06E, approximately 165NM southeast of Socotra Island. Owners reported losing contact with the vessel on 30 March after no longer receiving da", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.100000000091143, 10.133333300371703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-287", + "dateofocc": "2010-08-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 22 Aug 10 at 0435 UTC while underway in position 13-19.5N 049-49E, approximately 80NM south of Al Mukalla, Yemen. Armed men were spotted approaching the vessel underway. The master increased", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.816666699694622, 13.325000000349064] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-288", + "dateofocc": "2010-08-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker robbed 21 Aug 10 at 2300 local time while underway in position 03-11.2N 105-22.2E, approximately 15NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with long knives boarded the vessel while underway. They mustered th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.370000000236587, 3.186666700066212] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-289", + "dateofocc": "2010-08-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: General cargo ship reported suspicious approach 20 Aug 10 at 0420 local time while underway in position 05-12.8N 106-32.6E, approximately 35NM northeast of Kakap Natuna oil terminal, Indonesia. Watch standers spotted three boats approa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.543333300225015, 5.213333299816895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-290", + "dateofocc": "2010-08-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Container ship reported suspicious approach 22 Aug 10 at 0410 UTC while underway in position 13-26.1N 049-41.6E, approximately 70NM south of Al Mukalla, Yemen. Five armed men in a skiff approached the vessel at a speed of 20 knots and cam", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.693333299780477, 13.434999999696117] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-291", + "dateofocc": "2010-08-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BANGLADESH: Tanker robbed 23 Aug 10 at 2330 local time while berthed in position 22-16.1N 091-48.2E, Chittagong port. Six robbers armed with long knives in a small wooden boat approached the vessel. Two of the robbers boarded the vessel and stole ship'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.803333299586484, 22.268333299590552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-293", + "dateofocc": "2010-08-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CEMENT CARRIER", + "descriptio": "GULF OF ADEN: Cement tanker fired upon 28 Aug 10 at 0800 UTC while underway in position 13-31.9N 049-58.2E, approximately 78NM southeast of Al Mukalla, Yemen. Eight men armed with automatic guns in a high speed boat chased an underway cement carrier wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.970000000423511, 13.531666700099493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-294", + "dateofocc": "2010-08-25", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GUINEA: Container ship robbed 25 Aug 10 at 0300 UTC while at anchor in position 09-19.2N 013-45.2W, approximately 10NM south of Conakry, Guinea. Ten robbers armed with AK-47s and knives boarded a container ship at anchor. The duty watch and the 2nd offi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.753333300103918, 9.319999999963272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-295", + "dateofocc": "2010-08-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: A pirate action group has been reported in 12-17N 044-59E on 28 Aug at 1449 UTC. Pirate action group consisting of 1 skiff with 1 outboard engine, orange hull, and 4 armed persons on board.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.983333300104789, 12.283333300036531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-296", + "dateofocc": "2010-08-19", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship robbed 19 Aug 10 at 0234 local time while anchored at Callao anchorage. Six robbers armed with long knives boarded the vessel and took the duty watchman hostage. After the watch did not respond on radio, the alarm was raised and ano", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-297", + "dateofocc": "2010-08-16", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BRAZIL: General cargo ship robbed 16 Aug 10 at 0530 UTC while anchored at Villa do Conde. During watch handover procedures, the duty officer noticed a wooden boat moving away from the shipside. The alarm was raised and crew mustered. Upon investigation", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.750277799782623, -1.542499999634856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-298", + "dateofocc": "2010-08-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier boarded 7 Aug 10 at 2035 local time while anchored at Chittagong Kutubdia anchorage. Five robbers armed with knives boarded the vessel. They attacked the duty watch with knives, injuring his hands and requiring hospital treatmen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-299", + "dateofocc": "2010-09-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker robbed 1 Sep 10 at 0100 UTC at position 03-14.3N 105-19.6E, approximately 15NM northwest of Pulau Mangkai, Indonesia. Six robbers with guns, knives, and steel rods boarded a tanker underway. They entered the bridge and took host", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.326666699754071, 3.238333300135253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-506", + "dateofocc": "2010-11-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "LOAD CARRIER", + "descriptio": "INDIAN OCEAN: Multi-function large load carrier (TAI AN KOU) illegally boarded 20 Nov 10 at 0824 UTC while underway in position 20-30N 060-51E, approximately 438NM northeast of Salalah, Oman. 15-20 people in three speed boats with RPG and AK-47 approach", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.850000000019918, 20.499999999659281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-507", + "dateofocc": "2010-11-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (NYK ALTAIR) fired upon 20 Nov 10 at 0310 UTC while underway in position 12-23N 066-19E, approximately 700NM east of Socotra Island, Yemen. Eight to ten people in skiff approached first from port and then from starboard sid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.31666669977858, 12.383333299770015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-508", + "dateofocc": "2010-11-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (NORTHERN VALOR) fired upon 18 Nov 10 at 1945 UTC while underway in position 00-18S 052-47E, approximately 460NM southeast of Mogadishu, Somalia. Master confirmed automatic weapons and RPG fired. Vessel maintained maximum sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.783333299997309, -0.299999999754334] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-509", + "dateofocc": "2010-11-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BANGLADESH: Tanker robbed 21 Nov 10 while at anchor in position 21-50.2N 091-39.5E, in the Chittagong anchorage. Robbers attempted to board a tanker engaged in anchoring operations via the poop deck using a rope and hook. Alert crew on anti piracy watch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.658333300242816, 21.836666699814998] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-510", + "dateofocc": "2010-11-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (KYTHIRA) fired upon 30 Nov at 1330Z while underway in position 09-19N 069-30E approximately 386 miles northwest of the Maldives. Five armed pirates in a skiff chased and fired upon a tanker underway with intent to hijack. Master ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.500000000344642, 9.316666699733844] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-511", + "dateofocc": "2010-12-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOUTHERN ARABIAN SEA: Pirate action group reported in 09-00N 067-10E on 04 Dec at 0232Z. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.166666700210726, 8.999999999737042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-512", + "dateofocc": "2010-12-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHEN ARABIAN SEA: Merchant vessel attacked in 08-10N 071-43E on 05 Dec at 0714Z. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.716666699773327, 8.166666700101359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-514", + "dateofocc": "2010-11-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VENEZUELA: Tanker robbed 27 Nov at 0800 local time while at anchor in position 10-16N 064-42W in Puerto la Cruz. Six robbers in a small craft boarded the tanker at anchor and broke the forward store's padlock. Duty watch raised alarm and crew rushed to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.699999999858449, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-515", + "dateofocc": "2010-11-28", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GUINEA: Bulk carrier robbed 28 Nov at 0330Z while at anchor in position 09-22N 013-47W in Conarky. Six robbers armed with machine guns boarded an anchored bulk carrier. Officer raised alarm and tried to contact port control without any success. The robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.78333329984406, 9.366666699600557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-516", + "dateofocc": "2010-11-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (IVER EXACT) fired upon 29 Nov at 0240Z while underway in position 16-58N 067-26E, approximately 775 miles northeast of Socotra Island. Five armed pirates in a skiff chased and fired upon a chemical tanker underway. Master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.43333329961672, 16.966666700026224] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-517", + "dateofocc": "2010-11-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (D&K I) fired upon 27 Nov at 0700Z while underway in position 00-39N 064-51E, approximately 620 miles northeast of the Seychelles. A tanker underway noticed a mother vessel launching skiffs, which started approaching the tanker. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.850000000149294, 0.650000000411296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-518", + "dateofocc": "2010-11-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (GURU GOBIND SINGH) fired on 25 Nov at 1800 local time while underway in position 14-52N 068-01E, approximately 810 miles northeast of Socotra Island. Seven pirates in a skiff chased and fired upon a tanker underway. Master enforced", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.01666669974361, 14.866666700228109] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-489", + "dateofocc": "2010-11-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (HADI) fired upon 25 Nov at 1439Z while underway in position 19-47N 062-56E, approximately 234 miles east of Masirah, Oman. Tanker fired on by pirates in a skiff with guns and rpgs. Vessel increased speed, sent alert, took evasive m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.933333299920889, 19.783333299829451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-196", + "dateofocc": "2011-04-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Pirate activity observed at 1005Z on 09 April in position 13-08N 056-18E. At 1506Z, approximately 120 miles northeast of Socortra Island, Yemen. This area will remain high risk for at least the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.299999999557997, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-197", + "dateofocc": "2011-04-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "ARABIAN SEA: General cargo ship (SUSAN K) was hijacked 08 April at 0234 UTC while underway in position 18-25N 057-27E, approximately 274NM southwest of Sur, Oman. About ten pirates boarded the cargo ship with weapons. The ten crew members and Master wen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.450000000089801, 18.416666699758366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-198", + "dateofocc": "2011-04-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: While underway a chemical tanker noticed one white and one blue skiff heading towards the vessel. Four persons were seen in the white skiff and five persons in the blue skiff. Crew alerted and armed security guards made themselves on the br", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.133333299704987, 12.033333299803644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-199", + "dateofocc": "2011-04-11", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "50 MILES SOUTHEAST OF PULAU MANGKAI, SOUTH CHINA SEA: Duty crew onboard a chemical tanker underway noticed a suspicious speed boat doing 6 to 7 knots at a distance of six miles. Master raised alarm, sounded horn, increased speed, crew mustered and switch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.825000000160514, 3.378333300121767] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-200", + "dateofocc": "2011-04-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PASSENGER SHIP", + "descriptio": "GULF OF ADEN: A passenger ship underway noticed a group of about 20 skiffs near the port bow at a distance of three miles. Five skiffs were seen to break out from this group and head towards the vessel. At a distance of around 600 to 700 meters the arme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.633333300106131, 12.51666670019705] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-201", + "dateofocc": "2011-04-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Oil products tanker (SAINT RAM) was fired upon by one skiff 12 April at 1218 UTC while underway in position 13-40N 049-56E, approximately 70NM southeast of Al Mukalla, Yemen. The vessel was fired upon by one skiff containing six pirates wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.933333300399795, 13.666666699829534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-202", + "dateofocc": "2011-04-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTHERN RED SEA: About five pirates in a skiff approached a bulk carrier underway. All crew went into citadel while bridge team increased speed, enforced anti piracy measures and contacted authorities. Later the skiff aborted the attempt and moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.600000000104217, 14.366666699762277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-203", + "dateofocc": "2011-04-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "AROUND 67 MILES OFF COTONOU, BENIN: Ten armed robers boarded a chemical tanker at anchor. The vessel sent an SSAS alert. The piracy reporting center cotacted the authorities and requested assistance for the crew and vessel. Further information indicated", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.083333300246295, 5.266666699737755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-204", + "dateofocc": "2011-04-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "GULF OF GUINEA: A supply ship was attacked 11 April at 1100Z while in position 04-39N 008-22.12E, approximately 82 miles souteast of Port Harcourt, Nigeria. The vessel was attacked by 12 armed men in a speedboat. The captain of the vessel was taken host", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.36861110034539, 4.649999999641352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-205", + "dateofocc": "2011-04-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: A merchant vessel reported suspicious approach at 0830Z on 17 Apr in position 14-04N 042-20E, approximately 84 miles from Eritrea, Eriterea. This area will remain a high risk for the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.333333299974129, 14.066666699662619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-206", + "dateofocc": "2011-04-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Three robbers boarded a tanker 14 April at 1750 UTC while anchored in position 01-41.6N 101-29.8E, in the Dumai anchorage, Indonesia. The robbers entered the engine room through the steering gear room entrance after breaking the padlock. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.496666700250785, 1.693333300026836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-207", + "dateofocc": "2011-04-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA: Container vessel (HANJIN TIANJIN) was boarded 20 April at 2049 UTC while underway in position 12-58N 058-55E, approximately 262NM northeast of Socotra Island, Yemen. (Commercial Sources, Operator)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.916666699719087, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-208", + "dateofocc": "2011-04-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: One robber boarded a chemical tanker 18 April at 1955 UTC while anchored in position 01-42.33N 101-27.16E, in the Dumai inner anchorage, Indonesia. Six to seven robbers in a wooden boat approached the vessel. One robber boarded the vessel, bu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.452777800417209, 1.705555599917886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-97", + "dateofocc": "2010-04-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "GULF OF ADEN: Vehicle carrier reported suspicious approach 06 Apr 10 at 0840 UTC while underway in position 14-06.8N 051-51.8E, approximately 160NM southeast of Al Mukalla, Yemen. Armed men in skiffs began initial approaches to the vessel, but never go", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.863333299571877, 14.113333300374507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-98", + "dateofocc": "2010-04-05", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CALLAO ANCHORAGE, PERU: Four masked robbers armed with long knives were seen on forecastle of a container ship. Alarm raised and crew mustered on bridge and all access to accommodation locked. Attempts to contact the authorities for assistance was futile", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-99", + "dateofocc": "2010-04-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (HAMBURG BRIDGE) fired upon 5 Apr 10 at 1205 UTC while underway in position 13-38.2N 055-38.2E, approximately 90NM northeast of Socotra Island. Armed men in skiffs chased and fired upon the vessel, using automatic weapons a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.636666699649027, 13.636666700089393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-100", + "dateofocc": "2010-04-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (TAIPAN) boarded 5 Apr 10 at 0749 UTC while underway in position 12-23N 060-21E, approximately 340NM east of Socotra Island. Armed men in two skiffs boarded the vessel underway. The crew locked themselves in a bulletproof s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.349999999554086, 12.383333299770015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-101", + "dateofocc": "2010-03-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "20 MILES EAST OF KHURIYA MURIYA, OMAN: Pirates attacked and hijacked a refrigerated cargo ship underway and took hostage 21 crew members.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.700000000290402, 17.449999999695592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-124", + "dateofocc": "2010-04-08", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "VENEZUELA: General cargo ship reported attempted boarding 8 Apr 10 at 1050 UTC while anchored in position 10-38N 071-35W, inner anchorage, Maracaibo port. Four robbers in two boats attempted to board the vessel at anchor. The robbers aborted the attemp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.583333299554909, 10.633333299938215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-102", + "dateofocc": "2010-04-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (RISING SUN) reported attempted boarding 5 Apr 10 at 0313 UTC while underway in position 18-21N 059-01E, approximately 110NM south of Masirah Island, Oman. The master reported being chased by three skiffs. A distress messa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.016666700351891, 18.349999999994452] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-103", + "dateofocc": "2010-04-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 4 Apr 10 at 1340 UTC while underway in position 09-24.3S 044-30.2E, approximately 340NM southeast of Dar es Salaam, Tanzania. Men in a skiff armed with RPGs and automatic weapons chased and fired upon the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.503333299765529, -9.405000000035272] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-104", + "dateofocc": "2010-04-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (SAMHO DREAM) hijacked 4 Apr 10 at 0740 UTC while underway in position 08-21N 065-00E, approximately 900NM east of Eyl, Somalia. Pirates in skiffs boarded and hijacked the vessel. The vessel and 24 crewmembers have been taken to an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.999999999749434, 8.34999999967107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-105", + "dateofocc": "2010-04-04", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "PHILIPPINES: Chemical tanker reported suspicious approach 4 Apr 10 at 0215 UTC while underway in position 04-10.3N 120-41.3E, south of Tawi Tawi, Celebes Sea. Vessel reported being chased by skiffs for 30 minutes. Evasive maneuvers were conducted and t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.688333300021441, 4.171666700228457] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-107", + "dateofocc": "2010-04-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Tanker (TORM RAGNHILD) fired upon 3 Apr 10 at 0539 UTC while underway in position 13-51.7N 051-05.1E, approximately 120NM southeast of Al Mukalla, Yemen. Men armed with RPGs and automatic weapons chased and opened fire on the vessel. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.085000000059381, 13.861666699939292] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-108", + "dateofocc": "2010-04-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA: Container ship fired upon 8 Apr 10 at 0622 UTC while underway in position 13-34.5N 057-26.7E, approximately 185NM northeast of Socotra Island. The captain initially reported a suspicious approach by one skiff with three persons onboard at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.444999999833385, 13.574999999682689] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-109", + "dateofocc": "2010-04-07", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (YASIN C) hijacked 7 Apr 10 at 1243 UTC while underway in position 04-59S 043-52E, approximately 260NM east of Mombasa, Kenya. Pirates boarded and hijacked the vessel with its 25 crewmembers and have sailed it to an undisclos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.866666700266649, -4.983333299919195] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-110", + "dateofocc": "2010-04-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (WESTERMOOR) fired upon 2 Apr 10 at 1100 UTC while underway in position 11-06S 046-07E, approximately 160NM northeast of Comoros. Two skiffs with armed men onboard chased and opened fire with RPGs and automatic weapons. Ves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.116666699664904, -11.099999999743829] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-300", + "dateofocc": "2010-08-31", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "TANJUNG PEMANCINGAN ANCHORAGE, INDONESIA: While at anchor, alarm for forecastle watertight doors was activated indicating that they had been opened. Investigation carried out revealed forecastle store door was broke open and ship's stores ad properties s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.383333300435311, -3.216666700015026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-301", + "dateofocc": "2010-08-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DEMOCRATIC REPUBLIC OF THE CONGO: Product tanker robber 31 Aug 10 at 0110 UTC while at anchorage in position 05-52.4S 013-01.9E, approximately 2NM west of Boma. Three robbers armed with knives boarded a product tanker at anchor. They stole ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.031666699633661, -5.873333299705166] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-302", + "dateofocc": "2010-08-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker robbed 30 Aug 10 at 2330 UTC at position 03-03.8N 105-21.6E, approximately 12NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with guns and long knives boarded a tanker underway. They entered the bridge and took the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.359999999723641, 3.063333300152067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-292", + "dateofocc": "2010-08-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (IDEAL BULKER) robbed 30 Aug 10 at 0254 UTC at position 2-59.7N 105-12.2E, approximately 24NM southwest of Pulau Mangkai, Indonesia. Six pirates in a small craft boarded the vessel from the stern. The pirates, who were arme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.203333299839983, 2.995000000185883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-304", + "dateofocc": "2010-08-29", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "HAITI: General cargo ship robbed 29 Aug 10 at 0115 local time while in position 18-33.3N 072-21.2W, South Finger Pier, Port au Prince. Crewmember spotted robbers on the aft deck and raised the alarm. The robbers jumped overboard and swam to a waiting b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.353333300380257, 18.554999999717836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-306", + "dateofocc": "2010-09-05", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "PERU: General cargo ship boarded 5 Sep 10 at 0140 local time while anchored in position 12-01.7S 077-11.7W, Callao anchorage. Two robbers armed with long knives boarded the vessel at anchor. The duty crew spotted them, raised the alarm, and the crew mu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.144722200014314, -12.047499999781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-307", + "dateofocc": "2010-09-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SOUTH CHINA SEA: Container ship reported suspicious approach 5 Sep 10 at 1940 local time while underway in position 06-07.7N 112-26.4E, approximately 11NM north of Friendship Shoal reef. The master noticed two speed boats with four to five persons onbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.439999999556903, 6.128333299985911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-308", + "dateofocc": "2010-09-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN: Container ship (MAGELLAN STAR) boarded 8 Sep 10 at 0540 UTC while underway in position 13-23N 049-58E, approximately 83NM southeast of Al Mukalla, Yemen. Armed pirates in a skiff boarded and attempted to hijack the vessel. The crew locked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.966666700194082, 13.383333299802359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-309", + "dateofocc": "2010-09-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "DEMOCRATIC REPUBLIC OF THE CONGO: Vessel robbed 4 Sep 10 at 0130 local time while underway in position 05-51.9S 013-03E, 1NM southeast of Boma anchorage. Three robbers armed with long knives boarded the vessel. The duty officer noticed and raised the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.865555600369021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-310", + "dateofocc": "2010-09-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker robbed 5 Sep 10 at 0305 local time while underway in position 03-14.2N 105-17.2E, approximately 19NM northwest of Pulau Mangkai, Indonesia. Four men armed with long knives boarded the vessel underway. They took the duty watch cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.286666700400303, 3.236666699932925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-311", + "dateofocc": "2010-09-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: About 25 robbers armed with knives approached a general cargo ship in two boats. While approaching and boarding the vessel they continuously threw stones on the ship's crews. The robbers stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-491", + "dateofocc": "2010-11-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (ALBEDO) hijacked 25 Nov at 0300Z while underway in position 05-38N 068-27E, approxiately 1140 miles east of Garacad, Somalia. ALBEDO reported the hijacked ship POLAR chasing and acting as a mothership. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.450000000445584, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-519", + "dateofocc": "2010-12-03", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PERU: Container ship robbed 3 Dec 10 at 2355 local time while at anchor in position 12-02N 077-12W, in Callao anchorage. Four robbers wearing diving suits armed with guns and knives boarded an anchored container ship. They threatened the forward duty cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, 12.033333299803644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-520", + "dateofocc": "2010-12-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARGO SHIP", + "descriptio": "INDIAN OCEAN: A bulk cargo ship (JAHAN MONI) was hijacked 5 Dec at 1126 UTC while underway in position 08-12N 071-55E, approximately 540NM west of Sri Lanka. At 0942 UTC, master reported two skiffs were approaching and that one attempted to board the me", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.916666700139501, 8.200000000070929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-521", + "dateofocc": "2010-12-08", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship robbed 8 Dec 10 at 1705 UTC while at anchorage in position 10-14N 107-04E, in Vung Tau anchorage. Duty watch onboard anchored container vessel noticed four robbers on the forecastle. Duty officer informed, alarm raised, and crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-523", + "dateofocc": "2010-12-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 20-51N 062-46E at 101504Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.766666700248322, 20.849999999625652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-524", + "dateofocc": "2010-12-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN ARABIAN SEA: Merchant vessel attacked in 06-11N 067-25E at 110542Z Dec. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.41666670044367, 6.183333300109098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-525", + "dateofocc": "2010-12-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Piracy action group reported in 07-33S 042-05E at 111030Z Dec. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.083333299741241, -7.550000000213629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-526", + "dateofocc": "2010-12-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate activity in 13-14.8S 054-43.0E on 13 Dec. The area involved should be avoided if possible. This area will remain high risk for at least 24-48 hours. Caution advised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.716666700122857, -13.246666700078606] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-527", + "dateofocc": "2010-12-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 13-09N 048-29E at 131000Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.483333299768333, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-528", + "dateofocc": "2010-12-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: A merchant vessel noted being attacked by two skiffs at 1233Z on 10 Dec in position 09-56S 041-48E, approximately 123 miles northeast of Comoros. This area will remain high risk for the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.800000000438047, -9.933333300214201] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-529", + "dateofocc": "2010-12-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: A merchant vessel noted being attacked by two skifffs at 1550Z on 10 Dec in position 21-05N 062-44E approximately 200 miles southeast of Sur, Oman. This area will remain high risk for the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.733333299554658, 21.083333299961396] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-530", + "dateofocc": "2010-12-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "10 MILES OFF PEMBA ISLAND, TANZANIA: A product tanker underway spotted two skiffs at a distance of 6.5 miles approaching her at high speed. The tanker increased speed raised alarm and instructed all crew to muster in a safe room except bridge crew and se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.9666666998707, -5.466666700312658] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-531", + "dateofocc": "2010-12-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 09-57S 041-46E at 101212Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.766666699569157, -9.950000000111345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-532", + "dateofocc": "2010-12-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 18-27N 061-50E at 140756Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme cautioin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.833333300155118, 18.449999999727879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-533", + "dateofocc": "2010-12-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: A bulk carrier (MICHALAKIS) was fired upon 15 Dec 10 at 0215 UTC while underway in position 12-09N 060-23E, approximately 350NM east of Socotra Island. Two skiffs with four pirates armed with machine guns and RPG chased and fired upon a bu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.383333300422976, 12.150000000333534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-534", + "dateofocc": "2010-12-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA, JAWA SEA: Pirates in an unlit wooden boat attempted to board a bulk carrier underway equipped with razor wires as a defense. Ship raised alarm and crew directed search lights towards the boat resulting in the pirates moving away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.986666700365333, -5.55999999976251] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-209", + "dateofocc": "2011-04-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "SINGAPORE: Robbers boarded a barge 17 April at 2112 UTC while underway in position 01-15.2N 104-03.2E, approximately seven NM southeast of Changi, Singapore. The Singapore Police Coast Guard (PCG) sighted a sampan alongside the vessel. The PCG spotted f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.053333300207441, 1.253333299940664] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-210", + "dateofocc": "2011-04-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported a suspicious approach at 1806Z on April 18 in position 13-30N 049-45E, approximately 84 miles from Al Mukalla, Yemen in the Gulf of Aden.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.749999999930765, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-211", + "dateofocc": "2011-04-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported suspicious approach at 0450Z on 18 April in position 21-19N 059-32E, approximately 59 miles off Masirah, Oman in the Gulf of Aden.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.533333299990773, 21.316666700121914] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-212", + "dateofocc": "2011-04-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk carrier (ROSALIA D' AMATO) was hijacked 21 April at 0218Z while underway in position 13-17N 059-06E, approximately 274 miles northeast of Socotra, Island, Yemen. One skiff attacked the vessel. The pirates boarded and took the crew host", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.100000000188174, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-213", + "dateofocc": "2011-04-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (ATLANTIA) was fired upon by seven pirates in two skiffs (NFI) 24 April at 1800 UTC while underway in position 06-57S 045-40E, approximately 381NM southeast of Zanzibar, Tanzania. The pirates failed to attach a boarding lad", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.666666699965106, -6.950000000014313] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-214", + "dateofocc": "2011-04-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Oil products/chemical tanker (PORT UNION) was fired upon 24 April at 0300 UTC while underway in position 04-09.8S 047-43.0E, approximately 484NM east of Mombasa, Kenya. Pirates chased the vessel in two skiffs, one of which had five pirates", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.716666699896507, -4.16333330012651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-215", + "dateofocc": "2011-04-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Product tanker (RUDEEF GNA) was fired upon 22 April at 2250 UTC while underway in position 15-11.03 N 051-36.36E, approximately 148NM northeast of Al Mukalla, Yemen. Pirates opened fire upon the tanker about 5-11 yards away, the onboard se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.60611110042845, 15.183888899751196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-216", + "dateofocc": "2011-04-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Seven robers boarded a bulk carrier 24 April at 2010Z while underway in position 03-08N 105-16E, approximately 45 miles northeast of the Anambas Islands, Indonesia. The robbers boarded the bulk carrier from a wooden boat. They departed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.266666700273788, 3.133333300145352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-217", + "dateofocc": "2011-04-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: Seven robbers boarded a general cargo vessel 25 April at 0055Z while underway in position 02-57N 105-17E, approximately 43 miles southwest of the Anambas Islands, Indonesia. The robbers took the officer of the watch and the duty able se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, 2.949999999676322] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-218", + "dateofocc": "2011-04-21", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "CARIBBEAN SEA: A fishing vessel was robbed 21 April 2011 at 0100 UTC while anchored off of Montrose, Guyana. Four armed robbers boarded the vessel and stole various goods. (Commercial Sources)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.083333299567983, 6.783333300308357] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-219", + "dateofocc": "2011-04-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: A tanker was robbed 22 April at 2130 UTC while anchored off of Kochi, India. The second officer noticed some movements on the forecastle deck. After the duty able seaman discovered three robbers, the second officer raised the alarm. After t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.2699999995653, 9.976944400163575] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-220", + "dateofocc": "2011-04-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "345 MILES EAST OF SOCOTRA ISLAND: Armed pirates in a skiff chased a container ship underway. A mother ship was noticed in the vicinity. Master increased speed and maneuvered away from the mother ship and skiff. Master enforced anti-piracy measures and ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.400000000320119, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-221", + "dateofocc": "2011-04-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "1.8 MILES SOUTH OF BATU PENGERANG, JOHOR, MALAYSIA: Pirates boarded a barge towed by a tug while crew were preparing for anchoring procedures. They broke open three containers, stole some of the cargo and escaped. After anchoring, the captain and crew ch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.099999999844783, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-111", + "dateofocc": "2010-04-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (ITAL GARLAND) fired upon 2 Apr 10 at 0834 UTC while underway in position 12-50.6N 058-10E, approximately 210NM east of Socotra Island. Two wooden boats with seven armed men onboard chased and opened fire on the vessel. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.166666699919688, 12.843333299982703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-112", + "dateofocc": "2010-03-31", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 31 Mar 10 at 1830 UTC while underway in position 14-25N 064-40E, approximately 600NM northeast of Socotra Island. The vessel reported two skiffs approaching the vessel. The captain raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.666666699680206, 14.416666699628991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-106", + "dateofocc": "2010-04-03", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "VIETNAM: Chemical tanker robbed 3 Apr 10 at 0230 local time while berthed in position 10-38N 106-46E, Hiep Phouc. Three robbers armed with knives boarded the vessel and took the 2nd officer as hostage. They stole ship's properties then escaped. The hos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.767777799649309, 10.634444399714937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-113", + "dateofocc": "2010-04-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 11 Apr 10 at 0930 UTC while underway in position 02-26.9N 059-59.8E, approximately 500NM northeast of Port Victoria, Seychelles. Three speed boats were detected on radar at a distance of about 3", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.996666700257663, 2.448333300082709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-114", + "dateofocc": "2010-04-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (RAK AFRIKANA) hijacked 11 Apr 10 at 0741 UTC while underway in position 04-45S 051-00E, approximately 565NM southeast of Kismayo, Somalia. Pirates boarded and hijacked the vessel and have sailed it to an undisclosed lo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.000000000195996, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-115", + "dateofocc": "2010-04-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "PERU: Chemical tanker boarded 9 Apr 10 at 1918 local time while in position 12-00S 077-12W, Callao. A robber was seen climbing the anchor chain of the vessel. The alarm was raised and the crew mustered. The crew used water to force the robber to jump b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.000000000042746] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-116", + "dateofocc": "2010-04-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "LAWI ANCHORAGE, BALIKPAPAN, INDONESIA: Robbers boarded a tanker by breaking open the hawse pipe cover. They entered the forescastle and stole ship equipment by breaking the lock on the booby hatch.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.815000000035639, -1.476666699796908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-117", + "dateofocc": "2010-04-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "PEMANCINGAN ANCHORAGE, INDONESIA: Robber attempted to climb up the anchor chain of a general cargo ship at anchor. Crew spotted him and informed bridge. Alarm raised and ship's whistle sounded. Robber jumped into the water and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.361111099856089, -3.200000000117882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-118", + "dateofocc": "2010-03-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: 12 meter fishing vessel (PRADEEPA), five persons on board, unreported. Last known position vicinity 11-00N 068-00E at 12 Feb.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.999999999846466, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-119", + "dateofocc": "2010-03-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Fishing vessel (SAKOBA), previously hijacked, is being used as a platform for piracy in 00-52N 046-56E at 080704 UTC Mar.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.933333300302763, 0.866666699775351] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-120", + "dateofocc": "2010-03-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Suspected hijacked vessel being used for pirate activity in 06-43S 044-22E at 230840 UTC Mar.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.366666699833104, -6.716666699678569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-121", + "dateofocc": "2010-03-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 03-49S 052-12E at 271004 UTC Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.199999999695194, -3.816666700214341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-122", + "dateofocc": "2010-03-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 03-03N 052-24E at 271021 UTC Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.400000000061425, 3.050000000309069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-123", + "dateofocc": "2010-04-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 13-38N 056-08E at 091016 UTC Apr. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.133333300060713, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-125", + "dateofocc": "2010-04-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 4 Apr 10 at 0545 UTC while underway in position 13-58.8N 051-25E, approximately 135NM southeast of Al Mukalla, Yemen. Vessel reported being chased by three white skiffs and one mother ship. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.416666699926225, 13.97999999977219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-312", + "dateofocc": "2010-09-06", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA: Bulk carrier robbed 6 Sep 10 at 0300 local time while anchored in position 03-51N 077-06W, Buenaventura anchorage. Three robbers armed with long knives boarded the vessel during heavy rain. They attacked and tied up the forward watchman. Whe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.100000000079604, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-305", + "dateofocc": "2010-09-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 6 Sep 10 at 0702 UTC while underway in position 13-32N 049-39.7E, approximately 65NM southeast of Al Mukalla, Yemen. Master reported six armed men in a skiff attempted to board the vessel as th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.661666699838008, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-313", + "dateofocc": "2010-09-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker (OLIB G) hijacked 8 Sep 10 at 0504 UTC while underway in position 13-26N 049-45E, approximately 73NM southeast of Al Mukalla, Yemen. Armed pirates boarded and hijacked the vessel along with 18 crewmembers while underway. (", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.749999999930765, 13.433333299669073] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-303", + "dateofocc": "2010-09-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIP", + "descriptio": "SOUTH CHINA SEA: Vessel boarded 1 Sep 10 at 2201 local time while underway in position 03-08.9N 105-25.2E, approximately 11NM northwest of Pulau Mangkai, Indonesia. Prior to entering high risk area, the crew had locked all access to accommodation and b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.4200000001033, 3.148055600164639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-314", + "dateofocc": "2010-09-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Piracy action group reported in 12-54N 043-11E at 111212 UTC Sep. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.183333300406332, 12.900000000132991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-315", + "dateofocc": "2010-09-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship robbed 12 Sep 10 at 2300 local time while at anchorage in Chittagong at position 22-09.45N 091-45.0E. Counter-piracy watch on board an anchored container ship reported three robbers armed with long knives to watch officer. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.157500000142306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-316", + "dateofocc": "2010-09-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "SOUTH CHINA SEA: Vehicle carrier (CHEERLEADER) boarded 10 Sep 10 at 2320 local time while underway in position 01-55.0N 109-05.0E, approximately 10NM southwest of Pulau Merundung, Indonesia. About eight robbers armed with long knives boarded a vehicle c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.083333300109359, 1.916666699674408] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-317", + "dateofocc": "2010-09-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTER INDIAN OCEAN: Possible mothership activity in 05-20N 048-30E at 140505 UTC Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.499999999665476, 5.333333299676895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-318", + "dateofocc": "2010-09-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CAMEROON: Dredger (AMERIGO VESPUCI) robbed 12 Sep 10 at 2130 local time while at anchor in position 03-53N 009-32E in port Douala. About 12 robbers armed with machine guns in two speed boats boarded a general cargo ship at anchor. They took hostage four", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.533333300172444, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-319", + "dateofocc": "2010-09-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "RED SEA: Container ship reported suspicious approach 11 Sep 10 at 1212 UTC while underway in position 12-54.0N 043-10.7E, in the Bab al Mandeb. Four skiffs with two to three peoples in each skiff chased and approached a container ship underway at high s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.178333300149859, 12.900000000132991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-331", + "dateofocc": "2010-09-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Mothership activity vicinity 07-23N 064-50E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.833333300252093, 7.383333299608296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-320", + "dateofocc": "2010-09-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker reported attempted boarding 9 Sep 10 at 2110 local time while underway at position 02-00.53N 109-04.39E, approximately 4NM southwest of Pulau Merundung, Indonesia. While on counter-piracy watch, crew onboard a tanker underway not", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.073055599745601, 2.008888900246916] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-321", + "dateofocc": "2010-08-29", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "SOUTH CHINA SEA: Product tanker boarded 29 Aug 10 at 0245 local time while at anchorage in Balikpapan, Indonesia. Robbers boarded a product tanker at anchor during heavy rain and stole ship stores. At the time of the robbery, the ship counter-piracy crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.85000000003231, -1.416666700316568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-535", + "dateofocc": "2010-12-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (HELLESPONT TRINITY) was fired upon 16 Dec 10 at 0315 UTC while underway in position 16-10N 068-20E, approximately 300NM southwest of Mumbai, India. Pirates in a skiff approached a tanker underway and opened fire with automatic weap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.333333299915637, 16.166666700360054] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-536", + "dateofocc": "2010-12-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 03-05-12N 049-48-29E on 17 Dec at 0342Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.808055600432567, 3.086666700332785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-537", + "dateofocc": "2010-12-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: General cargo ship robbed 14 Dec 10 at 2345 UTC while drifting in position 05-55N 003-17E, approximately 30NM south of Lagos. About eight robbers armed with crowbars, machetes, and guns fired upon and boarded a general cargo ship drifting off L", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.283333299745493, 5.916666699803784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-538", + "dateofocc": "2010-12-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "25 MILES OFF LAGOS NIGERIA: A suspicious vessel approached a drifting container ship. At a distance of 2.1 miles the vessel stopped and launched a skiff with seven armed pirates. The skiff chased ad fired upon the ship with intent to board. Master raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.559722199813677, 6.010000000152957] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-539", + "dateofocc": "2010-12-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: Container ship was robbed 14 Dec 10 at 0300 local time while at anchor in position 06-00S 106-54E in Tanjung Priok anchorage, Jakarta. Five robbers armed with long knives boarded a container ship at anchor. They took the duty watch hostage an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.903333299805013, -6.01166670038873] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-540", + "dateofocc": "2010-12-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: A bulk carrier (LEMESHEV) reported an attempted boarding 13 Dec 10 at 1920 UTC while underway in position 13-52N 051-07E, approximately 170NM southeast of Al Mukallah, Yemen. Three skiffs attempted to board the ship from the starboard and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.118333300028894, 13.873333299755245] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-541", + "dateofocc": "2010-12-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: A bulk carrier (MICHELE BOTTIGLIERI) was fired upon 14 Dec 10 at 0800 UTC while underway in position 18-15N 061-37E, approximately 435NM northeast of Salalah, Oman. Pirates armed with guns and RPG in two skiffs chased and fired upon a bulk", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.616666699716518, 18.250000000261025] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-542", + "dateofocc": "2010-12-07", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "EGYPT: Chemical tanker boarded 7 Dec 10 at 1200 UTC while at anchor in position 31-16N 032-19E in Port Said, Egypt. Seven robbers in a boat boarded a chemical tanker during mooring operations. They approached the duty watchman with an iron rod and threa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.31666669957832, 31.266666699679263] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-543", + "dateofocc": "2010-12-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: A tanker (NORDIC APOLLO) was fired upon 13 Dec 10 at 1000 UTC while underway in position 13-09N 048-29E, approximately 90NM northwest of Al Mukallah, Yemen. Five pirates armed with guns and RPG in a skiff fired upon and attempted to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.483333299768333, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-21", + "dateofocc": "2011-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Pirate action group in 12-10N 043-43E at 0532Z on 04 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.716666699767131, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-544", + "dateofocc": "2010-12-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: A bulk carrier (RENUAR) was hijacked 11 Dec 10 at 0540 UTC while underway in position 06-09N 067-19E, approximately 360NM southwest of Minicoy Island. Pirates armed with guns and RPG in skiffs chased, fired upon, and boarded a bulk carrier", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.316666699810924, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-545", + "dateofocc": "2010-12-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: A tanker (UNITED STAR) was fired upon 10 Dec at 1454 UTC while underway in position 20-55N 062-47E, approximately 275NM SE of Muscat, Oman. Heavily armed pirates in two skiffs chased and fired upon a tanker underway. The tanker activated t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.783333300320749, 20.916666700288829] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-546", + "dateofocc": "2010-12-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: A container ship (MSC PANAMA) was hijacked 10 Dec at 1212 UTC while underway in position 09-57S 041-46E, approximately 240NM southeast of Dar es Salam, Tanzania. A container vessel was hijacked by armed pirates in two skiffs. All 23 crew m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.766666699569157, -9.950000000111345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-547", + "dateofocc": "2010-12-13", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM: Bulk carrier robbed 13 Dec 10 at 0026 local time while at anchor in position 10-14N 107-28E in Vung Tau outer anchorage. Four robbers boarded a wood chip carrier ship at anchor. Alert crew noticed the robbers and raised the alarm. The robbers e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.46666669980533, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-223", + "dateofocc": "2011-04-27", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "RESEARCH VESSEL", + "descriptio": "AROUND 115 MILES OFF COMOROS: Pirates in two skiffs approached a reserch vessel underway towing. Vessel raised alarm and the Mozambique military onboard the vessel went to standby.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.416666699602843, -10.733333299880314] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-224", + "dateofocc": "2011-04-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF GUINEA: Two robbers attempted to board a tanker 29 April at 2255 UTC while at anchor in position 06-06N 002-37E, approximately 22NM south of Porto Novo, Benin. Seven armed robbers approached the tanker in a boat. Two robbers tried to board the t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.616666699607094, 6.100000000272814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-225", + "dateofocc": "2011-05-02", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "RORO SHIP", + "descriptio": "PUERTO LIMON ANCHORAGE, COSTA RICA: Ten robbers managed to board a Roro ship at anchor. The robbers captured and tied up tow ship crew and kicked them and stole their property. The tied up crew managed to free themselves around 20 minutes after the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.016666700437383, 9.976666700312762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-226", + "dateofocc": "2011-05-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "AROUND 530 MILES OFF MINICOY ISLAND, INDIA: A wooden mother ship was seen launching a skiff. Four pirates armed with rpgs ad automatic weapons approached the container ship at around 25 knots. The pirates tried to circle the ship and tried to damage the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.900000000048351, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-227", + "dateofocc": "2011-05-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Watch keepers ad armed security team onboard a bulk carrier underway noticed a green and red hulled skiff with 8-9 persons onboard at a distance of 3-4 miles. The skiff was seen approaching the vessel at a speed of approximately 18 knots. W", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.313333300073964, 13.181666700133121] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-229", + "dateofocc": "2011-05-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "AROUND 190 MILES SOUTHEAST OF SALALAH, OMAN: Four armed pirates in a skiff approached a general cargo ship underway. As the pirates closed to 0.3 miles they fired at the vessel. The vessel took evasive maneuvers and contacted the coalition naval forces.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.216666699721713, 14.716666699728592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-228", + "dateofocc": "2011-04-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Cargo ship (NAXIHE) was fired upon by one skiff with 3-4 pirates onboard 28 April while underway in position 12-53N 048-20E, approximately 110NM southwest of Al Mukalla, Yemen. (Operator, Open Sources)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.333333300168192, 12.883333300235847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-230", + "dateofocc": "2011-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 540 MILES NORTHWEST OF MINICOY ISLAND, INDIA: Pirates armed with rpg and automatic weapons approached and boarded a bulk carrier underway. The master contacted authorities, company CSO and all crew retreated into the citadel. The navies in the are", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.800000000347211, 14.833333300433765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-231", + "dateofocc": "2011-05-05", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "DUMAI ANCHORAGE INDONESIA: Three armed robers boarded a chemical tanker at anchor via the poop deck and tool hostage the 3rd engineer. They entered the engine room and stole ship's properties. Duty oiler saw the robbers and informed the bridge who raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-232", + "dateofocc": "2011-05-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 280 MILES EAST OF SOCOTRA ISLAND, YEMEN: Two skiffs with firve pirates in each armed with rpg and automatic weapons chased and fired upon a bulk carrier underway. Ship sent distress message, raised alarm, increased speed and made evasive maneuvers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.338333299881072, 12.150000000333534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-233", + "dateofocc": "2011-05-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "AROUND 20 MILES SOUTH OF COTONOU, BENIN: Six pirates armed with guns boarded a taker underway. Pirates opened fire towards the bridge and accomodation. Pirates stole ships cash and crew personal belongings. Two crew members were manhandled and suffered m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.366666700273527, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-234", + "dateofocc": "2011-05-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "SALALAH, OMAN: Armed pirates in a skiff chased and fired upon a product tanker underway. The tanker took evasive maneuvers and contacted the coalition naval forces. The naval vessels in the area responded to the distress call and the pirates aborted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.783333300094341, 16.233333300299194] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-235", + "dateofocc": "2011-05-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPORT VESSEL", + "descriptio": "TAKORADI ANCHORAGE, GHANA: Around seven robers armed with knives in three fishing boats came close to a support vessel at anchor. Two robbers managed to board and steal ship properties during watch change over. Port authority informed. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.72333329997565, 4.903333300103668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-126", + "dateofocc": "2010-04-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (NADA) fired upon 9 Apr 10 at 1005 UTC while underway in position 13-38N 056-08E, approximately 115NM northeast of Socotra Island. Armed men in skiffs chased and fired upon the vessel using machine guns and RPGs. The vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.133333300060713, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-127", + "dateofocc": "2010-04-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship fired upon 8 Apr 10 at 0622 UTC while underway in position 13-43N 056-41E, approximately 150NM northeast of Socotra Island. Armed men in skiffs chased and opened fire on the vessel. The vessel increased speed, conducted eva", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.683333300393258, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-128", + "dateofocc": "2010-04-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: A pirate action group has been reported in 01-40S 057-37E at 0800 UTC 16 Apr 10. One motherskiff, two attack skiffs course 230, speed 6 knots.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.616666699587142, -1.666666699650136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-129", + "dateofocc": "2010-04-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship (THOR TRAVELLER) fired upon 14 Apr 10 at 2345 UTC while underway in position 12-42N 047-23E, approximately 125NM northwest of Bosasso, Somalia. Approximately seven men armed with RPGs and guns in a skiff chased and open", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.383333300002562, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-130", + "dateofocc": "2010-04-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker (SEMUA GEMBIRA) robbed 17 Apr 10 at 0600 local time while anchored in position 01-18.42N 104-12.7E, approximately 1NM south of Tanjung Ayam. Six robbers armed with swords and parangs boarded the vessel via the poop deck. They tied up t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.211666700118258, 1.306944399712279] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-131", + "dateofocc": "2010-04-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker fired upon 18 Apr 10 at 0725 UTC while underway in position 09-29N 068-56E, approximately 865NM southeast of Socotra Island and 430NM west of Kochi, India. Four men in a skiff armed with RPGs opened fire on the vessel. Counter-pira", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.933333300114896, 9.483333300305731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-132", + "dateofocc": "2010-04-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "STRAIT OF MALACCA: Tanker reported suspicious approach 17 Apr 10 at 1055 local time while underway in position 04-02.3N 099-45E, approximately 55NM northwest of Lumut, Malaysia. One fishing boat with a few persons onboard approached the tanker while dr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.749999999749093, 4.038333299801366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-133", + "dateofocc": "2010-04-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDIAN OCEAN: French warship (FS SOMME) fired upon 19 Apr 10 at 2101 UTC while underway approximately 400NM southeast of Mogadishu, Somalia. Two skiffs opened fire on the ship, causing the SOMME to return fire with warning shots. When the skiffs attempt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.499999999762508, -0.833333300189679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-134", + "dateofocc": "2010-04-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "NIGERIA: Container ship reported attempted boarding 12 Apr 10 at 1215 UTC while drifting in position 06-16.6N 003-26.9E, Lagos roads. Three men armed with automatic rifles in a fiberglass motor boat approached the vessel with intent to board. The duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.448333300115053, 6.276666700283045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-135", + "dateofocc": "2010-04-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 21 Apr 10 at 1050 UTC while underway in position 01-10.05N 065-00.08E, approximately 665NM northeast of Port Victoria, Seychelles.Four men in a blue skiff armed with RPGs and automatic weapons opened fire on the ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.999999999749434, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-136", + "dateofocc": "2010-04-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (VOC DAISY) hijacked 21 Apr 10 at 0605 UTC while underway in position 16-25N 057-13E, approximately 280NM northeast of Socotra Island. Suspected pirates in skiffs boarded and hijacked the vessel, taking 21 crewmembers hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.216666699754057, 16.416666699693678] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-137", + "dateofocc": "2010-04-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "INDIAN OCEAN: Fishing vessels (PRANTALAY 11) (PRANTALAY 12) (PRANTALAY 14) hijacked 18 Apr 10 at 0200 UTC while underway in position 09-29N 069-18E, approximately 230NM northwest of Minicoy Island, India. Armed men in skiffs opened fire on the three fi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.299999999978411, 9.483333300305731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-138", + "dateofocc": "2010-04-19", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT AND BARGE", + "descriptio": "SOUTH CHINA SEA: Tug (PU 2007), towing barge (PU 3316) reportedly hijacked 19 Apr 10 at 2328 local time while underway in position 04-25.51N 104-18.92E, approximately 57NM northeast of Kuantan, Malaysia. The tug activated its SSAS while underway at the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.315277799756586, 4.425277800366302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-322", + "dateofocc": "2010-09-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIPS", + "descriptio": "SOMALIA: Possible mothership activity in 06-59N 049-24E on 20 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.399999999964393, 6.983333299775211] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-323", + "dateofocc": "2010-09-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIPS", + "descriptio": "SOMALIA: Piracy action group reported in 01-17N 052-51E at 190847 UTC Sep. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.849999999761224, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-324", + "dateofocc": "2010-09-18", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "HAIPHONG ROADS, VIETNAM: About 20 armed robbers boarded a container ship at anchor. Duty crew noticed the robbers on the forecastle deck and informed the duty officer who instructed him to secure all access points around the accommodation. Alarm raised a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.871666699862544, 20.643333299875223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-325", + "dateofocc": "2010-09-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "DOUALA PORT, CAMEROON: Two robbers armed with knives in a boat boarded a berthed general cargo ship during heavy rain. They opened the locked mast house but were noticed by duty crew. The robbers escaped with ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.699999999669785, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-326", + "dateofocc": "2010-09-16", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "RO-RO", + "descriptio": "PORT AU PRINCE ANCHORAGE, HAITI: Duty crew on a RO-RO ship spotted one robber armed with knife on the aft deck. Alarm raised. The robbers jumped overboard and swam to a waiting boat and escaped. On investigating it was discovered that ship's stores were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.525000000134014, 18.568333299560834] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-327", + "dateofocc": "2010-09-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TOWED VESSEL", + "descriptio": "BONNY RIVER, NIGERIA: About 21 armed pirates in three crafts boarded a pipe layer crane vessel undertow. All crew locked themselves in accomodations. Pirates were able to take one crewmember as a hostage. Master called Nigerian naval vessel in vicinity.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.909999999552554, 3.831666699875711] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-328", + "dateofocc": "2010-09-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDIAN OCEAN: Possible mothership activity in 06-37N 065-30E at 241245 UTC Sep. This area will remain high risk for atleast 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.500000000215266, 6.61666669973647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-332", + "dateofocc": "2010-09-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Research vessel fired upon 26 Sep 10 at 2050 UTC while underway in position 06-54S 040-27E, approximately 80NM east of Dar es Salaam. Two to three skiffs opened fire. The pirates aborted attack after vessel returned fire. No injuries reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.450000000439388, -6.9000000001476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-333", + "dateofocc": "2010-09-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "TANZANIA: Chemical tanker (MISSISSIPPI STAR) fired upon 28 Sep 10 at 0747 UTC while underway in position 06-28S 039-48E, approximately 40NM northeast of Dar es Salaam. Five pirates armed with M16s and RPG on a speedboat approached along the starboard sid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.800000000373416, -6.466666700345002] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-334", + "dateofocc": "2010-09-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Mothership activity vicinity 10-38N 056-44E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.733333300259972, 10.633333299938215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-335", + "dateofocc": "2010-09-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Mothership activity in vicinity 10-11N 057-05E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.083333300226343, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-337", + "dateofocc": "2010-09-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 29 Sep 10 at 0455 UTC while underway in position 06-47.5N 061-51.0E, approximately 650NM east of Garacad, Somalia. Five men on one skiff with AK-47s and hook ladders approached from stern. Master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.850000000019918, 6.783333300308357] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-338", + "dateofocc": "2010-09-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TANZANIA: Asphalt tanker (ASPHALT VENTURE) hijacked 29 Sep 10 at 0058 UTC while underway in position 07-09S 040-59E, approximately 100NM southeast of Dar es Salaam, Tanzania. Currently, the vessel is transiting north, reportedly toward Harardheere on t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.98333329997547, -7.150000000380544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-339", + "dateofocc": "2010-09-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel hijacked in 07-11S 041-02E at 282036 UTC Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.033333299842184, -7.183333300350114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-340", + "dateofocc": "2010-09-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "OMAN: Four skiffs chasing a general cargo ship present in 17-35N 056-55E at 290915 UTC Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.916666699654456, 17.583333300297909] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-341", + "dateofocc": "2010-09-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SELAT BERHALA, INDONESIA: Twelve pirates armed with knives borded a tug towing a barge. Crew enforced anti-piracy measures and contacted owners. Owners contacted the IMB piracy reporting center and requested assistance. The center immediately contacted t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.307777800271197, -0.883333300056449] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-548", + "dateofocc": "2010-12-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (DOUBTLESS) was fired upon 19 Dec 10 at 0909 UTC while underway in position 19-04N 062-10E, approximately 475nm NE of Salalah, Oman. Two pirates attempted to board the vessel by using ladders. Due to evasive maneuvers and e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.166666700049063, 19.066666699824339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-549", + "dateofocc": "2010-12-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "950 MILES EAST OF MOGADISHU: Pirates attacked and hijacked a bulk carrier (ORNA) and took her 19 crew members hostage. Pirates are sailing the vessel towards Somalia. Vessels are advised to keep 100 miles clear of this position and to exercise extreme ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.533333300023116, -1.76666670028294] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-550", + "dateofocc": "2010-12-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Hijacked merchant vessel IZUMI conducting mothership operations in 12-22.1N 062-05.1E at 212341Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.085000000415107, 12.368333299899916] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-551", + "dateofocc": "2010-12-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 12-10N 060-31E at 220312Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.516666699950747, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-552", + "dateofocc": "2010-12-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attcked in 17-03N 062-45E at 220428Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.750000000351179, 17.049999999862507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-1", + "dateofocc": "2010-12-23", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "DREDGER", + "descriptio": "PERU: Dredger robbed 23 Dec 10 at 0430 local time while at anchor in position 12-02.47S 077-09.21W, in the north break water of Callao anchorage. Four robbers in a small boat armed with guns and knives approached a dredger from the port side. They start", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.153611099851275, -12.041111100072555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-2", + "dateofocc": "2010-12-16", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "RORO", + "descriptio": "EGYPT: Roll-on roll-off ship was robbed 16 Dec 10 at 1430 UTC while at anchor in position 31-14N 032-18E, in the inner waiting area of Port Said. About 20 robbers from a boat boarded a RoRo cargo ship during anchoring operations. The robbers broke the p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.299999999681177, 31.233333299884976] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-3", + "dateofocc": "2010-12-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker robbed and hijacked 24 Dec 10 at 2220 UTC while at anchor in position 06-07.7N 002-37.2E, approximately 60NM southwest of Lagos. 15 armed men boarded an anchored chemical tanker. The robbers were very violent with the crew and m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.619999999836523, 6.128333299985911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-4", + "dateofocc": "2010-12-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (EMS RIVER) was hijacked 27 Dec at 1303 UTC while underway in position 17-57N 057-43E, approximately 225NM northeast of Salalah, Oman. Pirates using a previously hijacked tanker attacked and hijacked a general cargo ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.716666700219889, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-5", + "dateofocc": "2010-12-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (SIGLOO STAR) was chased 27 Dec 10 at 1200 UTC while underway in position 15-17N 056-22.8E, approximately 160NM southeast of Salalah, Oman. Skiffs launched from a previously hijacked vessel chased an LPG tanker. The tanker enforced", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.380000000064229, 15.283333300133563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-6", + "dateofocc": "2010-12-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (SHIUH FU 1) was hijacked 25 Dec 10 at 1000 UTC while underway in position 12-58.9S 051-52.01E, approximately 120NM east of Nosy Ankao, Madagascar. Pirates hijacked a fishing vessel along with her 26 crew members. A previou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.866666699626023, -12.981666699975619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-7", + "dateofocc": "2010-12-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MOZAMBIQUE CHANNEL: Bulk carrier (MAJESTIC) was fired upon 25 Dec 10 at 0830 UTC while underway in position 19-04S 038-42E, approximately 185NM east of Beira, Mozambique. Eight pirates in a skiff chased and fired upon a bulk carrier underway. Pirates ab", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [38.699999999708268, -19.066666700033011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-8", + "dateofocc": "2010-12-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (THOR NEXUS) was hijacked 25 Dec 10 at 0140 UTC while underway in position 16-01N 060-12E, approximately 380NM east of Salalah, Oman. Pirates boarded and hijacked a general cargo ship underway with her 27 crew members ho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.199999999953945, 16.016666699860593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-236", + "dateofocc": "2011-05-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "AROUND 220 MILES SOUTH OF RAS AL HAD, OMAN: Pirates in a skiff armed with rpg and guns chased and fired upon a product tanker underway. Master raised alarm, took evasive maneuvers and instructed crew to proceed into citadel. Armed security team took meas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.533333299990773, 18.699999999960824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-237", + "dateofocc": "2011-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF OMAN: Two skiffs approached a container ship. The vessel altered course, increased speed raised alarm, crew went to citadel. There were four pirates in each boat. Long rods attached with hooks and ladders were noticed on the skiffs. The skiffs fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.113333299998828, 25.296666700124717] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-238", + "dateofocc": "2011-05-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "COTONOU ANCHORAGE, BENIN: Armed robbers boarded a chemical tanker at anchor. They threatened and assaulted some crew members. Robbers stole ship's properties, crew personal properties and escaped. One crew member remains missing.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.444999999853337, 6.264999999743054] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-239", + "dateofocc": "2011-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 235 MILES EAST OF SALALAH, OMAN: Pirates in two skiffs armed with rpgs and guns chased and fired upon a bulk carrier underway. Master raised alarm, SSAS activated increased speed, took evasive maneuvers and contacted warships for assistance. Due t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.000000000422403, 17.566666700225483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-240", + "dateofocc": "2011-05-07", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GUAYAQUIL INNER ANCHORAGE, ECUADOR: 12 robbers in two boats armed with guns approached a container ship at anchor. They boarded the ship using hooks and ladders. Master raised alarm, activated SSAS and crew locked all accomodation doors. The robbers stol", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.966666699574318, -2.333333299788535] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-241", + "dateofocc": "2011-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk cargo ship (FULL CITY) was boarded by pirates on 05 May at 0330Z while underway in position 14-58N 066-38E, approximately 415 miles west of Goa, India. (UKMTO, Open Sources)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.633333299950607, 14.966666699961536] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-242", + "dateofocc": "2011-05-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "AROUND 190 MILES OFF RAS AL HAD, OMAN: Pirates in a dhow and a skiff chased a chemical tanker underway. Master raised alarm, icreased speed and took evasive maneuvers resulting in the pirates aborting the attempted attack. There were 4-5 pirates in the s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.316666699584516, 19.216666700323799] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-243", + "dateofocc": "2011-05-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "AROUND 304 MILES WEST OF MINICOY ISLAND, INDIA: About five pirates in a skiff chased and fired upon a LPG tanker underway. Ship raised alarm, increased speed and took evasvie maneuvers resulting in the pirates aborting the attempted attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.883333300215838, 8.5333333001401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-244", + "dateofocc": "2011-05-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "AROUND 220 MILES OFF SOCOTRA ISLAND, YEMEN: A general cargo ship underway spotted a mother vessel launch a skiff which approached the ship at 25 knots. Duty officer raised alarm, increased speed, altered course SSAS activated, security team onboard alert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.936666699813316, 13.911666699806005] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-245", + "dateofocc": "2011-05-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN: A small fast contact was noticed on radar approaching a container ship underway at 4 miles. Duty officer monitored the contact and at a distance of 1.6 miles it was observed as a skiff and alarm was raised. When the skiff approached at a di", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.616666700195424, 13.178333300078975] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-246", + "dateofocc": "2011-05-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "AROUND 110 MILES OFF SOCOTRA, YEMEN: Pirates in a skiff chased and fired upon on a container ship underway. The ship made evasive maneuvers and enforced anti-piracy preventive measures and as a result the pirates aborted the attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.4166667000556, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-247", + "dateofocc": "2011-05-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "AROUND 145 MILES OFF MASQAT, OMAN: Four pirates in a skiff armed with guns chased, fired upon and attepted to board a tanker underway. Master raised alarm, increased speed, took evasive maneuvers, sent distress messages, contacted authorities and crew ac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.183333300089089, 24.183333299791855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-248", + "dateofocc": "2011-05-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "AROUND 160 MILES OFF DAR ES SALAAM, TANZANIA: Five pirates in a skiff attempted to attack a fishing vessel underway. The security team onboard fired warning shots resulting in the pirates aborting the attempt. A mother vessel was sighted in the vicinity.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.933333300108757, -8.983333300048571] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-139", + "dateofocc": "2010-04-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (STAR YPSILON) robbed 9 Apr 10 at 0200 local time while underway in position 03-19.1N 105-28.9E, approximately 20NM northwest of Pulau Jemaja, Indonesia. Seven men armed with guns and long knives boarded the vessel and stol", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.481666699610741, 3.318333299742164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-22", + "dateofocc": "2011-01-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 19-35N 065-13E at 1503Z on 03 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.216666700012809, 19.583333300362597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-140", + "dateofocc": "2010-04-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTH CHINA SEA: Chemical tanker (THERESA LIBRA) robbed 7 Apr 10 at 2300 local time while underway in position 02-44.2N 105-16.3E, approximately 6NM west of Pulau Damar, Indonesia. While underway at approximately 12 knots, eight men armed with knives b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.271666699630885, 2.736666700366413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-141", + "dateofocc": "2010-04-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 06-00S 045-00E on 22 Apr. Mariners are advised to keep clear of this area if possible. Area is considered high risk for atleast the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.00000000000199, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-142", + "dateofocc": "2010-04-04", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Motor vessel attacked in 09-20S 044-32E at 041406 UTC Apr. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.53333330040499, -9.333333300014942] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-143", + "dateofocc": "2010-03-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "WESTERN INDIAN OCEAN: Pirates armed with guns in two skiffs chased and fired upon a product tanker underway. Master raised alarm took anti-piracy measures, increased speed and managed to evade the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.049999999706984, -5.049999999683109] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-144", + "dateofocc": "2010-03-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 00-59S 057-19E at 280830 UTC Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.316666700386804, -0.983333299789876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-147", + "dateofocc": "2010-04-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-59N 065-49E at 250348 UTC Apr. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.816666700212068, 17.983333300130937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-145", + "dateofocc": "2010-04-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Mothership reported in 00-30S 053-04E at 210757 UTC Apr. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.066666700024541, -0.500000000120508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-146", + "dateofocc": "2010-04-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDIAN OCEAN: Pirate vessels sighted in 08-20N 053-58E at 232300 UTC Apr. Vessels have blue and white hulls separated by red line. Vessels passing within 100 miles are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.966666700323458, 8.333333299773926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-148", + "dateofocc": "2010-04-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: A merchant vessel reported coming under fire at 0242 UTC on 22 Apr in position 14-51N 065-14E. Attack consisted of one white skiff with four persons on board armed with AK-47s. Attack has ceased and crew reports safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.233333300085178, 14.850000000330965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-149", + "dateofocc": "2010-04-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "WESTERN INDIAN OCEAN: A bulk carrier reported coming under fire 21 Apr at 1050 UTC while underway in position 01-10.05N 065-00.08E. Four men in a blue skiff armed with rpgs and automatic weapons opened fire on the vessel for approximately three minutes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.999999999749434, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-150", + "dateofocc": "2010-04-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SOUTH CHINA SEA: A tug boat has been hijacked. Last position sighted at 181915 UTC Apr is near Anambas Islands 03-00N 106-00E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.000000000176044, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-151", + "dateofocc": "2010-04-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "OFF LAGOS, NIGERIA: 3RD officer on a product tanker noticed on radar a boat approaching from the port bow. When Aldis lights were directed at the boat, the boat stopped and turned towards another vessel. Later the boat approached the tanker from astern.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.348611100057155, 6.168333300238999] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-152", + "dateofocc": "2010-04-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUB BOAT AND BARGE", + "descriptio": "SOUTH CHINA SEA: Tug (PU 2402) robbed 27 Apr 10 at 2138 local time while underway in position 04-44.16N 103-58E, approximately 70NM northeast of Kuantan, Malaysia. Seven robbers in a small boat came along the port side of the vessel. Six of the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 4.736111100180722] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-330", + "dateofocc": "2010-09-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Tanzanian Navy patrol boat fired upon 25 Sep 10 at 2000 UTC while underway in position 09-34S 040-14E, approximately 175NM southeast of Dar es Salaam. One skiff with four pirates onboard armed with small arms and RPG approached and fired upon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.233333300176014, -9.56666670017546] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-336", + "dateofocc": "2010-09-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo vessel (LUGELA) reported illegal boarding 25 Sep 10 at 0300 UTC while underway in position 07-23N 064-49E, approximately 930NM east of Garacad, Somalia. The pirates boarded the vessel but never gained control. The crew disabl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.816666700179724, 7.383333299608296] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-342", + "dateofocc": "2010-09-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BANGLADESH: General cargo ship (BM ADVENTURE) robbed 24 Sep 10 at 2210 local time while at anchorage in Chittagong at position 22-10.9N 091-40.7E. Four robbers in one boat boarded a ship from astern during anchoring operations. Duty watchman noticed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.678333300369331, 22.181666700424216] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-343", + "dateofocc": "2010-09-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Piracy action group sighted in vicinity 12-22N 043-58E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.966666700000076, 12.366666699697589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-344", + "dateofocc": "2010-09-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOUTHERN ARABIAN SEA: Piracy action group sighted in vicinity 07-34N 057-39E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [57.649999999556712, 7.5666666999021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-345", + "dateofocc": "2010-10-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "WESTERN INDIAN OCEAN: Three pirates armed with automatic guns in a small white colored craft approached a bulk carrier underway. At a distance of around 400 meters from the ship the pirates opened fire. Master raised alarm, increased speed and crew activ", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.59666670013354, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-346", + "dateofocc": "2010-10-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Piracy action group sighted in 13-22N 049-31E at 031615 UTC Oct. Vessels transiting the area are advised to keep 100 miles clear of this area and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.516666699594964, 13.366666699729933] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-347", + "dateofocc": "2010-10-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "ARABIAN SEA: Possible pirate mothership operating within 200 miles of 06-50N 065-00E. This area will remain high risk for the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.999999999749434, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-348", + "dateofocc": "2010-10-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing Vessel (FENG GUO NO. 168) possibly hijacked 06 Oct 10 while underway approximately 270NM east of Madagascar. The vessel departed Port Lewis, Mauritius on 1 Oct and transited northwest. The company reported that they lost contact wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.383333300261256, -15.816666699703092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-349", + "dateofocc": "2010-10-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Tanker boarded and three crewmembers kidnapped 1 Oct 2010 at 0100 local time while in position 04-03.45N 006-48.07E, approximately 25NM southwest of Bonny Island. Heavily armed men boarded a tanker and kidnapped the chief engineer, 2nd officer,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.801111099982222, 4.057499999826803] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-350", + "dateofocc": "2010-10-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Two robbers armed with long knives in a boat boarded a bulk carrier at anchor using a rope attached with a hook. Crew raised alarm and informed coast guard. Robbers escaped with ship's stores. The coast guard later arriv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.149999999757654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-351", + "dateofocc": "2010-10-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Two robbers armed with long knives attempted to board a vehicle carrier using bamboo stick. Anti-piracy watch raised the alarm and crew mustered. Seeing crew alertness the robbers jumped overboard and escaped in their bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.72055560000058, 22.19777780007098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-352", + "dateofocc": "2010-10-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "OFF BATU PUTIH, MALAYSIA: Robbers boarded a container ship at anchor and stole ship's properties. Upon noticing the store rooms broken into, the duty A/B raised the alarm. Crew mustered and searched the ship but the robbers had already escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.350277799753258, 1.369444400220175] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-353", + "dateofocc": "2010-10-02", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BRAZIL: Bulk carrier boarded 2 Oct 10 at 0345 local time while at anchorage in position 01-31.4S 048-45.6W in Vila do Conde. Five robbers in a wooden boat boarded a bulk carrier at anchor. They attempted to steal the ship's properties but were noticed b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.759999999720719, -1.523333299609476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-9", + "dateofocc": "2010-12-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MOZAMBIQUE CHANNEL: Tanker (NS AFRICA) reported a suspicious approach 24 Dec 10 at 1528 UTC while underway in position 18-51S 039-53E, approximately 115NM southeast of Macalonga Point, Mozambique. A mother vessel was spotted on radar at a range of 14NM", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.883333300209699, -18.849999999769636] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-10", + "dateofocc": "2010-12-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (NORD STRAIT) reported an attempted boarding 22 Dec 10 at 0350 UTC while underway in position 17-00N 062-53E, approximately 500nm east of Salalah, Oman. One skiff with six pirates armed with RPGs and AK-47s fired on and att", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.883333300054176, 16.999999999995794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-11", + "dateofocc": "2010-12-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo ship (THOR NAUTILUS) was fired upon 22 Dec 10 at 0300 UTC while underway in position 12-10N 062-31E, approximately 470nm east of Socotra Island. Due to evasive maneuvering, the hijack was evaded. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.516666700015378, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-12", + "dateofocc": "2010-12-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (ORNA) was hijacked 20 Dec 10 at 1129 UTC while underway in position 01-42S 060-52E, approximately 950nm east of Mogadishu. Pirates took all 19 crewmembers hostage. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.866666699917062, -1.699999999619706] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-13", + "dateofocc": "2010-12-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE: Tug boat was robbed 23 Dec 10 at 1940 UTC while underway in position 01-12.32N 103-34.18E, approximately 5NM southeast of Tg Piai, TSS westbound lane, Singapore. Eight armed pirates boarded a tug underway and held all other crew except the ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.56972219996328, 1.205277799776525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-14", + "dateofocc": "2011-01-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "430 MILES WEST OF MUMBAI, INDIA: Two skiffs chased a tanker underway and opened fire with automatic weapons. The tanker enforced anti-piracy measures and succeeded in evading the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.216666700012809, 19.583333300362597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-15", + "dateofocc": "2011-01-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "320 MILES OFF SALALAH, OMAN: Two skiffs chased a general cargo ship underway. Master raised alarm, increased speed, took evasive maneuvers and crew threw empty drums to deter the skiffs. Finally, the skiffs stopped chasing the ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.393333300004258, 15.483333299600474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-16", + "dateofocc": "2011-01-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "575 MILES EAST OF SOCOTRA ISLAND: Pirates armed with guns chased and fired upon a tanker underway. The master increased speed, took evasive maneuvers and managed to evade the attempting boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.765000000253565, 14.883333300300478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-17", + "dateofocc": "2011-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (BLIDA) was hijacked 1 Jan at 1536Z while underway in position 15-28N 055-51E, approximately 130 miles off Salalah, Oman. The 27crew members were taken hostage. The HANNIBAL II was also in the area and probally acting as a mot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.849999999858198, 15.466666700427368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-18", + "dateofocc": "2011-01-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "OFF SOMALIA: Armed pirates chased a tug underway. The tug released the barge it was towing to increase speed and maneuverability. Security team onboard fired flares. The skiffs later aborted the attack and rejoined a previously hijacked vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.283333299757885, 2.683333300445554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-19", + "dateofocc": "2011-01-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Six pirates in a skiff chased, fired upon and attempted to board a chemical tanker underway. Due to evasive maneuvers and effective anti-piracy measures, the hijack was evaded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.816666699662278, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-20", + "dateofocc": "2011-01-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "672 MILES EAST OF HOBYO, SOMALIA: Twelve armed pirates in two skiffs chased and fired upon an anchor handling tug underway. Due to evasive maneuvers and effective anti-piracy measures the hijack was evaded. Suspected pirates mothership sighted nearby.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.549999999887916, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-251", + "dateofocc": "2011-05-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "OFF COTONOU, BENIN: Armed pirates boarded a chemicl tanker at anchor waiting for STS operations. They hijacked the tanker to an unknown location. The pirates stole ship's properties, crew personal belongings and some cargo and left the tanker on 16 May", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.433333300212666, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-252", + "dateofocc": "2011-05-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BELAWAN ANCHORAGE, INDONESIA: Two robbers boarded a chemical tanker at anchor. Duty crew spotted the robbers and informed 2nd officer who raised the alarm. Upon seeing the crew alertness, the robbers escaped empty handed in an unlit boat. Inspection reve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-253", + "dateofocc": "2011-05-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 11-56S 058-41E at 1415Z on 18 May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.683333299558626, -11.933333300278889] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-254", + "dateofocc": "2011-05-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo vessel (PUNCHDAN) was fired upon by two skiffs 17 May at 0556Z while underway in position 06-50N 051-22E, approximately 122 miles southeast of Garacad, Somalia. (UKMTO)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.366666700059511, 6.83333330017507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-255", + "dateofocc": "2011-05-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "SOUTH CHINA SEA: A barge was robbed 15 May at 0105 LT while underway in position 01-14.97N 104-06.81E, approximately 16 miles southeast of Singapore. Eight robbers in a sampan (small wooden boat) boarded the stern of the barge. The robbers stole ropes a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.113611100262631, 1.249444400360176] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-256", + "dateofocc": "2011-05-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: A merchant vessel reported coming under attack at 0651Z on 20 May in position 13-15N 043-01E, approximately 114 miles southwest from Hodeidah, Yemen in the Red Sea. Vessels are advised to keep 100 miles clear of this position and to exercise ex", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.016666699834445, 13.250000000099305] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-257", + "dateofocc": "2011-05-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CONARKY ANCHORAGE, GUINEA: Ten robbers armed with guns attacked, fired upon and boarded a general cargo ship at anchor. They threatened the crew members and stole ship's cash, properties, crew's cash and personal belongings and escaped. No injuries to cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.74000000026092, 9.423888900176451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-258", + "dateofocc": "2011-05-22", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SURABAYA INNER ANCHORAGE, INDONESIA: Robbers boarded an anchored bulk carrier via the poop deck. They stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.666666700333167, -7.116666700410974] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-259", + "dateofocc": "2011-05-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "HON GAI OUTER ANCHORAGE, VIETNAM: Four robbers boarded a bulk carrier at anchor. Alert duty officer noticed the robbers and raised the alarm. Crew rushed to the forecastle. Seeing crew alertness the robbers escaped empty handed in a small boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.233333299644812, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-260", + "dateofocc": "2011-05-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MUARA JAWA ANCHORAGE SAMARINDA, INDONESIA: Robbers boarded a bulk carrier at anchor unnoticed. Duty officer noticed unlit boat moving away from shipside with a trailing mooring rope. He immediately engaged the mooring winch gear to stop the outrun of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.266666699762482, -1.166666700083624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-261", + "dateofocc": "2011-05-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: A mother vessel was seen launching a skiff which chased and fired upon a chemical tanker underway. Master enforced anti-piracy measures and the ship's security team onboard returned fire resulting in the pirates aborting the attack and moving aw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.216666700168275, 14.516666700261737] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-262", + "dateofocc": "2011-05-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 460 MILES OFF SOCOTRA ISLAND: Pirates in two skiffs chased and fired upon a bulk carrier underway damaging bridge windows and the life boat. On two occasions the pirates managed to come along side the vessel and as they attempted to latch the lad", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.750000000318835, 15.733333299833362] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-263", + "dateofocc": "2011-05-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "16 MILES SOUTH OF RASE JASK, IRAN: Five skiffs with about five persons onboard in each shiff approached a container ship underway. The persons onboard the skiffs seemed to be carrying weapons similar to rpgs. Two of the skiffs approached the vessel and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.516666699853715, 25.483333299923856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-154", + "dateofocc": "2010-04-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Pirate boats chased and attempted to board a bulk carrier underway. Master increased speed and carried out evasive maneuvers. After about 80 minutes, pirates aborted the attempt and moved away. No casualties and no damage to ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.961666699711259, 13.76999999979239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-155", + "dateofocc": "2010-04-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SOUTHERN RED SEA: Two skiffs were sighted at a distance of one mile from a chemical tanker underway. Suddenly, one skiff with high speed approached and came very close to the tanker. Four pirates armed with guns and an aluminium ladder was seen in the sk", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.999999999937302, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-156", + "dateofocc": "2010-04-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker fired upon 25 Apr 10 at 0348 UTC while underway in position 17-59N 065-49E, approximately 815NM northeast of Socotra Island. Six men armed with automatic weapons and RPGs in a white skiff chased and opened fire on the vessel. The v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.816666700212068, 17.983333300130937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-157", + "dateofocc": "2010-04-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (ISUZUGAWA) fired upon 25 Apr 10 at 0215 UTC while underway in position 18-06N 065-47E, approximately 815NM northeast of Socotra Island. Four men armed with automatic weapons and RPGs in a white skiff chased and opened fire on the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.783333300417723, 18.099999999761565] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-158", + "dateofocc": "2010-04-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (PYXIS DELTA) fired upon 23 Apr 10 at 0242 UTC while underway in position 14-51N 065-14E, approximately 640NM northeast of Socotra Island. Five armed men in a skiff chased and opened fire on the vessel with RPGs and automatic weapon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.233333300085178, 14.850000000330965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-159", + "dateofocc": "2010-04-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYSIA: Chemical tanker reported attempted boarding 22 Apr 10 at 0300 local time while anchored in position 01-19.8N 104-16.1E, Eastern OPL anchorage. Three robbers in a boat attempted to board the vessel. The duty watchman on deck spotted the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.268333300443771, 1.330000000217467] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-160", + "dateofocc": "2010-04-21", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VIETNAM: Tanker robbed 21 Apr 10 at 0308 local time while anchored in position 10-13.7N 107-05E, Vung Tau. Armed men boarded the tanker. The duty watchman from the bridge spotted the robbers and raised the ship's alarm. The robbers escaped with ship¿s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.083333300044671, 10.228333299848714] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-161", + "dateofocc": "2010-05-01", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT AND BARGE", + "descriptio": "SOUTH CHINA SEA: A tug boat was attacked in 03-50N 103-41E at 012230 UTC May. Authorities were notified and fishing vessel in question was detained for further investigation. Caution advised.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 3.833333300078039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-162", + "dateofocc": "2010-05-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "LAGOS, NIGERIA: Seven robbers armed with rifles and knives boarded a bulk carrier during anchoring operations. They assaulted the master and 3rd officer. The masters eye was injured and both the master and 3rd officer received head injuries resulting in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.358333299995252, 6.298333299712624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-163", + "dateofocc": "2010-05-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Three robbers armed with long knives boarded a general cargo ship carrying out cargo operations at a moorig buoy. Duty A/B noticed the robbers who tried to catch him. The A/B ran to the gangway and informed another A/B w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.816666700153576, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-164", + "dateofocc": "2010-04-28", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VUNG TAU, VIETNAM: Two robbers boarded a container ship at anchor. Duty watchman sighted the robbers and vessel immediately raised alarm and ship's horn. Robbers managed to escape with ship's stores. Port authority informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.128333299654912, 10.226666699646387] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-165", + "dateofocc": "2010-05-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 01-59N 051-45E at 050912 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.749999999995396, 1.983333299613548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-166", + "dateofocc": "2010-05-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Bulk carrier (OCEAN TRADER) fired upon 5 May 10 at 0520 UTC while underway in position 09-43S 041-15E, approximately 210 miles southeast of Dar es Salaam, Tanzania. Armed men in a skiff chased the vessel underway and opened fire on it. An e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.250000000105501, -9.716666699775601] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-354", + "dateofocc": "2010-10-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel hijacked in 13-49.8S 054-27.6E on 08 Oct. Awaiting further details.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.459999999606396, -13.830000000380721] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-355", + "dateofocc": "2010-10-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Vessel attacked in 04-59.4N 067-06.4E at 101115Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.106666699831067, 4.989999999994097] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-356", + "dateofocc": "2010-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 04-42S 040-07E at 100600Z Oct. Vessels are advised to keep 1000 miles clear of this postion and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.11666670037016, -4.699999999716738] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-357", + "dateofocc": "2010-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN, TANZANIA: Merchant vessel attacked in 09-52S 040-08E at 101911Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.133333300442587, -9.866666700275061] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-358", + "dateofocc": "2010-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN, KENYA: Merchant vessel attacked in 03-28S 040-49E at 101338Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.816666700302903, -3.46666670024797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-359", + "dateofocc": "2010-09-25", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BRAZIL: Bulk carrier robbed 25 Sep 10 at 0245 local time while at anchorage in position 01-05.6S 048-27.8W in Mosqueiro. Six robbers armed with knives in a four meter, black-colored wooden boat approached an anchored bulk carrier. They boarded the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.463333299850433, -1.09333330003625] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-360", + "dateofocc": "2010-09-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA: Bulk carrier robbed 23 Sep 10 at 1945 local time while at berth in Lagos. Five robbers armed with knives boarded a bulk carrier at berth. The robbers threatened one of the deck watch keepers, took his walkie talkie, and locked him in the paint s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-361", + "dateofocc": "2010-09-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: General cargo ship robbed 22 Sep 10 at 2200 UTC while in berthed in position 06-26.5N 003-23.2E in Apapa port. Four robbers armed with a gun, a knife, and two sticks boarded a berthed general cargo ship via speed boat. They took hostage the dut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.386666700432386, 6.441666699753284] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-362", + "dateofocc": "2010-10-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "RED SEA: Crude oil tanker reported suspicious approach 3 Oct 10 while underway in position 15-27N 041-31E, approximately 120NM east of Massawa, Yemen. Two small white and blue-colored, 5-6 meter long crafts approached. Tanker transmitted a message to an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.516666700235589, 15.449999999630904] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-363", + "dateofocc": "2010-10-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker chased 3 Oct 10 at 1430 UTC while underway in position 13-21.2N 049-29.1E, approximately 88NM southeast of Al Mukalla, Yemen. Five pirates wearing face masks and armed with guns in a skiff chased a tanker underway. Master raised ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.484999999827721, 13.353333300062161] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-364", + "dateofocc": "2010-10-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "BANGLADESH: Vehicle carrier boarded 2 Oct 10 at 1530 UTC in position 22-11.86N 091-43.24E at anchorage in Chittagong. Two robbers armed with long knives attempted to board a vehicle carrier using a bamboo stick. Counter-piracy watch raised alarm and cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.72055560000058, 22.19777780007098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-365", + "dateofocc": "2010-10-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 2 Oct 10 at 0830 UTC while underway in position 03-53.0N 050-35.8E, approximately 153NM southeast of Harardheere, Somalia. Three pirates armed with automatic guns in a small, white craft approached", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.59666670013354, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-366", + "dateofocc": "2010-10-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SINGAPORE STRAITS: Container ship robbed 3 Oct 10 at 0430 local time while at anchor in position 01-22.16N 104-21.01E off Batu Putih, Malaysia. Robbers boarded a container ship at anchor and stole ship's properties. Upon noticing the store rooms broken", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.350277799753258, 1.369444400220175] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-26", + "dateofocc": "2011-01-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: A merchant vessel reported being attacked at 0800Z on 02 Jan in position 17-57N 066-10E, approximately 338 miles southwest of Mumbai, India. This area will remain high risk for atleast the next 24-48 hours. Vessels are advised to ke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.166666700178382, 17.950000000161424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-27", + "dateofocc": "2011-01-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 20-00N 064-00E at 0232Z on 06 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.99999999971709, 20.000000000092768] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-28", + "dateofocc": "2011-01-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 21-04N 063-19E at 0901Z on 06 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.316666699681548, 21.066666699889026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-29", + "dateofocc": "2011-01-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (MAERSK PELICAN) was fired upon 3 Jan at 1503Z while underway in position 19-35N 065-13E, approximately 430 miles west of Mumbai, India. Pirates in a small high speed boat approached from the stern, and fired upon the tanker with ha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.216666700012809, 19.583333300362597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-30", + "dateofocc": "2011-01-03", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "330 MILES OFF SALALAH, OMAN: Pirates in two skiffs armed with automtic guns and rpgs chased and fired upon a tanker underway with intent to hijack. Master raised alarm, contacted authorities for assistance, increased speed and took evasive maneuvers. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.816666700018004, 15.799999999597219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-31", + "dateofocc": "2011-01-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "LPG CARRIER", + "descriptio": "ARABIAN SEA: LPG Carrier (BW AUSTRIA) was fired upon 6 Jan at 0700 UTC while underway in position 21-10.4N 063-17.4E, approximately 205NM ESE of Ras Al Hadd, Oman. Five armed pirates fired upon the vessel, and an RPG made a hole in the accommodation blo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.290000000170778, 21.173333300081254] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-32", + "dateofocc": "2011-01-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk carrier (ACHILLEAS) was fired upon 6 Jan at 0908 UTC while underway in position 21-04N 063-21E, approximately 220NM ESE of Ras Al Hadd, Oman. Five pirates in a skiff fired upon and attempted to board the carrier. The master increased s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.349999999651118, 21.066666699889026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-34", + "dateofocc": "2011-01-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (BARBAROSA) was fired upon 11 Jan at 1021 UTC while underway in position 16-33N 059-08E, approximately 290NM east of Salalah, Oman. Five pirates on a skiff fired automatic weapons and RPGs at the Tanker. Due to evasive maneuvering,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.133333300157744, 16.550000000295995] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-35", + "dateofocc": "2011-01-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Bulk carrier (ORIENT CRUSADER) was fired upon 10 Jan at 2241 UTC while underway in position 14-31N 042-29E, approximately 31NM NE of Al Hudaydah, Yemen in the southern Red Sea. The master increased speed and took evasive maneuvers to elude the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.483333299574269, 14.516666700261737] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-36", + "dateofocc": "2011-01-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 14-03N 067-29E at 1342Z on 11 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.48333330038281, 14.049999999765475] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-173", + "dateofocc": "2010-05-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIPS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 01-19N 045-39E at 100930 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.650000000067962, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-37", + "dateofocc": "2010-12-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA: Tug was robbed 31 Dec at 0430 local tie while underway in position 01-14N 103-26E, approximately four nautical miles off Johor, Malaysia. The vessel was in position when it was boarded by six armed suspects in a single speed boat dressed in bl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.433333299881667, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-38", + "dateofocc": "2010-12-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE: Tug was robbed 30 Dec at 0535 local tie while underway in position 01-19.97N 104-17.62E, approximately 3.5 miles southeast of Tanjung Ramunia. Six robbers boarded the vessel from a speedboat and held the crew hostage before stealing personal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.29361109960297, 1.332777800021233] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-39", + "dateofocc": "2010-12-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship was suspiciously approached 24 Dec at 1800 local time while underway in position 03-02N 105-17E, off Mangkai Island of the Anambas Archipelago. The officer of the watch spotted a speed boat with nine criminals on board. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, 3.033333300411925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-40", + "dateofocc": "2011-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-11N 058-18E at 1453Z on 12 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.299999999622685, 15.183333300400136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-41", + "dateofocc": "2011-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "GULF OF ADEN: Oil supply ship (BOURBON HESTIA) was chased 12 Jan at 1046 UTC while underway in position 12-06N 044-25E, approximately 50NM SW of Aden,Yemen. The vessel was attacked together with BOURBON HESTIA, but the attack ceased when the onboard sec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.416666699699874, 12.099999999567501] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-264", + "dateofocc": "2011-05-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA. GULF OF ADEN: Merchant vessels attacked in 12-33N 043-26E at 1510Z on 25 May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.4333332997399, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-265", + "dateofocc": "2011-05-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate ship M/V Orna carrying out mothership operations in position 06-09N 050-33E at 0908Z on 26 May. Vessels are advised to keep well clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.549999999596878, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-266", + "dateofocc": "2011-05-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ATLANTIC OCEAN: A container ship was robbed 17 May at 2230Z in the Boma anchorage at position 05-52S 013-05E off the Democratic Republic of the Congo. Four robbers used a wooden boat to board the vessel. The robbers broke open a container on deck, stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.083333299702701, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-267", + "dateofocc": "2011-05-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "INDONESIA: An oil tanker was robed 18 May during the morning while anchored in position 06-01S 106-54E in Jakarta, Robbers boarded the vessel, stole the ship's stores, and escaped unnoticed. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-268", + "dateofocc": "2011-05-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Chemical/oil products tanker (ASTIR LADY) experienced an attempted boarding 31 May at 0403 UTC while underway in position 13-32N 042-41E, approximately 31NM northwest of Assab, Eritrea. Six pirates in a single skiff attempted to board the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.6833332999405, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-269", + "dateofocc": "2011-05-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Bulk carrier (HAWK I) was fired upon by two skiffs 29 May at 1211 UTC while underway in position 14-44N 042-06E, approximately 42NM southwest of Ras Isa, Yemen. Each skiff had six pirates onboard. Vessel's security team returned fire. UNCLASSIF", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.099999999638385, 14.733333299801018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-270", + "dateofocc": "2011-05-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SAMARINDA ANCHORAGE, INDONESIA: Three robbers armed with knives boarded an anchored bulk carrier via hawse pipe. They broke the padlocks on the bosun store and stole ship's stores. Duty AB spotted them and informed the duty officer who sounded the ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.266666699762482, -1.166666700083624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-271", + "dateofocc": "2011-05-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "COCHIN ANCHORAGE, INDIA: About ten robbers boarded a container vessel at anchor. Master spotted the robbers and directed the search light towards them. The robers jumped over board and escaped with ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.081666699739117, 9.923333300391903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-272", + "dateofocc": "2011-05-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "RED SEA: Pirates in two skiffs chased a container ship underway. Master raised alarm, increased speed, took evasive maneuvers, contacted warship and authorites for assistance. The skiffs chased and closed in at a distance of 0.5 miles before aborting the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.320000000163475, 12.620000000159905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-273", + "dateofocc": "2011-05-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EGYPT: A U.S.-flagged vessel experienced an attempted boarding 25 May at 0231 UTC while anchored in position 29-50.40N 032-34.08E, at Anchorage Point 13, Port Suez, Egypt. A crewmember saw a man climbing the anchor chain and notified the bridge. The man", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.568055600162779, 29.840000000303121] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-274", + "dateofocc": "2011-05-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ATLANTIC OCEAN: A ship was boarded 28 May at 0245 UTC while anchored in position 05-52.55S 013-01.78E, approximately 3NM southwest of Boma, Democratic Republic of the Congo. The officer of the watch spotted two robbers on the forecastle and alerted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.02972219993103, -5.875833299833403] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-275", + "dateofocc": "2011-05-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Bulk carrier (ATLAS) was boarded 31 May at 1303 UTC while underway in position 13-28.4N 042-36.8E, approximately 28NM northwest of Assab, Eritrea. (Commercial Sources, Operator)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.613333299947215, 13.47333329992216] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-276", + "dateofocc": "2011-06-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SINGAPORE STRAITS: A general cargo ship was robbed 1 June at 2130 UTC while underway in position 01-10N 103-51E, approximately 10NM southwest of Singapore. Five armed robbers boarded the vessel, stole the ship's cash and personal belongings, and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.849999999611896, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-277", + "dateofocc": "2011-05-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MYANMAR: A container ship was robbed 29 May at 1300 UTC while anchored in position 16-38N 096-15E in the Yangon River NE anchorage, Myanmar. The alert crew noticed three robbers with knives had boarded the vessel and attempted to approach them. The robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [96.250000000085549, 16.633333300132279] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-278", + "dateofocc": "2011-05-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE: A tanker was robbed 29 May at 1730 UTC while underway in position 01-19N 104-54E, approximately 62NM southeast of Singapore. Six robbers boarded the vessel, stole cash and other valuables, and escaped. (Commercial Sources)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.900000000410273, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-167", + "dateofocc": "2010-05-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (MOSCOW UNIVERSITY) reportedly hijacked 5 May 10 at 0413 UTC while underway in position 12-15N 059-30E, approximately 290 miles east of Socotra Island. Pirates in a skiff chased and opened fire on the vessel. The captain conducted ev", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.500000000021203, 12.250000000067018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-168", + "dateofocc": "2010-05-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CRUISE SHIP", + "descriptio": "GULF OF ADEN: Cruise ship fired upon 5 May 10 at 2122 UTC while underway in position 13-06N 048-37E, approximately 90 miles southwest of Al Mukalla, Yemen. One skiff opened fire on the vessel with automatic weapons ad rpgs. The vessel increased speed and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.616666700195424, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-169", + "dateofocc": "2010-05-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 02-09N 052-51E at 060711 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.849999999761224, 2.150000000010152] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-170", + "dateofocc": "2010-05-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 09-36N 051-32E at 060757 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.533333299732078, 9.599999999936301] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-171", + "dateofocc": "2010-05-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate activity reported in 03-15S 042-03E at 060855 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.049999999771671, -3.249999999984595] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-172", + "dateofocc": "2010-04-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Tug (ATLANTIC 3) reportedly hijacked 27 Apr 10 at 1726 local time while underway in position 01-12.38N 104-45.92E, approximately 9NM east of Pulau Bintan. At 1726 local time, the shipping company lost contact with the vessel as it was transi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.765277800355705, 1.206388899553247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-174", + "dateofocc": "2010-05-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 10 May 10 at 0538 UTC while underway in position 00-06N 064-57E, approximately 640NM northeast of Port Victoria, Seychelles. Armed men in a skiff chased and fired upon the vessel underway. The crew enforced effecti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.949999999882721, 0.100000000078751] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-175", + "dateofocc": "2010-05-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier attacked in 03-22.18N 105-27.2E at 081645 UTC May. Six pirates in an unlit small wooden boat approached and attempted to board a bulk carrier underway. Alert duty crew noticed the boat and raised the alarm. Ships whistle sou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.45333330007287, 3.371666699663024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-176", + "dateofocc": "2010-05-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "Container ship attacked in 03-16N 105-25E at 081720 UTC May. Eight pirates armed with long knives boarded a container ship underway. They gained control of the bridge, stole ship's and crew property and left the ship. No injuries to crew and no damage to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.416666699873929, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-177", + "dateofocc": "2010-05-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Chemical tanker (MARIDA MARGUERITE) hijacked 8 May 10 at 1206 UTC while underway in position 14-58N 054-47E, approximately 140NM northeast of Socotra Island. Armed pirates chased, attacked, and hijacked the vessel along with its 22 crewm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.796666699729769, 14.950000000064392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-178", + "dateofocc": "2010-05-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "COLOMBIA: General cargo ship robbed 3 May 10 at 2300 local time berthed in position 10-57.5N 074-45.5W, Palermo terminal, Barranquilla. A vessel at berth had completed cargo operations and was preparing to depart. The captain from the ship berthed ahea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.758333299635126, 10.958333300420861] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-179", + "dateofocc": "2010-05-12", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PERU: Bulk carrier robbed 12 May 10 between 1830-1930 local time while anchored in position 12-01.7S 077-12.1W, Callao anchorage. Armed robbers boarded the vessel and took one shore guard hostage, and threatened him by pointing a gun to his head. Anoth", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.201666699840132, -12.028333299755843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-367", + "dateofocc": "2010-10-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Merchant vessel reported suspicious approach 12 Oct 10 at 0800 UTC while underway in position 04-38N 054-16E, 400NM east of Hobyo, Somalia. Initially, the vessel observed two skiffs. One skiff with four men on board pursued the vessel for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.266666700423116, 4.633333299744208] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-368", + "dateofocc": "2010-10-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN ARABIAN SEA: Merchant vessel attacked by piracy action group in 08-18N 068-05E at 130616Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.083333299682749, 8.299999999804356] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-369", + "dateofocc": "2010-10-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Piracy action group sighted in 14-09N 049-51E at 142130Z Oct. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.849999999664192, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-370", + "dateofocc": "2010-10-07", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "VENEZUELA: Chemical tanker robbed 7 Oct 10 at 0440 local time while at anchorage in position 10-16N 064-43W, in Puerto la Cruz tanker anchorage. Three robbers boarded a chemical tanker at anchor. The duty watch had just started his shift and noticed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.716666699755649, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-371", + "dateofocc": "2010-10-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Merchant vessel (ARDMORE SEAFARER) illegally boarded 12 Oct 10 at 1543 UTC while underway in position 08-18N 067-56E, approximately 1115NM east of Garacad, Somalia. (IMB, NSC).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.933333300082552, 8.299999999804356] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-372", + "dateofocc": "2010-10-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship robbed 11 Oct 10 at 1245 LT while at anchor in position 22-11N 091-44E, in Chittagong. While at anchor, robbers boarded a container ship. They entered the forward store and stole ship's stores. When noticed by crew, the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-47", + "dateofocc": "2011-01-14", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 16-39N 067-36E at 0720Z on 14 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.600000000013381, 16.650000000029422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-373", + "dateofocc": "2010-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Merchant vessel (ANUKET JADE) fired upon 10 Oct 10 at 1848 UTC while underway in position 09-52S 040-08E, approximately190NM southeast of Dar es Salaam. Five men armed with guns chased and opened fire on a product tanker underway. The Master e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.133333300442587, -9.866666700275061] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-374", + "dateofocc": "2010-10-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Merchant vessel (KAVO PORTLAND) fired upon 10 Oct 10 at 1114 UTC while underway in position 04-49N 067-06E, approximately 1070NM east of Garacad, Somalia. Four pirates armed with AK-47 and RPG chased and opened fire on a bulk carrier under", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.100000000446869, 4.816666700037956] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-375", + "dateofocc": "2010-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KENYA: Merchant vessel (IZUMI) hijacked 10 Oct 10 at 1338 UTC while underway in position 03-28S 040-49E, approximately 75NM northeast of Mombasa. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.816666700302903, -3.46666670024797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-376", + "dateofocc": "2010-10-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel chased 10 Oct 10 at 0945 UTC while underway in position 12-15N 045-56E, approximately 70NM southeast of Aden, Yemen. While transiting the IRTC in a convoy. The vessel noted a mother skiff releasing two smaller skiffs each w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.933333300270419, 12.250000000067018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-377", + "dateofocc": "2010-10-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "BANGLADESH: Unmanned vessel boarded 9 Oct 10 at 1845 LT while under tow in position 21-06N 091-12E, approximately 50NM southwest of Chittagong. Robbers in a fishing boat boarded an unmanned vessel under tow toward the port of Chittagong. The tugboat mas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.200000000057116, 21.099999999858596] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-378", + "dateofocc": "2010-10-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (GOLDEN WAVE 305) reported hijacked 9 Oct 10 at 0745 UTC while underway off Lamu, Kenya. Vessel was missing and owner reported on 17 Oct the ship was hijacked 9 Oct. The vessel has left anchorage and is now possibly operating", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.966666700129394, -3.100000000384455] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-379", + "dateofocc": "2010-10-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHIG VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel fired upon 17 Oct 10 at 1327 UTC while underway in position 04-35N 054-41E, approximately 400NM east of Hobyo, Somalia. The vessel was fired upon but there were no injuries or damage. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.68333330032857, 4.583333299877495] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-380", + "dateofocc": "2010-10-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "ARABIAN SEA: Pirated fishing vessel acting as a mothership sighted in 11-39N 063-02E at 172030Z Oct. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.033333299654316, 11.649999999867703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-42", + "dateofocc": "2011-01-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked 13-50N 056-45E at 0920Z on 13 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.750000000157115, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-43", + "dateofocc": "2011-01-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (ALPINE PERSEFONE) was attacked 11 Jan at 1345 UTC while underway in position 14-01N 067-25E, approximately 380NM west of Goa, India. Pirates in one skiff came alongside the vessel with weapons and attempted to board with a ladder.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.41666670044367, 13.999999999898762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-44", + "dateofocc": "2011-01-09", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "CALLAO ANCHORAGE, PERU: Eight robbers in two boats boarded a vehicle carrier at anchor. Duty officer noticed the robbers on the forecastle deck ad raised the alarm. On hearing the alarm the robbers escaped in fast boats. Ship stores stolen. Port control", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.216666699710231, -12.018333300142217] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-45", + "dateofocc": "2011-01-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "152 MILES OFF SALALAH, OMAN: Armed pirates in skiffs fired upon and boarded a dhow underway. They took hostage 14 crewmembers and hijacked the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.283333299693197, 17.69999999992848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-46", + "dateofocc": "2011-01-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (HONG OCEAN) was chased 8 Jan at 0352 UTC while underway in position 15-46.8N 055-42.8E, approximately 115NM SE of Salalah, Oman. The master enforced evasive maneuvers and increased speed, and after two hours the pirates abort", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.713333300101056, 15.780000000370023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-48", + "dateofocc": "2011-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Vessel (LEOPARD) was fired upon 12 Jan at 1322 UTC while underway in position 15-13N 058-17E, approximately 263NM ESE of Salalah, Oman. Pirates in two skiffs attacked and boarded the vessel. Pirates later transferred the crew to a nearby p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.283333299725541, 15.216666700194423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-49", + "dateofocc": "2011-01-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-11N 061-21E at 1730Z on 14 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.34999999958643, 17.183333299565504] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-50", + "dateofocc": "2011-01-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (SAMHO JEWELRY) was hijacked 15 Jan at 0729 UTC while underway in position 21-58N 063-50E, approximately 110 NM east of Ras al Hadd, Oman. Pirates attacked and boarded the chemical tanker taking 21 crewmembers hostage. (IMB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.833333300219806, 21.966666700187886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-51", + "dateofocc": "2011-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "GULF OF ADEN: Oil supply ship (BOURBON HECTOR) was chased 12 Jan at 1046 UTC while underway in position 12-06N 044-25E, approximately 50NM SW of Aden, Yemen. The vessel was attacked together with the BOURBON HESTIA, but the attack ceased when the onboar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.416666699699874, 12.099999999567501] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-52", + "dateofocc": "2011-01-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (BW BAUHINIA) was attacked 7 Jan at 1629 UTC while in position 21-08N 062-45E, approximately 180NM ESE of Ras al Hadd, Oman. Five pirates in a skiff fired upon and attempted to board the vessel, but were evaded when the master incre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.750000000351179, 21.133333299828109] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-53", + "dateofocc": "2011-01-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (FRONT WARRIOR) was fired upon 6 Jan at 0220 UTC while underway in position 20-00N 064-06E, approximately 503NM NE of Mumbai, India. Pirates in one skiff fired at the tanker, but the crew used razor wire and fire hoses to evade the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.100000000349837, 20.000000000092768] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-54", + "dateofocc": "2011-01-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA: Tug was robbed 02 January 11 at 0400 local time while underway in position 01-13.29N 103-30.36E, approximately 3.8 NM off of Tg Piai, Malaysia. The vessel was boarded by ten robbers armed with pistols and machetes, and robbed of $3000 USD in c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.506111099678662, 1.221388900322609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-55", + "dateofocc": "2011-01-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (SEACREST) was fired upon 16 Jan at 1450 UTC while underway in position 12-30N 061-05E, approximately 385NM east of Socotra Island. Six pirates armed with a ladder and RPG chased and fired upon the tanker. The tanker made evasive ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.083333300355662, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-56", + "dateofocc": "2011-01-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (EAGLE) was hijacked 17 Jan at 0641 UTC while underway in position 13-17N 061-42E, approximately 415NM east of Socotra Island. Six pirates armed with guns and an RPG in a skiff chased, fired upon, and boarded the vessel, takin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.699999999552801, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-57", + "dateofocc": "2011-01-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (COURIER) was fired upon 17 Jan at 1330 UTC while underway in position 17-02N 061-33E, approximately 420NM east of Salalah, Oman. Five pirates in a white hulled skiff chased and fired upon the ship. The master increased spee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.549999999952604, 17.033333299965363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-279", + "dateofocc": "2011-05-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "INDONESIA: A barge under tow was robbed 26 May at 0300 UTC while underway in position 01-11N 103-56E, approximately 10NM southeast of Singapore. Robbers stole the ship's stores and escaped. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.933333300347499, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-280", + "dateofocc": "2011-05-21", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: A container vessel was boarded 21 May at 2242 UTC while anchored in the Jakarta Anchorage, Indonesia. Robbers in a boat approached the vessel from its stern. The bosun and security watchmen saw that two robbers had boarded the vessel and infor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.216666700439362, -5.38333329975228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-281", + "dateofocc": "2011-06-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA: A container ship was boarded 1 June at 2035 UTC while anchored in the Jakarta anchorage, Indonesia. Eight robbers boarded the vessel. The Master raised the alarm and the ship's crew mustered. After the alert was raised, the robbers jumped over", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.216666700439362, -5.38333329975228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-181", + "dateofocc": "2010-05-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Chemical tanker (PANEGA) hijacked 11 May 10 at 1536 UTC while underway in position 12-31N 047-08E, approximately 120NM southeast of Aden, Yemen. Pirates boarded and hijacked the vessel along with its 15 crewmembers (AFP, IMB).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.133333299769617, 12.51666670019705] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-282", + "dateofocc": "2011-06-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (ACHILLEAS) was fired upon by one skiff with 7-8 pirates onboard 7 June at 1339 UTC while underway in position 13-33N 050-27E, approximately 179NM northwest of Socotra Island, Yemen. Vessel was attacked with small arms. Armed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.449999999863451, 13.550000000198963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-283", + "dateofocc": "2011-06-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Bulk carrier (EMPEROR) was fired upon 6 June at 1208 UTC while underway in position 14-10N 052-18E, approximately 114NM northwest of Socotra Island, Yemen. Two skiffs with a total of 10-15 pirates onboard attacked the vessel. EMPEROR deployed a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.300000000004559, 14.166666700295366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-284", + "dateofocc": "2011-06-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE: An LPG tanker was robbed 6 June at 1500 UTC while underway in position 01-09N 103-48E, approximately 11NM southwest of Singapore. Eight masked robbers on one speed boat boarded the tanker at the starboard quarter. The robbers were armed with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.799999999745182, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-285", + "dateofocc": "2011-06-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 30 MILES NORTH OF ASSAB, ERITREA, RED SEA: Six pirates in one skiff chased and fired upon a bulk carrier underway. Vessel took all anti-piracy measueres and contacted the coalition forces resulting in the pirates aborting the attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.61666670000136, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-286", + "dateofocc": "2011-06-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 400 MILES EAST OF SOCOTRA: Four pirates in a skiff approached and fired upon a bulk carrier underway. Onboard security team fired warning shots resulting in the pirates moving away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.450000000219177, 12.283333300036531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-287", + "dateofocc": "2011-06-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "AROUND 405 MILES EAST OF SOCOTRA: Four pirates in a skiff chased a chemical tanker underway. Weapons sighted in the skiff but not used. Security team onboard fired warning shots and the skiff moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.50000000008589, 12.316666699830876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-288", + "dateofocc": "2011-06-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "40 MILES NORTH OF ASSAB, ERITREA, RED SEA: Five pirates in a skiff chased a tanker underway. Small arms and ladder observed in the skiff. All crew except master and OOW were mustered at safe point. Security guard onboard fired warning shots and pirates m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.596666699874788, 13.701666699826205] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-289", + "dateofocc": "2011-06-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "AROUND 27 MILES NORTH OF ASSAB, ERITREA, RED SEA: While underway the duty officer onboard a tanker spotted a skiff on radar. When the skiff approached closer, seven pirates were observed in the skiff. The pirates could not board the vessel due to high fr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.716666699734787, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-290", + "dateofocc": "2011-06-12", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "AROUND 420 MILES EAST OF SOCOTRA ISLAND: Four pirates in a skiff chased and fired upon a bulk carrier underway. The skiff closed to around five meters from the ship. Effective anti-piracy measures including fire hoses and electric wire around vessel prev", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.766666700215978, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-291", + "dateofocc": "2011-06-13", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CARTAGENA TANKER ANCHORAGE, COLOMBIA: Duty AB onboard a bulk carrier at anchor spotted robbers trying to gain access via the hawse pipe. The AB alerted other crew members who rushed forward resulting in the robbers aborting the attempt and moving away. L", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.543333300330517, 10.308333300354889] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-292", + "dateofocc": "2011-06-15", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "AROUND 26 MILES OFF THE COAST OF SOMALIA: Four pirates in a skiff chased and fired upon a general cargo ship underway. One pirate managed to board the vessel but had to jump overboard after the crew successfully confronted him. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.25000000042894, 9.2999999998367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-293", + "dateofocc": "2011-06-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "COTONOU ANCHORAGE, BENIN: Heavily armed robbers attacked and hijacked an anchored chemical tanker and forced the crew to sail to an unknown location. The vessel was made to discharge part of her cargo into another lightering vessel. Before leaving the ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.516666699873667, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-180", + "dateofocc": "2010-05-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 12 May 10 at 1628 local time while underway in position 12-27.7N 043-43.4E, approximately 20NM east of the Bab el Mandeb. Five boats each containing two to three persons armed with RPGs and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.723333300225931, 12.461666700073863] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-182", + "dateofocc": "2010-05-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PASSENGER SHIP", + "descriptio": "GULF OF ADEN:SS (THE OCEANIC), a former passenger ship used by the Peace Boat, a Japan-based international non-governmental and non-profit organization to promote peace, fired upon 5 May 10 at 2122 UTC while underway in position 13-06N 048-37E, approxim", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.616666700195424, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-183", + "dateofocc": "2010-05-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (MSC PEGGY) fired upon 12 May 10 at 1520 UTC while underway in position 09-59.12S 042-16.27E, approximately 300NM southeast of Dar es Salaam, Tanzania. Suspected pirates opened fire on the vessel with two rpg rounds. The ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.271111100041082, -9.985277799783489] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-184", + "dateofocc": "2010-05-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (ELENI P) hijacked 12 May 10 at 0556 local time while underway in position 15-55N 060-50E, approximately 420NM northeast of Socotra Island. Pirates boarded and hijacked the vessel with its 23 crewmembers and are sailing it to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.833333300122774, 15.916666700127166] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-185", + "dateofocc": "2010-05-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (TAI YUAN 227) hijacked 6 May 10 at 1107 UTC while underway in position 01-50N 067-50E, approximately 1150NM southeast of Eyl, Somalia. Pirates boarded and hijacked the vessel along with its 28 crewmembers. The vessel's own", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.833333300349125, 1.833333300013351] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-186", + "dateofocc": "2010-05-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MALAYSIA: Bulk carrier (PERFORMER) boarded 10 May 10 at 0355 local time while anchored in position 01-17.84N 104-09E, approximately 3NM south of Tanjung Ayam. Six to seven robbers armed with knives boarded the vessel and gained access to the engine roo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.149999999711497, 1.297222199774239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-187", + "dateofocc": "2010-05-13", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDIAN OCEAN: Possible mothership activity in 02-55N 067-35E at 130200 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.583333300116237, 2.916666699706752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-188", + "dateofocc": "2010-05-14", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 06-18S 042-12E at 141000 UTC May. Vessels are advised to keep clear 100 miles of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.200000000271132, -6.299999999948341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-190", + "dateofocc": "2010-05-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALDIVES ISLANDS, SOMALIA: Eight pirates in a skiff cashed and attempted to board a tanker underway. Master increased speed, carried out evasive maneuvers and sounded whistle and alarm. After chasing for about 45 minutes, pirates aborted the attempt and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.966666699973928, 5.566666699837413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-191", + "dateofocc": "2010-05-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDIAN OCEAN: Possible mothership activity in 00-52.8S 064-45.6E at 241146 UTC May. Vessels are advised to keep a 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.760000000029436, -0.879999999827021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-192", + "dateofocc": "2010-05-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "INDIAN OCEAN: Possible mothership activity in 02-04N 067-58E at 1300 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [67.966666699876896, 2.066666700173869] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-193", + "dateofocc": "2010-05-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "WESTERN INDIAN OCEAN, TANZANIA: A tanker reported coming under fire 25 May 10 at 0235 UTC while underway in position 05-40S 039-29E. Vessel reported being fired upon by one skiff with five persons onboard. The skiff aborted the attack after approximatel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.483333300376614, -5.649999999882368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-194", + "dateofocc": "2010-05-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CAMEROON: Refrigerated cargo ship (ARGO) robbed, crewmember kidnapped 16 May 10 at 2255 UTC while anchored in position 03-44.2N 009-24.59E, Douala outer anchorage. Approximately 10 robbers boarded the vessel and opened fire with automatic weapons. They", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.409722200407543, 3.736666700398757] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-381", + "dateofocc": "2010-10-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "ARABIAN SEA: Pirated fishing vessel being used as a mothership, sighted in 11-00N 061-00E at 182100Z Oct. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.999999999620059, 10.99999999980173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-382", + "dateofocc": "2010-10-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Product tanker (DAPHNE) fired upon 19 Oct 10 at 1830 UTC while underway in position 02-02.0N 050-13.7E, approximately 290NM east of Mogadishu, Somalia. Six pirates armed with guns in a skiff chased a product tanker underway. Master raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.22833330024298, 2.033333300379581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-383", + "dateofocc": "2010-10-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 00-19S 047-00E on 18 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.00000000006662, -0.316666699651478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-384", + "dateofocc": "2010-10-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity within 150 miles of 02-00S 045-00E on 19 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [45.00000000000199, -1.999999999719364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-385", + "dateofocc": "2010-10-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Product tanker boarded 20 Oct 10 between 0300 and 0400 local time while at anchor in position 01-24N 104-34E off Kepulauan Lingga, Indonesia. An unknown number of robbers boarded a product tanker at anchor. Robbers broke into the steeri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-386", + "dateofocc": "2010-10-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "SOMALIA-NORTHEAST COAST: Possible mothership activity in 07-17N 050-01E at 202303Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.016666700060796, 7.283333299874869] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-391", + "dateofocc": "2010-10-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "BRAZIL: Cargo ship boarded 15 Oct 10 at 0500 local time while at anchor in position 01-31.7S 048-47.1W in Vila do Conde. Three robbers boarded an anchored general cargo ship via the anchor chain. Deck security watchman noticed a small boat near the anch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.785000000103707, -1.528333299865949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-388", + "dateofocc": "2010-10-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCANT VESSEL", + "descriptio": "TANZANIA: Container ship fired upon 21 Oct 10 at 0825 local time while underway in position 09-45S 039-56.9E, approximately 10NM east of Lindi. Two skiffs, one with five people onboard and another with six people onboard, approached the ship, which was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.948333299946455, -9.749999999745171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-389", + "dateofocc": "2010-10-16", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier robbed 16 Oct 10 at 2005 local time while at anchor in position 00-01.20S 117-36.26E at Botang Roads. Two robbers boarded a bulk carrier at anchor. The duty crew noticed that the forward store's padlock was broken and raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.604444399837803, -0.019999999781248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-390", + "dateofocc": "2010-10-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier robbed 16 Oct 10 at 0300 local time while at anchor in position 06-02.6S 106-54.1E in Jakarta. Four robbers boarded a bulk carrier ship at anchor. Upon noticing the engine store room padlock broken the duty motorman informed brid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.901666699602686, -6.043333300331199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-392", + "dateofocc": "2010-10-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "NIGERIA: Container vessel robbed 20 Oct 10 at 0001 local time while at anchor in position 06-07.5N 003-26.7E, approximately 20NM south of Lagos. Armed men approached in a boat, fired at the vessel, and boarded. The crew raised the alarm and cooperated w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.444999999885681, 6.124999999756483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-393", + "dateofocc": "2010-10-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel fired upon 14 Oct 10 at 2130 UTC while underway in position 14-09N 049-15E, approximately 30NM south of Al Mukalla, Yemen. The vessel was shot but evaded the attack and is safe. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.250000000364253, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-394", + "dateofocc": "2010-10-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker (EAGLE CORONA) robbed 15 Oct 10 at 0250 local time while underway in position 02-06.17S 108-45.6E, approximately 26NM south of Pulau Karimata. Six robbers armed with long knives boarded a crude tanker underway. They took hostage three", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.759999999653758, -2.102777800155877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-395", + "dateofocc": "2010-10-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Tanker robbed 12 Oct 10 between 0100-0400 local time while at anchor in position 01-18.3N 104-12.1E in the Eastern OPL anchorage. An unknown number of robbers boarded a tanker at anchor. They broke the padlock of the FFA locker, stole ship's s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.201666699605312, 1.304999999834422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-58", + "dateofocc": "2011-01-15", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "COSTA RICA: General cargo ship was robbed 15 Jan at 0025 local time while in port09-58.8N 083-00.6W, at Puerto Limon, Costa Rica. Robbers boarded the vessel unnoticed. Duty watchman discovered the paint store and bosun store on the forecastle were broke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.010000000153809, 9.979999999642871] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-59", + "dateofocc": "2011-01-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Oil tanker (RUDEEF GNA) was attacked 15 Jan at 1833 UTC while underway in position 12-41N 044-48E, approximately 3 NM SW of Aden Island, Yemen. Two pirates in a skiff approached the tanker underway. No shots were fired by the pirates but t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.799999999635759, 12.683333299869616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-60", + "dateofocc": "2011-01-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NORTH ARABIAN SEA: A merchant vessel reported being hijacked at 1052Z on 17 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.906388900429988, 19.483333299729793] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-61", + "dateofocc": "2011-01-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Merchant vessel (ADVANTAGE) was fired upon 18 Jan at 2303 UTC while underway in position 03-10N 051-11E, approximately 315NM SE of Garacad, Somalia. The vessel was attacked and fired upon by pirates with automatic weapons in one skiff but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.183333299765707, 3.16666669993964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-62", + "dateofocc": "2011-01-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "RORO", + "descriptio": "INDIAN OCEAN: Ro Ro (HOEGH OSLO) was fired upon 19 Jan at 0453 UTC while underway in position 13-28N 065-06E, approximately 660NM ESE of Salalah, Oman. The vessel was fired upon by pirates in three skiffs armed with small arms and RPGs. The pirates abor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.100000000382181, 13.46666670036268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-63", + "dateofocc": "2011-01-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Merchant vessel (TORM KRISTINA) was attacked 19 Jan at 2155 UTC while underway in position 20-16N 064-29E, approximately 380NM SE of Muscat, Oman. One skiff with six pirates fired upon the vessel and attempted to board with a ladder. One c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.649999999783063, 20.266666700222856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-65", + "dateofocc": "2011-01-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (KHALED MUHIEDDINE K) was hijacked 20 Jan at 1224 UTC, while underway in position 15-11N 059-38E, approximately 336NM NE of Socotra Island, Yemen. Pirates with automatic weapons hijacked the vessel and took hostage the crew of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.6333332997242, 15.183333300400136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-66", + "dateofocc": "2011-01-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (BUNGA LAUREL) was boarded 20 Jan at 1708 UTC, while underway in position 20-09N 063-38E, approximately 250NM SE of Ras al Hadd, Oman. Seven pirates boarded the vessel, and the crew members locked themselves in the citadel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.633333299853575, 20.149999999692966] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-67", + "dateofocc": "2011-01-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Heavy load carrier (ZHEN HUA 26) was fired upon 21 Jan at 1055 UTC while underway in position 12-37N 065-00E, approximately 840NM east of Caluula, Somalia. Armed pirates in a skiff chased and fired upon the vessel. The ship increased speed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.999999999749434, 12.616666699930477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-68", + "dateofocc": "2011-01-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (LUCKY VISHIP) was fired upon 18 Jan at 1125 UTC while underway in position 19-24N 058-54E, approximately 260 nautical miles east of Salalah, Oman. Pirates in three skiffs fired upon the vessel but were evaded. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.899999999821944, 19.39999999989351] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-69", + "dateofocc": "2011-01-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (HOANG SON SUN) was hijacked 17 Jan at 0700 UTC while underway in position 18-36N 064-22E, approximately 370NM off Oman. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.366666699580605, 18.600000000227396] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-70", + "dateofocc": "2011-01-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN:Products tanker (SMERALDO) was fired upon and boarded 14 Jan at 1730 UTC while underway in position 17-11N 061-21E, approximately 433NM NE of Salalah, Oman. The crew met in a citadel after two pirates managed to board, and awaited naval ass", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.34999999958643, 17.183333299565504] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-157", + "dateofocc": "2012-04-24", + "subreg": "63", + "hostility_": "Suspicious Craft", + "victim_d": "Merchant Vessel", + "descriptio": "INDIAN OCEAN:M/V suspicious approach in vicinity 04 49N 054 47E at 241949 UTC Apr 12. Vessels are advised to keep well clear of this position and to exercise extreme caution if in vicinity.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.783333300061997, 4.816666700037956] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-71", + "dateofocc": "2011-01-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo vessel (LE LI) was fired upon 14 Jan at 0530 UTC while underway in position 13-53N 056-30E, approximately 141NM NE of Socotra Island,Yemen. Four pirates onboard a skiff attempted to board with a ladder, and weapons were sighted but n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.499999999924228, 13.883333300268191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-72", + "dateofocc": "2011-01-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (NEW FORTUNER) was fired upon 13 Jan at 0914 UTC while underway in position 13-50N 056-45.0E, approximately 150NM NE of Socotra Island. Four pirates armed with guns and an RPG chased and fired upon the tanker. The tanker took evasiv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.750000000157115, 13.833333300401421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-73", + "dateofocc": "2011-01-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "KUWAIT: Vessel was robbed and boarded 9 Jan at 29-23.30N 048-45.26E, in international waters off Kuwait. Five armed robbers, apparently Iraqis, boarded the vessel from a speedboat, threatened the six crew, and escaped with items from the vessel. The Kuw", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.754444399904514, 29.388333299676901] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-294", + "dateofocc": "2011-06-12", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SUEZ CANAL ANCHORAGE, EGYPT: Robbers boarded and stole ship property from an anchored container vessel. The incident was reported to the local authorities who managed to track down the robbers and reclaim the stolen property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.344166700089602, 30.704999999706047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-295", + "dateofocc": "2011-06-11", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk carrier (EMPEROR) was fired upon by one skiff with four pirates onboard 11 June at 0315 UTC while underway in position 12-10N 061-45E, approximately 426NM southeast of Socotra Island, Yemen. Onboard security team fired warning shots an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.750000000318835, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-296", + "dateofocc": "2011-06-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Chemical/oil products tanker (EMMA VICTORY) experienced an attempted boarding 11 June at 0451 UTC while underway in position 13-32N 042-41E, approximately 31NM northwest of Assab, Eritrea. Vessel spotted five skiffs but was only attacked by one", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.6833332999405, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-297", + "dateofocc": "2011-06-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "COTONOU ANCHORAGE, BENIN: Armed robbers boarded and hijacked an anchored chemical tanker. They forced the captain to sail the vessel to an unknown location. The pirates stole ship's properties and left the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.599999999709951, 5.866666699937014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-298", + "dateofocc": "2011-06-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "AROUND 30 MILES OFF TRIVANDRUM, INDIA: Pirates in a skiff chased a chemical tanker underway. The vessel enforced anti-piracy preventive measures, sent SSAS alert. Later a naval helicopter arrived at location.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.433333299907815, 8.616666699801158] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-299", + "dateofocc": "2011-06-18", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "AROUND 15 MILES OFF TRIVANDRUM, INDIA: Master onboard a chemical tanker underway noticed a white hulled skiff around three miles ahead. The skiff was noticed to increase speed and approach the vessel at high speed. Vessel increased speed, altered course,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.666666700068333, 8.483333300273387] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-300", + "dateofocc": "2011-06-18", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "PUERTO LA CRUZ, VENEZUELA: Master onboard an anchored general cargo vessel noticed a speed boat approaching the vessel. He ordered the duty crew to investigate. Later, one AB entered the bridge in a frightened state and reported that robbers had boarded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.718333299957976, 10.288333300228373] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-301", + "dateofocc": "2011-06-17", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GEORGETOWN INNER ANCHORAGE, GUYANA: Four robbers armed with knives boarded an anchored container ship. They took the bosun as hostage and stole ship's properties and escaped. The alarm raised and crew mustered. Authorties informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.170000000357732, 6.821666700359117] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-302", + "dateofocc": "2011-06-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "REFRIGERATED CARGO SHIP", + "descriptio": "MATADI ANCHORAGE, DEMOCRATIC REPUBLIC OF CONGO: Robbers boarded and stole ship stores from an anchored refrigerated cargo vessel on three occasions between 0500 local and 0740 local time. Duty crew spotted the robbers and raised the alarm on each occasio", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.411944400090306, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-303", + "dateofocc": "2011-06-23", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SURABAYA ANCHORAGE, INDONESIA: Robbers boarded an anchored bulk carrier from the stern as the duty crew was taking routine rounds forward. They stole ship's stores and escaped. When the duty crew reached the stern, he found ship's stores missing and rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.724999999786519, -7.191666699761356] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-304", + "dateofocc": "2011-06-18", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "REFRIGERATED CARGO SHIP", + "descriptio": "BOMA ANCHORAGE, DEMORCRATIC REPUBLIC OF CONGO: A vigilant deck watchman onboard an anchored refrigerated cargo vessel noticed a robber with a long knife hiding on the forecastle deck. The robber jumped overboard when the deck watchman illuminated the are", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.042777799923272, -5.865000000118641] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-305", + "dateofocc": "2011-06-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "ASSAB, ERITREA, RED SEA: A skiff with firve pirates approached a general cargo ship underway at a speed of 25 knots. As the skiff closed, a pirate with a gun was observed. When the skiff closed to 100 meters the onboard security team fired warning shots", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.94666669984116, 13.730000000438622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-306", + "dateofocc": "2011-06-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "COTONOU, BENIN: Twelve armed pirates boarded a chemical tanker drifting in preparation for STS operations. They took hostage all crewmembers and hijacked the tanker. The tanker was released after 17 hours. Awaiting further details.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.533333299946094, 6.159722200077624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-307", + "dateofocc": "2011-06-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "74 MILES EAST OF GHALAT, OMAN: Two skiffs with six pirates in each chased and attempted to attack a chemical tanker underway. Master raised alarm, increased speed and took evasive maneuvers. The onboard security fired warning shots resulting in the pirat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.199999999953945, 21.049999999991826] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-308", + "dateofocc": "2011-06-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "COTONOU ANCHORAGE, BENIN: About ten robbers armed with guns and knives in a speed boat were seen approaching an anchored tanker with STS fenders alongside. Duty officer raised alarm, activated the SSAS and called port control but received no response. Fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.556666700126755, 6.264999999743054] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-195", + "dateofocc": "2010-05-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CAMEROON: Cargo ship (NORTH SPIRIT) robbed, crewmembers kidnapped 16 May 10 at 2140 UTC while anchored in position 03-44N 009-21.1E, Douala outer anchorage. Robbers armed with guns boarded the vessel and disabled all radio and navigation equipment, too", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.351666699730458, 3.733333300344611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-196", + "dateofocc": "2010-05-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker reported suspicious approach 25 May 10 at 1420 UTC while underway in position 14-25N 054-21E, approximately 100NM north of Socotra Island. The captain reported one white hulled skiff with five persons onboard approached the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.350000000259399, 14.416666699628991] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-189", + "dateofocc": "2010-05-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Bulk carrier (NORD SINCERE) fired upon 20 May 10 at 1100 UTC while underway in position 00-46.2N 068-26.4E, approximately 850NM northeast of Port Victoria, Seychelles. Five heavily armed men in a white colored skiff attempted to board the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.439999999932638, 0.770000000271295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-197", + "dateofocc": "2010-05-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier boarded 18 May 10 at 1700 UTC while anchored in position 03-43S 114-28E, Taboneo anchorage. Five robbers in a boat boarded the vessel at anchor. The master immediately reported it to local authorities via VHF and mustered the cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.466666700031737, -3.716666699581538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-198", + "dateofocc": "2010-05-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT SHIPS", + "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 00-01N 054-00E at 270957UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.000000000293028, 0.016666700242467] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-199", + "dateofocc": "2010-05-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "GULF OF ADEN: Suspected pirates with two skiffs reported 13-14N 049-12.5E at 280005 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.208333300084064, 13.233333300202162] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-200", + "dateofocc": "2010-05-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-50N 048-41E at 302146 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.683333300134507, 12.833333300369134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-201", + "dateofocc": "2010-05-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: About 10 robbers in a long wooden boat boarded a container ship at anchor. Duty crew sighted the robbers and raised alarm. The robbers escaped with stolen stores upon seeing the crew atlertness.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-202", + "dateofocc": "2010-05-29", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PORT AU PRINCE ANCHORAGE, HAITI: Six robbers armed with knives attempted to board a container ship at anchor. Alert crew raised alarm and mustered. Robbers aborted the attempt and escaped. Master informed port authority and ships in the vicinity. No casu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.566666700257827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-203", + "dateofocc": "2010-05-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "DAR ES SALAAM ANCHORAGE, TANZANIA: Robbers boarded an anchored container ship. They assaulted the forward deck watch keeper, threatened him at knife point and tied him to a pole. When there was no communication with the forward crew, other crew members w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.749999999648139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-204", + "dateofocc": "2010-06-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICL TANKER", + "descriptio": "BAB EL MANDEB STRAITS (GULF OF ADEN): A white hulled boat with four armed pirates approached a chemical tanker underway. The security team onboard the tanker fired warning shots in the air resulting in the pirates aborting the attempted attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.50305559988243, 12.598333300006288] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-205", + "dateofocc": "2010-06-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF ADEN: Six pirates armed with rpg hijacked a general cargo ship and took her 24 crew members hostage. Vessel currently sailing towards Somalia coast.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.30000000026331, 13.749999999665818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-206", + "dateofocc": "2010-06-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "73 MILES OFF MASIRAH ISLAND: One white hulled skiff with pirates armed with machine guns chased a container ship underway. The ship increased speed and enforced anti piracy counter measures and escaped the attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.68333329959097, 21.495000000334471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-207", + "dateofocc": "2010-05-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: About six to seven pirates armed with machine guns in a speed boat chased and fired upon a bulk carrier underway. Master raised alaram, contacted warships, mustered crew and activated fire hoses. Pirates were unsuccessful in boarding the sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.700000000031707, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-208", + "dateofocc": "2010-06-04", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: General cargo ship boarded 4 Jun 10 at 0315 local time while underway in position 12-17.3N 100-45.7E, approximately 23NM south of Sattahip, Thailand. Robbers in a speedboat boarded the vessel underway. The alarm was raised, crew mustere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.761666700321427, 12.288333300293004] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-396", + "dateofocc": "2010-10-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "43 MILES EAST OF MOMBASA, KENYA: Taking advantage of a moonlight night, four pirates in a skiff chased and came alongside a product tanker underway. Alert duty officer heard the sound of the boat engine and upon investigation noticed the pirates attempti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.416666699570499, -4.340277799812327] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-398", + "dateofocc": "2010-10-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "KENYA: Liquified Petroleum Gas (LPG) tanker (YORK) hijacked 23 Oct 10 at 1235 UTC while underway in position 04-14S 041-19E, approximately 98NM east of Mombasa, Kenya. Armed pirates hijacked an LPG tanker underway. Vessel transited to anchorage outside", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.316666699869415, -4.233333300119796] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-399", + "dateofocc": "2010-10-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: General cargo ship (MERLIN ARROW) fired upon 23 Oct 10 at 0252 UTC while underway in position 13-09.1N 049-12.6E, approximately 90 NM south of Al Mukallah, Yemen. Five pirates armed with AK-47s in a skiff chased and fired upon a general ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.210000000111108, 13.15166670039298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-401", + "dateofocc": "2010-10-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA-SOUTH COAST: Merchant vessel hijacked in 00-54S 043-08E at 231311Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.133333299640299, -0.899999999953593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-402", + "dateofocc": "2010-10-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "TANZANIA: Merchant vessel attacked in 09-26S 041-22E at 261515Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.366666699736129, -9.433333299748369] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-403", + "dateofocc": "2010-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (HELLESPONT PROTECTOR) fired upon 28 Oct 10 at 0539 UTC while underway in position 13-08N 049-14E, approximately 95NM south of Al Mukallah, Yemen. Pirates in two skiffs chased a tanker in a convoy and opened fire on it. Warship and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.233333299567732, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-404", + "dateofocc": "2010-10-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Tanker (STARLIGHT VENTURE) chased and fired upon 27 Oct 10 at 1930 UTC while underway in position 13-18N 068-56E, approximately 350NM west of Mangalore, India. Two skiffs with an unknown number of people onboard approached tanker from star", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [68.933333300114896, 13.299999999966076] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-405", + "dateofocc": "2010-10-27", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "710 MILES EAST OF SOMALIA: Pirates in two skiffs armed with guns chased and opened fire on a container ship underway. Vessel managed to evade the attack. Awaiting further details.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.466666700181008, 10.85000000020159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-406", + "dateofocc": "2010-10-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TANZANIA: About five heavily armed pirates carrying rpgs in a skiff chased and fired upon a LPG tanker underway. The crew contacted the authorities and went into the citadel/safe room. Pirates boarded the tanker but could not sail the tanker. Before leav", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.70666670005653, -8.336666700036744] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-407", + "dateofocc": "2010-10-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "GULF OF ADEN: A cargo dhow reported being hijacked, last known position 12-08N 054-25E at 281156Z Oct. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.416666700023256, 12.133333300436391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-408", + "dateofocc": "2010-10-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "INDIAN OCEAN, SEYCHELLES: Two fishing vessels reported being hijacked vicinity of Denis Island (03-48S 055-40E) at 282011Z Oct. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.666666700288488, -3.800000000317141] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-409", + "dateofocc": "2010-10-28", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (MSC AYALA) fired upon 28 Oct 10 at 2057 UTC while drifting in position 04-10S 039-56E, approximately 20NM east of Mombasa, Kenya. One skiff with approximately 10 men fired upon a container ship. Crew evaded attack and repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.933333300076413, -4.166666700180656] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-411", + "dateofocc": "2010-10-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Product tanker (POLAR) hijacked 30 Oct at 0140Z while underway in position 12-12N 064-53E, approximately 700 miles east of Socotra Island. Armed pirates in two skiffs boarded and hijacked a product tanker. (IMB, TW)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.883333300118863, 12.200000000200248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-412", + "dateofocc": "2010-10-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel pirated in 15-06N 055-58E at 300517Z Oct. Vessels transiting the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.966666700388146, 15.099999999664533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-413", + "dateofocc": "2010-10-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 09-57S 042-19E at 310632Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.316666699901759, -9.950000000111345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-74", + "dateofocc": "2011-01-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA: Product tanker was robbed 13 Jan at 0430 local time while at anchor in position 01-18.1N 104-12.14E, off of Tg Ayaam, Malaysia. Four robbers armed with a gunand knives boarded a product tanker at anchor. They entered the engine room and threat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.202222200030917, 1.30166669960505] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-75", + "dateofocc": "2011-01-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Multi-purpose ship (BELUGA NOMINATION) was hijacked 22 Janat 1236 UTC while underway in position 01-49N 056-35E, approximately 360NM north of Seychelles Island. The crew made stress calls and retreated to the citadel when the pirates board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.583333299760511, 1.816666699940981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-76", + "dateofocc": "2011-01-25", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel BELUGA NOMINATION hijacked. Last known position 01-45S 051-00E at 1700Z on 25 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.000000000195996, -1.750000000385739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-77", + "dateofocc": "2011-01-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (ANDINET) was fired upon 26 Jan at 0630 UTC while underway in position 11-14N 062-50E, approximately 493NM SE of Socotra Island, Yemen. Pirates in two skiffs fired upon the vessel with small arms. A dhow acting as a moth", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [62.833333300187462, 11.233333300137474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-78", + "dateofocc": "2011-01-23", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GUINEA: A container ship was robbed 23 Jan at 0320 local time while at anchor at theConakry Outer Anchorage, Guinea. The Duty A/B noticed that four robbers armed with knives had boarded the ship. The bridge was informed via VHF. The Duty officer raised t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.099999999840861, 9.516666700100018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-64", + "dateofocc": "2011-01-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Product tanker (JBU OSLO) was fired upon 20 Jan at 0333 UTC while underway in position 13-09N 049-14E, approximately 83NM south of Al Mukallah, Yemen. One skiff with five pirates with ladders fired upon the vessel. The vessel evaded the hi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.233333299567732, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-79", + "dateofocc": "2011-01-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (ARIANA) was fired upon 20 Jan at 1023 UTC while underway in position 14-56N 059-14E, approximately 308NM NE of Socotra Island. Pirates in a skiff chased and fired upon the vessel. The master increased speed and carried out e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.233333299891171, 14.933333300167249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-80", + "dateofocc": "2011-01-24", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Product tanker was chased 24 Jan at 0300 local time whileunderway in position 10-42N 109-44E. The duty officer onboard spotted a suspicious vessel approaching from the starboard bow on a collision course. The master altered course, inc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.733333300175332, 10.699999999702129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-81", + "dateofocc": "2011-01-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 11-14N 063-28E at 0450Z on 28 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.466666700181008, 11.233333300137474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-82", + "dateofocc": "2011-01-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (STAR OF ABU DHABI) was fired upon 30 Jan at 1013 UTC while underway in position 25-01N 060-26E, approximately 20NM south of Chah Bahar, Iran. The vessel was attacked by two skiffs with three people each. The skiffs broke off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.433333300289689, 25.016666700151632] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-83", + "dateofocc": "2011-02-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "230 MILES SOUTHWEST OF MINICOY ISLAND INDIA: Pirates armed with guns in two skiffs chased and fired upon a bulk carrier underway with intent to hijack. Master raised alarm, sent distress message, increased speed and took evasive maneuvers. The pirates ke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.399999999711838, 6.733333300441643] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-84", + "dateofocc": "2011-01-30", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Livestock carrier (MAYSORA) was fired upon 30 Jan at 1640 UTC while underway in position 04-20N 066-20E, approximately 375NM west of Male Island, Maldives. Eight pirates in a skiff armed with machine guns and RPG launched from a mother shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.333333299850949, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-85", + "dateofocc": "2011-01-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "65 MILES NORTH OF MINICOY ISLAND, INDIA: Pirates in two speed boats approached a container ship underway at a speed of approximately 20 knots. Master raised alarm, SSAS activated, transmitted mayday and increased to speed. The Indian coast guard responde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [73.033333299977699, 9.416666700366591] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-309", + "dateofocc": "2011-06-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "12 MILES OFF COTONOU, BENIN: Four robbers in a speed boat boarded the vessel. All crew went into the citadel, but robbers managed to capture the 2nd engineer before he could enter the citadel. Seeing this, the Master presented himself to the robbers as w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.471111100013047, 6.143055600005198] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-310", + "dateofocc": "2011-06-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RAS AL HADD, OMAN: Two skiffs with five pirates in each chased a bulk carrier underway. The pirates fired rpgs at the vessel. The pirates managed to hook on the ladder onto the ships rail however due to evasive maneuvers and using sea and swell to advant", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.483333300156403, 21.700000000057855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-311", + "dateofocc": "2011-06-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in vicinity 21-45N 060-31E at 0949z on 26 Jun. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.516666699950747, 21.749999999924569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-312", + "dateofocc": "2011-06-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF GUINEA: A chemical tanker was hijacked 26 June at 0245 UTC off of Cotonou, Benin. Ten robbers boarded the vessel, threatened and robbed the crew, damaged the vessel's equipment, and ordered the crew to sail to Lagos or Port Harcourt, Nigeria. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.533333299946094, 6.200000000006241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-313", + "dateofocc": "2011-06-30", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: A container ship was robbed 30 June at 0630 UTC while anchored in the Cat Lai anchorage, Vietnam. The duty officer noticed two boats approaching the vessel and ordered the duty able seamen to investigate. The people in the boat pretended to be f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.783333299945014, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-314", + "dateofocc": "2011-06-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "COTONOU ANCHORAGE, BENIN: A product tanker was robbed 30 Juneat 0205 UTC while anchored at 06-00N 002-29E in the Cotonou anchorage, Benin. The vessel was conducting ship-to-ship (STS) transfer operations when robbers in a speedboat boarded it, stole ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.48333330007938, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-315", + "dateofocc": "2011-06-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "AROUND 21 MILES OFF ASSAB, ERITREA, RED SEA: Two skiffs with six pirates in each approached a chemical tanker underway. Master raised alarm, crew alerted and commenced maneuvering. At a distance of 100 meters a ladder and weapons were sighted in the skif", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.983333300040101, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-316", + "dateofocc": "2011-07-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PRIOK PORT, JAKARTA, INDONESIA: A bulk carrier was robbed 3 July at 2115 UTC while berthed in position 06-05.9S 106-53.0E at Tg. Priok Port, Jakarta, Indonesia. Three robbers with knives boarded the vessel via the shore side cargo net while it was enga", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.098333299555065] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-317", + "dateofocc": "2011-07-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MALAYSIA: A U.S.-owned bulk carrier experienced an attempted boarding 1 July while underway in position 01-16.6N 104-12.8E at 1541 UTC, approximately 22NM southeast of Singapore. Robbers from four fast moving boats attempted to board, the alarm was rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.213333300320585, 1.276666700121325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-318", + "dateofocc": "2011-07-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SOUTH CHINA SEA: A tug was boarded by robbers 1 July at 1835 UTC while in position 01-31.6N 104-32.2E, approximately 41NM northeast of Singapore. A duty officer onboard a tug towing a barge spotted three pirates with knives and sounded the alarm. The ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.536666699701584, 1.526666700354269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-319", + "dateofocc": "2011-07-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Crude oil tanker (BRILLIANTE VIRTUOSO) was boarded 6 July at 0023 UTC while stopped in position 12-29N 044-44E, approximately 25NM southwest of Aden, Yemen. Seven suspected pirates boarded the vessel and left due to a fire onboard the vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.733333299871902, 12.483333300402762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-320", + "dateofocc": "2011-07-13", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: A container ship was robbed 12 July at 2005 UTC while anchored in position 20-39.2N 106-53.6E at the Hai Phong Pilot Station, Vietnam. Five robbers with knives boarded the vessel during a heavy rain, stole ship's stores, and jumped overboard wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.893333300191387, 20.653333300388169] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-209", + "dateofocc": "2010-06-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Pirates in two skiffs chased and fired upon a chemical tanker underway with intent to hijack. They attempted to board the tanker using a ladder. Tanker took evasive maneuvers and finally managed to evade the hijacking. One of the skiffs color wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.766666699601501, 13.383333299802359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-210", + "dateofocc": "2010-06-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTHERN RED SEA: Two white hulled boats with six pirates each approached a general cargo ship underway. Master took evasive action, raised general alarm, mustered all crew and activated fire hoses. The pirates aborted the attepted attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.799999999571071, 13.349999999832789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-211", + "dateofocc": "2010-06-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: General cargo ship (JK GALAXY) reported suspicious approach 10 Jun 10 at 0145 local time while underway in position 03-12.8N 108-30.1E, approximately 25NM northwest of Pulau Subi-besar, Indonesia. A small speed boat was spotted approach", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.501666699834288, 3.213333299752207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-212", + "dateofocc": "2010-06-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Tanker (ORKIM LEADER) robbed 10 Jun 10 at 0010 local time while underway in position 03-04.6N 108-23.5E, approximately 27NM west of Pulau Subi-besar, Indonesia. Men armed with long knives, machetes, crowbars, and wire boarded the tanker", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.391666699587915, 3.076666699819839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-213", + "dateofocc": "2010-06-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Pirates boarded a tanker and entered the bridge and took hostage three crew members. The pirates then took AB to the Master's cabin and stole ship's cash, crew cash and personal effects and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.616666700337134, 3.16666669993964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-214", + "dateofocc": "2010-06-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOUTH CHINA SEA: Duty officer spotted a speed boat on radar trailing it at distance of 2 miles. Ship enforced all anti piracy measures to prevent the boarding, made evasive maneuvers, sent warning to all ships in the area by VHF ch.16. Due to vigilant an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.501666699834288, 3.213333299752207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-215", + "dateofocc": "2010-06-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SOUTH CHINA SEA: About 10 to 12 pirates armed with knives in a speed boat boarded a container ship underway. They entered the bridge and took the duty officer hostage. They then entered the captain's cabin and stole ship's cash and ship's properties and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.803333300039242, 3.354999999765823] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-216", + "dateofocc": "2010-06-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SOUTH CHINA SEA: Six pirates armed with knives in a fishing boat boarded a tanker underway. They stole crew cash and personal belongings and ship's cash and properties and escaped. Vessels requested to be cautious.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.490000000096586, 3.225000000292255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-217", + "dateofocc": "2010-06-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SOUTH CHINA SEA: Container ship (KOTA DAHLIA) robbed 16 Jun 10 at 0300 local time while underway in position 03-01.9N 108-15.75E, approximately 35NM west of Pulau Subi-besar, Indonesia. Six robbers armed with long knives boarded the vessel on the starb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.262500000215482, 3.031666700209598] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-218", + "dateofocc": "2010-06-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Tanker reported suspicious approach 15 Jun 10 at 0530 UTC while underway in position 13-26N 042-41E, approximately 30NM northwest of Mokha, Yemen. Master reported three skiffs with six men onboard each chased the vessel. The vessel increased s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.6833332999405, 13.433333299669073] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-219", + "dateofocc": "2010-06-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Anti piracy watch onboard an anchored chemical tanker spotted six robbers armed with knives on the aft desk. Duty watch entered the accomodation locked all doors and informed the duty officer who raised the alarm. Robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.814166700025339, 22.315555600377593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-221", + "dateofocc": "2010-06-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "COTE D'IVOIRE: Container ship robbed 14 Jun 10 at 0030 local time while anchored in position 05-13.2N 004-02.6W, Abidjan anchorage. Four to five robbers armed with knives boarded the vessel and threatened the deck watchmen, who retreated into the accom", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.043333300266511, 5.22000000010047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-222", + "dateofocc": "2010-06-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (MERIOM IRIS) fired upon 13 Jun 10 at 1234 UTC while underway in position 13-24N 049-35E, approximately 70NM south of Al Mukalla, Yemen. Vessel reported coming under fire from an AK-47 by one skiff with six persons onboard. Crew wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.583333300433424, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-96", + "dateofocc": "2011-02-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Oil tanker (IRENE SL) was hijacked 9 Feb at 0926 UTC while underway in position 21-27N 063-18E, approximately 255NM east of Masirah Island, Oman. The vessel was boarded and the 25 crewmembers onboard were taken hostage. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.299999999784404, 21.449999999824911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-220", + "dateofocc": "2010-06-15", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "SOUTH CHINA SEA: Container ship (KOTA DAMAI) robbed 15 Jun 10 at 0415 local time while underway in position 02-59.5N 108-11.0E, approximately 40NM west of Pulau Subi-besar, Indonesia. Eight robbers armed with knives, wearing black shirts, black trouser", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.183333299810442, 2.991666699956454] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-400", + "dateofocc": "2010-10-24", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: General cargo ship (BELUGA FORTUNE) reported an illegal boarding 24 Oct 10 at 0524 UTC while underway in position 03-29N 059-35E, approximately 850NM east of Mogadishu, Somalia. Pirates armed with automatic weapons and RPG attacked a gener", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.583333299857486, 3.483333300111724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-397", + "dateofocc": "2010-10-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN: Container ship fired upon and chased 22 Oct 10 at 2300 UTC while underway in position 13-08N 048-44E, approximately 115NM southwest of Al Mukallah, Yemen. Five pirates armed with guns in a high speed skiff chased and fired upon a container", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.733333300001277, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-414", + "dateofocc": "2010-10-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "INDONESIA: Tug boat (SURYA PUTRA 5) robbed 24 Oct 10 at 1620 local time while underway in position 01-01.4S 104-29.04E, 8NM east of Selat Berhala. Two boats with 11 robbers armed with knives and parangs came alongside tug boat. The robbers demanded Mari", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.483333299780725, -1.023333300042964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-415", + "dateofocc": "2010-10-20", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "PHILIPPINES: Container ship robbed 20 Oct 10 at 2100 local time while at anchor in position 14-32N 120-54.9E, in Manila. Robbers in two motor boats boarded a container ship via anchor chain. Duty bosun noticed unusual movements on the forecastle deck an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.914999999898441, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-416", + "dateofocc": "2010-10-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (GO TRADER) illegally boarded 30 Oct at 0512Z while underway in position 15-06N 055-58E, approximately 190 miles southeast of Salalah, Oman. Armed pirates boarded a bulk carrier underway. All crew retreated into the citadel wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.966666700388146, 15.099999999664533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-417", + "dateofocc": "2010-10-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "290 MILES SOUTHEAST OF DAR es SALAAM, TANZANIA: Armed pirates boarded a chemical tanker. All crew retreated into the citadel from where they could control the ship. Unable to take control of the vessel the pirates left. At 1059Z, the master and the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.316666699901759, -9.950000000111345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-418", + "dateofocc": "2010-10-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VISAKHAPATNAM ANCHORAGE, INDIA: Tanker reported attempted boarding 29 Oct at 0730 local time while at anchor in position 17-40N 083-25E, at Visakhapatnam achorage. Five robbers in a fishing boat approached a tanker at anchor. They attempted to board by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.416666700061796, 17.66666669995891] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-419", + "dateofocc": "2010-10-31", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CONAKRY PILOT STATION, GUINEA: Five pirates armed with automatic weapons in a small speed boat chased and boarded a general cargo ship underway. Master immediately informed port control and the agent. Pirates entered the bridge, ordered the Master to sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.729999999747974, 9.450000000336161] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-420", + "dateofocc": "2010-11-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "WESTERN INDIAN OCEAN: Bulk carrier fired on 2 Nov at 0300Z while underway in position 03-58S 043-49E, approximately 285 miles east of Mombasa, Kenya. Seven pirates armed with rpgs and automatic guns in two skiffs chased and fired upon a bulk carrier und", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.816666700399878, -3.966666699814482] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-421", + "dateofocc": "2010-11-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "WESTERN INDIAN OCEAN: A mothership vessel lowered two skiffs that approached a tanker underway at 20 knots. Five to six persons in each skiff and weapons were sighted when skiffs reached about 500 meters. Security team onboard fired hand flares and warni", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.168333300316078, 7.31333329961501] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-422", + "dateofocc": "2010-11-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "GULF OF ADEN: A fishing vessel hijacked 2 Nov at 1237Z while underway in position 13-31N 048-19E approximately 85 miles southwest of Al Mukallah, Yeman. A fishing vessel was reported hijacked by pirates.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.316666700095766, 13.516666700229393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-86", + "dateofocc": "2011-02-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 16-29N 065-57E at 1431Z on 03 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.949999999915065, 16.483333299632818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-87", + "dateofocc": "2011-02-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Products tanker (PORT STEWART) was fired upon 2 Feb at 1431 UTC while underway in position 13-03N 063-30E, approximately 515NM SE of Duqm, Oman. One skiff with a mother ship fired weapons and RPG at the vessel, but the boarding attempt was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.500000000150578, 13.049999999733132] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-88", + "dateofocc": "2011-02-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "560 MILES EAST OF SOCOTRA ISLAND: Pirates in four skiffs launched from a mother vessel armed with rpgs and guns chased a tanker (NEW YORK STAR) underway. The tanker increased speed enforced anti piracy measures, all crew went into the citadel. Four unarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.556666700300866, 11.291666700314806] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-89", + "dateofocc": "2011-02-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Tanker (MAERSK PHOENIX) was fired upon 2 Feb at 1636 UTC, while underway in position 15-16.6N 054-35.8E, approximately 105NM south of Salalah, Oman. Pirates in two skiffs armed with machine guns chased and fired upon the tanker. The master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.596666700262915, 15.276666699674763] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-90", + "dateofocc": "2011-02-01", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "123 MILES SOUTHEAST OF SOCOTRA ISLAND: Pirates in a dhow and a skiff were spotted by a tanker underway. Master raised alarm, increased speed and fired warning flares. The skiff chased the tanker with a speed of 19 knots. At a distance of .7 miles the onb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.266666699588427, 11.216666700065105] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-91", + "dateofocc": "2011-01-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "NIGERIA: Tug was boarded 27 Jan at 0820 local time while underway in position 04-11.6N 006-58.3E, approximately 3NM SW of the Bonny Fairway buoy. Six criminals armed with guns boarded the vessel. They stole the vessel's and captain's cash, property, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.971666699959258, 4.193333299658036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-92", + "dateofocc": "2011-02-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: VLCC (DUQM) was attacked 02 Feb at 0918 UTC while underway in position 24-14.50N 063-20.11E, approximately 60NM south of Pasni, Pakistan. International warships came to the assistance of the vessel and fired one 5 inch illumination round a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.334999999781019, 24.241666699969187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-93", + "dateofocc": "2011-01-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker was robbed 27 Jan at 0330 local time while at anchorage in Tanjung Priok, Jakarta, Indonesia. The duty crew on the bridge wing of the vessel noticed a robber on the main deck and another robber climbing onboard. The duty crew and office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.133333299551737] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-94", + "dateofocc": "2011-02-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: VLCC (CHIOS) was fired upon 5 Feb at 0930 UTC while underway in position 10-00.1N 070-59.4E, approximately 155NM NW of Minicoy Island, India. A skiff with four pirates onboard fired upon the vessel with small arms and RPG. The vessel incre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.990000000329871, 10.001666699796488] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-95", + "dateofocc": "2011-02-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN ARABIAN SEA: Merchant vessel attacked in 10-04N 070-54E at 1011Z on 05 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.900000000210014, 10.06666670043262] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-97", + "dateofocc": "2011-02-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "INDIAN OCEAN: Vehicle carrier (DELPHINUS LEADER) was attacked 8 Feb at 0918 UTC while underway in position 13-06N 064-09E, approximately 560NM east of Socotra Island, Yemen. A single skiff with a mother ship in the area fired upon the vessel, but the DE", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.150000000216551, 13.099999999599845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-98", + "dateofocc": "2011-02-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Crude oil tanker (SAVINA CAYLYN) was hijacked 8 Feb at 0427 UTC while underway in position 12-10N 066-00E, approximately 680NM east of Socotra Island, Yemen. Five pirates in one skiff fired upon the vessel with small arms and four RPG roun", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.999999999781778, 12.166666700230735] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-99", + "dateofocc": "2011-02-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (CMA CGM CHOPIN) was attacked 5 Feb at 0850 UTC while underway in position 10-36N 065-26E, approximately 630NM ESE of Socotra Island, Yemen. One skiff with five pirates onboard attacked the vessel, although no shots were fir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.433333299552089, 10.599999999968645] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-321", + "dateofocc": "2011-07-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BAB EL MANDEB STRAITS, RED SEA: Pirates armed with guns in two skiffs chased and approached a chemical tanker underway. Maters mustered crew and ship's security team was deployed to the bridge wings. On sighting the security team, the pirates aborted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.300000000036903, 12.73333329973633] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-322", + "dateofocc": "2011-07-08", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MANILA SOUTH ANCHORAGE, PHILIPPINES:Duty watchman onboard an anchored container ship noticed three robbers boarding the vessel from a boat near the forecastle. He informed the duty officer who raised the alarm and reported to port authorities. Seeing cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-323", + "dateofocc": "2011-07-09", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CONAKRY, GUINEA: Pirates in a motor boat approached a drifting bulk carrier. Duty officer noticed the approaching boat and raised alarm and crew mustered. Pirates fired machine guns and rpgs at the vessel and moved away. Vessel proceeded further out to s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-14.105000000097334, 9.100000000369846] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-326", + "dateofocc": "2011-07-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "EGYPT: A product tanker was robbed 15 July while anchored in position 29-49.25N 032-31.25E, in the Suez anchorage, Egypt. The robbers stole the forward life raft and escaped. The theft was not noticed until 0605 UTC. Port control was informed. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.520833300275115, 29.820833300277684] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-324", + "dateofocc": "2011-07-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "SOUTHERN RED SEA: A sailing yacht was hijacked by pirates in 14-57N 041-51E at 1700z on 08 Jul. The vessel and crew has been reported safe. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.85000000030476, 14.950000000064392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-325", + "dateofocc": "2011-07-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Nine skiffs surrounded a LPG tanker underway. The security team observed one skiff carrying six men suddenly turned towards the tanker's stbd side and closed in aggressively. Master took evasive maneuvers when the skiff came close to 50-60 meter", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.318333300104086, 14.601666700125122] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-327", + "dateofocc": "2011-07-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Six pirates in a skiff chased a bulk carrier underway. Master raised alarm, crew proceeded to citadel and security guards onboard fired a hand flare. The pirates continued to chase the ship and closed to a distance of 300 meters from the sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.288333299723263, 13.60500000032215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-329", + "dateofocc": "2011-07-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: A tanker was chased and fired upon by six to seven pirates wearing dark clothes in a skiff. Master increased speed and mustered crew. Onboard secutiy team released flares and when pirates continued, warning shots were fired resulting in the pira", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.693333299554126, 13.431666700366065] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-330", + "dateofocc": "2011-07-10", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "HAITI: A container ship was robbed 10 July at 0500 UTC while anchored in position 18-32N 72-23W in the Port au Prince anchorage, Haiti. Robbers boarded the vessel and stole ship's property. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.533333299564163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-230", + "dateofocc": "2010-06-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "RORO SHIP", + "descriptio": "BANGLADESH: Ro/Ro ship robbed 20 Jun 10 at 0330 local time while conducting anchoring operations in position 22-12.9N 091-43.1E, Chittagong anchorage. Eight robbers armed with knives attempted to attack a duty crewmember who ran into the accommodation", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.718333299723099, 22.215000000393729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-331", + "dateofocc": "2011-07-15", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "COLOMBIA: A container vessel experienced an attempted boarding 16 July at 0330 UTC while underway in position 10-18.9N 075-35.3W at the Cartagena Pilot Station, Colombia. Three robbers in a small boat attempted to board the vessel via a rigged pilot lad", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.588333299940757, 10.314999999739143] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-332", + "dateofocc": "2011-07-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: A chemical tanker was robbed 19 July at 2130 UTC while anchored in position 03-55.9N 098-45.8E in the Belewan anchorage, Indonesia. The duty watchman sighted three robbers and informed the officer of the watch (OOW), the OOW then raised the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.763333299559747, 3.931666699609139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-333", + "dateofocc": "2011-07-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Merchant vessel fired upon by six pirates in a skiff in 13-29N 042-36E at 1118Z on 21 Jul. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.600000000104217, 13.483333300435106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-335", + "dateofocc": "2011-07-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "60 MILES WEST OF LUANDA, ANGOLA: A speed boat with unknown number of persons approached a tanker underway. Duty officer informed the Master who took evasive maneuvers, increased speed, raised alarm, mustered crew and activated fire pumps. The speed boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [12.349999999800445, -8.416666699643599] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-336", + "dateofocc": "2011-07-20", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "HUANGPU ANCHORAGE, CHINA: Robbers boarded a bulk carrier at anchor during heavy rain. Alert duty watchman sighted the robbers on the forecastle deck, notified the duty officer and went towards the robbers. Seeing the alert crew the robbers escaped. Inves", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.645000000211894, 22.749999999956913] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-223", + "dateofocc": "2010-06-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTH CHINA SEA: Bulk carrier (TRANS PACIFIC) robbed 12 Jun 10 at 2200 local time while underway in position 03-49.8N 105-46.87E, approximately 45NM north of PulauMangkai, Indonesia. Eight robbers armed with long knives boarded the vessel from a speedb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.781111100359283, 3.225000000292255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-224", + "dateofocc": "2010-06-16", + "subreg": "94", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "CHINA: General cargo ship boarded 16 Jun 10 at 0100 local time while anchored in position 38-56.8N 121-43.3E, Dalian anchorage. Alert crew onboard the vessel spotted a robber on the forecastle deck. Upon seeing the alert crew, the robber escaped. Incid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.721666699848129, 38.946666699711784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-225", + "dateofocc": "2010-06-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Possible mothership activity 13-24N 042-45E at 181343 UTC Jun. Vessels transitig the area are advised to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.749999999704357, 13.399999999699503] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-226", + "dateofocc": "2010-06-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "RORO VESSEL", + "descriptio": "50 MILES FROM DAR ES SALAAM, SOMALIA: A roro vessel spotted a suspicious skiff approaching it. The vessel altered course to prevent the skiff from coming closer.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.850000000240129, -7.016666699778227] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-227", + "dateofocc": "2010-06-22", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "PUERTO LA CRUZ ANCHORAGE, VENEZUELA: Deck patrol onboard an anchored chemical tanker noticed a small unlit boat near the anchor cable and immediately informed the duty officer, who raised the alarm. Seeing crew alertness the robbers jumped overboard and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-228", + "dateofocc": "2010-06-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Six pirates armed with guns in a skiff chased a bulk carrier underway. The vessel made evasive maneuvers and enforced anti piracy measures. Pirates in the skiff opened fire on the vessel. Due to effective anti piracy measures the vessel evaded t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.985000000067203, 13.54499999994249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-229", + "dateofocc": "2010-06-18", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "CALLAO ANCHORAGE, PERU: Two robbers armed with knives boarded an anchored chemical tanker via the anchor chain and entered the forepeak store. Duty A/B on anti piracy watch went forward, saw a robber with a knife and immediately reported to the deck offi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.191666700226506, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-179", + "dateofocc": "2012-05-23", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "IRAN:A merchant vessel reported being fired upon from multiple skiffs at approximately 0900Z on 23 May in position 2528N 05720E approximately 26NM south west of Bander-e-Jask, Iran.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.333333299559911, 25.46666669985143] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-231", + "dateofocc": "2010-06-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "RED SEA: General cargo ship fired upon 18 Jun 10 at 1343 UTC while underway in position 13-23.6N 042-44.8E, approximately 30NM west of Mokha, Yemen. Armed men in two skiffs chased and fired upon the vessel. The captain reported the men attempted to boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.746666700374305, 13.393333300315248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-232", + "dateofocc": "2010-06-23", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VENEZUELA: Tanker reported attempted boarding 23 Jun 10 at 2106 local time while anchored in position 10-16.3N 064-42.2W, Puerto la Cruz. Two robbers attempted to board the vessel by climbing the anchor chain. Crew spotted them and raised the alarm. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.703333300087877, 10.271666700155947] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-233", + "dateofocc": "2010-06-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "RED SEA: Container ship reported suspicious approach 24 Jun 10 at 1525 UTC while underway in position 13-12.2N 043-03.8E, approximately 12NM southwest of Mokha, Yemen. Armed men in four skiffs approached the vessel underway. The vessel increased speed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.063333299647013, 13.203333299562701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-234", + "dateofocc": "2010-06-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "3 MILES SOUTH OF BONNY RIVER, NIGERIA: Twelve robbers in two speed boats attacked a bulk carrier at anchor. They fired with hand made guns and attempted to board the ship using hooks attached to ropes. Ship's crew raised alarm, directed search light and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.032222199865259, 4.153055599554136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-235", + "dateofocc": "2010-06-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BANGLADESH: Chemical tanker robbed 26 Jun 10 at 0230 local time while anchored in position 22-13.8N 091-44E, Chittagong anchorage. Five robbers in two wooden boats armed with hand guns and knives boarded the vessel at anchor. They pointed guns at the d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.230000000263828] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-423", + "dateofocc": "2010-11-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Mothership activity vicinity 03-45S 046-45E at 030410Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.749999999833733, -3.749999999551108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-424", + "dateofocc": "2010-11-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 05-15S 043-39E at 030700Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.650000000003274, -5.250000000049283] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-425", + "dateofocc": "2010-11-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate activity in 05-30S 043-30E at 031830Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.500000000403134, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-426", + "dateofocc": "2010-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHAT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN, TANZANIA: A merchant vessel reported being chased by hijacked vessel (IZUMI) at 1316Z in position 05-09S 040-45E. Pirates aboard IZUMI launched one skiff which fired upon the target vessel. After four hours of chasing and firing, t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.74999999963967, -5.150000000315856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-410", + "dateofocc": "2010-10-29", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN, KENYA:Tanker fired upon 29 Oct at 1245Z while underway in position 04-22S 039-58E, approximately 28 miles southeast of Mombasa. Pirates armed with rpgs and ak-47s in two skiffs fired upon a tanker with intent to board. Security tea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.9666666998707, -4.366666699647567] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-427", + "dateofocc": "2010-11-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier robbed 2 Nov at 0420 local time while conducting cargo operations in Belawan port. Three robbers armed with long knives boarded a bulk carrier at berth during cargo operations. Duty crew on rounds noticed the robbers and approache", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.690555599587469, 3.783055600360569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-428", + "dateofocc": "2010-11-06", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Mothership activity reported 07-34N 060-16E at 061015Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.266666699717803, 7.5666666999021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-338", + "dateofocc": "2011-07-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF GUINEA: Tanker (RBD ANEMA E CORE) was hijacked 24 July at 0140 UTC while engaged in ship-to-ship operations with another tanker in position 05-59.36N 002-24.11E, approximately 22NM southwest of Cotonou, Benin. The pirates boarded the tanker via", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.401944400120954, 5.989444399776062] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-429", + "dateofocc": "2010-11-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Tanker fired upon 8 Nov 10 at 1345 UTC while underway in position 06-43S 051-15E, approximately 750NM southeast of Mombasa, Kenya. One white-hulled, seven meter skiff with six people on board approached tanker from astern and fired RPG, hi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.25000000042894, -6.716666699678569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-431", + "dateofocc": "2010-11-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "900 MILES EAST OF EYL, OFF SOMALIA: Pirates in two white colored skiffs chased and fired upon a container ship underway. Vessel managed to evade the boarding. A suspected mother vessel was sighted a short distance away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.999999999749434, 6.050000000406101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-433", + "dateofocc": "2010-11-10", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: A suspicious approach was reported on 100558Z Nov by a merchant vessel in position 06-15N 064-44E. The suspious approach is most probally connected with the attack on the 090834Z Nov, when a merchant vessel was reported under attac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.733333299619346, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-434", + "dateofocc": "2010-10-30", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BRAZIL: Bulk carrier robbed 30 Oct 10 at 0100 local time while at anchor in position 01-31S 048-45W, in Vila do Conde. Four robbers armed with knives boarded a bulk carrier at anchor. They took hostage a duty watchman, threatened him with knives, and ti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.750000000107093, -1.550000000019566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-435", + "dateofocc": "2010-11-03", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VENEZUELA: Tanker boarded 3 Nov 10 at 1906 local time while at anchor in position 10-12N 064-47W, in Bahia de Barcelona. Six robbers armed with knives boarded an anchored tanker via the anchor chain. The robbers threatened the duty watch and took his wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.783333299694732, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-436", + "dateofocc": "2010-11-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "NIGERIA: Tug robbed 5 Nov 10 at 1322 local time while underway in position 04-38N 008-22E, approximately 10NM south of Parrot Island, Calabar. Twenty pirates armed with guns in two speed boats boarded a tug underway. All crew locked themselves into the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.366666699568214, 4.633333299744208] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-437", + "dateofocc": "2010-11-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (FLOYEN) fired upon 9 Nov 10 at 0500 local time while underway in position 01-01N 052-58E, approximately 350NM north of the Seychelles. Two white skiffs with nine people in each chased a tanker for two hours and fired upon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.966666700291114, 1.016666700274811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2010-438", + "dateofocc": "2010-11-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TANZANIA: Tanker (TORM KANSAS) chased and fired upon 5 Nov 10 at 1457 UTC while underway in position 05-25S 040-42E, approximately 50NM east of Pemba Island, Tanzania. Heavily armed pirates in a skiff chased and fired upon a product tanker underway. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.699999999772956, -5.416666700445944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-100", + "dateofocc": "2011-02-05", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (PUELCHE) was attacked 5 Feb at 0315 UTC while underway in position 10-21.2N 065-27.7E, approximately 675NM ESE of Socotra Island, Yemen. Armed pirates chased the vessel but aborted the attack after evasive maneuvers were em", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.461666699989223, 10.353333299965129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-101", + "dateofocc": "2011-02-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel pirated in 19-29N 063-33E at 1947Z on 12 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.550000000017292, 19.483333299729793] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-102", + "dateofocc": "2011-02-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-51N 043-15E at 0510Z on 10 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.250000000170189, 12.850000000266277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-103", + "dateofocc": "2011-02-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA: Chemical tanker was approached 10 Feb at 0135 local time while underway in position 05-31.9N 003-38E, approximately 50NM off Lagos, Nigeria. Seven to eight armed robbers in a fishing boat approached the tanker from astern. The duty officer noti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.633333299711865, 5.531666699840741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-104", + "dateofocc": "2011-02-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Crude oil tanker (NS CENTURY) was suspiciously approached 16 Feb at 0800 UTC while underway in position 20-53.2N 069-39.1E, approximately 40NM south of Porbandar, India. Three skiffs were seen 6.3NM ahead of the tanker, along with a mother", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.651666699971827, 20.886666699649368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-105", + "dateofocc": "2011-02-13", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel was hijacked 13 Feb while underway in position 12-00N 053-02.1E, approximately 8NM south of Socotra Island, Yemen. The vessel has a crew of eight. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.035000000257298, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-106", + "dateofocc": "2011-02-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN: Bulk carrier (SININ) was hijacked 12 Feb at 1218 UTC while underway in position 20-15.43N 064-16.09E, approximately 280NM SE of Ras al Had, Oman. The vessel, which has a crew of 23, sent out a distress signal. A coalition aircraft was sent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [64.268055600198693, 20.257222200135573] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-107", + "dateofocc": "2011-02-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAIT: Tug was boarded by robbers 14 Feb at 0415 local time while underway in position 01-04.98N 103-35.10E, approximately 6NM SW of Pulau Nipah, Indonesia. Eight to ten robbers boarded the vessel armed with parangs (machetes) from a motorise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.585000000408172, 1.083055600363139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-108", + "dateofocc": "2011-02-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAIT: Tug was boarded by two suspects 11 Feb at 0805 local time, while at anchor in position 01-11N 103-35E, approximately 4.5NM NW of Pulau Nipah, Indonesia. Nothing was stolen and the robbers escaped in a small wooden boat. (ReCAAP, IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-109", + "dateofocc": "2011-02-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship was robbed 23 Feb at 21:35 local time while in position 22-11.42N 91-43.55E at Chittagong Port outer limits. The robbers stole three large garbage bins. No crew was injured. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.725833300107809, 22.190277799686271] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-110", + "dateofocc": "2011-02-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship was robbed 21 Feb at 0400 local time while in position 22-15N 91-47E at the Chittagong outer anchorage. Two robbers in a boat boarded the ship. Duty crew spotted the robbers on the poop deck and raised the alarm. Upon seeing t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-111", + "dateofocc": "2011-02-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (DELMAS KETA) was fired upon 19 Feb at 0728 UTC while underway in position 11-33S 050-45E, approximately 100NM NE of Antisiranana, Madagascar. The vessel was fired upon with automatic weapons by a pirate action group consist", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.749999999963109, -11.550000000342948] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-112", + "dateofocc": "2011-02-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "INDIAN OCEAN: Yacht (QUEST) was hijacked 18 Feb at 1323 UTC while underway in position 18-00N 061-02E, approximately 282NM SE of Sur, Oman. Nineteen pirates reportedly were involved in the hijacking on QUEST, which resulted in the death of all four crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.033333299589628, 18.000000000028137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-113", + "dateofocc": "2011-02-19", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier was robbed 19 Feb at 0200 local time, while at anchorage in position 03-44.2S 114-25.6E, Taboneo anchorage. The robbers stole ship stores and escaped.The incident was reported to the authorities. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.426666699778593, -3.73666669970811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-114", + "dateofocc": "2011-02-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAIT: Tug was robbed 17 Feb at 0540 local time while underway in position 01-08.1N 103-32.2E. Six robbers armed with long knives boarded the vessel and attempted to take money from the crew. All accesses were locked, and the pirates stole s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.53666669966924, 1.135000000107709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-337", + "dateofocc": "2011-07-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-56N 048-30E at 1029Z on 22 Jul. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.499999999665476, 12.933333300102561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-328", + "dateofocc": "2011-07-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Oil tanker (JUBBA XX) was hijacked 16 July in the morning. The exact location of the vessel during the hijacking is unknown. As of 17 July at 0813 UTC, the vessel was located at 13-48N 051-25E, approximately 134NM northwest of Socotra Isla", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.416666699926225, 13.800000000431908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-339", + "dateofocc": "2011-07-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF GUINEA: A tanker experienced two attempted boardings, the first on 6 July at 2230 UTC while launching in position 06-15.6N 002-23E, approximately 6NM southwest of Cotonou, Benin. Ten robbers with guns attempted to board the vessel with a hook at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.383333300345896, 6.260000000385901] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-340", + "dateofocc": "2011-07-22", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "VEHICLE CARRIER", + "descriptio": "GULF OF GUINEA: A vehicle carrier was robbed 22 July at 0340 UTC during cargo operations in Conakry Port, Guinea. Armed robbers held a duty crewmember at gunpoint, forced him to direct them to the ship's stores, and hit him when he resisted. The robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.712222200074109, 9.509166699715365] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-341", + "dateofocc": "2011-07-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "GULF OF GUINEA: Product tanker was hijacked 30NM off the coast of Nigeria on 16 July. The vessel was transiting from Ghana to Benin. The vessel was released on 18 July at 1700 UTC, and all 20 crewmembers were reported in good health. It is unknown whethe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.513333299819521, 6.146666699910099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-342", + "dateofocc": "2011-07-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN: Six armed pirates in a skiff chased a container vessel underway. Master raised the alarm, took evasive maneuvers and contacted the coalition forces. The vessel managed to evade the attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.366666699962479, 13.006666700149935] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-343", + "dateofocc": "2011-07-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SAMARINDA MUARA BERAU ANCHORAGE, INDONESIA: Robbers boarded a bulk carrier at anchor, stole ship's stores and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.594444400224234, -0.224444400153516] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-344", + "dateofocc": "2011-07-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "30 MILES NORTH OF ASSAB, ERITREA, RED SEA: Three skiffs with 5-6 pirates in each were noticed by a tanker underway. One of the skiff suddenly approached the tanker. Master released two flares when the skiff closed to 700 meters. The skiff doing 20 knots", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.703333300067072, 13.528333300045347] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-345", + "dateofocc": "2011-07-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "40 MILES OFF ASSAB, ERITREA, RED SEA: Pirates in two skiffs approached a container ship underway. Master raised alarm, increased speed, took evasive maneuvers and crew activated fire hoses. The pirates chased the ship and later aborted the attempted atta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.956666700354106, 13.688333300158433] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-346", + "dateofocc": "2011-08-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "KENYA: Container vessel was robbed 1 August at 0100 UTC while moored with buoys in position 04-03.7S 039-38.6E in Mombasa Port, Kenya. Two robbers with knives boarded the vessel. The onboard security team noticed the robbers on the forecastle deck and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.643333299590381, -4.061666700190756] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-347", + "dateofocc": "2011-07-31", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF GUINEA: Chemical tanker (GOTLAND SOFIA) was boarded by 10 pirates with guns on 31 July at 0150 UTC while engaged in ship-to-ship operations about 38NM outside Cotonou Port, Benin. The robbers fired at the bridge, the crew barricaded themselves in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.48333330007938, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-348", + "dateofocc": "2011-08-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "ATLANTIC OCEAN: General cargo ship was robbed 1 August at 0015 UTC while anchored at Pointe Noire Roads, The Congo. After the duty crew alerted, the five robbers escaped with ships stores in a high speed boat. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.850000000233933, -4.800000000349485] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-349", + "dateofocc": "2011-07-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "ASSAB, ERITREA, RED SEA: A product tanker underway noticed one white colored skiff and on dark colored skiff with six pirates in each at a distance of 1.5 miles. The dark colored skiff approached the tanker at a speed of 15 knots. Master raised alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.598333300077115, 13.493333300048732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-325", + "dateofocc": "2013-11-11", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 11 November, an anchored bulk carrier was boarded near position 03-40S 114-26E, Taboneo Anchorage. The robbers boarded the ship unnoticed and broke into bosun storeroom and escaped with ships store's and properties. The theft was noticed by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.666666699714824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-326", + "dateofocc": "2013-11-08", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 8 November, an anchored bulk carrier was boarded near position 01-43S 116-38E, Adang Bay Anchorage. The duty A/B found six robbers, armed with knives, and alerted the Duty Officer who raised the alarm resulting in the robbers escaping empty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.71666670041617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-327", + "dateofocc": "2013-11-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "Petroleum product tanker", + "descriptio": "MALAYSIA:On 7 November, an underway petroleum product tanker was boarded and hijacked near position 01-20N 103-18E, around 7.3nm west of Pulau Kukup. Five pirates armed with knives and guns boarded the ship and tied up all the crew members and held them", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.30000000017867, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-328", + "dateofocc": "2013-11-13", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "YACHT", + "descriptio": "VENEZUELA:On 13 November, a yacht experienced a boarding near position 10-48N 061-59W, approximately 5 nm north of Cabo San Francisco, near the Paria Peninsula. Five armed robbers in a pirogue approached and boarded the boat, pistol-whipped the Skipper a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.983333299963931, 10.800000000334876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-329", + "dateofocc": "2013-11-10", + "subreg": "25", + "hostility_": "ROBBERS", + "victim_d": "YACHT", + "descriptio": "GUADELOUPE:On 10 November, a yacht experienced a boarding while anchored near position 16-13N 061-22W, Saint Anne. Five robbers swam out to the anchored yacht and attempted to steal electronics and were surprised when the yacht Skipper returned aboard. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.366666699692246, 16.216666700226767] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-330", + "dateofocc": "2013-11-14", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 14 November, seven robbers boarded the ship unnoticed and entered the engine room of an anchored tanker near position 01-23N 104-42E approximately 12 nm northeast of Bintan Island. Duty oiler noticed the robbers during his routine rounds and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.700000000044042, 1.383333300313609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-331", + "dateofocc": "2013-11-09", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "YACHT", + "descriptio": "INDONESIA:On the night of 9 November, robbers boarded a yacht anchored near position 01-22S 109-20E, Pontianak Harbor, Kalimantan. The robbers stole outboard motors, a generator, fuel, dive gear and a large amount of electronics and navigation gear. Repo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.333333300342247, -1.366666699550535] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-332", + "dateofocc": "2013-11-08", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "LPG TANKER", + "descriptio": "VIETNAM:On 8 November, three robbers in a skiff and armed with a gun and knives boarded a berthed LPG tanker at position 10-39N 107-01E, Gas-PVC Phuc Thai Jetty. Alert crewmembers sounded the alarm and the crew mustered. Seeing the crew response, the rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.016666700105532, 10.649999999835359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-333", + "dateofocc": "2013-11-06", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BARGE/TUG", + "descriptio": "MALAYSIA:On 6 November, approximately 20 robbers boarded a barge being towed by a Singapore-registered tug near position 01-25N 104-23E, approximately 1.6 nm north-northeast of Horsburgh Lighthouse. A Singapore Navy vessel was dispatched to the area. Upo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.383333300047298, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-334", + "dateofocc": "2013-11-24", + "subreg": "57", + "hostility_": "ROBBER", + "victim_d": "TUG", + "descriptio": "CONGO:On 24 November, an anchored offshore tug experienced a boarding near position 04-45S 011-49E, Pointe Noire. The robber managed to board the tug. An alert duty watchman sighted the robber and alerted the duty officer who raised the alarm. On seeing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-335", + "dateofocc": "2013-11-19", + "subreg": "51", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SIERRA LEONE:On 19 November, an anchored chemical tanker experienced a boarding near position 08-30N 013-11W, Freetown Inner Anchorage. Five robbers armed with knives boarded the anchored chemical tanker and stole ship's properties. The deck watchman wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.183333299644801, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-336", + "dateofocc": "2013-11-21", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "OIL TANKER", + "descriptio": "INDIA:On 21 November at approximately 0300 local time, an anchored crude oil tanker experienced a boarding near position 22-38N 069-53E, Sikka Crude Oil Anchorage. Robbers boarded the ship through the hawse pipe, stole ship's stores, equipment and escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.883333300280526, 22.633333300326285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-292", + "dateofocc": "2012-10-16", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 16 October near 00-13S 117-33E, Muara Berau Anchorage, Samarinda. Three robbers boarded the vessel while at anchor. They were spotted by the duty crew during security rounds. The duty A/B reported to the bridge and appro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-337", + "dateofocc": "2013-11-21", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "OIL TANKER", + "descriptio": "INDIA:On 21 November at approximately 0240 local time, an anchored crude oil tanker experienced a boarding near position 22-39N 069-55E, Sikka Crude Oil Anchorage. Eight robbers armed with knives boarded the ship. The duty officer immediately raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.91666670007487, 22.650000000223486] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-68", + "dateofocc": "2012-02-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABAIN SEA: Merchant vessel attacked in 18-10N 057-21E at 171937Z Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.350000000356374, 18.166666700424742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-69", + "dateofocc": "2012-02-22", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: A tanker underway sighted a skiff at 1.6 miles approaching at around 20 knots. A suspicious dhow was sighted in the vicinity. Master sent distress to navies and informed UKMTO. As the skiff approached weapons were sighted and the onboard ar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.366666700027167, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-70", + "dateofocc": "2012-02-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: Chemical tanker boarded on 23 February while under pilotage at position 03-23N 099-27E Kuala Tanjung Anchorage. Duty engineer raised alarm when he saw robbers holding an engineering crewman hostage and stealing spare parts. Pilot informed port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.449999999649435, 3.38333330037824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-71", + "dateofocc": "2012-02-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Seven pirates in two skiffs chased a chemical tanker underway. Master raised alarm, altered course and the onboard security team fired hand flares followed by a warning shot resulting in the pirates aborting the attack and moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.341666700317091, 12.59499999977686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-72", + "dateofocc": "2012-02-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA/ GULF OF ADEN: A bulk carrier underway noticed nine skiffs approaching aggressively at stbd side and one skiff at ort side. Master raised alarm, increased speed and began evasive maneuvers. One of the skiffs with 10-15 pirates onboard close in to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.683333299972844, 12.483333300402762] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-73", + "dateofocc": "2012-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "STRAIT OF HORMUZ: A container ship underway noticed three skiffs at a distance of 2 miles approaching her at high speed. Master raised alarm, activated SSAS, altered course, non-essential crew mustered in the citadel and the onboard armed guards took the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.701666700317446, 26.148333299859928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-74", + "dateofocc": "2012-02-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA: Pirates in three skiffs with ladders doing arouns 20 knots chased a container ship underway. Non essential crew took shelter in the citadel and security team deployed. Master informed UKMTO who advised ship to alter course towards a coalitio", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.38999999977483, 20.326666699703196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-75", + "dateofocc": "2012-02-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "IVORY COAST: Offshore supply ship boarded on 26 February while anchored at 05-16N 004-01W, Abidjan Inner Anchorage 9. Three robbers in a canoe, armed with knives, boarded from the port side main deck. One robber threatened the watch man with a knife whil", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.266666699737755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-76", + "dateofocc": "2012-01-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "GUARD VESSEL", + "descriptio": "POINT NOIRE ANCHORAGE, THE CONGO: Five robbers in a canoe approached an anchored guard vessel during heavy rain. One of the robbers boarded the vessel and stole ship stores. C/O on watch noticed the robber with a long knife on the main deck and raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.80000000036722, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-77", + "dateofocc": "2012-02-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN ARABIAN SEA: Merchant vessel attacked in 15-01N 054-56E at 1206Z on 28 February. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.933333299662138, 15.016666699828249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-78", + "dateofocc": "2012-02-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "REFRIGERATED CARGO SHIP", + "descriptio": "NIGERIA: Refrigerated cargo ship boarded on 28 February while anchored at position 04-12 N 006-56 E, 3 nm from Fairway Buoy Port Harcourt. Eight pirates armed with guns boarded the ship from a small wooden boat and started firing toward the bridge and ga", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.933333299908497, 4.199999999941554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-79", + "dateofocc": "2012-02-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "80 MILES OFF PORT HARCOURT, NIGERIA: Heavily armed pirates fired upon a chemical tanker underway. The vessel enforced anti-piracy measures, increased speed and managed to evade the boarding. The pirate group may still be in the area.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.750000000306443, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-80", + "dateofocc": "2012-02-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship boarded on 29 February while anchored at position 21-44 N 091-37 E, 12 nm west of Kutubdia Island. Robbers were able to board the ship and steal ship's stores and escape unnoticed. Master informed port authority and local agent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.616666699787345, 21.733333300027425] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-282", + "dateofocc": "2012-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN:Fishing vessel attacked on 10 October near position 00-31N 050-37E. One skiff with six to eight pirates approached the fishing vessel at high speed and fired on the vessel. The onboard security team returned fire and the skiff broke off the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.616666700260055, 0.51666669980898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-283", + "dateofocc": "2012-10-08", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "BANGLADESH:Tugboat boarded on 8 October near 05-56N 03-68W, at Chittagong Inner Anchorage. A gang of approximately 12 robbers armed with swords and knifes boarded the anchored tug while four crewmembers were working on deck. The crew members raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-284", + "dateofocc": "2012-10-05", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 5 October at 00-13S 117-33E, Muara Berau Anchorage. Six robbers armed with long knives boarded the anchored vessel. The duty crew noticed the robbers stealing ship's stores from the forward locker and raised the alarm. U", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-285", + "dateofocc": "2012-09-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA:Tanker hijacked on 14 September at 01-15N 103-09E, 3 nm off Tanjung Piai. Six pirates armed with machetes and a gun boarded and robbed the vessel, restraining 16 crew members. The attackers then escaped with cash, laptops, mobile phones and pers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.149999999679153, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-286", + "dateofocc": "2012-10-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:Merchant vessel attacked on 12 October in vicinity of 00-26N 050-39E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.650000000229625, 0.433333300147979] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-287", + "dateofocc": "2012-10-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "IVORY COAST:Tanker hijacked on 5 October at 05-12.56N 004-03.68E, 3 nm south of Abidjan Anchorage, Ivory Coast. A gang of approximately 14 pirates armed with AK47 assault rifles and knives boarded and hijacked the tanker while at anchor. They damaged th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.061388900306554, 5.209444400236464] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-289", + "dateofocc": "2012-10-16", + "subreg": "51", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "GUINEA:Cargo ship boarded on 16 October near 09-24N 013-45W, Conakry Roads. Six robbers boarded the vessel while at anchor. The crew secured themselves in the accommodations and contacted the owners for help. The owners informed the IMB Piracy Reporting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.74999999987449, 9.399999999570127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-290", + "dateofocc": "2012-10-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "NIGERIA:Tug boarded on 15 October near 03-39N 006-14E, approximately 40 nm South of Brass. Seven armed pirates boarded the tug while underway via speedboat launched from a mother vessel. They stole crew personal effects, kidnapped seven crewmembers and e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.233333299975811, 3.649999999609008] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-291", + "dateofocc": "2012-10-17", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "SALVAGE VESSEL", + "descriptio": "INDONESIA:Salvage vessel towing barge boarded on 17 October at 00-59N 105-10E, approximately 19.4 nm east of Pulau Mapur. Ten robbers armed with guns and knives boarded the vessel enroute from Singapore to Balikpapan, Indonesia. The robbers stole ship pr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.166666699640984, 0.983333299581204] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-293", + "dateofocc": "2012-10-15", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA:Cargo ship boarded on 15 October at 01-06N 104-10E, near Kabil Citranusa Port, Batam. Three robbers boarded the vessel while at anchor. They were spotted by the alert duty crew, who raised the alarm. Upon sensing the crew's alertness, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-294", + "dateofocc": "2012-10-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SRI LANKA:Fishing vessel hijacked on 15 October at Kudawella, approximately 50 nm off the Hambantota Coast. Ten armed pirates in a fiberglass dinghy boarded THEJAN PUTHA reportedly with permission from the captain. The pirates, armed with swords, then ti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [81.216666699630878, 5.533333300043068] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-295", + "dateofocc": "2012-10-13", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH:Bulk carrier boarded on 13 October at 22-15N 091-44E, at Chittagong Anchorage \"A\". Seven robbers armed with long knives boarded the anchored vessel from the aft during cargo operations. Duty crew noticed the robbers stealing ship's stores and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-133", + "dateofocc": "2013-05-06", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN:Fishing Vessel reports possible piracy activity in 01-49N 051-11E. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.183333299765707, 1.816666699940981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-134", + "dateofocc": "2013-05-12", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER NORD MUMBAI", + "descriptio": "COLOMBIA:On 12 May, the bulk carrier NORD MUMBAI was boarded at 03-48N 077-11W, at the Buenaventura Inner Anchorage. While at anchor, the duty officer on board the bulk carrier noticed robber¿s from a small boat boarding the vessel at the forecastle. He", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, 3.800000000108469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-135", + "dateofocc": "2013-05-05", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP CAP PORTLAND", + "descriptio": "EQUADOR:On 5 May, the container ship CAP PORTLAND experienced an attempted boarding at 02-28S 080-04W, approximately 12.5nm north of Puna Island. Robbers attempted to board an underway container ship. Crew sounded the alarm, mustered, and subsequently s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.066666700207065, -2.466666700215626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-136", + "dateofocc": "2013-05-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER CAP LARA", + "descriptio": "TOGO:On 9 May, the tanker CAP LARA experienced an attempted boarding at 06-04N 001-15E, at the Lome Anchorage. Eight persons in a boat came alongside the anchored tanker and attempted to board the vessel. Alert duty crew spotted the approaching boat, so", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.066666700303244] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-137", + "dateofocc": "2013-05-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER CENTENARIO BLU", + "descriptio": "NIGERIA:On 7 May, the bulk carrier CENTENARIO BLU was fired upon at 04-43N 008-20E, approximately 4 nm north-northeast of James Town. Seven heavily armed pirates in a speed boat approached and fired upon the underway bulk carrier, channeling at Calabar R", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.333333299773926, 4.716666700304529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-138", + "dateofocc": "2013-05-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER SEAPRIDE", + "descriptio": "TOGO:On 5 May, the underway tanker SEAPRIDE was fired upon at 05-41N 001-26 E, approximately 27 nm south-southeast of Lome. During STS operations the tanker saw armed pirates on the deck of the adjacent vessel. The alarm was raised, SSAS activated and a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.433333300180323, 5.683333299643266] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-139", + "dateofocc": "2013-05-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER MADONNA I", + "descriptio": "TOGO:On 5 May, the tanker MADONNA I was boarded at 05-41N 001-26E, approximately 27nm south-southeast of Lome. Nine armed pirates in a speed boat approached the tanker during STS operations. Three pirates boarded the tanker and opened fire. The Togo navy", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.433333300180323, 5.683333299643266] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-129", + "dateofocc": "2013-05-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP CMA CGM AFRICA FOUR", + "descriptio": "NIGERIA:On 4 May, the underway container ship CMA CGM AFRICA FOUR was fired upon at 04-02N 006-54 E, approximately 28 nm southwest of Bonny. Seven armed pirates in a speed boat, with two outboard motors, approached a container ship underway. Master raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.899999999938927, 4.033333300444269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-140", + "dateofocc": "2013-05-11", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT SHIP", + "descriptio": "GULF OF ADEN:On 11 May, a merchant ship experienced a suspicious approach by seven skiffs at 13-30N 050-01E, approximately 78 nm southeast of Al Mukalla, Yemen. Each skiff had approximately 5-6 individuals onboard. In addition there was a possible mother", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.016666700060796, 13.50000000033225] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-141", + "dateofocc": "2013-05-12", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER SAM HAWK", + "descriptio": "INDONESIA:On 12 May, the bulk carrier SAM HAWK was boarded at 03-41S 114-27E, at the Taboneo Anchorage. Five robbers in a boat approached and boarded an anchored bulk carrier via the anchor chain and broke into the forward store. The alert crew noticed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.450000000134537, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-142", + "dateofocc": "2013-04-29", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BARGE CREST 2821", + "descriptio": "INDONESIA:On 29 April, the barge CREST 2821 was boarded at 01-13N 103-58E, approximately 3.2nm northwest of Pulau Batam. While in tow by the tug boat CREST GOLD 1, from Port Klang to Bintulu, Sarawak, Malaysia; the barge CREST 2821 was boarded and robbed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-363", + "dateofocc": "2011-08-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA: A tug and barge was robbed 11 August at 1530 LT while transiting from Port Klang to Kuching, Malaysia. The crew discovered goods were stolen from containers after the tug and barge arrived at the discharge port. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.39999999984741, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-364", + "dateofocc": "2011-08-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTHERN RED SEA: Seven high speed boats suddenly approached around a bulk carrier underway. Two of the boats with 3-5 persons in each boat armed with automatic weapons, approached the ship at high speed. Master raised alarm, increased speed, took evasiv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.018333300036772, 13.279999999839504] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-365", + "dateofocc": "2011-08-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Six pirates armed with guns in a skiff chased a bulk carrier underway. Master raised alarm, increased speed and all crew except the bridge team mustered in the citadel. As the skiff approached to come alongside, the onboard security team fi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, 13.066666699630275] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-366", + "dateofocc": "2011-08-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF ADEN: Five armed pirates in a white colored skiff chased and fired upon a container ship underway. Master raised alarm, increased speed, took evasive maneuvers and contacted warship for assistance. Pirates aborted after chaseing the ship for 20 m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.183333299701019, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-367", + "dateofocc": "2011-08-21", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Pirates in a skiff chased and fired upon a chemical tanker underway. Master raised alarm, increased speed and took evasive maneuvers. The pirates made several attempts to board the tanker and finally aborted the attack due to the evasive ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.599999999560623, 16.14999999956359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-368", + "dateofocc": "2011-08-20", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BENIN: Chemical tanker (EMOCEAN) was hijacked 20 August at 2325 UTC while conducting ship-to-ship (STS) operations in position 05-38N 002-39E, approximately 44NM southeast of Cotonou, Benin. Twelve pirates boarded, took control of the ship, and sailed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.649999999576664, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-369", + "dateofocc": "2011-08-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SALALAH ANCHORAGE, OMAN: Armed pirates attacked and boarded a chemical tanker at anchor. They took hostage 21 crew members and hijacked the tanker to Somalia.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.050000000159741, 16.900000000262366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-370", + "dateofocc": "2011-08-20", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BELAWAN PORT, INDONESIA: Two robbers boarded a berthed bulk carrier during cargo operations. Four crew members on security watch and the 2nd officer at the gangway rushed to the poop deck upon hearing a loud knocking sound. The 2nd officer saw the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.70166669987708, 3.788333299568478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-371", + "dateofocc": "2011-08-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Five pirates armed with guns in two skiffs approached a chemical tanker underway. Master raised alarm, gave one long blast and crew mustered at a safe place. When the skiffs came close to 15 meters from the tanker, the onboard security team", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.872777800299787, 12.504166699555867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-372", + "dateofocc": "2011-08-27", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker was robbed 27 August at 0600 UTC while anchored in position 01-27.6S 116-48.6E, in the Lawe-Lawe anchorage, Balikpapan. Six to seven robbers with long knives in a motor boat boarded the vessel, took the duty watchman hostage and tied h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.809999999779166, -1.459999999899765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-373", + "dateofocc": "2011-08-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTHERN RED SEA: Two skiffs with five pirates in each approached a bulk carrier underway. The vessel increased speed, made evasive maneuvers and crew entered the citadel. The onboard security guards enforced anti-piracy measures and prevented the boardi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.364999999741372, 14.606666700381538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-374", + "dateofocc": "2011-08-19", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "ESMERALDAS ANCHORAGE, ECUADOR: Duty watchman onboard an anchored chemical tanker noticed three robbers on the forecastle deck. One of the robbers shouted at the watchman and threatened him with a long knife. The watchman ran away and informed the duty of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.649999999577517, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-375", + "dateofocc": "2011-08-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "POINTE NOIRE ANCHORAGE, CONGO: Robbers boarded a anchored container ship, stole ship's properties and escaped unnoticed by the crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.761666700141177, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-376", + "dateofocc": "2011-08-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "SINGAPORE: Petroleum product tanker (VALIANT) was robbed 26 August at 0225 LT while underway in position 01-25N 104-29E, approximately 38NM northeast of Singapore. Seven to nine robbers boarded the vessel and left after stealing some shipboard equipment", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.483333299780725, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-377", + "dateofocc": "2011-09-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIPAH ISLAND, INDONESIA: Four robbers armed with long knives boarded a tanker carrying out STS operations, the robbers entered the engine room and were spotted by the duty oiler who raised the alarm. All crew mustered in the CCR and contacted CSO and loc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.59583330012299, 1.124166700392948] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-81", + "dateofocc": "2012-02-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF GUINEA, 5 MILES OFF BAYLESA, NIGERIA: Seven to eight armed robbers in a boat chased and fired upon a chemical tanker underway. Alarm raised, crew mustered on bridge and all access to accommodation secured from inside. The robbers chased the tanke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.783333300276013, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-82", + "dateofocc": "2012-02-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "ARABIAN SEA: While underway, a chemical tanker spotted 3-4 pirates in a skiff heading towards her at a speed more than 20 knots. Alarms raised, evasive maneuvers made, fire pumps activated, armed security team made their pressence. The skiff later stoppe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.98166670035522, 16.064999999700262] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-83", + "dateofocc": "2012-02-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "SINGAPORE STRAITS, NATUNA SEA: An unlit speed boat approached a tug towing a barge. The speed boat came alongside the tug and four robbers boarded the tug while two remained in the boat. The robbers wearing masks and armed with guns and knives took hosta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.29333329992744, 1.268333299810763] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-84", + "dateofocc": "2012-03-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 21-2N 062-37E at 1219Z on 02 March. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.616666699748862, 21.449999999824911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-85", + "dateofocc": "2012-01-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "KARIMUN, INDONESIA: Two robbers boarded a tanker during STS operations using a rope attached with a hook. The duty pump man noticed the robbers and raised the alarm. The robbers removed the hook and jumped into the water and escaped in their small boat e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-175", + "dateofocc": "2014-07-25", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "GHANA:On 25 July, the 3,232 gross ton Kiribati-flagged product tanker MT HAI SOON 6 was boarded and hijacked by a group of 10 heavily armed pirates about 46 nautical miles south of Anloga, Ghana.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.899999999744921, 4.999999999607724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-91", + "dateofocc": "2012-03-11", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA: Five pirates in a skiff doing 22 knots chased and fired upon a container ship underway at 21 knots. Pirates closed to the port quarter of the vessel and fired a rpg towards the bridge. Master increased speed, enforced anti-piracy measures an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.93333329975917, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-87", + "dateofocc": "2012-03-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "Nigeria:Chemical tanker underway approached on 7 March while underway near position 04:12 N - 006:54 E, approximateely 5.8nm off Port Harcourt Fairway Buoy. Seven Heavily armed robbers in a speed boat approached the tanker, bridge crew raised the alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.899999999938927, 4.199999999941554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-88", + "dateofocc": "2012-03-02", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "ARABIAN SEA:Chemical tanker ROYAL GRACE hijacked on 2 March while underwaynear position 21:27 N - 062:37 E, approximately 215 nm northeast of Masirah, Island, Oman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.616666699748862, 21.449999999824911] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-89", + "dateofocc": "2012-03-06", + "subreg": "62", + "hostility_": "Suspicious Craft", + "victim_d": "Tanker", + "descriptio": "ARABIAN SEA:Tanker ADVANCE VICTORIA attacked on 6 March while underwaynear position 14 20 N - 052 45 E, approximately 113 nm northwest of Socotra Island, Yemen. Ship approached by one skiff described as dark in color. Shots fired by suspected pirates ab", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.75000000002774, 14.333333299967933] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-90", + "dateofocc": "2012-03-03", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA:Bulk carrier boarded on 3 March by ten robbers via the forecastle while the ship was anchored at position 17-02 N 082-25 E, Kakinada Anchorage. Duty watchman saw therobbers and raised the alarm. Seeing crew alertness, the robbers escaped in two wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.416666700029452, 17.033333299965363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-92", + "dateofocc": "2012-03-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN, RED SEA: One skiff approached and chased a tanker underway. Master raised alarm, activated anti-piracy measures and contacted an Iranian warship for assistance. Seeing the warship the pirates aborted the attempted attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.446666700306992, 12.541666699680775] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-93", + "dateofocc": "2012-03-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "JAVA SEA, TANJUNG PRIOK OUTER ANCHORAGE: Two robbers in a fishing boat boarded an anchored bulk carrer during heavy rain. They entered the engine store room. The duty oiler on routine rounds spotted the robbers and raised the alarm. Upon hearing the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-94", + "dateofocc": "2012-01-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "RO-RO SHIP", + "descriptio": "BAY OF BENGAL: Robbers boarded a RO-RO ship while awaiting pilot. Duty watchman sighted the robbers and informed Master. Master raised alarm and reported to coast guard. Robbers noticed crew alertness and escaped with stolen stores. No casualties to crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.70166669965073, 22.20499999988084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-95", + "dateofocc": "2012-03-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA:Duty watchman saw one robber climbing using a thin hooked line on a Crude Oil Tanker at anchor. The duty A/B informed bridge who raised the alarm, sounded ship's whistle and crew mustered. On noticing the crew alertness,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.484999999710737, 1.706666699694608] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-296", + "dateofocc": "2012-10-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "SOUTH CHINA SEA:Six pirates in a speed boat boarded a tug towing a barge, taking the crew hostage and stealing cash and personal effects before escaping. The Master was slightly injured during the incident.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.799999999777469, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-297", + "dateofocc": "2012-10-19", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA:On 19 October at 1250Z, a fishing vessel was hijacked by pirates at 08-52N 050-28E, east of Eyl, Somalia.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.466666699760594, 8.866666700034045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-298", + "dateofocc": "2012-10-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MILITARY VESSEL", + "descriptio": "INDIAN OCEAN:HNMLS Rotterdam fired upon on 24 October off Somali coast. While conducting routine surveillance off the Somali coast, HNMLS Rotterdam, the flagship for NATO's OCEAN SHIELD counter-piracy mission, came under fire from groups of suspected pir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.666666700126825, 8.666666699667871] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-299", + "dateofocc": "2012-10-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN:Fishing vessel hijacked on 19 October approximately 250 nm off the coast of Somalia. On 20 October, the EU Naval Force (EUNAVFOR) German frigate FGS SACHSEN located a dhow after receiving the fishing vessel's distress signal, rescuing 20 Ira", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.866666699658367, 13.033333299835988] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-300", + "dateofocc": "2012-10-21", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:Container ship approached on 21 October at 03-47N 098-42E, at the Belawan International Container Terminal. Two robbers armed with long knives in a small boat approached the berthed vessel. Alert duty crew noticed one robber attempting to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-301", + "dateofocc": "2012-10-20", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:Container ship boarded on 20 October at 03-55N 098-46E, at the Belawan Anchorage. Robbers boarded the anchored vessel, stole ship's stores and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-302", + "dateofocc": "2012-10-19", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 19 October near 01-06N 103-28E, at the Karimun STS Anchorage. A gang of three to five robbers boarded the tanker during ship-to-ship transfer operations, escaping with the ship's stores and engine spares.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.466666699675955, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-303", + "dateofocc": "2012-10-18", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TUGBOAT", + "descriptio": "MALAYSIA:Tug towing a barge boarded on 18 October near 04-13N 108-15E, off Tanjung Datu. Robbers boarded the tug, stole crew cash and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.2499999995743, 4.216666699838697] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-304", + "dateofocc": "2012-10-18", + "subreg": "71", + "hostility_": "TUG BOAT", + "victim_d": "PIRATES", + "descriptio": "INDONESIA:Tug towing barge boarded on 18 October at 01-18N 104-48E, off Pulau Bintan. Six pirates in a speed boat boarded the tug, took hostage the crew, tied them up, and stole cash and personal effects before escaping. Master was slightly injured durin", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.799999999777469, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-305", + "dateofocc": "2012-10-24", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "BARGE CARRIER", + "descriptio": "NIGERIA:Barge carrier experienced attempted boarding on 24 October at 03-54N 005-27E, near Port Harcourt. Seven robbers in a speedboat attempted to board the vessel while underway by throwing a hook to the upper deck of the vessel. The vessel made evasiv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.450000000206785, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-306", + "dateofocc": "2012-10-27", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 27 October at 03-41S 114-27E, at Taboneo Anchorage, Banjarmasin. Three robbers boarded the anchored vessel while awaiting cargo operations. Duty crew on rounds noticed a robber on the forecastle deck and informed the dut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.450000000134537, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-307", + "dateofocc": "2012-10-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 27 October at 03-53N 098-46E, at the Belawan Outer Anchorage. A gang of 3 to 4 robbers boarded the anchored vessel, taking hostage the duty A/B and stole his personal belongings. The A/B managed to escape and raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-308", + "dateofocc": "2012-10-27", + "subreg": "71", + "hostility_": "ROBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:Container ship boarded on 27 October at 03-56N 098-47E, at the Belawan Anchorage. Three robbers armed with long knives boarded the anchored vessel via the anchor chain. They took hostage the duty crew and tied him up on the forecastle deck. Ano", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.783333299686319, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-309", + "dateofocc": "2012-11-03", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:Container ship boarded on 3 November at 06-00S 106-54E, at the Jakarta Anchorage. Four robbers in a small boat approached the stern of the anchored vessel. One robber boarded the ship using a grappling hook while the other three robbers remaine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-310", + "dateofocc": "2012-11-02", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 2 November at 01-41S 116-38E, at the Adang Bay Anchorage. Robbers boarded the anchored vessel and stole ship's stores from the forward store and escaped unnoticed. The theft was later noticed during the next watch change", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.683333299722563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-143", + "dateofocc": "2013-04-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG HUB 21", + "descriptio": "INDONESIA:On 24 April, the underway tug HUB 21 was boarded at 01-36N 105-23 E, approximately 53 nm north-northeast of Bintan Island. Fifteen pirates armed with guns and long knives in three high speed boats boarded a tug underway. They took hostage nine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.383333300079585, 1.599999999677607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-144", + "dateofocc": "2013-05-21", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP FIESTA", + "descriptio": "COLOMBIA:On 21 May, the anchored general cargo ship FIESTA experienced an attempted boarding at 03-50N 007-07W, at the Buenaventura Anchorage. Three robbers in a boat approached the anchored general cargo ship and attempted to board, via the anchor chain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.116666699976747, 3.833333300078039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-145", + "dateofocc": "2013-05-17", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER MARIELLA BOTTIGLIERI", + "descriptio": "TOGO:On 17 May, the anchored chemical tanker MARIELLA BOTTIGLIERI experienced an attempted boarding at 06-03N 001-17 E, at the Lome Anchorage. Eleven robbers in an unlit boat approached the anchored chemical tanker. The duty A/B noticed the boat and inf", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 6.050000000406101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-146", + "dateofocc": "2013-05-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPORT VESSEL SAINT PATRICK", + "descriptio": "NIGERIA:On 14 May, the offshore diving support vessel SAINT PATRICK was boarded at 04-25N 007-28E, approximately 7.5 nm south-southwest of the Opobo river estuary. The offshore diving support vessel was reported as being boarded and attacked by pirates", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.466666700168673, 4.416666700204928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-147", + "dateofocc": "2013-05-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER BARGE LADY SWATHIN", + "descriptio": "NIGERIA:On 14 May, the self-propelled tanker barge LADY SWATHIN was hijacked at 04-20N 007-40E, approximately 8.5 nm south of the Opobo River Estuary. The self-propelled tanker barge was reported as being hijacked by nine armed pirates in a white-hulled", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.666666699635527, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-148", + "dateofocc": "2013-05-13", + "subreg": "57", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "OIL TANKER", + "descriptio": "NIGERIA:On 13 May, an anchored oil tanker was boarded at 06-20N 003-19E, approximately 8 nm south-southwest of Lagos. Vessel reported to authorities via VHF Channel 16 that two persons had boarded the ship and were seen on the deck. During the communica", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.316666700439157, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-149", + "dateofocc": "2013-05-12", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "NIGERIA:On 12 May, a fishing vessel was attacked approximately 15 nm south of Akwa Ibom state. The fishing trawler reported being attacked by armed pirates in a white-hulled speedboat at 0820 LT. Later, the same speedboat was reported to have approached", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-150", + "dateofocc": "2013-05-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PASSENGER BOATS", + "descriptio": "NIGERIA:On 11 May, ten (10) passenger boats were boarded and robbed in the vicinity of Sagbatoru-Igweta-Iwoama waterways in Nembe Local Government Area of Bayelsa state. Heavily armed sea pirates, in three speedboats, rounded up ten speed boats filled wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.400000000372415, 4.533333300010781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-151", + "dateofocc": "2013-05-19", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "LPG TANKER", + "descriptio": "IRAN:On 19 May, an underway LPG tanker experienced an suspicious approach at 25-32 N 057-27E, approximately 18 nm west-southwest of Bandar-e-Jask. Four suspicious boats with three armed persons in each boat chased an LPG tanker while underway. Master ra", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.450000000089801, 25.53333329979057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-152", + "dateofocc": "2013-05-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP SE PELAGICA", + "descriptio": "GULF OF ADEN:On 19 May, the underway cargo ship SE PELAGICA experienced a suspicious approach at 12-12N 044-20E, approximately 52 nm south-southwest of Aden, Yemen. Five pirates armed with AK47 rifles and a RPG approached a general cargo ship underway.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.333333300038817, 12.200000000200248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-153", + "dateofocc": "2013-05-18", + "subreg": "56", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER GANDHI", + "descriptio": "EGYPT:On 18 May, the anchored chemical tanker GANDHI was boarded in the vicinity of 31-13N 029-45E, at the Alexandria Waiting Anchorage. Duty officer on board noticed a robber lowering ship's stores into a waiting boat. The alarm was raised and crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.750000000183263, 31.216666699812549] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-378", + "dateofocc": "2011-08-26", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "JOSE PORT ANCHORAGE, VENEZUELA: Two skiffs with 11-12 robbers approached a bulk carrier at anchor. Crew alerted armed security guards onboard who opened fire resulting in the robbers moving away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.767499999723498, 10.175277800327422] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-323", + "dateofocc": "2012-11-25", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "COLOMBIA:Tanker boarded on 25 November at 10-18N 075-33W, at the Cartagena Anchorage. Robbers boarded the anchored tanker, stole ship's stores from the forward store and escaped unnoticed. The crew on duty noticed the theft and reported the incident to P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.56000000022766, 10.306666700152562] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-379", + "dateofocc": "2011-09-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "GULF OF ADEN: A oil tanker (MT FAIRCHEM BOGEY) came under attack at 1317z on 08 Sep in position 15-27N 052-14E, approximately 8 miles off the coast of Yemen. The tanker had armed guards on board when she sailed through the Gulf of Aden on its way to unlo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.233333299664764, 15.449999999630904] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-380", + "dateofocc": "2011-09-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "TOGO: Chemical tanker experienced an attempted boarding 14 September at 0415 UTC while anchored in position 06-01.39N 001-18.30E, approximately 8NM southeast of Lome break water, Togo. About 26 robbers in two boats attempted to board the vessel, a portab", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.304999999834422, 6.023055600145199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-381", + "dateofocc": "2011-09-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Six pirates in one skiff chased and fried upon a tanker underway. Another two skiffs were seen at a slight distance. The Master and all crew gathered on the brdige, sent a May Day via VHF, increased speed, activated SSAS, contacted CSO, made eva", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.850000000337104, 14.066666699662619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-382", + "dateofocc": "2011-09-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "COTONOU, BENIN: Armed pirates boarded a prodcut tanker during STS operations. Master sent SSAS alert, crew locked in engine room and contacted CSO. Later pirates left the vessel. Crew came out of the engine room and conducted a search for the pirates and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.433333300212666, 6.366666700402845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-383", + "dateofocc": "2011-09-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA: Six robbers armed with knives in a boat approached an anchored chemical tanker. Three of the robbers boarded the tanker from the stern. They threatened the duty AB on deck. Duty officer on bridge raised the alarm upon si", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.666666700340784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-384", + "dateofocc": "2011-09-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA: Merchant vessel attacked in 14-06N 042-45E at 0627Z on 10 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.749999999704357, 14.099999999632189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-385", + "dateofocc": "2011-09-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA, GULF OF ADEN: Armed pirates in four skiffs approached a bulk carrier underway, two from the port side and two from the stbd side. Master raised alarm, took evasive maneuvers and the onboard security team fired warning shots resulting in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.425000000153375, 12.591666700446808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-386", + "dateofocc": "2011-09-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BANGLADESH: Chemical tanker boarded and robbed 15 September at 2045 LT while berthed in position 22-16.15N 091-49.19E at the Super Oil Refinery Terminal, Chittagong, Bangladesh. Two robbers with long knives boarded the vessel, held the duty watchman hos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.819722199808098, 22.269166700415781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-387", + "dateofocc": "2011-09-09", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "TEBING ISLAND, INDONESIA: Three robbers in a wooden boat boarded a chemical tanker at anchor via the stern. Duty A/B spotted the robbers and raised the alarm. Seeing the crew alertness the robbers jumped overboard and escaped. Master reported to local au", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.51055560040885, 1.063888900337759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-388", + "dateofocc": "2011-09-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (AN NING JIANG) fired upon by six pirates with AK-47s in one skiff on 17 September at 1035 UTC while underway in position 03-54.6S 041-04.7E, approximately 86NM northeast of Mombasa, Kenya. A bright white skiff approache", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [41.078333300351744, -3.909999999664194] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-389", + "dateofocc": "2011-09-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "TOGO: Bulk carrier experienced an attempted boarding on 16 September at 0340 LT while anchored in position 06-03.7N 001-17.5E at the Lome Anchorage. Seven robbers in a fast boat approached the vessel, one of the robbers had a hook attached to a rope. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.291666699991424, 6.061666700046771] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-96", + "dateofocc": "2012-03-14", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cargo Ship", + "descriptio": "Dem. Rep Congo:Refrigerated Cargo Ship boarded on 14 March while anchored at 05:51 S ¿ 013:03 E, Boma Anchorage. Ten robbers in two boats boarded the ship took duty crewman hostage; they attempted to enter the forward cargo hold by breaking the hatch se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.850000000248542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-97", + "dateofocc": "2012-03-11", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Container Carrier", + "descriptio": "Indian Ocean:Container carrier attacked on 11 March while underway near position 13:09 N - 057:56 E, approximately 210 nm east-northeast of Socotra Island, Yemen. Five pirates in a skiff doing 22 knots chased and fired upon the ship which was steaming a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.93333329975917, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-98", + "dateofocc": "2012-03-11", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "Indonesia:Fishing vessel boarded on 11 March while anchored at 06:01 S - 106:53 E, Tanjung Priok Outer Anchorage. Robbers entered the engine store room. The duty oiler on routine rounds spotted the robbers and raised the alarm. Upon hearing the alarm, t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-99", + "dateofocc": "2012-03-17", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "LPG Tanker", + "descriptio": "IVORY COAST:LPG Tanker boarded on 17 March while anchored at position 05:13 N - 004:02 W, Abidjan Anchorage. The robbers reportedly boarded the ship during a heavy rain and between rounds by duty personnel. The robbers managed to steal ship¿s stores a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.033333299753622, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-100", + "dateofocc": "2012-03-19", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "INDIAN OCEAN:Container ship fired upon 19 March while underway at position 05:40 N - 053:23 E, approximately 520 nm northeast of Mogadishu. Six pirates in one skiff, armed with assault rifles and at least one rocket propelled grenade, chased the ship an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.383333300196568, 5.66666669957084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-101", + "dateofocc": "2012-03-17", + "subreg": "61", + "hostility_": "Suspicious craft", + "victim_d": "Merchant Vessel", + "descriptio": "INDIAN OCEAN:Merchant vessel fired upon 17 March while underway at position 05:47 N - 053:50 E, approximately 390 nm south of Socotra Island, Yemen.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.833333299896367, 5.783333300276013] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-102", + "dateofocc": "2012-03-17", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Petroleum Tanker", + "descriptio": "GULF OF ADEN:Petroleum products tanker attacked on 17 March while underway at position 13:09 N - 048:52 E, approximately 70 nm southeast of al Mukalla, Yemen. A skiff with six pirates aboard was noticed by bridge crew as it made a high speed approach to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.866666700428311, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-103", + "dateofocc": "2012-03-18", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "INDONESIA:Bulk carrier boarded on 18 March while anchored at positions 01:18 S - 116:47E Balikpapan Inner Anchorage. Three robbers boarded the ship, broke into the forward cargo hold and stole ship's stores. Two duty personnel on rounds saw the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.783333300268396, -1.299999999786621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-105", + "dateofocc": "2012-03-22", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "ARABIAN SEA:M/V Jag Prakash reported being chased by an un-identified craft in position 22-58N - 065-58E. Attempted piracy attack (6 miles fromvessel) at 221900 UTC Mar 2012. Vessels are advised to keep clear of this position and to exercise extreme ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [65.966666699812208, 22.96666670022023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-106", + "dateofocc": "2012-03-24", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "ARABIAN SEA:M/V Andinet reported a suspicious approach by three small crafts in position 22-37N - 063-31E. Armed security team onboard vessel repelled the crafts from the distance of two cables. Vessel remained safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.516666700047722, 22.616666700253916] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-108", + "dateofocc": "2012-03-24", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "ARABIAN SEA:M/V Cosmic Jewel reported at 241131 UTC Mar that one skiff approached at high speed up to one nm. Armed security team onboard vessel fired four warning shots. The skiff returned to mother vessel in position 20-48N - 062-27E. M/V cosmic Jew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.450000000251521, 20.799999999758938] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-111", + "dateofocc": "2012-03-26", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "ARABIAN SEA:A merchant vessel reported being hijacked at 0330Z on 26MAR12 in position 07-00N - 069-49E, approximately 467 nm SW fro Cape Comorin, India. This area will remain high risk for at least the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.816666700341386, 6.999999999672355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-114", + "dateofocc": "2012-03-25", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "ARABIAN SEA:25-MAR12: 1335 UTC: Posn 14:18.5N - 056:49.2E, around 170 nm NE of Socotra Island, Yemen. Two skiffs approached a bulk carrier underwa. As the skiffs closed the onboard security team fired warning shots. At a distance of around 0.8 nm one", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.820000000150401, 14.308333299584945] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-311", + "dateofocc": "2012-10-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA:Tanker hijacked by 10 pirates sometime between 14 and 20 October near 05-16N 115-14E, at the Labuan Anchorage. Pirates released the vessel on 26 October after stealing her cargo, approximately 650 tons of fuel, and robbing the crew of cash and p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.233333299903506, 5.266666699737755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-312", + "dateofocc": "2012-11-01", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:On 1 November at 0650Z, a merchant vessel was fired upon by a skiff in position 16-26N 041-23E, in the southern Red Sea.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.383333299808498, 16.433333299766048] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-313", + "dateofocc": "2012-11-06", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TUGBOAT", + "descriptio": "INDONESIA:Tugboat towing a barge boarded on 6 November near 01-44N 106-11E. Ten robbers armed with long knives boarded the tugboat while enroute from Port Klang to Kuching. One of the crew members was assaulted during the boarding. The robbers stole crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.183333299745755, 1.733333300279924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-314", + "dateofocc": "2012-11-16", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "COLOUMBIA:Tanker boarded on 16 November at 10-19N 075-31W, at the Cartagena Inner Anchorage. Robbers boarded and stole ship's stores from the anchored LPG tanker and escaped unnoticed. The theft was later noticed by ship's crew during routine day work. A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-315", + "dateofocc": "2012-11-13", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "ECUADOR:Container ship boarded on 13 November at 02-31S 080-05W, at Guayaquil. A gang of 10 to 12 robbers armed with guns and knives in two boats boarded the container ship during a river passage. The aft duty crew noticed the boats and alerted the Maste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.083333300279492, -2.51666670008234] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-316", + "dateofocc": "2012-11-11", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "PERU:Tanker boarded on 11 November at 04-34S 081-19W, at the Talara Anchorage. Two robbers armed with knives boarded the tanker while at anchor. When the robbers were spotted, they jumped overboard with stolen stores and escaped with three more accomplic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.316666699572977, -4.566666700013741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-317", + "dateofocc": "2012-11-01", + "subreg": "62", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "SAUDI ARABIA:Tanker fired upon on 1 November at 16-35N 41-28E, near Jizan. While sailing, the tanker was pursued by a suspected boat with three armed robbers onboard. The high speed boat closed in on the tanker and discharged their weapons. The Master in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.466666700368876, 16.583333300265565] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-318", + "dateofocc": "2012-11-16", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 16 November at 03-55N 098-48E, approximately 7.4 nm east of Nipahlarangan, Belawan. Three robbers armed with knives and iron bars boarded the anchored tanker, stole ship's stores, and escaped. Master raised the alarm, mustered", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.799999999583463, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-319", + "dateofocc": "2012-11-11", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 11 November at 01-19N 104-17E, approximately 2 nm south of Pulau Mungging Light. While at anchor, eight robbers armed with long knives and a pistol, boarded the vessel. Upon boarding, the robbers forced the crew to pump out 80", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.283333300313814, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-320", + "dateofocc": "2012-11-21", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "TOGO:Cargo ship experienced a suspicious approach on 21 November at 06-03N 001-16E, at the Lome Anchorage. Six robbers in three unlit boats approached the anchored cargo ship twice in 30 minutes. The boats hid behind the bunker barge before approaching t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.274444399843901, 6.056111100439239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-321", + "dateofocc": "2012-11-20", + "subreg": "25", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "DOMINICAN REPUBLIC:Tanker boarded on 20 November at approximately 18-26N 069-18W, at the San Pedro de Macoris Port. Robbers boarded a berthed product tanker unnoticed. They stole ship's properties and escaped. The theft was noticed by crew doing routine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.300000000187083, 18.433333299830736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-322", + "dateofocc": "2012-11-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA:Vessel attacked in 06-40N 059-05E at 1100Z on 28 November.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.083333300290974, 6.666666699603184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-324", + "dateofocc": "2012-11-12", + "subreg": "21", + "hostility_": "PIRATES", + "victim_d": "YACHT", + "descriptio": "PANAMA:Yacht boarded on 12 November at 08-39N 079-43W, in Punta Chame, approximately 20 nm southwest of the Balboa Anchorage. Four pirates in two skiffs pulled alongside the yacht and asked the occupants for drinking water. Once the occupants obliged and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.716666700240694, 8.649999999770728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-154", + "dateofocc": "2013-05-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:On 16 May, a merchant vessel experienced a suspicious approach at 12-03N 045-42E, approximately 58 nm south-southeast of Aden, Yemen. A suspected pirate mothership towing two skiffs was spotted by the security team onboard the merchant ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.699999999934676, 12.049999999700788] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-155", + "dateofocc": "2013-05-07", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN:On 7 May, a fishing vessel experienced a suspicious approach at 01-53N 051-13E, approximately 320 nm off the Somali coast. A Spanish fishing vessel observed a skiff with six pirate¿s onboard approach another fishing vessel. A Spanish warsh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.216666699560051, 1.883333299880064] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-156", + "dateofocc": "2013-05-15", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "BARGE/TUG CREST 289/TCL4401", + "descriptio": "MALAYSIA:On 15 May, the underway barge in tow CREST 289 was boarded at 03-17N 103-48E, approximately 30nm northwest of Pulau Tioman. At the time, the tug boat TCL4401 was towing the barge from Singapore to Kuantan Port, Malaysia. The thieves stole 12 pie", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.799999999745182, 3.283333299745493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-157", + "dateofocc": "2013-04-30", + "subreg": "72", + "hostility_": "PIRATE", + "victim_d": "PASSENGER SHIP KM LAMBELU", + "descriptio": "INDONESIA:On 30 April, the berthed passenger ship KM LAMBELU was boarded at 07-12S 112-43E, at the Tanjung Perak Port in Surabaya, East Java. According to witnesses, a man onboard the ship began to attack passengers indiscriminately with a 50-centimeter", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.71666670019988, -7.200000000247258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-158", + "dateofocc": "2013-04-22", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "CARGO BARGE", + "descriptio": "MALAYSIA:On 22 April, a crew from a neighboring barge ENG TOU 266 at 01-19N 104-10E, off Tanjung Ayajm, noticed an unknown tug boat pulling a stolen cargo barge.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-159", + "dateofocc": "2013-05-27", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "CONATAINER SHIP RIO EIDER", + "descriptio": "ECUADOR:On 27 May, the underway container ship RIO EIDER was boarded at 02-22S 081-00W, approximately 6.5 nm southwest of Anconcito. Approximately six armed persons with shotguns in a speed boat boarded the underway container ship, with pilot and unarmed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.999999999576232, -2.366666699582879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-160", + "dateofocc": "2013-05-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER MATRIX I", + "descriptio": "NIGERIA:On 25 May, the underway chemical tanker MATRIX I was boarded and personnel kidnapped approximately 40 nm off the coast of Bayelsa state. Armed pirates attacked the underway tanker and abducted seven Pakistani crew members, whom are being held for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.400000000372415, 4.533333300010781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-161", + "dateofocc": "2013-05-23", + "subreg": "56", + "hostility_": "ROBBERS", + "victim_d": "TANKER B ELEPHANT", + "descriptio": "EGYPT:On 23 May, the anchored tanker B ELEPHANT was boarded at 31-12N 029-42E, at the Alexandria Waiting Area Anchorage. When the crew noticed the forecastle door and rope hatch opened, they discovered some of the ship's equipment and stores had been sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.70000000031655, 31.199999999915406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-162", + "dateofocc": "2013-05-23", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "TANKER GOLDEN ADVENTURE", + "descriptio": "BANGLADESH:On 23 May, the berthed product tanker GOLDEN ADVENTURE was boarded in the vicinity of 22-16N 091-48E, at the Chittagong port. During discharge operations at berth, the tanker was boarded by robbers armed with knives. They were noticed by the l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-133", + "dateofocc": "2015-05-08", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 8 May, four robbers in an unlit boat approached an underway tanker near position01-02N 103-39E approximately 5.6 nm south of Pulau Nipah. The crew raised the alarm, which caused robbers to move away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-163", + "dateofocc": "2013-05-21", + "subreg": "62", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP APL LE HAVRE", + "descriptio": "EGYPT:On 21 May, the anchored container ship APL LE HAVRE was boarded at 29-50N 032-33E, at the Suez E16 Anchorage. Duty officer on board the anchored container ship noticed on CCTV three robbers in boiler suits near the forecastle. The duty officer rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.549999999914121, 29.833333300019547] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-164", + "dateofocc": "2013-05-20", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "BULK CARRIER YONGXING", + "descriptio": "YEMEN:On 20 May, the underway bulk carrier YONGXING experienced a suspicious approach by two skiffs at 13-11N 048-54E, approximately 65 nm south of Al Mukalla. The two yellow and blue skiffs with 12 individuals on board approached from the port side. Whe", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.900000000397881, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-390", + "dateofocc": "2011-09-14", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "LOME ANCHORAGE, TOGO: Six suspected robbers in a boat approached an anchored product tanker and attempted to climb onboard. Master raised the alarm, mustered all crew and contacted local authorities on VHF ch 16. Seeing crew alertness the robbers aborted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.326666699988095, 6.011666700180058] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-391", + "dateofocc": "2011-09-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: General cargo ship (PACIFIC EXPRESS) boarded by two skiffs with six pirates each, armed with guns and an RPG, on 20 September at 0734 UTC while underway in position 04-47S 044-35E carrying a cargo of steel, approximately 298NM southeast of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.583333300271761, -4.783333299553021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-392", + "dateofocc": "2011-09-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 04-13S 042-23E at 1525Z on 20 Sep. Vessels are advised to keep 100 miles clear of this position and exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.383333299840842, -4.216666700047369] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-393", + "dateofocc": "2011-09-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIA: General cargo ship boarded and robbed 20 September at 2345 LT while anchored in position 17-03N 082-24E at the Kakinda Anchorage, India. Robbers boarded the vessel unnoticed, stole ship's stores, and escaped. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.400000000132252, 17.049999999862507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-394", + "dateofocc": "2011-09-22", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 12-16.1S 043-19.5E at 0850Z on 22 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.325000000419948, -12.268333300375161] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-395", + "dateofocc": "2011-09-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA: Merchant vessel attacked in vicinity 14-14N 042-50E at 1342Z on 25 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.833333300439961, 14.233333300234506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-396", + "dateofocc": "2011-09-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MAYOTTE ISLAND, MADAGASCAR: A container ship underway noticed two skiffs with three to four persons in each at a distance of 1.5 miles. The skiffs increased speed to 18 knots and approached and chased the vessel from different sides. The vessel made evas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.308333299720459, -12.776666700252292] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-397", + "dateofocc": "2011-09-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Pirates in a dark colored rubber boat chased and fired upon a bulk carrier underway. Master, duty watchman and duty armed guard noticed the small boat at a distance of 20 meters from the ship. Master raised alarm, all crew retreated to a sa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.636666700160276, 12.43000000030662] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-398", + "dateofocc": "2011-09-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "LOME ANCHORAGE, TOGO: Duty officer onboard an anchored chemical tanker noticed a fishing boat slowly approaching. As the boat closed to the ship, the duty officer informed the boat to move away. This was ignored by the fishing boat and later two more boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.016666700436531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-399", + "dateofocc": "2011-09-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "LOME ANCHORAGE, TOGO: Two small boats closed onto the shipside of an anchored chemical tanker. The duty officer told the boats to move away but this was ignored. Later, two more boats were seen approaching the vessel from the stern and securing themselve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.016666700436531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-400", + "dateofocc": "2011-09-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "RED SEA: Container ship underway noticed a skiff at a distance of two nautical miles. The skiff was seen to increase in speed and approach the vessel at 16 knots. At a distance of one mile the Master raised the alarm, alerted the armed security team and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.870555599782392, 14.069722200216518] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-401", + "dateofocc": "2011-09-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Chemical tanker (GINGA BOBCAT) experienced an attempted boarding and was fired upon one skiff with an RPG, 28 September at 1258 UTC while underway in position 14-02N 042-53E, approximately 70NM southeast of Ras Isa, Yemen. Entire attack group c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.883333300306674, 14.033333299868332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-402", + "dateofocc": "2011-09-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Chemical tanker (LIME GALAXY) experienced an attempted boarding by two skiffs on 28 September on 1159 UTC while underway in position 14-18N 042-50E, approximately 53NM southeast of Ras Isa, Yemen. Pirates fired upon the vessel, one pirate attem", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.833333300439961, 14.299999999998363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-115", + "dateofocc": "2012-03-28", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "ARABIAN SEA:A fishing vessel 'Naham 3' was reported hijacked in position 06:18.5N - 050:13.04 at 280730Z MAR, course 295, speed 10 kts and may be used as a pirates mothership. Vessels are advised to exercise extreme caution when navigating within 100 na", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.217222199953312, 6.308333300225513] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-116", + "dateofocc": "2012-03-28", + "subreg": "61", + "hostility_": "Suspicious Craft", + "victim_d": "N/A", + "descriptio": "INDIAN OCEAN:Suspicious blue coloured skiff with 7 POB reported in vicinity 08 30N - 53 00E at 280917UTC MAR 12. Vessels are advised to keep well clear and to exercise extreme caution.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.000000000260684, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-117", + "dateofocc": "2012-03-24", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "CARIBBEAN:Petroleum products tanker boarded on 24 March while anchored at position 18:32 N - 72:23 W, the Port au Prince anchorage. Two boats approached the vessel during a heavy rain. Duty crew noticed there were 2-3 armed robbers on each boat and one", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.533333299564163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-119", + "dateofocc": "2012-03-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "OMAN:A Tanker was approached by a skiff on 24 March 190nm east-northeast of Sur, Oman, Somalia at positions 20:49N - 062:27E. A Pirate mother ship was at a distance of 6 nm. The Takers Master observed a skiff launch 4nm away. The Master alerted the onboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.450000000251521, 20.816666699656082] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-120", + "dateofocc": "2012-03-23", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFTS", + "victim_d": "CARGO VESSEL", + "descriptio": "NIGERIA:A General Cargo vessel was approached by three skiffs at high speed on 23 March 220nm East of Sur, Oman, Somalia at positions 22:37 N - 063:31 E. The skiffs were observed following the ship as she altered course to move away. The ships Master al", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [63.516666700047722, 22.616666700253916] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-121", + "dateofocc": "2012-03-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:Chemical Tanker was chased on 22 March 100nm SW off Bonny Island, Nigeria at position 02:57 N - 006:12 E. Armed pirates in two boats chased a chemical tanker. The Master raised the alarm and sent a SSAS alert and instructed the crew to proceed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.200000000006241, 2.949999999676322] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-134", + "dateofocc": "2015-06-12", + "subreg": "54", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "TURKEY:On 12 June, a sailing yacht was boarded in Aktur Bay, 10 miles east of Datca. The robbers were able to steal a large amount of cash and jewelry.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [27.883333299821572, 36.750000000409671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-122", + "dateofocc": "2012-03-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN:Fishing vessel reportedly hijacked on 26 March while underway near position 10:00 S - 050:00 E, approximately 115 nm north of Madagascar. It has been reported that maritime officials have lost contact with the vessel, and that there are 15", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.000000000163652, -9.999999999978058] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-123", + "dateofocc": "2012-03-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIAN OCEAN:Bulk carrier reportedly hijacked on 26 March while underway near position 07:00 N - 069:45 E: approximately 200 nm southwest of Minicoy Island, India. Pirates took hostage 23 crew members and are sailing the vessel towards the coast of Soma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.749999999678209, 6.999999999672355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-124", + "dateofocc": "2012-03-26", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN:Tanker attacked on 26 March while underway near position 05:21 S - 049:18 E,approximately 370 nm west of Victoria, Seychelles. Four armed pirates in a skiff chased the ship, reportedly firing 30 rounds at the vessel. Ship¿s Master increase", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.300000000230966, -5.34999999978271] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-125", + "dateofocc": "2012-03-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:Merchant vessel attacked on 25 March while underway near position 14:17 N - 056:51 E, approximately 215 nm northeast of Socotra Island, Yemen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.849999999890542, 14.283333300101219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-126", + "dateofocc": "2012-03-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:Merchant vessel attacked on 23 March while underway near position 16:58 N - 062:48 E, approximately 285 nm southeast of Masirah Island, Oman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.800000000217892, 16.966666700026224] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-127", + "dateofocc": "2012-04-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PETROLEUM TANKER", + "descriptio": "TOGO:Petroleum products tank experienced an attempted boarding on 4 April while anchored at position 06:05 N - 001:15 E, Lome Anchorage. Ten robbers in a boat came alongside and attempted to board the ship. Alert duty officer raised alarm and informed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-325", + "dateofocc": "2012-11-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING TRAWLER", + "descriptio": "NIGERIA:Fishing trawler experienced an attempted kidnapping on 13 November in the vicinity of 04-45N 006-49E. A fishing trawler was attacked by seven pirates armed with an AK-47 and one rifle. The pirates attempt to kidnap the occupants onboard was foile", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.816666700102644, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-326", + "dateofocc": "2012-11-28", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 28 November at 03-55N 098-45E, at the Belawan Anchorage. Four armed robbers boarded the anchored chemical tanker via the anchor chain. They attempted to attack the duty A/B who managed to escape and alert the OOW. By the time", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-327", + "dateofocc": "2012-11-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier ship boarded on 28 November at 00-18S 117-40E, at the Samarinda Anchorage. Pirates armed with a long knife boarded the anchored bulk carrier. Duty watchman noticed the pirates, who threatened him with a long knife and warned him no", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.666666699595567, -0.299999999754334] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-328", + "dateofocc": "2012-11-24", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA:Bulk Carrier boarded on 24 November at 17-02N 082-25E, at the Kakinada Anchorage. Four robbers armed with knives and iron rods boarded an anchored bulk carrier via the poop deck. Duty A/B on rounds noticed the robbers stealing ship stores and infor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.416666700029452, 17.033333299965363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-329", + "dateofocc": "2012-11-24", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 24 November at 01-27 S 116-47E, at the Lawe-Lawe Anchorage, Balikpapan. Robbers boarded the anchored crude oil tanker, stole ship's stores from the forward store and escaped unnoticed. The crew on duty noticed the forward stor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.783333300268396, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-330", + "dateofocc": "2012-11-21", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA:Bulk cargo ship boarded on 21 November at 06-01S 106-55E, at the East Cargo Anchorage, Jakarta. Five robbers armed with knives boarded the anchored bulk cargo ship via the poop deck. They attacked and took hostage the duty A/B and stole engine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.916666700372105, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-331", + "dateofocc": "2012-11-21", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 21 November at 01-42S 116-38E, at the Adang Bay Anchorage. Robbers boarded an anchored bulk carrier carrying out loading operations via barge. The robbers attacked and tied up the Bosun on his routine rounds of the forec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.699999999619706] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-332", + "dateofocc": "2012-11-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VIETNAM:Tanker hijacked on 19 November in the vicinity of 07-10N 109-09 E, approximately 174.4 nm southeast of Con Son Island, by eleven pirates armed with long knives and pistols. The nine crew members were forced overboard into a life raft and rescued", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.149999999873216, 7.166666700069015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-333", + "dateofocc": "2012-11-17", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA:General cargo ship boarded on 17 November at 07-05S 112-39E, at the Surabaya Inner Anchorage. Armed pirates in two speed boats, seven in one boat and three in the other, boarded the anchored cargo ship. Alert crew raised the alarm, mustered and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.65000000043608, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-334", + "dateofocc": "2012-12-01", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Robbers in an unlit small boat approached an anchored bulk carrier and attempted to climb onboard the ship via the anchor chain. Alert duty O/S noticed the robbers, shouted at them, and then informed the bridge who raised the alarm. All crew me", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.98333329973525, -1.383333299622905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-335", + "dateofocc": "2012-11-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA:Nine pirates armed with long knives boarded an anchored tug from astern and took the duty watchman as hostage. The pirates then went to the bridge and stole crew personal belongings, cash, and the vessel's navigation equipment, then escaped aft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.567500000442237, 1.437222199760754] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-336", + "dateofocc": "2012-11-30", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDIA:Three robbers in a wooden boat approached and boarded an anchored tanker in 9-57N 76-13E, at Cochin Outer Anchorage. They broke into the forecastle store and stole ship's stores. Duty crew heard some noises in the fore peak store, checked and found", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.216666700368535, 9.949999999902673] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-337", + "dateofocc": "2012-11-30", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "TOGO:Tanker experienced suspicious approach on 30 November at 06-02N 001-18E, at the Lome Anchorage. Four robbers in a blue and white colored skiff approached the anchored tanker. Armed guards onboard the tanker deemed the intention of the skiff as aggre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.299999999577949, 6.033333299609581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-165", + "dateofocc": "2013-05-20", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFTS", + "victim_d": "TANKER ENJOY", + "descriptio": "YEMEN:On 20 May, the underway tanker ENJOY was attacked at 13-12N 049-56E, approximately 100nm south-southeast of Al Mukalla. Via VHF Chan 16, the tanker requested warship assistance due to being attacked by 7 skiffs. The warship dispatched a helicopter,", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.933333300399795, 13.200000000232592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-166", + "dateofocc": "2013-05-19", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFTS", + "victim_d": "TANKER FIDELITY 2", + "descriptio": "YEMEN:On 19 May, the underway tanker FIDELITY 2 was fired upon at 12-19N 043-58E, approximately 17nm south of the Al Maqatirah District coast. The tanker reported via VHF channel 16, being fired upon by 1 red and 1 white skiff. An embarked armed securit", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.966666700000076, 12.316666699830876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-167", + "dateofocc": "2013-05-24", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER ANNA BARBARA", + "descriptio": "INDONESIA:On 24 May, the anchored bulk carrier ANNA BARBARA was boarded at 05-59S 105-57E, at the Cigading Anchorage. Three robbers armed with machetes in a speed boat, boarded the anchored bulk carrier. Alert duty crew noticed the robbers and raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.950000000309331, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-168", + "dateofocc": "2013-05-20", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP KOHINOOR", + "descriptio": "INDONESIA:On 20 May, the berthed general cargo ship KOHINOOR was boarded at 03-47N 098-42E, at the Belawan Port. While at berth, an unknown number of robbers armed with knives boarded the ship. The duty crew noticed them stealing ship properties from the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-169", + "dateofocc": "2013-05-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BARGE/TUG CREST 2825/CREST JADE 1", + "descriptio": "INDONESIA:On 12 May, the underway barge in tow CREST 2825 was boarded at 01-15N 104-07E, approximately 3nm northwest of Pulau Batam Island. While tug boat CREST JADE 1 was towing barge from Singapore to Labuan, Malaysia, when the Master and crew spotted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-170", + "dateofocc": "2013-05-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL PKFB (U2) 1532", + "descriptio": "INDONESIA:On 07 May, the fishing vessel PKFB (U2) 1532 was attacked and hijacked in the Strait of Malacca while fishing. The pirates subsequently took the hijacked vessel to Indonesia. On 25 May, the Indonesian Marine Police detained the fishing vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.099999999715408, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-171", + "dateofocc": "2013-05-27", + "subreg": "56", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER GLOBAL F", + "descriptio": "EGYPT:On 27 May, the Liberia-flagged anchored bulk carrier GLOBAL F was boarded at 31-12N 029-46E, at the El Dekheila Anchorage, Alexandria Port. Alert duty crew on board the anchored bulk carrier noticed three robbers near the forecastle and raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.766666700080407, 31.199999999915406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-172", + "dateofocc": "2013-06-03", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker BLUEGREEN TIGRE", + "descriptio": "NIGERIA:On 03 June, the Marshall Islands-flagged underway chemical tanker BLUEGREEN TIGRE was fired upon at 04-42N 008-19E approximately 2.5 nm north of James Town, in the Calabar River. Ten armed robbers in two speed boats approached and fired upon the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.3166666997015, 4.700000000407385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-173", + "dateofocc": "2013-06-05", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "DHOW SHAHE FAIZE NOORI", + "descriptio": "SOMALIA:On 05 June, the India-flagged dhow SHAHE FAIZE NOORI was hijacked at 11-36N 049-15E, approximately 20 nm north of Bosasso. The dhow was reported hijacked and 14 crew members taken hostage. Later the pirates left the dhow for unknown reasons and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.250000000364253, 11.600000000000989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-174", + "dateofocc": "2013-06-03", + "subreg": "72", + "hostility_": "robbers", + "victim_d": "bulk carrier Spar Libra", + "descriptio": "INDONESIA:On 03 June, the Norway-flagged anchored bulk carrier SPAR LIBRA was boarded at 01-10S 117-15E, at the Muara Jawa Anchorage, Samarinda. Two robbers boarded the anchored bulk carrier using a hook attached to a rope and attempted to enter the fore", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.249999999865395, -1.166666700083624] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-175", + "dateofocc": "2013-06-03", + "subreg": "71", + "hostility_": "robbers", + "victim_d": "chemical tanker Atlantic Canyon", + "descriptio": "INDONESIA:On 03 June, the Hong Kong-flagged anchored chemical tanker ATLANTIC CANYON experienced an attempted boarding at 03-55N 098-46E, at the Belawan Anchorage. Robbers in a small boat attempted to board the anchored chemical tanker via the anchor cha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-176", + "dateofocc": "2013-06-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "RED SEA:On 4 June 2013, two merchant vessels reported being attacked in vicinity of 15-20N 041-50E in the Red Sea, approximately 185 nm northwest of Bab el Mandeb. Mariners should remain vigilant for the potential presence of pirate attack group in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.833333300407617, 15.333333300000277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-177", + "dateofocc": "2013-06-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "NIGERIA:04 June 2013, 2300 UTC, Position: 04-14.9N 007-45.7E, USARI Field, Nigeria. Pirates boarded an offshore supply ship underway, on standby duties. Seeing the pirates the crew raised the alarm, retreated into the citadel, alerted other vessels and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.761666700011801, 4.248333299781223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-403", + "dateofocc": "2011-09-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "RED SEA: Cargo vessel (CS CIHAN) boarded by pirates on 25 September at 1342 UTC while underway in position 14-09N 042-49E, approximately 62NM southeast of Ras Isa, Yemen. The pirates boarded the vessel and damaged it by firing upon it. The crew stopped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.816666700367591, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-404", + "dateofocc": "2011-09-29", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (TORM REPUBLICAN) fired upon by pirates in one skiff 29 September at 1215 UTC while underway in position 11-40.8N 063-05E, approximately 507 nm southeast of Socotra Island, Yemen. Vessel had fire hoses, razor wire, a lookout", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [63.08333330042035, 11.666666699764903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-46", + "dateofocc": "2017-02-08", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "ST MARTIN:On 08 February, robbers boarded an anchored sailing yacht in Marigot Bay and stole a ten-foot dinghy and small outboard motor. Incident reported to local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.033333299798301, 13.966666699929192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-405", + "dateofocc": "2011-09-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Four pirates in a white colored skiff chased, fired upon and attempted to board a chemical tanker underway. Master raised alarm, took evasive maneuvers and contacted authorities for assistance. The pirates aborted the attempted attack due to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.816666700367591, 14.041666700178951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-406", + "dateofocc": "2011-09-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "RED SEA: Pirates in three skiffs chased a chemical tanker underway. One of the skiffs fired a rpg and attempted to board the tanker. Master took evasive maneuvers and contacted authorities for assistance. The pirates chased the tanker for 15 minutes and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.816666700367591, 14.099999999632189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-407", + "dateofocc": "2011-09-29", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "GUINEA: Cargo ship (THOR LIGHT) boarded and robbed 29 September at 0505 UTC while anchored in position 09-24N 013-43W, Conakry anchorage. Ten to twelve robbers armed with guns and knives boarded the vessel and assaulted the eleven crew members. Robbers s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.399999999570127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-408", + "dateofocc": "2011-09-30", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM: Container ship boarded and robbed 30 September at 2300 LT while anchored in position 10-13.55N 107-04.04E, approximately 38 nm southeast of Ho Chi Minh City at the Vung Tau Outer Anchorage. Robbers boarded the vessel and stole ship stores unnot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.067222200397907, 10.225833299720477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-409", + "dateofocc": "2011-10-02", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker (UACC SHAMS) fired upon by four pirates in one skiff 2 October at 0350 UTC while underway in position 03-50N 056-23E, approximately 480 nm southeast of Hobyo, Somalia. Vessel noticed mothership launching two skiffs from 8 nm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.389999999677855, 3.83500000010514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-410", + "dateofocc": "2011-10-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "ARABIAN SEA: Cargo vessel (LARA RICKMERS) fired upon by five pirates in one skiff 2 October at 0901 UTC while underway in position 16-06N 062-47E, approximately 525 nm northeast of Socotra Island, Yemen. Skiff approached at 23 knots, the cargo vessel was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.793333299934318, 16.105555600203729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-411", + "dateofocc": "2011-10-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (THEOFOROS I) experienced an attempted boarding by seven pirates in one skiff 2 October at 0400 UTC while underway in position 13-01N 048-49E, approximately 92 nm southwest of Al Mukalla, Yemen. Master noticed skiff approaching", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.816666699662278, 13.016666699763562] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-412", + "dateofocc": "2011-10-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BENIN: Chemical tanker fired upon, boarded, and robbed 2 October at 2337 LT while drifting in position 04-06N 002-51E, approximately 136 nm southeast of Cotonou, Benin. Pirates armed with automatic weapons approached in two small boats and boarded the ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.849999999942838, 4.100000000208126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-413", + "dateofocc": "2011-10-02", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 16-27N 062-57E at 0921Z on 02 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.949999999818033, 16.449999999663248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-128", + "dateofocc": "2012-04-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA:Bulk carrier attacked on 4 April while underway at position 21:38 N - 059:59 E, approximately 130 nm southeast of Muscat, Oman. Pirates in one skiff fired upon thevessel and security team aboard the merchant vessel returned fire, forcing the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.983333299690571, 21.633333300293941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-152", + "dateofocc": "2012-05-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF OMAN:A merchant vessel reported being hijacked at 1924Z on 04 May near 25 11N 056 37E, approximately 75NM Southwest of Jask in the Gulf of Oman. This area will remain at high risk for the next 24 - 48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.616666699554798, 25.183333299824199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-153", + "dateofocc": "2012-05-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA:M/V attacked in vicinity 08 08N 056 18E at 070350 UTC May 12. Vessels are advised to keep well clear of this position and to exercise extreme caution if in vicinity.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.299999999557997, 8.133333300307015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-352", + "dateofocc": "2012-12-14", + "subreg": "94", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "CHINA:Bulk carrier boarded on 14 December at 32-00N 120-45E, at the Nantong Working Anchorage. Three robbers tried to board the anchored bulk carrier via the gangway but were challenged by the alert crew and denied access to the ship. The robbers then ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.750000000428258, 31.999999999581576] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-353", + "dateofocc": "2012-12-23", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "NIGERIA:Supply vessel ASSO VENTUNO boarded and crew kidnapped on 23 December at 04-01N 005-14E, approximately 40 nm off the coastline of Bayelsa. Pirates armed with guns attacked and boarded the offshore supply vessel while underway, and kidnapped four c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.233333299943467, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-354", + "dateofocc": "2012-12-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "OMAN:Merchant vessel experienced suspicious approach at 0535 UTC on 27 December near position 26-17N 056-43E in the Gulf of Oman, approximately 22 nm east of Al Kasab, Oman. The activity consisted of two skiffs, one of which approached the vessel to with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.716666700187545, 26.28333329958997] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-432", + "dateofocc": "2011-10-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo vessel (BURAK A) fired upon with an RPG by pirates in two skiffs on 16 October at 1508 UTC while underway in position 14-26N 052-49E, approximately 170 nm southwest of Salalah, Oman. Vessel did not have security onboard or a citadel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.816666699791654, 14.433333299701417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-355", + "dateofocc": "2012-12-20", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 20 December at 03-57N 098-46E, at the Belawan anchorage. Robbers boarded the anchored chemical tanker receiving provisions, stole ships property and escaped unnoticed. Upon investigation it was found that the robbers gained ac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-1", + "dateofocc": "2012-12-23", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "IVORY COAST:On 23 December 2012, tanker boarded at 05-12N 004-02W, at the Abidjan anchorage. Robbers armed with machine guns and knives boarded the anchored vessel and took the crew hostage. They forced the Chief Engineer and Master to start the engines.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.033333299753622, 5.199999999973898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-2", + "dateofocc": "2012-12-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "NIGERIA:On 17 December, offshore supply vessel boarded and crew kidnapped at 04-15N 004-44E, while enroute to the Mobil Erah Oilfield. Armed pirates boarded the vessel, kidnapped three crew members and escaped. The bosun later navigated the vessel to Onn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.733333300376955, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-3", + "dateofocc": "2013-01-01", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:On 1 January, a merchant vessel experienced suspicious approach near 02-18N 046-02E, approximately 42 nm northeast of Mogadishu and approximately 7 nm off the Somali coast. The activity consisted of four skiffs. Few other details have been r", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.033333300003846, 2.299999999610293] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-4", + "dateofocc": "2012-12-29", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 29 December 2012, bulk carrier boarded at 03-44S 114-25E, at the Taboneo anchorage. Duty crew aboard the anchored vessel found the lock of the forward store broken and saw ship's stores on the deck. The robbers escaped in two boats without s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.733333299653964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-5", + "dateofocc": "2012-12-29", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 29 December 2012, bulk carrier boarded on at 03-43S 114-27E, at the Taboneo anchorage. Robbers boarded the anchored vessel while waiting to commence loading operations. Robbers broke into the forward bosun store, stole ship's stores and prop", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.450000000134537, -3.716666699581538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-6", + "dateofocc": "2012-12-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER SP BRUSSELS", + "descriptio": "NIGERIA:On 17 December 2012, tanker SP BRUSSELS boarded and crew kidnapped in the vicinity of 03-44N 05-37E, approximately 40 nm off the Niger Delta. Three pirates armed with machine guns attacked and boarded the vessel while underway. They stole persona", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.616666699704126, 3.733333300344611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-7", + "dateofocc": "2012-12-20", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER", + "descriptio": "SOMALIA:A tanker underway en route to Fujairah sighted a speed boat approaching at about 25 knots. The Master raised the alarm, activated SSAS, sent a distress alert, took evasive maneuvers, mustered the crew, and closed all accommodation doors. The dist", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.913333299632654, 24.781666699788843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-8", + "dateofocc": "2012-12-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "SOMALIA:On 11 November 2012, a general cargo ship was detained by Somali authorities and ordered to anchor off Bossaso. Eight Puntland Maritime Police Force (PMPF) personnel (four policemen and four soldiers) were detailed to guard the ship. The four sol", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.154444399737542, 11.301666699928433] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-191", + "dateofocc": "2013-06-15", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER EMERALD STAR", + "descriptio": "INDONESIA:On 15 June, the Hong Kong-flagged anchored bulk carrier EMERALD STAR experienced an attempted boarding at 03-41S 114-25E, at the Taboneo Anchorage. While at anchor, alert duty crew on board the bulk carrier noticed robbers attempting to board t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-192", + "dateofocc": "2013-06-13", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "OIL TANKER CSK BRILLIANCE", + "descriptio": "INDONESIA:On 13 June, the Hong Kong-flagged anchored bulk carrier CSK BRILLIANCE was boarded at 01-12S 117-13E, at the Muara Jawa Anchorage, Samarinda. Six robbers armed with knives, boarded the bulk carrier while at anchor. They took hostage two crewmem", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.216666699895768, -1.200000000053194] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-193", + "dateofocc": "2013-06-13", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "OIL TANKER EAGLE SAN JUAN", + "descriptio": "INDONESIA:On 13 June, the Singapore-flagged anchored oil tanker EAGLE SAN JUAN was boarded at 01-06- 103-36E, at the Nipah Anchorage. Three robbers armed with long knives boarded the tanker while engaged in STS operations, stole engine spares, and escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-194", + "dateofocc": "2013-06-12", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "OIL TANKER SENTOSA RIVER", + "descriptio": "INDONESIA:On 12 June, the Singapore-flagged anchored oil tanker SENTOSA RIVER was boarded at 01-05S 117-14E, at the Senipah Tanker Anchorage off Balikpapan. The alert crew on board the anchored oil tanker noticed one robber on the forecastle and raised t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.233333299968194, -1.083333300422623] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-195", + "dateofocc": "2013-06-09", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "TUG PU2417", + "descriptio": "MALAYSIA:On 09 June, the Singapore-flagged underway tug PU2417 was boarded at 04-18N 103-36E, approximately 6 nm off Terengganu. While underway from Thailand to Indonesia, six robbers armed with guns and choppers boarded the tug boat and forced the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 4.299999999674981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-196", + "dateofocc": "2013-06-21", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:On 21 June, an underway merchant vessel experienced a suspicious approach at 15-02N 041-42E, approximately 73 nm northwest of Al Hudaydah. Weapons and ladders were sighted, as multiple skiffs approached at high speed. The embarked AST fired sever", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.6999999998053, 15.033333299900676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-197", + "dateofocc": "2013-06-14", + "subreg": "62", + "hostility_": "SUSPISIOUC CRAFT", + "victim_d": "TANKER", + "descriptio": "YEMEN:On 14 June, the underway Malta-flagged tanker experienced a suspicious approach at 12-36N 043-25E, approximately 2 nm southwest of Birim Island. A single skiff paralleled the tanker's course, and then moved toward the vessel at high speed, approach", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.41666669966753, 12.600000000033333] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-198", + "dateofocc": "2013-06-13", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "RED SEA:On 13 June, a merchant vessel experienced suspicious activity at 13-05N 043-09E, approximately 15 nm southwest of Mocha. Approximately 20 skiffs surrounded the vessel. The Master ordered the crew into the citadel and the embarked AST fired warnin", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.150000000436762, 13.083333299702701] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-199", + "dateofocc": "2013-06-20", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "LPG TANKER SENNA JUMBO", + "descriptio": "INDONESIA:On 20 June, the anchored Thailand-flagged LPG tanker SENNA JUMBO was boarded at 01-09N 103-38E, at the Nipah Transit Anchorage. Five robbers, armed with knives,boarded the anchored LPG Tanker. Two robbers entered the engine room, while the othe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-200", + "dateofocc": "2013-06-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER KING RIVER", + "descriptio": "MALAYSIA:On 17 June, the underway Malaysia-flagged product tanker KING RIVER was boarded at 04-31N 113-52E, approximately 8 nm west-northwest of Lutong, Sarawak. Approximately 8 to 10 pirates, armed with long knives, in a speed boat, approached and board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.866666699832422, 4.516666699938355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-201", + "dateofocc": "2013-06-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL CHUN YING", + "descriptio": "INDIAN OCEAN:The owners of fishing vessel CHUN YING reported that they lost contact with their vessel since 20 JUNE 2013 at 0110 LT while the vessel in position 00-34N 054-48E. The vessel's satellite phones and tracking system are turned off. There are", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.799999999959141, 0.566666699675693] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-202", + "dateofocc": "2013-06-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL CHUN YING", + "descriptio": "INDIAN OCEAN:The owners reported that a sister ship located the fishing vessel CHUN YING at position 01-13.28N 055-24.17E. The vessel was destroyed by a fire onboard. The two life rafts onboard were missing. The fate of the 28 crew members and 3 guard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.402777799962166, 1.221388900322609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-428", + "dateofocc": "2011-10-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE: On 10 October at 0335 LT, Tug BRITOIL 71 boarded and robbed at position 01-02N 103-38E. Armed with parangs and a handgun, the five masked robbers took away a laptop, mobile phones, and cash from the crew before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-434", + "dateofocc": "2011-10-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SINGAPORE STRAITS: Five masked pirates armed with pistols and long knives boarded a tug under towing operations. They stole crew cash and personal belongings and escaped. The incident was reported to Port Operations Control Center, Singapore.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.638333299604994, 1.04666670001501] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-435", + "dateofocc": "2011-10-17", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container vessel (EMIRATES ZAMBEZI) fired upon by six pirates in one skiff on 17 October at 2100 UTC while underway in position 06-26S 040-06E, approximately 35 nm east of Zanzibar Island, Tanzania. Pirates were armed with guns and an RPG.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.099999999573697, -6.433333299651338] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-431", + "dateofocc": "2011-10-16", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN: Merchant vessel (GAS BALI) reported being attacked on 16 October at 10:57 UTC while underway in position 05-01S 040-03E, approximately 64 nm northeast of Zanzibar Island, Tanzania. One skiff closed on the ship and the onboard security team", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.049999999706984, -5.016666699713539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-436", + "dateofocc": "2011-10-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 01-12S 058-32E at 1432Z on 20 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.533333299958429, -1.200000000053194] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-437", + "dateofocc": "2011-10-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIA-SOUTHWEST COAST: Container ship attacked by four skiffs on its stbd side on 07 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.016666700002304, 8.883333300106472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-438", + "dateofocc": "2011-10-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT AND BARGE", + "descriptio": "SINGAPORE: Pirates in two boats approached and followed a barge towed by a tug near position 01-15.5N 104-02.0E on 25 October. The crew directed searchlights towards the barge but could not detect the small boats. Master contacted other vessels including", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.033333300080926, 1.258333300197137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-439", + "dateofocc": "2011-10-24", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SULU SEA, PHILIPPINES: Pirates in six speed boats chased and attempted to board a bulk carrier underway. Master raised alarm, took evasive manuevers, crew mustered and activated fire hoses. The pirates chased the ship for 15 minutes and then aborted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.746666700166429, 6.99833329964531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-440", + "dateofocc": "2011-10-23", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "360 MILES EAST OF HOBYO, SOMALIA: Armed pirates in two skiffs chased and attempted to board a tanker underway. Mother ship in the vicinity. Master increased speed, carried out evasive maneuvers and onboard security team fired warning shots. Ship evaded t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.483333299962396, 4.983333299710523] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-441", + "dateofocc": "2011-10-17", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "PORT OF BELEM, BRAZIL: Three robbers armed with long knives in a wooden boat approached a berthed bulk carrier. The robbers attempted to board by climbing the anchor chain. Alert crew raised alarm and additional crew members mustered and prevented the ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.499999999874149, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-442", + "dateofocc": "2011-10-07", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BELEM INNER ANCHORAGE, BRAZIL: Four robbers armed with long knives in a long wooden boat, approached an anchored bulk carrier. Attempts were made to board the ship via anchor chain but foiled by ship's crew. A search was conducted and found nothing was s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.499999999874149, -1.450000000286138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-154", + "dateofocc": "2012-05-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:A merchant vessel reported being attacked on 07 May 2012 at 0405Z at posn 08:05N 056:18E, approximately 290 nm southeast of Socotra Island, Yemen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.299999999557997, 8.083333300440302] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-155", + "dateofocc": "2012-05-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "TOGO:The missing/hijacked tanker BW Rhine was last reported in posn lat 05:27N - long 002:36E on 03.05.2012 at 0840 UTC.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.599999999709951, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-156", + "dateofocc": "2012-04-26", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "GULF OF ADEN:A merchant vessel reported a prevented pirate attack on 26 APR 12 at 0740 UTC in position 11 56.9N 044 039.3E approximately 19 NM before the entrance in to the Transit Corridor (19 NM from \"Point ALFA.\"). This area will remain high risk fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.655000000292091, 11.948333299940316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-159", + "dateofocc": "2012-04-14", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "ARABIAN SEA:14.04.2012: 0652 UTC: Posn: 16:54N - 65:59E, around 410 NM WSW of Mumbai, India. Seven pirates armed with guns in a skiff approached a chemical tanker underway at high speed. Alarm sounded and armed security team mustered. When the skiff w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [65.983333299884634, 16.900000000262366] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-161", + "dateofocc": "2012-05-08", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "SOUTH CHINA SEA:A product tanker underway spotted two speed boats approaching at high speed. Alarm raised and tanker made evasive manoeuvres, directed the search lights towards the boats and sent distress message. Pirates boarded the tanker via the poo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.883333299613753, 1.223333300200466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-162", + "dateofocc": "2012-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "YEMEN:Tanker fired upon on 10 May while underway at 14:18 N - 058:27 E around 260 nm east-northeast of Socotra Island, Yemen. Six pirates in a skiff approached and fired upon a tanker underway from a distance of 500 meters. The armed security team return", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.450000000122145, 14.299999999998363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-163", + "dateofocc": "2012-04-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA:M/V attacked in vicinity 12 14N - 061 45E at 090950 UTC Apr 12. Vessels are advised to keep well clear of this position and to exercise extreme cauton if in vicinity.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.750000000318835, 12.233333300169818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-164", + "dateofocc": "2012-05-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "NIGERIA:Supply vessel towing a barge was boarded on 08 May underway at 03:53 N ¿ 005:35 E, near the Pennington Oil Terminal. Six pirates armed with assault rifles in a speed boat launched from a nearby fishing trawler. The alarm was raised and the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-165", + "dateofocc": "2012-05-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "NIGERIA:Supply vessel was hijacked on 07 May at 04:26 N - 004:58 E, approximately 38 nm offshore from the Nigerian coastline. The pirates hijacked the vessel and took 17 crew members as hostages. The pirates released the crew and the vessel later that s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.966666699638154, 4.433333300277297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-166", + "dateofocc": "2012-05-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "YEMEN:Container ship experience an attempted boarding on 07 May at 08:17 N-056:29 E, around 275 nm south east of Socotra Island, Yemen. Pirates in three skiffs approached and attempted to board the ship. Alarm was sounded and all non-essential crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [56.483333300027027, 8.283333299907213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-167", + "dateofocc": "2012-05-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKE", + "descriptio": "INDONESIA:Product tanker was boarded on 08 May while underway at 01:13 N ¿ 104:53 E: 16 nm northeast from Bintan Island. The duty officer spotted two speed boats approaching the ship at high speed. The alarm was raised and the tanker made evasive maneuv", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.883333299613753, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-168", + "dateofocc": "2012-04-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "MALAYSIA:Tug boat towing a barge was hijacked while underway on 17 April while enroute from Langkawi, Malaysia to Tawau, East Malaysia. The tug and barge in tow left Langkawi on 12 April. The last contact the owners had with the tug was on 16 April after", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.766666699646237, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-169", + "dateofocc": "2012-05-13", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA:Bulk carrier was boarded on 13 May while underway at 03:46 N - 077:27 W, around 9.4 nm from Isla La Palma, Buenaventura. Four pirates boarded the bulk carrier while it was waiting for berthing instructions. The alarm was raised and the crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.450000000045975, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-9", + "dateofocc": "2013-01-09", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "LPG TANKER CONISTON", + "descriptio": "GUYANA:On 09 January, LPG Tanker CONISTON boarded in the vicinity of Guyana. Two robbers armed with guns and long knives boarded the berthed vessel from the offshore side using a grappling hook. They took the First Officer and a shore security guard as h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.17333329968784, 6.805555599813033] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-10", + "dateofocc": "2013-01-08", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER", + "descriptio": "YEMEN:On 08 January, LPG tanker experienced suspicious approach at 12-40N 043-16E, at Bab El Mandeb. Approximately 5 to 6 persons each in two skiffs approached the vessel while underway. Alarm raised, anti-piracy measures initiated, and distress message", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.266666700067333, 12.666666699797247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-11", + "dateofocc": "2013-01-05", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL MSC JASMINE", + "descriptio": "SOMALIA:On 05 January, container ship MSC JASMINE fired upon on at 03-07N 051-51E, approximately 400 nm ENE of Mogadishu. Six pirates in a skiff pursued and fired upon the vessel with automatic weapons and an RPG. Vessel raised the alarm, crew mustered i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.84999999972888, 3.116666700072926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-12", + "dateofocc": "2013-01-03", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "CARGO VESSEL JADE SKY", + "descriptio": "INDIA:On 3 January, bulk cargo vessel JADE SKY boarded at 22-49N 070-03E, at the Kandla port anchorage. Robbers boarded the vessel, broke into the forecastle store room, stole ship's stores and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.049999999777867, 22.81666669972077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-13", + "dateofocc": "2013-01-04", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER HISTRIA PRINCE", + "descriptio": "INDONESIA:On 04 January, chemical tanker HISTRIA PRINCE boarded at 01-16S 116-49E, at the Balikpapan Port Jetty No. 5C. Four robbers approached the vessel at berth while engaged in loading operations. One of the robbers boarded by climbing the forward fi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.816666700062683, -1.266666699817108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-14", + "dateofocc": "2013-01-15", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "CONGO:On 15 January, a container ship was boarded at 04-43S 011-46E, at the Pointe Noire Anchorage. Three robbers armed with knives disguised as fishermen in a small boat approached and boarded the anchored vessel. Duty crew spotted the robbers and raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.76666670039765, -4.716666699613882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-15", + "dateofocc": "2012-12-20", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER TSURUMI", + "descriptio": "IRAN:On 20 December, the tanker TSURUMI was boarded at 24-46N 57-54E, approximately 25 nm South of Bandar-e-Jask. The tanker underway en route to Fujairah sighted a speed boat approaching at a speed of around 25 knots. The Master raised alarm, activated", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.8999999997896, 24.766666699918744] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-16", + "dateofocc": "2013-01-16", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH:On 16 January, a bulk carrier was boarded at 22-17N 091-43E, at the Chittagong Anchorage. Five robbers armed with long knives boarded the anchored vessel via the anchor chain during cargo operations. The Second Officer noticed the robbers and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.283333300359971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-17", + "dateofocc": "2013-01-12", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER HUA HENG 167", + "descriptio": "INDONESIA:On 12 January, the bulk carrier HUA HENG 167 was boarded at 01-11S 116-46E, at the Balikpapan Anchorage. Two robbers armed with long knives boarded the anchored vessel via the anchor chain. Duty crew noticed the robbers and raised the alarm. Al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.766666700195969, -1.18333330015605] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-18", + "dateofocc": "2013-01-08", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TUG DE HUI/BARGE HAIYANGSHIYOU", + "descriptio": "SINGAPORE:On 08 January, the tug DE HUI with the barge HAIYANGSHIYOU in tow was boarded at 01-11N 103-37E, approximately 4 nm Southwest of the Western Islands. A speedboat with five robbers wearing camouflage uniforms approached the tug at 1710 local tim", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-19", + "dateofocc": "2013-01-23", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "PERU:On 23 January, a tanker was boarded in the vicinity of 04-34S 081-16W, at the MBM Terminal, Talara Port. Robbers boarded the berthed vessel and escaped with ship's stores unnoticed. Upon investigation, it was found the robbers boarded via the hawse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.266666699706263, -4.566666700013741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-203", + "dateofocc": "2013-06-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "YEMEN:On 20 June, an underway merchant vessel experienced an aggressive approach by two skiffs at 12-42N 043-19E, approximately 5 nm northwest of Birim Island. The first skiff with two pirates on board approached from the starboard side, while the second", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.316666699934046, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-204", + "dateofocc": "2013-06-17", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "VESSEL", + "descriptio": "IRAN:On 17 June, an underway vessel experienced a suspicious approach at 25-33N 057-23E, approximately 21 nm southwest of Bandar-e-Jask. Vessel reported being approached by two skiffs, coming within 20-30 meters of the vessels stern. No pirate parapherna", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.383333300325944, 25.549999999687714] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-205", + "dateofocc": "2013-07-01", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "BARGE", + "descriptio": "SINGAPORE:On 01 July, an underway barge in tow was boarded while transiting the Singapore Strait.During subsequent routine rounds, the crew from the tug towing the barge noticed items from the barge missing.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.766666699646237, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-206", + "dateofocc": "2013-06-09", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "MALAYSIA:On 09 June, an underway tug was boarded at 04-30N 103-59E, approximately 30nm east of Kerteh, Terengganu. Six pirates armed with guns and long knives, in a speed boat, approached and boarded the underway tug. They took hostage all crew members,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.983333300214213, 4.500000000041211] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-207", + "dateofocc": "2013-07-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:On 04 July, 2013 at 0950 UTC, a merchant vessel was closed to four cables by eight suspected pirates in two skiffs. The position of the incident was 12-59.6N 043-06.7E. Pirates were armed with machine guns. Ship's security team made warning sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.111666700210719, 12.993333299582901] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-186", + "dateofocc": "2013-06-13", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER ADOUR", + "descriptio": "TOGO:On 13 June, the anchored France-flagged chemical tanker ADOUR was hijacked at 05-41N 001-18E, approximately 30 nm south of Lome. Armed robbers boarded an anchored chemical tanker and took the duty officer hostage to the Masters cabin. When the Maste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.299999999577949, 5.683333299643266] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-208", + "dateofocc": "2013-07-08", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA:On 8 July, an underway bulk carrier experienced a suspicious approach at 13-10N 043-06E, approximately 11 nm southwest of Mocha, Yemen. Armed security team on board the underway bulk carrier noticed two skiffs near the stern of the vessel, at a d", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.099999999670729, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-209", + "dateofocc": "2013-06-30", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA:On 30 June, an anchored bulk carrier was boarded at 22-58N 070-14E, at the Kandla Inner Anchorage. Three to four robbers, in a boat, boarded the anchored bulk carrier. The Duty Officer noticed the boarding and immediately raised the alarm. Upon hea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.233333300246898, 22.96666670022023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-210", + "dateofocc": "2013-07-10", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER LG ASPHALT 1", + "descriptio": "MALAYSIA:On 10 July, the Malaysia-flagged underway tanker LG Asphalt 1 was boarded at 03-02N 104-18E, approximately 12 nm northeast of Pulau Tioman. Approximately eight pirates, armed with guns and knives, boarded the underway tanker. They ordered the C/", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.300000000211014, 3.033333300411925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-211", + "dateofocc": "2013-07-07", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER AFRAMAX RIO", + "descriptio": "INDONESIA:On 7 July, the Panama-flagged anchored tanker AFRAMAX RIO was boarded at 01-04N 103-38E, at the Nipah Anchorage. Four robbers armed with knives boarded the tanker during STS operations. Duty crew noticed the robbers and raised the alarm, resul", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-212", + "dateofocc": "2013-07-04", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER SANKO MERCURY", + "descriptio": "INDONESIA:On 4 July, the Liberia-flagged anchored bulk carrier SANKO MERCURY was boarded at 03-40S 114-25E, at the Taboneo Anchorage. Three robbers, in a boat, boarded the anchored bulk carrier at the forecastle. Alert duty crew spotted the robbers and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.666666699714824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-443", + "dateofocc": "2011-10-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "HEAVY LOAD CARRIER", + "descriptio": "270 MILES OFF SEYCHELLES: Armed pirates in two skiffs chased and fired upon a heavy load carrier underway with intent to hijack. Master raised alarm, increased speed, took evasive maneuvers, contacted CSO and all crew mustered at citadel. Onboard securit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.538333300214902, -1.191666699567349] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-444", + "dateofocc": "2011-10-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "SANDAKAN ANCHORAGE, MALAYSIA: Three robbers in a fast boat boarded a tug boat and tow at anchor. Robbers stole ship's stores and escaped. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.117222199721027, 5.818888899623687] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-445", + "dateofocc": "2011-10-26", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: Two attempted boardings of chemical tanker at anchor 26 October at 0130 near position 01-42.2N 101-29.3E, Dumai Inner Anchorage. Robbers used folded rods with a hook to climb. Alert duty watchman sighted the robbers and informed bridge. Bridge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.488333299940166, 1.703333299640462] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-446", + "dateofocc": "2011-10-20", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: Cargo ship (HR CONSTELLATION) fired upon by pirates in two skiffs on 20 October while approximately 275 nm northeast of Port Victoria, Seychelles. One of the two skiffs approached to within 50-100 meters of the vessel. The armed security te", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.411666699799127, -4.580833299957931] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-447", + "dateofocc": "2011-10-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "REFRIGERATED CARGO SHIP", + "descriptio": "OFF TOGO: A refrigerated cargo ship drifting noticed on radar an approaching small boat. As the boat closed towards the vessel no change in course or speed was observed. Seeing this the Master raised alarm, started main engine, increased speed and commen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.426666699721522, 4.260000000321213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-448", + "dateofocc": "2011-10-30", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIAN OCEAN: Petroleum tanker (SCF PLYMOUTH) fired upon by four to five pirates in one skiff on 30 October at 1254 UTC while underway in position 04-20S 043-41E, approximately 245 nm southeast of Mombasa, Kenya. Vessel was traveling at a speed of 14.7 k", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.683333299972844, -4.333333299853223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-449", + "dateofocc": "2011-10-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "GULF OF ADEN: Tanker (LIQUID VELVET) hijacked by six pirates on 31 October at 0842 UTC while underway in position 12-00N 045-33E, approximately 55 nm southeast of Aden, Yemen. The crew (21 Filipinos and one Greek) were able to lock themselves in the cita", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.550000000334535, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-450", + "dateofocc": "2011-10-31", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: A merchant vessel reported being hijacked at 1152Z on 31 Oct in position 12-02N 045-38E, approximately 140 miles southeast of Bab el Mandeb. This area will remain at high risk for at least 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [45.633333300170818, 12.033333299803644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-451", + "dateofocc": "2011-10-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Tuna fishing vessel attacked by pirates on 31 October at 1415 UTC while underway in position 02-23S 049-29E, approximately 444 nm southeast of Kismaayo, Somalia. The vessel had a protection detachment onboard the vessel. (Operator)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.483333299800677, -2.383333299655249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-452", + "dateofocc": "2011-11-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (TORRE GIULIA) attacked by pirates in two skiffs on 1 November at 0936 UTC while underway in position 01-21S 052-21E, approximately 591 nm southeast of Kismaayo, Somalia. Vessel had protection detachment onboard. A mothership", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.350000000194711, -1.349999999653392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-453", + "dateofocc": "2011-11-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSELS", + "descriptio": "WESTERN INDIAN OCEAN: Pirate activity group, one whaler and one skiff detected in position 05-20.0S 042-40.8E at 0655Z on 03 Nov. Four persons in the skiff/ ladder sighted, 12 barrels and four persons in whaler. Vessels are advised to keep well clear of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.679999999711072, -5.333333299885567] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-454", + "dateofocc": "2011-10-29", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA: Petroleum tanker (HALIFAX) hijacked by pirates on 29 October at 1219 UTC while in position 03-26.5N 006-42.3E, approximately 62 nm southwest of Bonny. Vessel was awaiting further berthing instructions from its charterers. Vessel has a crew of 24", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.704999999829226, 3.441666699656253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-455", + "dateofocc": "2011-11-01", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Petroleum tanker (DYNATANK) fired upon by pirates on 1 November at 0050 UTC while underway in position 08-10S 046-06E, approximately 407 nm southeast of Dar es Salaam, Tanzania. The onboard security team returned fire, and after 30 minutes", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.099999999767761, -8.166666700310032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-456", + "dateofocc": "2011-11-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "INDIAN OCEAN: Fishing vessel (CHIN I WEN) hijacked on 3 November at 2100 UTC while underway in position 06-10S 051-10E, approximately 722 nm northeast of Dar es Salaam, Tanzania. On 5 November, the crew regained control of the vessel and rendezvoused wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.166666699693337, -6.166666700245344] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-171", + "dateofocc": "2012-05-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "EGYPT:Product tanker was boarded on 14 May while anchored at 29:50 N - 032:31 E, Port Suez Anchorage, Egypt. Pirates boarded an anchored product tanker unnoticed, stole ship stores and escaped unnoticed. The theft occurred during a sandstorm when the dut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.516666699944551, 29.833333300019547] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-172", + "dateofocc": "2012-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "OMAN:Liberian-flagged crude oil tanker pirated on 10 May while underway at 15:58 N ¿ 061:02 E, around 250 nm southeast of Ras Al Madrakah, Oman. Ten pirates in two skiffs armed with automatic weapons chased a crude oil tanker underway. The tanker enforc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.033333299589628, 15.96666669999388] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-170", + "dateofocc": "2012-04-17", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ECUADOR:Seven robbers in a small fast craft approached and came alongside a container ship underway during a river passage. Alert crew noticed the robbers with a ladder attempting to board and raised the alarm. Seeing the alert crew the robbers aborted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.890277799872365, -2.200000000085538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-160", + "dateofocc": "2012-05-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "YEMEN:Crude oil tanker attacked on 09 May while underway at 10:40 N - 060:04 E 345 nm east-southeast of Socotra Island, Yemen. Pirates in two skiffs armed with AK47 and RPG approached the crude tanker. The pirates fired seven RPG rounds and more than 300", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [60.066666700250948, 10.666666699732559] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-173", + "dateofocc": "2012-05-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk Carrier was boarded on 10 May while underway at 03:42 S-114:27 E, Taboneo Anchorage, Indonesia. Pirates boarded the anchored bulk carrier during cargo operations and stole ship's stores from the ships forecastle and escaped before being sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.450000000134537, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-174", + "dateofocc": "2012-05-12", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk Carrier was boarded while at anchor on 12 May at 01:11 S - 117:13 E, Muara Jawa Anchorage, Samarinda, Indonesia. Pirates boarded an anchored bulk carrier and stole ship's stores and escaped unnoticed. The theft was noticed by the duty A/B", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.216666699895768, -1.18333330015605] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-175", + "dateofocc": "2012-05-10", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "OMAN:Amerchant vessel reported being hijacked at 1126Z on 10 May in position 1548N 06118E approximately 450NM south east of Salalah, Oman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.299999999719716, 15.799999999597219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-176", + "dateofocc": "2012-03-06", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "OMAN:A merchant vessel reported being fired upon at 0505Z on 06 Mar 2012 in position 1421N 05236E, approximately 212NM Southwest of Salala, Oman.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.600000000427599, 14.349999999865133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-177", + "dateofocc": "2012-03-11", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA:A merchant vessel attacked in vicinity 13 13N 057 50E at 110737 UTC Mar 12.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.833333300025743, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-178", + "dateofocc": "2012-05-17", + "subreg": "28", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "COSTA RICA:Container Ship attempted boarded on 17 May at 09:58 N ¿ 083:00 W, Puerto Limon Anchorage, Costa Rica. Five pirates in a boat were noticed by alert deck watchmen alongside their container ship with boat hooks in an attempt to board. The duty o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.99999999964092, 9.966666699799816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-180", + "dateofocc": "2012-05-23", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "IRAN:Cargo vessel MAERSK TEXAS fired upon while underway on 23 May in position 25-29N 057-16E, approximately 28 nm west-southwest of Bandar-e-Jask, Iran. Duty Officer onboard noticed a group of 10 skiffs at a distance of 2 nm from the ship on the starboa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.266666699620771, 25.483333299923856] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-181", + "dateofocc": "2012-05-18", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker robbed on 18 May at 03:42 S ¿ 114:26 E, Taboneo Anchorage, Banjarmasin, Indonesia. The duty A/B on roving deck patrol noticed five pirates in the forward store. Two of the pirates threatened him with a knife and the A/B escaped and info", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-20", + "dateofocc": "2013-01-17", + "subreg": "24", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER ALGA", + "descriptio": "ATLANTIC OCEAN:On 17 January, the tanker ALGA experienced a suspicious approach in the vicinity of 08-02N 034-30W, approximately 1205 nm off the coast of Guinea. Two white skiffs containing an unknown number of suspected pirates attempted to advance towa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-34.500000000320711, 8.033333299674268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-21", + "dateofocc": "2013-01-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER ITRI", + "descriptio": "IVORY COAST:On 16 January, the tanker ITRI was hijacked at 03-27N 001-06W, at the Abidjan anchorage. Pirates boarded and hijacked the vessel while it was preparing to offload jet fuel at the port. The crew of 16 were held hostage and locked in a dining r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.100000000319767, 3.450000000142154] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-22", + "dateofocc": "2013-01-22", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER SIVA MUMBAI", + "descriptio": "INDONESIA:On 22 January, the chemical tanker SIVA MUMBAI was boarded at 01-42N 101-29E, at the Dumai Inner Anchorage. Robbers boarded the anchored vessel, stole engine spares, and escaped unnoticed. The theft was detecteed after departure from the port w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-23", + "dateofocc": "2013-01-17", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "TANKER TORM OHIO", + "descriptio": "INDONESIA:On 17 January, the tanker TORM OHIO was boarded at 01-22S 116-56E, at the Balikpapan Outer Anchorage. Two robbers boarded the anchored vessel while waiting for pilot. Duty Officer raised the alarm and sounded the fog horn upon noticing some mo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.933333299868536, -1.366666699550535] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-24", + "dateofocc": "2013-01-28", + "subreg": "56", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "PASSENGER VESSEL", + "descriptio": "EGYPT:On 28 January, a passenger vessel being reported as ISLAND OF RHODES was fired upon at 31-15N 032-18E, at Port Said. The Greek-owned vessel came under fire from unknown persons during a regular inspection by the Consular Harbor Master. It should be", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.299999999681177, 31.249999999782119] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-25", + "dateofocc": "2013-01-29", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "TANKER BW YANGTZE", + "descriptio": "INDIA:On 29 January, the product tanker BW YANGTZE was boarded in the vicinity of 22-01N 088-06E, at the Haldia Anchorage. Robbers armed with knives and a gun, boarded the anchored vessel and started lowering mooring ropes. Duty Officer spotted the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.100000000226657, 22.016666700054657] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-26", + "dateofocc": "2013-01-27", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER CHAMPION TRUST", + "descriptio": "INDIA:On 27 January, the chemical tanker CHAMPION TRUST was boarded at 17-01N 082-24E, at the Kakinada Anchorage. Eight robbers in two boats armed with long knives approached the anchored vessel. Two of the robbers boarded and stole ship's stores from th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.400000000132252, 17.016666699892937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-27", + "dateofocc": "2013-01-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "INDONESIA:On 24 January, a barge in tow was boarded at 02-08N 108-45E, at approximately 20 nm WNW of Pulau Merundung. An unknown number of pirates from a fast moving fishing boat boarded the towed barge, forced open containers and stole cargo, then escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.750000000040131, 2.133333300113009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-28", + "dateofocc": "2013-02-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER PYXIS DELTA", + "descriptio": "NIGERIA:On 04 February, the chemical tanker PYXIS DELTA was fired upon at 06-19N 003-24E, at the Lagos Anchorage. Pirates armed with guns approached and fired upon the anchored vessel during ship-to-ship transfer operations. The response of the onboard n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-29", + "dateofocc": "2013-02-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER GASCOGNE", + "descriptio": "IVORY COAST:On 03 February, the oil tanker GASCOGNE was hijacked in the vicinity of 04-07N 003-54W, approximately 70 nm south of Abidjan port. Owners reported that they had lost contact with their vessel and its 17 crew members while underway and suspect", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.900000000050568, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-30", + "dateofocc": "2013-01-31", + "subreg": "57", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER OLIVIA II", + "descriptio": "NIGERIA:On 31 January, the tanker OLIVIA II was fired upon at 03-46N 005-19E, approximately 45 nm SSW of Brass. While underway, the vessel noticed three skiffs approaching at high speed. A suspected mother vessel was observed on radar at a distance of ab", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.316666699604468, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-31", + "dateofocc": "2013-01-31", + "subreg": "51", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "MAURITANIA:On 31 January, a refrigerated cargo ship was boarded at 20-53N 016-59W, at the Nouadhibou Port. Two robbers armed with knives boarded the anchored vessel, while six more robbers waited in their boat. Alert duty crewman spotted the robbers and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.983333300307265, 20.883333299595222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-213", + "dateofocc": "2013-06-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:On 27 June, an anchored chemical tanker experienced an attempted boarding at 06-01S 106-53E, at the Jakarta Tanker Anchorage. Alert crew on board the anchored chemical tanker spotted a wooden boat, with three robbers, armed with knives. The ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.166666700245344] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-214", + "dateofocc": "2013-07-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER OCEAN CENTURION", + "descriptio": "TOGO:On 16 July, the Marshall Islands-flagged underway product tanker OCEAN CENTURION was hijacked at 05-29N 001-38E, approximately 46nm southeast of Lome. Armed pirates in two speed boats approached, boarded, and hijacked the product tanker. They took h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.633333299647177, 5.483333300176355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-215", + "dateofocc": "2013-07-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER COTTON", + "descriptio": "GABON:On 15 July, the Malta-flagged underway chemical tanker COTTON was hijacked at 00-26S 008-51E, approximately 13 nm off Port Gentil. 12 to 15 gunmen armed with AK-47 assault rifles hijacked the tanker and its 23 crewmembers. The tanker was later rele", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.850000000136902, -0.433333300356651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-216", + "dateofocc": "2013-07-10", + "subreg": "57", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "CHEMICAL TANKER OVERSEAS ATHENS", + "descriptio": "NIGERIA:On 10 July, an anchored chemical tanker experienced a suspicious approach at 06-17N 003-21E, approximately 5.4nm southwest of Fairway Buoy, Lagos Anchorage. Armed security personal onboard the anchored chemical tanker noticed a small boat with an", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.35000000040867, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-217", + "dateofocc": "2013-07-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL", + "descriptio": "GULF OF GUINEA:On 7 July, gunmen boarded and kidnapped the crew of an underway supply vessel at 04-24N 007-03E, in the vicinity of the New Calabar River. The incident took place as the vessel was transiting from Port Harcourt to Nembe. Initial reports st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.050000000438445, 4.400000000307728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-218", + "dateofocc": "2013-07-05", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA:On 5 July, an anchored bulk carrier was boarded at 06-26N 003-23E, on Lagos Port Road. Three armed men were reported to have separated part of the razor wire and gained access via a rope. The bosun spotted them and alerted the duty officer by rad", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-482", + "dateofocc": "2011-12-06", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "EGYPT: Bulk carrier boarded and robbed on 6 December at 0035 UTC while anchored in Position 31-11N 029-52E, in the inner anchorage of Alexandria. Three robbers armed with knives boarded the vessel, robbed the ship's stores, and escaped in a motor boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.866666699813891, 31.183333300018262] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-219", + "dateofocc": "2013-07-16", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "CHEMICAL TANKER CONCORD", + "descriptio": "YEMEN:On 16 July, the Marshall Islands-flagged underway chemical tanker CONCORD experienced a suspicious approach by three skiffs at 13-28N 043-01E, approximately 16 nm northwest of Mocha. The onboard security team took their position while non essential", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.016666699834445, 13.46666670036268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-220", + "dateofocc": "2013-07-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG CREST APACHE & BARGE TERAS 3717", + "descriptio": "INDONESIA:On 12 July, the underway tug CREST APACHE and barge TERAS 3717 were boarded by eight pirates in a speedboat at 03-13N 104-58E, approximately 35nm northwest of the Anambas Islands. The pirates were armed with guns and long knives. The pirates cu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.96666670017413, 3.216666699806353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-221", + "dateofocc": "2013-06-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "NIGERIA:On 27 June 2013, a fishing vessel was attacked at approximately 9 nm north of Brass Terminal. Several crew members were assaulted and the vessel had some damage. Two crew members may have been kidnapped. No more information.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.283333299842525, 4.066666700238557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-222", + "dateofocc": "2013-07-15", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GABON:On 15 July 2013 at 0552 LT, a merchant ship at anchored was suspected to be hijacked by pirates at position 00-26.49S 008-51.45E, around 17.4 nm north of Port Gentil, Gabon. The owner reported that they had lost communication with the vessel. Fur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.857499999622291, -0.44138890009242] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-223", + "dateofocc": "2013-07-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF GUINEA:M/V attacked in 01-6.8N 004-41.0E on 16 July 2013 at 0410Z. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.683333299610922, 1.113333299954093] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-224", + "dateofocc": "2013-07-19", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "RO-RO VESSEL", + "descriptio": "LIBYA:On 19 July, approximately twelve armed Libyan men boarded and hijacked a berthed Ro-ro vessel was hijacked at the Bengazi Port. The hijackers are holding the 19 Ukranian crew members as hostages, with demands that a ransom of $9.5 million be paid b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [20.049999999959539, 32.116666700111466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-225", + "dateofocc": "2013-07-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL C VIKING", + "descriptio": "NIGERIA:On 19 July, the Vanuatu-flagged anchored offshore supply vessel C VIKING was boarded at 04-18N 007-46E, at the Usari Field, offshore Akwa lbom state. Crew managed to lock themselves in a citadel, no injuries reported. Pirates looted the vessel, i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.766666700268274, 4.299999999674981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-226", + "dateofocc": "2013-07-18", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER LIBERTY GRACE", + "descriptio": "TOGO:On 18 July, the United States-flagged anchored bulk carrier LIBERTY GRACE experienced an attempted boarding at 06-05N 001-17E, at the Lome Anchorage. Duty Officer on board the anchored bulk carrier spotted an unlit skiff with 5-6 persons approaching", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-457", + "dateofocc": "2011-11-08", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "VENEZUELA: Container ship boarded by robbers on 8 November at 2100 LT while drifting in position 10-27.1N 064-39.3W, approximately 14 nm northwest of Guanta, Venezuela. Duty watchman spotted three robbers on the main deck and informed the officer of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.655000000248208, 10.451666700395606] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-458", + "dateofocc": "2011-11-03", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: General cargo ship boarded by pirates on 3 November at 0255 LT while anchored in position 08-30.06N 013-13.82W in the Freetown Inner Anchorage, Sierra Leone. The duty watch man spotted two robbers onboard the main deck and informed the bridge, w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.230277799856992, 8.501111099947252] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-459", + "dateofocc": "2011-10-31", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "AROUND 420 MILES EAST OF MOMBASSA, KENYA: About four to five pirates in a skiff armed with guns chased and fired upon a tanker underway. Master raised alarm and all crew except the bridge team mustered in the citadel. The onboard armed securtiy team fire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [43.711666700409978, -4.321666700037269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-460", + "dateofocc": "2011-11-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier boarded 14 November at 0045 LT while anchored in position 01-22S 116-57E, Balikpapan Anchorage. Alert duty crew noticed robbers on forecastle deck attempting to rob ship's stores. The alarm was raised and the fog horn sounded. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.933333299868536, -1.366666699550535] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-461", + "dateofocc": "2011-11-14", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYSIA: Chemical tanker boarded and robbed 14 November at 0350 LT while berthed in position 05-49N 118-05E, KPO Terminal, Sandakan Port, Sabah. Four robbers with long knives boarded the vessel and were noticed by the duty crew who shouted at them and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-462", + "dateofocc": "2011-11-15", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Product tanker (BW DANUBE) fired upon by pirates in two skiffs on 15 November at 0418 UTC while underway in position 15-49N 055-05E, approximately 302 nm northeast of Al Mukalla, Yemen. Eight pirates in two skiffs chased the vessel. The mast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.083333300161655, 15.816666700393739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-463", + "dateofocc": "2011-11-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (ER COPENHAGEN) experienced an attempted boarding by pirates in one skiff on 11 November at 0824 UTC while underway in position 03-56S 047-14E, approximately 452 nm east of Mombasa, Kenya. Six pirates armed with guns and an R", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.233333300402421, -3.933333300020138] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-464", + "dateofocc": "2011-11-16", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH: Container ship boarded and robbed 16 November at 2100 LT while anchored in position 22-12.3N 091-42.2E, Chittangong, Bangladesh. Five robbers boarded the vessel. After the Master raised the alarm and flashed searchlights, the robbers escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.703333299853057, 22.20499999988084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-465", + "dateofocc": "2011-11-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: Chemical tanker boarded and robbed 16 November at 0330 LT while anchored in position 03-56N 098-48E, Belawan Anchorage. The robbers boarded, stole the ship's stores, and escaped without notice. The master reported the incident to the port auth", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.799999999583463, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-466", + "dateofocc": "2011-11-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOUTHERN RED SEA, GULF OF ADEN: Merchant vessel attacked in 12-33N 043-31E at 0500z on 18 Nov. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.516666700300277, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-467", + "dateofocc": "2011-11-21", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIAN OCEAN: Container ship (MSC JEANNE) was fired upon by six pirates in two skiffs on 21 November at 0536 UTC while underway in position 04-03S 042-55E, about 198 nm east of Mombasa, Kenya. The Master raised the alarm, took anti-piracy preventive meas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [42.916666700101018, -4.049999999650765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-468", + "dateofocc": "2011-11-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (PIONEER PACIFIC) was fired upon by eight pirates in two speed boats on 20 November at 1345 UTC while underway in position 12-27N 043-47E, about 24 nm southeast of Perim Island, Yemen. Master fired flares when the speed boats w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.783333299706271, 12.450000000433192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-469", + "dateofocc": "2011-11-20", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH: Bulk carrier boarded and robbed 20 November at 2315 LT while anchored in position 22-12N 091-45E, Chittangong, Bangladesh. Duty officer noticed the robbers on the forecastle deck and alerted the deck watchkeepers, who then rushed the forecast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-182", + "dateofocc": "2012-05-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "INDONESIA:Barge was boarded on 12 May at 01:14 N ¿ 104:08 E, 4nm North North East of Pulau Batam, Indonesia. The barge was under tow enroute from Singapore to Kelanis, Banjarmasin, Indonesia and was boarded by robbers using a wooden tug. VTIS Singapore", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-183", + "dateofocc": "2012-05-27", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ECUADOR:Four robbers armed with knives boarded a berthed container ship during formality inspection by the immigration and customs department. Duty bosun noticed the robbers boarding the vessel from seaward side using ropes and hooks. One of the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.901666699837506, -2.283333299921821] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-184", + "dateofocc": "2012-05-25", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "EGYPT:Bulk Carrier was boarded on 25 May while at anchor at El Dekheila Outer Anchorage. A fishing boat was seen dropping anchor stern of a bulk carrier at anchor. The duty deckhand remained near the stern during his watch. Later the C/O noticed two ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.750000000183263, 31.199999999915406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-185", + "dateofocc": "2012-05-29", + "subreg": "52", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ALGERIA:Bulk carrier was boarded while on 29 May at berth at Port of Alger, Algeria.The duty crew at the aft mooring deck onboard a berthed bulk carrier noticed two robbers trying to open the port life raft. He reported to the Duty Officer who raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [3.066666700206213, 36.766666700306814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-186", + "dateofocc": "2012-05-24", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "KENYA:Chemical tanker was boarded on 24 May while berthed at 04:02 S - 039:38 E, Berth No. 8, Mombasa Port. A robber armed with a knife boarded a chemical tanker at berth during cargo operations. The robber attacked the duty officer on deck rounds, inj", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.633333299976755, -4.033333299753622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-187", + "dateofocc": "2012-05-17", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT", + "descriptio": "PHILIPPINES:Tug boat boarded on 17 May at Talicud Island. A tug towing a laden barge departed from Sasa port, Davao City at a slow speed heading to Thailand as a port of destination. 90 into minutes into the departure, the crew noticed 10 small boats su", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.766666699587745, 6.816666700102644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-188", + "dateofocc": "2012-05-22", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BANGLADESH:Tanker boarded on 22 May while at anchor at 22:15 N ¿ 091:44 E, 3.9 nm northwest of Patenga Point Light. Pirates armed with knives boarded the anchored tanker, stole ship stores and escaped. The incident was reported to the coast guard who im", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-189", + "dateofocc": "2012-06-01", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA:Tanker boarded on 01 June at 06:19 N - 003:29 E, Lagos Anchorage. Three armed robbers boarded the tanker from a wooden boat. The alarm was raised and the crewretreated into the citadel. After four hours the crew emerged from the citadel and found", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.483333300111724, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-190", + "dateofocc": "2012-06-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk Carrier boarded on 04 June at 03:57 N - 098:46 E, Belawan Outer Anchorage, Indonesia. Seven robbers armed with long knives boarded an anchored bulk carrierat the forecastle. The duty A/B and D/O noticed the robbers and raised the alarm. Se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-191", + "dateofocc": "2012-05-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SINGAPORE:Fishing vessel boarded while underway on 23 May at 04:50 N ¿ 099:04 E, Malacca Straits. Armed pirates boarded the fishing vessel and took hostage six crewmembersand hijacked the vessel. Upon receiving the information, the MMEA immediately sent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.066666699713551, 4.833333300110382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-192", + "dateofocc": "2012-06-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "GULF OF OMAN:Possible pirate activity observed in the vicinity of 25:32N 056:59E, 43 nm SW of Bandar-e-jask, Iran, involving two small craft with reported weapons. Forecasted weather conditions are currently marginal for small boat activity in this area", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.983333299593539, 25.53333329979057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-193", + "dateofocc": "2012-06-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:The previously hijacked vessel \"Mt Royal Grace\" is seen moving and her last position was reported as Lat 11:59N - 050:37E on 07.06.2012 at 0550 UTC. It appears that the Somali pirates are still onboard. All vessels are advised to keep wel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.616666700260055, 11.98333329993693] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-32", + "dateofocc": "2013-02-02", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:On 02 February, a chemical tanker experienced an attempted boarding at 03-55N 098-48E, at the Belawan Anchorage. Six robbers armed with knives in a wooden motor boat approached the anchored vessel. One of the robbers attempted to board by ladde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.799999999583463, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-33", + "dateofocc": "2013-01-31", + "subreg": "91", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "PHILIPPINES:On 31 January, a general cargo ship was boarded at 14-33N 120-54E, at the Manila South Quarantine Anchorage. Three robbers in a boat approached and boarded the anchored vessel. Alert crew members noticed the robbers near the forecastle store", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.900000000028399, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-34", + "dateofocc": "2013-02-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA:On 11 February, the general cargo ship SAFMARINE SAHEL was fired upon at 04-06N 006-52E, approximately 10.5 nm southwest from Bonny River fairway buoy. While the cargo ship was underway, it noticed a speedboat approaching from portside containing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.866666699969358, 4.100000000208126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-37", + "dateofocc": "2013-02-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "NIGERIA:On 06 February, a tug towing a barge was fired upon in vicinity of 05-10N 006-12E, along the River Forcados at the Angiama Community area of Bayelsa. Pirates ambushed the tug and barge, which was being escorted by a military vessel while transiti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.10999999988644, 4.829999999881011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-38", + "dateofocc": "2013-02-13", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER FORWARD FORTUNE", + "descriptio": "INDONESIA:On 13 February, the tanker FORWARD FORTUNE was boarded at 01-06N 103-36E, at the Nipah Anchorage. Robbers boarded the vessel during ship-to-ship transfer operations, stole engine spares, and escaped when after the crew spotted them and raised a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-39", + "dateofocc": "2013-02-12", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "TANKER TORM GARRONE", + "descriptio": "INDONESIA:On 12 February, the anchored tanker TORM GARRONE was boarded at 01-17S 116-47E, at the Balikpapan Inner Anchorage. On sighting the robbers, Master raised the alarm and mustered the crew. Robbers escaped with ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.783333300268396, -1.283333299889478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-40", + "dateofocc": "2013-02-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER STARGATE", + "descriptio": "INDONESIA:On 12 February, the bulk carrier STARGATE was boarded at 01-42N 101-27E, at the Dumai Anchorage. Three robbers armed with long knives boarded the anchored vessel using a rope and a hook attached to a long pole. Duty Officer noticed the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-41", + "dateofocc": "2013-02-06", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER INCE INEBOLU", + "descriptio": "INDONESIA:On 06 February, the bulk carrier INCE INEBOLU ship was boarded at 01-41S 116-38E, at the Adang Bay Anchorage. Three robbers armed with knives boarded the anchored vessel via the anchor chain and attacked the duty crewman on the forecastle, who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.683333299722563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-42", + "dateofocc": "2013-02-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG ARMADA TUGAS 1", + "descriptio": "NIGERIA:On 17 February, the tug ARMADA TUGAS 1 was boarded and personnel kidnapped at 03-57N 005-20E, approximately 40 nm WSW of Brass. Pirates boarded the vessel and kidnapped 6 officers. The remaining 12 crew members were unharmed and there was no dama", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.333333299676895, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-43", + "dateofocc": "2013-02-17", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER AFRICAN JOY", + "descriptio": "NIGERIA:On 17 February, the bulk carrier AFRICAN JOY was boarded at 06-27N 003-23E at Berth No.2, Apapa, Lagos. Robbers in a wooden boat approached the berthed vessel. One robber boarded the ship, broke into the forward store, and stole ship's stores, in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-44", + "dateofocc": "2013-02-18", + "subreg": "61", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "CARGO SHIP", + "descriptio": "SOMALIA:On 18 February, a cargo ship was fired upon at 07-14N 052-17E, approximately 150 nm ESE of Eyl. Two white speed boats approached and fired upon the vessel while underway. Onboard armed security team returned fire, resulting in the skiffs moving a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.283333300430797, 7.233333300008155] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-45", + "dateofocc": "2013-02-14", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIA:On 14 February, a tanker was boarded at 09-54N 076-08E at the Cochin Anchorage. Three robbers boarded the anchored vessel. Alert Duty Officer noticed movement on the forecastle deck and raised the alarm. Upon hearing the alarm and seeing crew's ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.133333299808157, 9.900000000035959] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-227", + "dateofocc": "2013-07-15", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "LANDING CRAFT RENOVATION", + "descriptio": "GABON:On 14 July, the Gabon-flagged underway landing craft RENOVATION was boarded at 00-29S 008-51E, at Port Gentil. Approximately 20 armed robbers in a speed boat approached and boarded the landing craft underway. They stole crew personal belongings and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.850000000136902, -0.483333300223364] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-228", + "dateofocc": "2013-07-24", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIA:On 24 July, the anchored Singapore-flagged chemical tanker BUNGA LUCERNE was boarded at 22-48N 070-03E, at the Kandla Anchorage. An able bodied seaman and a deck cadet, who were carrying out routine work on the forecastle of the anchored chemical t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.049999999777867, 22.799999999823626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-229", + "dateofocc": "2013-07-21", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "PRODUCT TANKER", + "descriptio": "VIETNAM:On 21 July, the Singapore-flagged berthed product tanker KIRANA TRITYA was boarded at the Nha Be Terminal. Five robbers in a small boat approached the berthed product tanker. Two robbers armed with knives managed to board the tanker using a rope", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.749999999975444, 10.699999999702129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-230", + "dateofocc": "2013-07-17", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA:On 17 July, an underway general cargo ship was boarded at 01-07N 104-52E,approximately 7 nm northeast of Pulau Mapur. Roughly ten robbers, armed with guns and knives, boarded the underway general cargo ship. They entered the bridge and assaulte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.866666700440703, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-231", + "dateofocc": "2013-07-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "SINGAPORE STRAIT:On 24 July, 2040Z, in 01-18N 104-41E about six pirates in a speed boat armed with knives boarded a tug towing a barge. They entered crew cabins and took hostage all crew members and stole crew personal properties and tug properties and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-232", + "dateofocc": "2013-07-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG SURYA WIRA 5", + "descriptio": "SINGAPORE STRAIT:On 24 July, the underway Singapore-flagged tug SURYA WIRA 5 was boarded at 01-16N 104-37E, approximately 3nm northeast of Tanjung Berakit. Roughly seven pirates, in a speed boat, armed with knives, boarded the underway tug. They took hos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-233", + "dateofocc": "2013-07-28", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "LPG TANKER", + "descriptio": "SINGAPORE STRAIT:On 28 July, position 01-6.3N 104-10.9E, duty A/B on board a LPG Tanker noticed about eight robbers armed with knives boarding the vessel from the poop deck. Duty officer was informed, alarm raised. All crew stayed inside the accommodat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.181666700378059, 1.105000000367568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-234", + "dateofocc": "2013-07-19", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER LOULOU", + "descriptio": "NIGERIA:On 24 July, the anchored Nigeria-flagged product tanker LOULOU was boarded at 04-16N 007-56E, at the Eked Offshore Anchorage, approximately 40 nm southeast of Port Harcourt. Pirates reportedly boarded the vessel, destroyed the bridge laptop, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.933333299940841, 4.266666699705411] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-235", + "dateofocc": "2013-07-31", + "subreg": "56", + "hostility_": "ROBBERS", + "victim_d": "MERCHANT VESSEL", + "descriptio": "EGYPT:On 31 July, an anchored merchant vessel was boarded in the vicinity of 31-10N 029-51E, at the Alexandria Port. An AB on duty noticed a robber inside the Bosun forward store and immediately informed the Duty Officer. Upon further inspection, it was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.84999999991669, 31.166666699945836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-236", + "dateofocc": "2013-07-27", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "Chemical tanker", + "descriptio": "BANGLADESH:On 27 July, the Denmark-flagged anchored chemical tanker TORM LOIRE was boarded in the vicinity of 22-13N 091-46 E, at the Chittagong Anchorage. While awaiting berthing instructions, the duty crew on routine patrol noticed a robber lowering r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-237", + "dateofocc": "2013-07-27", + "subreg": "62", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "EGYPT:On 27 July, the Singapore-flagged anchored container ship HONG KONG BRIDGE was boarded at 29-50N 032-34E, at the Suez Anchorage. Upon boarding the vessel, the robbers were spotted by the crew, who then raised the alarm. After hearing the alarm, th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.566666699811265, 29.833333300019547] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-238", + "dateofocc": "2013-07-29", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "LPG TANKER", + "descriptio": "INDONESIA:On 29 July, the Panama-flagged anchored LPG tanker REEFERENCE POINT was boarded at 01-06N 104-10E, at the Tanjung Uban Anchorage. Duty AB on board the LPG tanker noticed approximately eight robbers, armed with knives, boarding the vessel from t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-470", + "dateofocc": "2011-11-17", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "VIETNAM: Oil tanker boarded and robbed 17 November at 2010 LT while anchored in position 10-13N 107-04E, Mui Vung Tao, Vietnam. The two armed robbers with steel rods were spotted by the duty watchmen who alerted the duty officer who raised the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.216666700032761] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-471", + "dateofocc": "2011-10-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOAT AND BARGE", + "descriptio": "OFF PULAU BINTAN, INDOANESIA: Armed pirates boarded a tug towing a loaded barge underway from Sarawak to Johor. They took hostage the crewmembers, tied their hands and locked them in a cabin. The pirates hijacked the vessel and sailed into Malaysian wate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.300000000243301, 1.49999999994418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-472", + "dateofocc": "2011-11-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BELAWAN ANCHORAGE, INDONESIA: Robbers boarded a chemical tanker at anchor. Robbers stole ship's stores and escaped unnoticed. Master reported to port authority.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.791666699996938, 3.936666699865611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-473", + "dateofocc": "2011-10-27", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NATUNA SEA, INDONESIA: Twelve pirates armed with guns boarded the tanker underway. Pirates took control of the ship, tied up the crew and navigated the vessel to an unknown position. On 28 Oct, the owners were able to establish contact with the ship and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-474", + "dateofocc": "2011-11-29", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Armed pirates in a skiff approached and fired upon a bulk carrier underway. Master raised the alarm, carried out evasive maneuvers and all crew except bridge team and armed security retreated into the citadel. The pirates attempted to board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.599999999657655, 15.016666699828249] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-475", + "dateofocc": "2011-11-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Six pirates armed with guns and rpgs in two skiffs approached and fired upon a bulk carrier underway. Master raised alarm, increased speed and all crew except the bridge team mustered in the citadel. Armed security team on board the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.049999999836359, 12.316666699830876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-476", + "dateofocc": "2011-11-30", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier (FANEROMENI) fired upon by as many as 14 pirates in two skiffs on 30 November at 1405Z while underway in position 12-18N 044-03E, approximately 42 miles southeast of Perim Island, Yemen. The armed security onboard returned fire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.049999999836359, 12.299999999933732] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-477", + "dateofocc": "2011-11-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Crude oil tanker boarded 30 November at 2245 local time while anchored in position 01-42N 101-30E, approximately 3 miles east-northeast of Dumai, Indonesia. The alert crew raised the alarm and the robbers escaped. Nothing stolen. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-478", + "dateofocc": "2011-12-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DUMAI PORT ANCHORAGE, INDONESIA: Four robbers armed with knives boarded an anchored crude oil tanker, took the duty oiler as hostage and entered the engine store room. The robbers stole ship stores, released the oiler and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.464444400233162, 1.688888900020743] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-479", + "dateofocc": "2011-12-03", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA: Bulk carrier boarded and robbed on 3 December while anchored in position 03-50N 077-10W, approximately 7 nm southwest of Buenaventura, Colombia. The robbers boarded unnoticed during heavy rain, stole the ship's stores, and escaped. The duty cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.166666699843518, 3.833333300078039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-480", + "dateofocc": "2011-10-30", + "subreg": "94", + "hostility_": "PIRATES", + "victim_d": "OFFSHORE SUPPORT VESSEL", + "descriptio": "TIANJIN BULK CHEMICAL ANCHORAGE, CHINA: Two robbers boarded an anchored off-shore support vessel. Alert duty crew noticed the robbers, raised alarm and chased the robbers. Nothing stolen and no casualty.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.945000000440928, 38.920555599552074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-481", + "dateofocc": "2011-12-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: A bulk carrier underway was chased and fired upon by pirates. Master took preventive measures and the onboard security team returned fire resulting in the pirates aborting and moving away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.999999999587715, 20.650000000158798] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-483", + "dateofocc": "2011-11-26", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "EGYPT: Liquefied gas tanker boarded on 26 November at 2048 UTC while at anchor in position 29-46N 032-35E, approximately 12 nm south of Suez. Alert crew raised the alarm and the robbers jumped over the side with nothing stolen. (Operator)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.583333299883634, 29.766666700080407] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-484", + "dateofocc": "2011-12-08", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA: Bulk carrier boarded 8 December at 0040 LT while anchored in position 03-42S 114-26E, approximately 24 nm south-southeast of Bandjermasin. The robbers boarded using a grappling hook, opened the hawse pipe cover, and were discovered by an aler", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-194", + "dateofocc": "2012-06-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:The previously hijacked vessel \"Mt Smyrni\" was last reported in position at Lat 12:02.8N - 50;41.1E on 07.06.2012 at 0534 UTC. It appears that the pirates are still onboard. All vessels are advised to keep well clear of this vessel as the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.685000000226296, 12.046666700370736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-195", + "dateofocc": "2012-06-10", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "EGYPT:Bulk carrier boarded on 10 June at 31:13 N - 029:42 E, El Dekheila Anchorage, Egypt. An anchored bulk carrier was boarded by robbers via the hawse pipe by forcibly removing the secured anchor chain cover. The portside watertight door padlock was br", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.70000000031655, 31.216666699812549] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-196", + "dateofocc": "2012-06-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA:Tanker was approached on 12 June at 13:20 N ¿ 042:56 E, Red Sea. A tanker underway noticed a white skiff with two outboard motors approach her at more than 25 knots. Initially two pirates were observed in the skiff and as the skiff closed five m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.933333300173388, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-197", + "dateofocc": "2012-06-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "OMAN:Chemical Tanker was chased on 09 June at 24:52 N - 056:38 E 12 nm east of Al Bulaydah, Oman. Pirates in four boats chased a chemical tanker underway. Two boats approached from stern and positioned itself not more than five meters from the tanker's p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.633333299627225, 24.866666699652171] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-198", + "dateofocc": "2012-06-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN:Bulk Carrier approached on 18 June at 12:19 N - 043:57 E, Gulf of Aden. Six skiffs with 4-6 pirates in each skiff approached a bulk carrier underway at 25 knots from the starboard bow. The Master raised alarm, increased speed, altered course", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.950000000102932, 12.316666699830876] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-199", + "dateofocc": "2012-06-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "OMAN:Marshall Island Flagged, US owned, M/V LNG ARIES was attacked by a skiff with 5-6 pirates onboard on 20 June at 20:50 N - 059:30 E, 35 nm northeast of Masirah Island, Oman. The skiff had no visible ladders onboard but opened fire with machine guns a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.500000000021203, 20.833333299728508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-200", + "dateofocc": "2012-06-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA:Bulk Carrier was boarded on 17 June at 17:00 N - 082:18 E, Kakinada Anchorage, India. Robbers boarded the anchored bulk carrier. The duty A/B on rounds heard two robbers talking to each other on the forecastle. He immediately informed the 2/O on th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.300000000398825, 16.999999999995794] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-201", + "dateofocc": "2012-06-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUGBOAT", + "descriptio": "MALAYSIA:Robbers boarded an anchored Tug on 17 June at 01:38 N-110:28 E, Kuching Anchorage, Malaysia. Robbers boarded an anchored tug and barge. They broke open containers, stole the cargo and escaped unnoticed. The master reported the incident to the lo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.466666699902362, 1.633333299647177] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-202", + "dateofocc": "2012-06-18", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN:A merchant vessel reported coming under fire at 0928Z on 18 June in position 14:28N - 050:45E, approximately 230 NM Northwest of Socotra Island in the Gulf of Aden. This area will remain high risk for at least the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.749999999963109, 14.466666700395024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-203", + "dateofocc": "2012-06-20", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "ARABIAN SEA:Dhow attacked in vicinity 20 29N - 059 03E at 201200 UTC Jun 12. Vessels are advised to keep well clear of this position and to exercise extreme caution if in vicinity.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.050000000321461, 20.483333299762137] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-46", + "dateofocc": "2013-02-20", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 20 February, a bulk carrier was boarded at 07-09S 112-40E in the vicinity of Gresik, Surabaya. While under pilotage and awaiting berthing, the vessel was boarded by robbers, who stole ship's stores and escaped unnoticed. Incident reported to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.666666700333167, -7.150000000380544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-47", + "dateofocc": "2013-02-20", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 20 February, an anchored tanker was boarded at 01-23S 116-56E, at the BalikpapanAnchorage. During bunkering operations, the Master saw two robbers with long swords on the forecastle stealing mooring ropes. He raised the alarm and mustered th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.933333299868536, -1.383333299622905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-48", + "dateofocc": "2013-02-18", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:On 18 February, a container ship was boarded at 00-08N 106-18E, approximately 52 nm ENE of Pulau Penjantan, while underway. The Duty Officer noticed two masked pirates on the bridge wing attempting to enter the bridge. Alarm raised and crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.300000000275645, 0.133333300048321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-49", + "dateofocc": "2013-02-18", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 18 February, a chemical tanker was boarded at 01-42N 101-27E, at the Dumai Inner Anchorage. Two robbers armed with long knives boarded the anchored vessel using a portable ladder. Duty A/B noticed the robbers and informed the Duty Officer, w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-50", + "dateofocc": "2013-02-15", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH:On 15 February, a bulk carrier was boarded at 22-15N 091-42E, at the Chittagong Anchorage. Robbers armed with long knives boarded the anchored vessel via the anchor chain. Alert duty A/B noticed the robbers and raised the alarm. The robbers th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-51", + "dateofocc": "2013-02-14", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "VIETNAM:On 14 February, a container ship was boarded at 20-37N 106-51E, at the Haiphong Anchorage. Robbers boarded the anchored vessel via the anchor chain by breaking the locks on the hawse pipe cover. They broke into the forepeak, stole ship's stores a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.849999999708871, 20.616666700189228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-52", + "dateofocc": "2013-02-10", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP WALVIS 7", + "descriptio": "NIGERIA:On 10 February, the cargo ship WALVIS 7 was boarded and personnel kidnapped at 03-33N 006-35E, approximately 45nm off Bonny River. Twelve heavily armed pirates approached, fired upon, and boarded the vessel while underway. Alarm raised and most o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.583333299942126, 3.549999999875581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-53", + "dateofocc": "2013-02-07", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP ESTHER C", + "descriptio": "NIGERIA:On 07 February, the general cargo ship ESTHER C was boarded and personnel kidnapped at 03-40N 005-53E, approximately 40nm SSE of Brass. A gang of approximately 17 pirates armed with AK47 assault rifles attacked, boarded and hijacked the vessel w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.88333330000944, 3.666666700405472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-54", + "dateofocc": "2013-02-27", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "PERU:On 27 February, a tanker experienced an attempted boarding at 04-34S 081-18W, at the Talara Anchorage. Two robbers in a small motorized boat attempted to board the anchored vessel via the anchor chain. Alert duty crew noticed the robbers and informe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.299999999675833, -4.566666700013741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-338", + "dateofocc": "2017-12-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 08 December, a merchant vessel reported being boarded near 04-11N 007-00E, vicinity of Bonny River. Nigerian Navy vessel responded, but pirates had already gone. Ship and crew are safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-55", + "dateofocc": "2013-02-24", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "COLUMBIA:On 24 February, an LPG tanker was boarded in the vicinity of 10-18N 075-31W, at the Cartagena \"A\" Anchorage. Four robbers boarded the anchored vessel via the anchor chain and hawse pipe. The robbers captured and tied up the duty A/B, who had sig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-56", + "dateofocc": "2013-02-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PASSENGER VESSEL", + "descriptio": "NIGERIA:On 25 February, a passenger boat was boarded and personnel kidnapped at 04-37N 008-22E, in the Ibaka Channel, Calabar River. The vessel was attacked and boarded by approximately 20 armed pirates in two speedboats. The pirates were reported to hav", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.366666699568214, 4.616666699671782] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-57", + "dateofocc": "2013-02-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP KOTA BAHAGIA", + "descriptio": "NIGERIA:On 22 February, the cargo ship KOTA BAHAGIA was fired upon and endured multiple attempted boardings at 03-51N 005-57E, approximately 30 nm SSW of Brass. A gand of approximately six pirates armed with automatic rifles in a skiff launched from a mo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.949999999773297, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-58", + "dateofocc": "2013-02-25", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "MERCHANT SHIP", + "descriptio": "OMAN:On 25 February, a merchant ship reported a suspicious approach by one skiff in an area approximately 15 nautical miles north of Masirah Island, Oman. No shots were fired but the merchant ship reported sighting weapons aboard the skiff.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.8833332999248, 20.833333299728508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-239", + "dateofocc": "2013-07-27", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 27 July, the Hong Kong-flagged anchored chemical tanker GLOBAL PEACE was boarded at 07-05S 112-39E, at the Gresik Inner Anchorage. Unidentified persons were spotted at the forecastle paint store entrance. The alarm was raised and crew alerte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.65000000043608, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-240", + "dateofocc": "2013-07-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG SURYA WIRA 2", + "descriptio": "INDONESIA:On 25 July, the underway Singapore-flagged tug was SURYA WIRA 2 was boarded at 01-18N 104-41E, approximately 8nm northeast of Tanjung Berakit. Roughly six pirates, in a speed boat, armed with knives, boarded a tug with barge in tow. They entere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-241", + "dateofocc": "2013-07-10", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER GUANABARA", + "descriptio": "INDONESIA:On 10 July, the anchored Singapore-flagged crude oil tanker GUANABARA was boarded at an Indonesia Anchorage. Vessel was boarded and robbed at an undisclosed Indonesian Anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.099999999715408, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-242", + "dateofocc": "2013-07-10", + "subreg": "91", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP CAPE MAHORN", + "descriptio": "PHILIPPINES:On 10 July, the anchored Cyprus-flagged container ship CAPE MAHORN was boarded at a Philippines Port/ Anchorage. Vessel was boarded and robbed at an undisclosed Philippines Port/ Anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.783333300397771, 14.48333329956813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-243", + "dateofocc": "2013-07-31", + "subreg": "56", + "hostility_": "robber", + "victim_d": "container ship MARY SCHULTE", + "descriptio": "EGYPT:On 31 July, the Liberia-flagged berthed container ship MARY SCHULTE was boarded in the vicinity of 31-10N 029-51E, at Berth No. 49, Alexandria Port. An AB on duty noticed a robber inside the Bosun forward store. He immediately informed the Duty Off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.84999999991669, 31.166666699945836] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-244", + "dateofocc": "2013-07-31", + "subreg": "57", + "hostility_": "robbers", + "victim_d": "bulk carrier ATHOS", + "descriptio": "IVORY COAST:On 31 July, the Cayman Islands-flagged anchored bulk carrier ATHOS was boarded at 05-13N 004-03W, at the Abidjan Anchorage. Robbers boarded the ship at anchor using a long pole with a hook. The crew spotted them and raised the alarm. On heari", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.049999999650765, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-245", + "dateofocc": "2013-07-30", + "subreg": "57", + "hostility_": "gunboat", + "victim_d": "chemical tanker HIGH JUPITER", + "descriptio": "NIGERIA:On 30 July, the Hong Kong-flagged underway chemical tanker HIGH JUPITER was fired upon at 03-31N 006-05E, approximately 45 nm south of Brass. A gunboat claiming to be a Nigerian navy boat called a chemical tanker on VHF and asked details of vesse", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.083333300375671, 3.516666699906011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-491", + "dateofocc": "2011-12-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "INDONESIA: Six robbers armed with knives boarded a tug towing a barge and took hostage the six crew members. The robbers stole crew personal belongings and cash before escaping in their speed boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.350000000045384, 1.217499999842858] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-246", + "dateofocc": "2013-08-01", + "subreg": "62", + "hostility_": "two skiffs", + "victim_d": "LPG tanker", + "descriptio": "YEMEN:On 01 August, an underway LPG tanker experienced a suspicious approach by two skiffs in vicinity of 13-40N 042-39E, near the Jazirat Hanisha Al Kabir Island when a Yemeni-style skiff shadowed the vessel at a distance of 1 nm while another approache", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.64999999997093, 13.666666699829534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-247", + "dateofocc": "2013-08-02", + "subreg": "71", + "hostility_": "robber", + "victim_d": "tanker MARE NOSTRUM", + "descriptio": "INDONESIA:On 2 August, the Italy-flagged anchored tanker MARE NOSTRUM was boarded at 01-06N 103-38E, at the Nipah Anchorage. When a crewmember noticed a robber outside the accommodation area, he immediately retreated into the bridge and informed the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-248", + "dateofocc": "2013-07-25", + "subreg": "91", + "hostility_": "robbers", + "victim_d": "container ship APL LOS ANGELES", + "descriptio": "PHILIPPINES:On 25 July, the Gibraltar-flagged anchored container ship APL LOS ANGELES was boarded and robbed at an undisclosed port/anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.783333300397771, 14.48333329956813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-249", + "dateofocc": "2013-07-21", + "subreg": "91", + "hostility_": "robbers", + "victim_d": "container ship HELMUTH RAMBOW", + "descriptio": "PHILIPPINES:On 21 July, the Antigua and Barbuda-flagged anchored container ship HELMUTH RAMBOW was boarded and robbed at an undisclosed port/anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.783333300397771, 14.48333329956813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-250", + "dateofocc": "2013-08-11", + "subreg": "57", + "hostility_": "Hijackers", + "victim_d": "Chemical tanker", + "descriptio": "NIGERIA:On 11 August, gunmen hijacked the anchored Marshall Islands-flagged chemical tanker SP ATLANTA near the port of Lagos. On 13 August, the vessel along with its crew, were released.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-251", + "dateofocc": "2013-08-11", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "NIGERIA:On 11 August, robbers in a small skiff attempted to board the anchored Liberia-flagged product tanker FPMC 25 at 06-18N 003-26E, at the Lagos Anchorage. Master raised the alarm and mustered the crew, while embarked armed guards fired warning shot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.433333300244954, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-252", + "dateofocc": "2013-08-04", + "subreg": "62", + "hostility_": "Three skiffs", + "victim_d": "Crude oil tanker", + "descriptio": "ARABIAN SEA:On 4 August, a Liberian-flagged crude oil tanker experienced a suspicious approach approximately 110 nm southeast of Muscat, Oman. Three skiffs containing 3 individuals each, approached at 20 knots. The tanker crew mustered in the citadel and", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.966666699618145, 22.316666700154258] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-485", + "dateofocc": "2011-12-06", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CEMENT CARRIER", + "descriptio": "INDONESIA: Cement carrier boarded and robbed 6 December at 0515 LT while anchored in position 01-42S 116-38E, approximately 32 nm south-southwest of Balikpapan. The crew noticed the robbers escaping with a mooring line and discovered that the forecastle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.699999999619706] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-486", + "dateofocc": "2011-12-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DUMAI QUARANTINE ANCHORAGE, INDONESIA: Three robbers armed with long knives boarded an anchored tanker. They entered into the accommodation and threatened the duty A/B. Once the robbers escaped, the A/B informed the bridge. All crew alerted and a search", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.493333300196639, 1.708333299896935] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-487", + "dateofocc": "2011-12-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA: Tanker boarded 10 December at 0340 LT while anchored in position 01-42N 101-29E, approximately 2 nm northeast of Dumai. Three robbers boarded, entered the engine room, took a motorman hostage and stole engine spares before escaping. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-488", + "dateofocc": "2011-12-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSELS", + "descriptio": "45 MILES OFF PANGKOR ISLAND MALAYSIA: Four pirates in a speed boat attacked and hijacked two fishing vessels carrying out fishing operation. Malaysian Maritime Enforcement Agency (MMEA) received information from the owners and coordinated with the Royal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [99.833333299585377, 4.416666700204928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-489", + "dateofocc": "2011-12-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Two skiffs approached and fired upon a tanker underway. A ladder was sighted on one of the skiffs. Master made evasive maneuvers while the armed security team onboard fired warning shot. The skiffs slowed down and returned fire resulting in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.03333330003619, 12.600000000033333] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-490", + "dateofocc": "2011-02-21", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "MANILA NORTH ANCHORAGE, PHILIPPINES: Robbers boarded an anchored ship unnoticed and stole ship's properties and escaped. Later duty A/B on deck patrol noticed padlock to the forward store broken and ship's property stolen. Incident reported to CSO and po", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.866666700058772, 14.600000000098021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-492", + "dateofocc": "2011-12-22", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SURABAYA INNER ANCHORAGE, INDONESIA: Duty crew onboard an anchored bulk carrier noticed two boats moving away from the vessel with mooring lines trailing in the water. Alarm sounded and all crew mustered. Authorities informed via local agent.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.662777799853416, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-493", + "dateofocc": "2011-12-22", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "PERU: Tanker boarded on 22 December at 0400 LT while anchored in position 04-34.2S 081-18.8W in the Talara Anchorage. Robbers boarded and entered the forward store. Alert duty watchman spotted the hawse pipe cover was open and alerted the officer of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.313333300418208, -4.570000000243112] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-494", + "dateofocc": "2011-12-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "INDONESIA: Barge boarded on 24 December at 0930 LT while it was being towed by a tug in position 01-10N 103-39E, approximately 15 nm southwest of Singapore, at Western Boarding Ground 'B'. Robbers disguised themselves as merchants in boats attempting to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-495", + "dateofocc": "2011-12-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA: Chemical tanker boarded and robbed by three people on 25 December at 0100 LT while anchored in position 01-42.4N 101-28.6E, while in the Dumai Inner Anchorage. They entered the engine room through the engine room's skylight door and stole gene", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.476666700124213, 1.706666699694608] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-496", + "dateofocc": "2011-12-27", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ECUADOR: Container ship boarded by five robbers with long knives on 27 December at 0145 LT while anchored in position 02-21.4S 079-59.9W in the Guayaquil Inner Anchorage. They broke open three containers, but escaped without stealing anything after seein", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.998333300416107, -2.356666699969253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2011-497", + "dateofocc": "2011-12-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "ARABIAN SEA: Chemical tanker (ENRICO IEVOLI) hijacked by five pirates in one speedboat on 27 December at 0403 UTC while underway in position 18-18N 057-36E, approximately 216 nm northeast of Salalah, Oman. The vessel was transiting from Fujairah, United", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.599999999689999, 18.300000000127739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-1", + "dateofocc": "2011-12-12", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG AND BARGE", + "descriptio": "MALACCA STRAIT: Six robbers armed with knives boarded a tug towing a barge and took hostage the six crew members. The robbers stole crew personal properties and cash before escaping in their speed boat. Vessels are advised to use caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.350000000045384, 1.225000000227567] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-204", + "dateofocc": "2012-06-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "Bulk Carrier", + "descriptio": "YEMEN:Bulk carrier fired upon on 27 June at 14-22N 054-38E, 110 nm North of Socotra Island. Pirates in a dhow approached the vessel while underway. The Master raised the alarm and took evasive maneuvers. As the dhow approached, the onboard security team", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.633333299562537, 14.366666699762277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-205", + "dateofocc": "2012-06-25", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "LPG TANKER", + "descriptio": "OMAN:LPG Tanker approached on 25 June at 25-15N 057-16E, 48 nm East of Fujairah, Oman. Pirates armed with guns in two skiffs approached the vessel while underway and closed to within 0.6 nm. The Master fired warning flares and pyrotechnics, increased spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.266666699620771, 25.249999999588113] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-206", + "dateofocc": "2012-06-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH:Container ship boarded on 26 June at 22-10N 091-42 E, at Chittagong Anchorage \"B\". Two pirates armed with knives boarded the anchored vessel following a heavy rain shower. One of the pirates attacked a duty crewman at the aft station, who imme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-62", + "dateofocc": "2013-02-18", + "subreg": "63", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER", + "descriptio": "BANGLADESH:On 18 February, the tanker JASMINE EXPRESS was boarded at 22-11N 091-46E, at the Chittagong \"C\" Anchorage. After STS discharge operations, the crew on an anchored tanker while waiting for further instructions discovered that two STS mooring ro", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-207", + "dateofocc": "2012-07-02", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ECUADOR:Container ship boarded on 2 July at 02-33S 080-06W, 25 nm southwest of Guayaquil. Two speed boats with six pirates approached and boarded the vessel while underway using hooks attached to ropes and ladders. The Master raised alarm. The crew muste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.100000000176635, -2.550000000051909] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-208", + "dateofocc": "2012-06-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "NIGERIA:Tanker fired upon on 30 June at 04-01N 006-06E, 70 nm southwest of Port Harcourt. Armed pirates in a boat chased and fired upon the vessel while underway from Bonny River.Nigerian Navy personnel onboard returned fire, resulting in the pirates abo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.100000000272814, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-209", + "dateofocc": "2012-06-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "NIGERIA:Container ship awaiting berthing instructions was approached on 30 June at 02-38N 006-09E by five armed pirates in a wooden speed boat with two outboard engines. The fired upon the vessel, damaging some bridge windows and equipment. The vessel ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.150000000139528, 2.633333299679521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-210", + "dateofocc": "2012-07-03", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "TANZANIA:Container ship boarded on 3 July at 6-50S 039-17E, at Dar Es Salaam. Robbers boarded the berthed vessel, stole ships stores and escaped unnoticed. The theft was later noticed by the duty A/B while on rounds. The incident was reported to Port Sec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.283333300010383, -6.833333300383742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-211", + "dateofocc": "2012-07-04", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "LPG CARRIER", + "descriptio": "INDIA:LPG carrier boarded on 4 July at 17-39N 083-23E, at Visakhapatnam anchorage. Six robbers in a long wooden boat with sail and oars came alongside the anchored vessel. Two robbers boarded the vessel and stole ship's properties. The Duty Officer notic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.383333300267452, 17.650000000061766] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-212", + "dateofocc": "2012-06-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "VIETNAM:Chemical tanker boarded on 27 June at 10-41N 106-45E, Nha Be Terminal, Ho Chi Minh City. Robbers boarded the berthed vessel during cargo operations, stole the fire wire and escaped. The duty A/B noticed foot prints and the missing fire wire while", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.749999999975444, 10.683333299804929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-213", + "dateofocc": "2012-06-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA:Chemical tanker boarded on 25 June at 05-32N 003-32E. Twelve pirates armed with guns approached the vessel in a speed boat and boarded. The crew was forced to muster in the mess room, but the Master and Chief Engineer were allowed to remain on t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.533333299978437, 5.533333300043068] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-214", + "dateofocc": "2012-06-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "NIGERIA:On 30 June at 0615 local time, a vessel was fired upon by pirates in 02-40.0N 006-08.3E, but managed to evade the attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.138333299599537, 2.666666700373128] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-59", + "dateofocc": "2013-02-22", + "subreg": "62", + "hostility_": "SUSPECIOUS CRAFT", + "victim_d": "CARGO SHIP", + "descriptio": "GULF OF OMAN:On 22 February, a cargo ship was fired upon at 23-08N 060-49E, approximately 130 nm southeast of Muscat, Oman.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.816666700050348, 23.133333299892797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-60", + "dateofocc": "2013-01-31", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER MEGACORE PANTHEA", + "descriptio": "OMAN:On 31 January, the tanker MEGACORE PANTHEA experienced a suspicious approach in the vicinity of 21-23N 059-59E, approximately 33 nm East of Ash Sharqiyah. Vessel sighted a white skiff 3 miles off the starboard quarter. Skiff was proceeding in the sa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.983333299690571, 21.383333300061054] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-61", + "dateofocc": "2013-02-20", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER RED RUM", + "descriptio": "INDONESIA:On 20 February, the LPG tanker RED RUM was boarded at 05-34S 104-35E, at the Teluk Semangka Anchorage. Engine room stores were robbed from the vessel while carrying out ship-to-ship transfer operations. The robbery was discovered only after dep", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, -5.566666700046085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-64", + "dateofocc": "2013-03-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "VESSEL ARMADA TUAH 22", + "descriptio": "NIGERIA:On 04 March, the vessel ARMADA TUAH 22 was hijacked at 03-42N 005-39E, approximately 50 nm southwest of Brass. Contact with the vessel's owner was lost and the vessel did not respond to radio calls, and the vessel's AIS was turned off. Unconfirme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.649999999673696, 3.700000000375042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-65", + "dateofocc": "2013-03-02", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "FISHING TRAWLER", + "descriptio": "NIGERIA:On 02 March, a fishing trawler was attacked at 04-07N 005-36E, approximately 25 nm from the Bayelsa Coast. Unconfirmed reports state that the Captain was killed during the attack. The pirates managed to escape, prior to the arrival of the Nigeria", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.599999999806982, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-66", + "dateofocc": "2013-03-04", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER AL BUHAIRA", + "descriptio": "YEMEN:On 4 March, the tanker AL BUHAIRA experienced a suspicious approach at 14-17N 049-51E, at approximately 40 nm southeast of Mukalla City. Four skiffs with approximately six persons in each skiff approached the underway vessel from the port bow, amid", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.849999999664192, 14.283333300101219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-67", + "dateofocc": "2013-03-04", + "subreg": "62", + "hostility_": "ROBBERS", + "victim_d": "DHOW", + "descriptio": "BAHRAIN:On 04 March, a dhow was fired upon and a crewman was kidnapped approximately 60 nm north of Al Dair. The Bahraini-registered vessel was attacked by four armed men in two boats. The dhow was forced to stop and was dragged from the location of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.433333299966307, 26.616666700383234] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-68", + "dateofocc": "2013-03-04", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER CASTLEGATE", + "descriptio": "INDONESIA:On 04 March, the bulk carrier CASTLEGATE was boarded at 03-33S 114-26E, at the Taboneo Anchorage. The anchored vessel was boarded by robbers, who stole ship's stores and escaped unnoticed. Master reported the incident to Port Control.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.550000000084253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-69", + "dateofocc": "2013-02-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER STOLT RINDO", + "descriptio": "INDONESIA:On 27 February, the tanker STOLT RINDO was boarded at 01-42N 101-29E, at the Dumai Quarantine Anchorage. The anchored vesel was boarded by robbers, who stole engine spares and escaped unnoticed. The incident was discovered by one of the crew wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-70", + "dateofocc": "2013-03-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:On 12 March, robbers boarded a chemical tanker at anchor at the Belawan Anchorage, stole ship's stores, and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.783333299686319, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-71", + "dateofocc": "2013-03-16", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA:On 16 March, an anchored bulk carrier was boarded at 11-08N 074-16W, at the Puerto Prodeco Anchorage. Duty officer onboard the vessel noticed an unidentified person on the forecastle and immediately advised the deck security guard and port secur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.266666700379233, 11.133333300404047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-253", + "dateofocc": "2013-08-10", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 10 August, the anchored Isle of Man-flagged bulk carrier STAR MANX was boarded at 00-16S 117-36E, at the Samarinda Anchorage. Three robbers in boiler suits boarded the anchored bulk carrier which was waiting to link up with a cargo barge. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.599999999831766, -0.266666699784764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-254", + "dateofocc": "2013-08-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical/gas tanker", + "descriptio": "INDONESIA:On 4 August, the Marshall Islands-flagged anchored chemical/gas tanker GARNET EXPRESS was boarded and robbed at an undisclosed port/anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.0000000001437, -9.999999999978058] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-255", + "dateofocc": "2013-07-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Oil/chemical tanker", + "descriptio": "INDONESIA:On 30 July, the anchored Marshall Islands-flagged oil/chemical tanker GARNET EXPRESS was boarded and robbed at an undisclosed port/anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.0000000001437, -9.999999999978058] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-3", + "dateofocc": "2011-12-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA: Four robbers armed with knives boarded an anchored tanker unnoticed and entered the engine room. They took hostage the 2nd Engineer and motorman, forced them to open the spare store and tied their hands. The robbers stol", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-256", + "dateofocc": "2013-08-15", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "NIGERIA:On 15 August, the Nigeria-flagged product tanker NORTE was boarded in the Gulf of Guinea. On 17 August, the vessel was reportedly chased by vessels from the Nigerian Navy; to include two Navy ships of destroyer-size, 6 gun boats, and patrol plane", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.99999999957538, 5.500000000073555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-257", + "dateofocc": "2013-08-15", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 15 August, the anchored Marshal Islands-flagged tanker BLUEGREEN TIGRE experienced an attempted boarding in the vicinity of 06-21N 003-28E, at the Lagos Anchorage. Approximately 8-10 robbers, in a speed boat, attempted to place a hook on the t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.466666700039298, 6.349999999606382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-258", + "dateofocc": "2013-08-12", + "subreg": "57", + "hostility_": "Gunboats", + "victim_d": "Offshore support vessel", + "descriptio": "NIGERIA:On 12 August, a Nigeria-flagged offshore support vessel was fired upon approximately 35nm off the Nigerian coast. Two gunboats with approximately 7 - 8 pirates on board fired upon the vessel. A near-by patrol boat responded to the emergency calls", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.800000000140813, 5.549999999940269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-259", + "dateofocc": "2013-08-12", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical tanker", + "descriptio": "NIGERIA:On 12 August, the anchored Marshall Islands-flagged chemical tanker SP ATLANTA was hijacked at 06-19N 003-27E, at the Lagos Anchorage. Approximately 11 pirates, armed with guns, boarded and hijacked the chemical tanker at anchor. They stole crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.450000000142154, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-260", + "dateofocc": "2013-08-16", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "BANGLADESH:On 16 August, the anchored Liberia-flagged container ship HENRIETTE SCHULTE was boarded at 22-10N 091-42E, at the Chittagong Anchorage. Four robbers, armed with knives, boarded the anchored container ship. The Officer of the Watch spotted them", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-261", + "dateofocc": "2013-08-15", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Trawler", + "descriptio": "BANGLADESH:On 15 August, a fishing trawler was hijacked, along with the kidnapping of 15 fishermen along the Meghna River. A gang of pirates attacked three trawlers in the Talia Char area. When the fishermen tried to resist the bandits, they opened fire,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.699999999591284, 22.799999999823626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-262", + "dateofocc": "2013-08-14", + "subreg": "63", + "hostility_": "Hijackers", + "victim_d": "Trawlers", + "descriptio": "BANGLADESH:On 14 August, two fishing trawlers were hijacked, along with the kidnapping of 21 fishermen, along the Meghna River. Local authorities managed to rescue 10 of the kidnapped fishermen soon after the incident.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.699999999591284, 22.799999999823626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-263", + "dateofocc": "2013-08-10", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "BANGLADESH:On 10 August, the anchored Singapore-flagged container ship KOTA HARTA was boarded at 22-09N 091-47E, at the Chittagong Anchorage. Three robbers boarded the ship from the poop deck, using a hook and rope. Upon discovering the robbers, the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 22.149999999757654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-264", + "dateofocc": "2013-08-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 2 August, the underway Thailand-flagged product tanker DANAI 6 was boarded at 01-23N 104-30E, approximately 9nm north of Bintan Island. Six pirates, armed with knives and guns, boarded the vessel. The pirates fired at the glass panel of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.499999999677868, 1.383333300313609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-265", + "dateofocc": "2013-08-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Livestock carrier BRAHMAN EXPRESS", + "descriptio": "INDONESIA:On 23 August, the Philippines-flagged berthed live stock carrier BRAHMAN EXPRESS was boarded in the vicinity of 03-47N 098-42E, at the Belawan Port. Three robbers, in a motor boat, approached a berthed live stock carrier. Two robbers boarded th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-2", + "dateofocc": "2011-12-19", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-24N 046-31E at 1045Z on 19 December. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [46.516666700397309, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-4", + "dateofocc": "2011-12-20", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GUAYAQUIL DATA PILOT STATION, ECUADOR: A container vessel was boarded by around 12 robbers while underway. The robbers took hostage the bosun, tied his hands, then opened ten containers and stole contents. Crew alerted the port control and the coast guar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.981666700343737, -2.348333299658634] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-5", + "dateofocc": "2011-12-30", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CELEBES SEA: Seven pirates in a small flat bottom boat chased and attempted to board a bulk carrier underway. The vessel enforced anti piracy measures, rigged fire hoses, increased speed, made evasive maneuvers and sounded ship's whistle resulting in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.066666700425003, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-6", + "dateofocc": "2011-12-26", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BAY OF BENGAL: Deck watchman onboard an anchored container vessel noticed three small boats with around 25 robbers near the stern of the vessel with a few robbers onboard as well. He alerted the bridge and secured the accommodation. Seeing alert crew the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-7", + "dateofocc": "2012-01-01", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "TABONEO ANCHORAGE, INDONESIA: Duty AB onboard an anchored bulk carrier noticed a robber inside the hawse pipe, trying to break open the lock. A boat with two more robbers was noticed nearby. Alarm raised and crew mustered. Seeing alert crew the robber es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.450000000134537, -3.733333299653964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-8", + "dateofocc": "2012-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Bulk carrier M/V DELFA chased and fired upon by pirates in noe skiff on 04 Jan at 0200Z near position 13-10N 049-12E, in the Gulf of Aden. Onboard security team fired flares to no effect, they then returned gunfire, causing the skiff to ret", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-9", + "dateofocc": "2012-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Pirates in a skiff chased and fire upon a bulk carrier underway. Onboard security team fired flares to warn the pirates which were ignored and later only when the security team returned fire the skiff aborted the attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.199999999598219, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-10", + "dateofocc": "2012-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF ADEN: Pirates in a skiff chased and attempted to board a bulk carrier underway. The vessel enforced anti-piracy measures, increased speed and made evasive maneuvers resulting in the pirates moving away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.196666700106448, 12.243333299783444] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-11", + "dateofocc": "2012-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN: Four pirates in a skiff maintained a parallel course with a crude tanker before suddenly increasing speed to 25 knots and coming alongside in an attempt to board. No ladders were seen on the skiff. Master raised the alarm, commenced evasive", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.183333300438676, 12.233333300169818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-12", + "dateofocc": "2012-01-04", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-17N 044-10E at 0822Z on 04 Jan. Vessels requested to keep a sharp lookout and exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.16666670036625, 12.283333300036531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-13", + "dateofocc": "2012-01-05", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Six pirates in a skiff approached a bulk carrier underway. Master contacted a warship in the vicinity when the skiff came to a distance of 2.5 miles and the warship advised that a helicopter will be proceeding to the location. Alarm raised,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.983333299722915, 22.449999999857255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-14", + "dateofocc": "2012-01-05", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "CALLAO ANCHORAGE, PERU: Two robbers armed with knives boarded an anchored container vessel unnoticed, stole ship stores and escaped. Duty crew noticed the theft during thier routine rounds and raised alarm. Port control informed and a patrol boat sent ou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.205000000069504, -12.12833330038859] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-15", + "dateofocc": "2012-01-07", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "HO CHI MINH TERMINAL, VIETNAM: Duty A/B onboard a berthed container vessel noticed a small boat near the shipside with three robbers attempting to board the vessel. Duty A/B raised alarm resulting in the robbers escaping empty handed. Local security info", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.716666700005874, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-16", + "dateofocc": "2012-01-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "85 MILES SOUTH OF BONNY ISLAND, NIGERIA: About eight pirates armed with AK-47s in a skiff launched from a fishing trawler chased, fired upon and attempted to board a container ship underway. The Master increased speed, took evasive maneuvers and crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.466666700168673, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-215", + "dateofocc": "2012-07-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BENIN:Bulk carrier boarded on 17 July at 06-17N 002-28E, Cotonou Anchorage. Two robbers armed with guns boarded the anchored vessel, entered the Master's cabin and stole ship's cash. The robbers escaped in a small wooden boat. No injuries to the crew wer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.466666700006954, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-216", + "dateofocc": "2012-07-15", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP OLIVIA", + "descriptio": "GUINEA:German-flagged container ship OLIVIA boarded on 15 July at 09-13N 013-47W, approximately 22 nm southwest of Conakry. Seven pirates armed with guns and knives boarded the vessel while awaiting berthing instructions. The pirates entered the bridge a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.78333329984406, 9.216666700000417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-217", + "dateofocc": "2012-07-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 17 July at 01-43N 101-27E, Dumai Anchorage. Seven robbers armed with knives boarded the anchored vessel, threatened the ship's crew with knives,broke the padlocks to three stores, and attempted to steal ship's property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-218", + "dateofocc": "2012-07-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CONTAINER VESSEL", + "descriptio": "MOZAMBIQUE:Robbers boarded a container vessel at berth, stole ship's stores and escaped unnoticed. Master informed port authorities and local agent. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.833333300181266, -19.81666669983241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-219", + "dateofocc": "2012-07-31", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "COLOMBIA:Bulk carrier boarded on 31 July at 03-49N 077-09W, Buenaventura Anchorage. Three robbers in a black motor boat boarded the anchored vessel and broke the padlocks on the forecastle paint locker and forward stores. The duty crew spotted the robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.149999999946317, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-220", + "dateofocc": "2012-05-17", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "NIGERIA:Vessel boarded on 17 May at 04-39N 004-45E, 45. Pirates armed with guns approached a landing craft at a speed of 7 knots. Master raised the alarm, stopped the main engines, and instructed the crew to muster in the citadel. By the time the pirates", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.750000000274099, 4.649999999641352] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-221", + "dateofocc": "2012-07-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 22 July at 01-06N 103-28E, Karimun Transhipment Anchorage. Robbers in a long wooden boat boarded the anchored tanker and entered the engine room. The engine room crew notified the bridge and the alarm was raised. The Third Eng", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.466666699675955, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-222", + "dateofocc": "2012-07-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BARGE/TUGBOAT", + "descriptio": "MALACCA STRAIT:Barge robbed sometime between 13 and 20 July while being tow by a tug between Penang, Malaysia and Pasir Gudang Port, Malaysia. Upon arrival, shipyard representatives inspected the barge and informed the Master that cargo on the barge's de", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.233333300317781, -5.20000000018257] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-223", + "dateofocc": "2012-07-27", + "subreg": "92", + "hostility_": "PIRATES", + "victim_d": "TUG WITH BARGE", + "descriptio": "MALAYSIA:Tug towing a barge hijacked on 27 July between Kudat Port, Malaysia and Bangi Island, Sabah, Malaysia. Pirates in a speed boat attacked the tug and forced the twelve crewmembers into a life raft and set them adrift. The hijackers sailed the tug", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.284166699760817, 7.938888900447694] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-224", + "dateofocc": "2012-06-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "NIGERIA:A container ship awaiting berthing instructions was approached by five armed pirates in a wooden speed boat with two outboard engines. As the pirates approached, they fired upon the vessel damaging some bridge windows and equipment. The vessel ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.158333299726053, 2.64833330044894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-81", + "dateofocc": "2013-03-24", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP CAPE NORVIEGA", + "descriptio": "INDONESIA:On 24 March, a container ship CAPE NORVIEGA was boarded at 05-59S 106-54E, at the Tanjung Priok Anchorage. During routine rounds, the ship's crew found the steering gear room open and it was discovered that some items inside the store were miss", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-225", + "dateofocc": "2012-07-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "TOGO:Duty Office aboard an anchored chemical tanker noticed on radar a contact approaching at a speed of five knots. Lookouts directed the search light towards the approaching boat and 12 armed robbers were identified. Alarm raised and ship's horn sounde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.299999999577949, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-72", + "dateofocc": "2013-03-14", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER ORANGE STARS", + "descriptio": "GULF OF ADEN:On 14 March, the underway tanker ORANGE STARS experienced a suspicious approach at 13-39N 050-48E, approximately 107 nm south-southeast of Al Mukalla, Yemen. Four suspicious dhows along with skiffs were noticed nearby the vessel. From this g", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.799999999829822, 13.64999999993239] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-73", + "dateofocc": "2013-03-14", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER KILIAN S", + "descriptio": "INDONESIA:On 14 March, the anchored bulk carrier KILIAN S was boarded at 01-40S 116-39E, approximately 25 nm SSW of the Balikpapan Port. Three robbers armed with long knives boarded the vessel. The alert duty seaman spotted the robbers attempting to ente", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.649999999666079, -1.666666699650136] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-74", + "dateofocc": "2013-03-24", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP OCEAN CHARGER", + "descriptio": "IVORY COAST:On 24 March, the berthed cargo ship OCEAN CHARGER was boarded in the vicinity of 05-17N 004-01W, at the Abidjan Port. Shore security guard onboard the vessel noticed two robbers at the aft mooring station. He immediately informed the Duty Off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.283333299810181] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-75", + "dateofocc": "2013-03-26", + "subreg": "56", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "EGYPT:On 26 March, a berthed container ship was boarded at 31-14N 032-18E, at the Port Said West Terminal. Six robbers in a boat armed with knives came alongside. Four robbers boarded the vessel and injured an onboard security guard. The robbers stole sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.299999999681177, 31.233333299884976] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-76", + "dateofocc": "2013-03-25", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER", + "descriptio": "YEMEN:On 25 March, an underway tanker experienced a suspicious approach at 14-01N 051-33E, approximately 141 nm south-southwest of Al Mukalla, Yemen. A group of boats closed to within 0.8 nm of the vessel, who displayed weapons resulting in the approach", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.549999999629222, 14.016666699795906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-77", + "dateofocc": "2013-03-24", + "subreg": "61", + "hostility_": "ROBBERS", + "victim_d": "CONYAINER SHIP JPO SAGITTARIUS", + "descriptio": "TANZANIA:On 24 March, the berthed container ship JPO SAGITTARIUS was boarded at 06-50S 039-17E, at the Dar es Salaam Port, Berth No. 11. A robber boarded the vessel via the forward mooring ropes. The duty A/B noticed the robber, who threatened the A/B wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.283333300010383, -6.833333300383742] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-78", + "dateofocc": "2013-03-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 27 March, an anchored bulk carrier was boarded at 03-56 N 098-47E, at the Belawan Anchorage. Robbers boarded the vessel and stole ship's stores from forecastle bosun store and escaped. The theft was discovered after the robbers had left the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.783333299686319, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-79", + "dateofocc": "2013-03-26", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 26 March, an anchored bulk carrier was boarded at 03-40S 114-26E, at the Taboneo Anchorage. Robbers boarded the vessel and were noticed by the alert duty crew, who informed the Duty Officer. Alarm raised and crew alerted. Upon seeing the ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.666666699714824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-80", + "dateofocc": "2013-03-25", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA:On 25 March, an anchored cargo ship was boarded at 01-42N 101-27E, at the Dumai Inner Anchorage. Five robbers armed with knives and guns boarded the vessel, took four duty crew members hostage and tied their hands with rope. Two of the hostages", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-82", + "dateofocc": "2013-03-23", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Five robbers armed with long knives in a small boat boarded the tanker from the starboard quarter using a rope. The watchman was tied up with ropes and was found when the forward watchman went to relieve him. The Duty Officer was immediately in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-83", + "dateofocc": "2013-03-22", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "TANKER NORD OPTIMISER", + "descriptio": "BANGLADESH:On 22 March, the anchored tanker NORD OPTIMISER was boarded at 22-15N 091-44E, at the Chittagong Anchorage. Robbers boarded the vessel during anchoring operations. They stole ship's stores and properties before escaping. Port authorities, Coas", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-266", + "dateofocc": "2013-08-23", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 23 August, the Marshall Islands-flagged anchored bulk carrier TEQUILA SUNRISE was boarded at 01-15S 117-36E, at the Samarinda Working Anchorage. The Deck Cadet on duty noticed the forward store had been forced open. He immediately informed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.599999999831766, -1.249999999919908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-267", + "dateofocc": "2013-08-23", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 23 August, an anchored bulk carrier was boarded at 00-16S 117-36E, at the Muara Berau Anchorage. Five robbers, armed with knives, boarded an anchored bulk carrier. Three of the robbers caught the duty crewman, threatened him with a knife on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.599999999831766, -0.266666699784764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-268", + "dateofocc": "2013-09-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA:On 4 September, an underway chemical tanker was fired upon at position 04-11N 005-34E, 20 nm south of Pennington Oil Terminal. A speed boat approached the chemical tanker with intent to board. The duty officer raised the alarm, alerted the crew a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.566666699837413, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-269", + "dateofocc": "2013-08-27", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP NADIR", + "descriptio": "BANGLADESH:On 27 August, the anchored Marshall Islands-flagged container ship NADIR was boarded while at position 22-11N 091-42E, Chittagong Anchorage. Approximately 16 robbers in two boats approached the ship. Five robbers armed with long knives boarded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-270", + "dateofocc": "2013-08-04", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "PRODUCT TANKER ST. MICHAELIS", + "descriptio": "BANGLADESH:On 4 August, the anchored Hong Kong-flagged product tanker ST. MICHAELIS was boarded at 22-11N 091-41E, at the Chittagong Anchorage. While at anchor, robbers boarded the vessel from astern. When the alarm was raised, the crew locked itself in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.683333299726485, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-271", + "dateofocc": "2013-09-03", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "VIETNAM:On 3 September, an anchored chemical tanker was boarded at 10-13N 107-02E, at the Vung Tau Anchorage. Six robbers disguised as fishermen boarded a chemical tanker at anchor. Duty crewman noticed the robbers and informed the bridge. The alarm was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.216666700032761] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-272", + "dateofocc": "2013-08-28", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM:On 28 August, the anchored Marshall Islands-flagged bulk carrier was boarded while at position 20-56N 107-19E, Cam Pha Anchorage. Six robbers boarded the ship via the anchor chain and hawse pipe by removing the cover and anchor lashing. They cut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.316666700205133, 20.933333300361255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-273", + "dateofocc": "2013-08-18", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "BARGE M3320", + "descriptio": "SINGAPORE:On 18 August, the underway Malaysian-flagged barge M3320 was boarded at 01-15N 104-07E, approximately 5.6 nm south of Tanjung Setapa. While underway, unidentified persons onboard 2-3 small wooden boats approached and boarded the barge, while in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-25", + "dateofocc": "2012-01-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "GULF OF GUINEA: A suspicious boat approached a drifting bulk carrier. Duty crew spotted the boat and raised alarm. The boat closed onto and fired upon the vessel. All crew retreated into the citadel. After nearly 12 hours the crew emerged from the citade", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.214999999908684, 3.356666699792925] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-274", + "dateofocc": "2013-08-17", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "PRODUCT TANKER MORESBY 9", + "descriptio": "INDONESIA:On 17 August, the anchored Honduras-flagged product tanker MORESBY 9 was boarded at 01-20N 104-16E, approximately 1.83 nm southeast of Teluk Ramunia. While at anchor, 10 robbers armed with machetes, wearing face masks, approached the vessel, in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.266666700241444, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-275", + "dateofocc": "2013-08-16", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER KAYU EBONI", + "descriptio": "INDONESIA:On 16 August, the anchored Panama-flagged bulk carrier KAYU EBONI was boarded at 00-16S 117-36 E, at the Muara Berau Anchorage. Five robbers armed with knives boarded the anchored bulk carrier. Three of the robbers caught the duty crewman, thre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.599999999831766, -0.266666699784764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-276", + "dateofocc": "2013-09-16", + "subreg": "72", + "hostility_": "ROBBER", + "victim_d": "CHEMICAL TANKER FEN", + "descriptio": "INDONESIA:On 16 September, a berthed chemical tanker FEN was boarded by a single robber at position 07-09S 112-40E, Gresik Port. The robber boarded the ship while the crew was busy connecting the cargo hoses. The robber broke into the paint store and sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.666666700333167, -7.150000000380544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-17", + "dateofocc": "2012-01-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "IVORY COAST: Two robbers armed with long knives boarded an anchored container ship. They took hostage the duty watchman, stole his radio, ship's stores and escaped. The watchman informed the bridge who raised the alarm. Port control informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.043055600415755, 5.218611099748898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-18", + "dateofocc": "2012-01-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "LAGOS, NIGERIA: Around ten pirates armed with guns boarded a drifting chemical tanker. The pirates destroyed the communication equipment, stole ship's cash and properties, crew's cash and belongings and escaped. One crew member was injured during the inc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.096666699946411, 5.858333299626452] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-19", + "dateofocc": "2012-01-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "JAKARTA ROADS, INDONESIA: Around seven armed robbers boarded an anchored container ship. Duty watchman found the steering gear door open and entered to investigate. The robbers caught the watchman, took him hostage, covered his eyes with plastic and stol", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.854999999965344, 6.103333299602866] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-20", + "dateofocc": "2012-01-12", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "Naval Auxiliary Ship", + "descriptio": "WESTERN INDIAN OCEAN: Six pirates in a skiff approached, fired upon and attempted to board a naval auxiliary ship underway from the stern. The naval force-protection team from the ship returned fire in self defense forcing the pirates to abort the attemp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.000000000034277, -1.616666699783423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-21", + "dateofocc": "2012-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 14-51N 056-03E at 0943Z on 12 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.050000000224429, 14.850000000330965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-22", + "dateofocc": "2012-01-17", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "PIPE LAYER", + "descriptio": "93 MILES OFF SOCOTRA ISLAND, YEMEN: Armed pirates in a skiff approached a pip layer vessel underway. The armed security team onboard showed their weapons and made their presence known. The pirates aborted the approach and moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.733333300227628, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-23", + "dateofocc": "2012-01-11", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "BALIKPAPAN INNER ANCHORAGE, INDONESIA: Three robbers armed with long knives boarded a tanker via the anchor chain. They were spotted by the duty A/B who reported to the bridge duty officer. Alarm raised. The robbers stole ship's stores and escaped in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.283333299889478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-24", + "dateofocc": "2012-01-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Lookouts onboard a tanker underway noticed six pirates in a skiff approaching their vessel at a distance of 3.5 miles. At a distance of around 300 meters the onboard unarmed security team engaged the skiff with the LRAD and the non-essential", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.283333299725541, 15.066666699694963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-26", + "dateofocc": "2012-01-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BINTAN ISLAND, INDONESIA: Four robbers wearing masks, armed with choppers and knives in a boat approached an anchored container ship. Two of the robbers attempted to board the ship by climbing the anchor chain. Duty crew noticed the robbers and informed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.701388900395614, 1.404722199892376] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-27", + "dateofocc": "2012-01-13", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CALLAO ANCHORAGE, PERU: Six robbers armed with long knives attempted to board an anchored bulk carrier via the anchor chain. Alert crew noticed the robbers, raised alarm and crew mustered. Upon hearing the alarm, the robbers aborted the attempted boardin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.205000000069504, -12.12833330038859] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-28", + "dateofocc": "2012-01-13", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ADANG BAY ANCHORAGE, INDONESIA: Five robbers boarded an anchored bulk carrier via the forecastle while duty were busy tending to cargo operations. When duty crew returned to forecastle, he saw two robbers who pushed him and escaped in a waiting boat. On", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.683333299722563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-29", + "dateofocc": "2012-01-16", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-02N 058-14E at 0814Z on 16 January. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.233333299858828, 15.033333299900676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-30", + "dateofocc": "2012-01-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL/LIFERAFTS", + "descriptio": "CHITTAGONG, BANGLADESH: While waiting at anchorage for STS operations, the duty crew onboard noticed two liferafts on Portside missing. The incident was reported to local authorities through local agents.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.726666700033718, 21.301666700251815] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-226", + "dateofocc": "2012-07-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "TOGO:Five robbers in a wooden boat approached an anchored chemical tanker. Alarm raised, crew mustered in the citadel and TOGO Navy notified. The robbers aborted the attempt and moved away upon seeing the Navy patrol boat approaching. Later, two boats w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.27500000009428, 6.041666699920199] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-227", + "dateofocc": "2012-07-21", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "EGYPT:Bulk carrier was robbed on 21 July at 31-09N 029-48E, El Dekheila Port. Six robbers in two boats approached the berthed vesel during cargo operations. Without boarding, the robbers cut and escaped with four mooring line eyes. The vessel remained al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.800000000049977, 31.150000000048692] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-228", + "dateofocc": "2012-08-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BARGE JACSON 33", + "descriptio": "NIGERIA:Accommodation barge JACSON 33 boarded on 4 August, at approximately 35 nm off the coast of Bonny, Nigeria. The offshore supply and support barge employed six Nigerian Naval personnel as an onboard security team. During the pre-dawn attack, an unk", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-229", + "dateofocc": "2012-07-27", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TOGO:Tanker approached on 27 July at 06-00N 001-17E, approximately 8 nm from Lome, Togo. Robbers in three boats approached and attempted to board the anchored vessel. The Master raised the alarm and the crew activated fire hoses to repel the boats. The r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-230", + "dateofocc": "2012-08-06", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 6 August at 06-00S 106-53E, Tanjung Priok Anchorage, Jakarta. Four robbers boarded the anchored vessel, broke into the aft store and stole ship's property. Duty O/S noticed the robbers, raised the alarm, and pursued the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-231", + "dateofocc": "2012-08-02", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:Chemical tanker boarded on 2 August at 1-43.5N 101-26.0E, Dumai Anchorage. Five robbers armed with long machetes and knives boarded the anchored chemical tanker. Three crewmembers were taken hostage and had their hands tied. The robbers stole e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.724999999794079] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-232", + "dateofocc": "2012-07-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:Chemical tanker boarded on 28 July at 07-11S 112-43E, Tanjung Perak Port, Surabaya. Two robbers armed with knives boarded the berthed vessel and stole ship's property. Later, the crew found the robbers and recovered the stolen items.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.71666670019988, -7.183333300350114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-233", + "dateofocc": "2012-07-27", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SOUTHERN RED SEA:Two white skiffs with seven armed pirates in each approached a bulk carrier from both sides while underway in the Traffic Separation Scheme south of Hanish Al Kubra Island. When the skiffs closed to within 0.2 nm of the vessel, ladders", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.64999999997093, 13.566666700096107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-234", + "dateofocc": "2012-08-10", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "SIERRA LEONE:Bulk carrier boarded on 10 August at 08-30N 013-32W, Freetown Outer Anchorage. Three robbers armed with long knives boarded the anchored vessel. The Duty Officer spotted the robbers and raised the alarm. The crew mustered and the Master noti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.533333299611172, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-235", + "dateofocc": "2012-08-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "BANGLADESH:Container ship boarded on 9 August at 22-09N 091-44E, Chittagong Inner Anchorage. A gang of approximately 10 robbers armed with long knives boarded the anchored vessel from the stern, captured one crewmember and threatened him with their knive", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.149999999757654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-236", + "dateofocc": "2012-08-10", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:At 0600Z on 10 August, a vessel was attacked from a dhow in 03-22S 083-12E, but managed to evade a hijacking.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.199999999798422, -3.366666699615223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-237", + "dateofocc": "2012-08-21", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "GUINEA:Cargo vessel boarded on 21 August at 8-50N 013-58W, approximately 23 nm southwest of Conakry Port. Seven armed robbers in a fast boat boarded the anchored vessel during heavy rain. Six of the robbers boarded the vessel and entered the bridge by br", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.966666700137864, 8.833333300239758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-238", + "dateofocc": "2012-08-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH:Bulk carrier boarded on 17 August at 21-52N 091-41E, Kutubdia Anchorage. An unknown number of robbers boarded the anchored vessel,stole ship's stores and escape unnoticed. The theft was later discovered by a duty crewman while making rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.683333299726485, 21.86666669955514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-84", + "dateofocc": "2013-03-21", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER GLOBAL ANDES", + "descriptio": "INDONESIA:On 21 March, the anchored bulk carrier GLOBAL ANDES was boarded at 07-05S 112-39E, at the Gresik Inner Anchorage. Four robbers boarded the bulk carrier, forced their way into the forward store, and stole ship's property. When noticed by the cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.65000000043608, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-85", + "dateofocc": "2013-03-30", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER SEA HERMES", + "descriptio": "NIGERIA:On 30 March, the tanker SEA HERMES was fired upon at 03-57N 006-41E, approximately 22 nm ssw of Bonny. A small skiff containing 8 to 10 pirates was sighted fast approaching the tankers starboard bow. Master and Duty Officer flashed a light and sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.68333329967561, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-86", + "dateofocc": "2013-04-02", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP ALPHA KIRAWIRA", + "descriptio": "SOMALIA:On 02 April, the cargo ship ALPHA KIRAWIRA was fired upon at 00-52N 044-01E, approximately 13nm South of Baraawe. Around seven to eight armed pirates in a skiff approached and fired upon a general cargo ship underway. The on board armed security", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.016666699866789, 0.866666699775351] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-87", + "dateofocc": "2013-04-03", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER SHER E PUNJAB", + "descriptio": "INDONESIA:On 3 April, an anchored bulk carrier SHER E PUNJAB was boarded at 01-43S 116-38E at the Adang Bay Anchorage. Two robbers armed with a gun and knives boarded the vessel from the forecastle and held a duty crewman hostage at knifepoint. The Duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.71666670041617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-88", + "dateofocc": "2013-03-30", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG BOURBON LIBERTY 308", + "descriptio": "SINGAPORE:On 30 March, the tug BOURBON LIBERTY 308 was boarded at 1-20N 104-04E. Pirates boarded the vessel and left several hours later, presumably after robbing the crew and stealing vessel's valuables.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.066666699875213, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-239", + "dateofocc": "2012-08-17", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDIAN OCEAN:Vessel attacked in 01-16N 058-07E at 170952Z August.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.116666700052974, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-89", + "dateofocc": "2013-03-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING TRAWLERS", + "descriptio": "BANGLADESH:On 25 March, three fishing trawlers were hijacked in the vicinity of 21-26N 091-35E, approximately 20 nm off the coast of Cox's Bazaar. A gang of 20 to 25 pirates attacked the 34 fishermen onboard the three trawlers. The crews were beaten, sho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.583333299993058, 21.433333299927767] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-90", + "dateofocc": "2013-03-27", + "subreg": "63", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "VESSEL SEA PIONEER", + "descriptio": "MALDIVES:Vessel SEA PIONEER reported possible mothership activity in 07-40.1N 074-14.5E.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [74.241666699787515, 7.668333299837855] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-91", + "dateofocc": "2013-03-28", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "FISHING VESSEL", + "descriptio": "SOMALIA:On 28 March, a fishing vessel was hijacked at 11-52N 051-18E, off Raas Caseyr. Pirates boarded and hijacked the vessel and took her 20 crew members hostage. Vessel was rescued later that day. The vessel and crew members were unharmed and proceede", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [51.300000000295654, 11.866666700131077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-92", + "dateofocc": "2013-04-05", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "TANKER NEW CENTURY", + "descriptio": "INDIA:On 05 April, the tanker NEW CENTURY experienced an attempted boarding at 17-39N 083-24E, at the Visakhapatnam Anchorage. Seven robbers in three fishing boats approached the anchored vessel. Two robbers managed to reach the ship's rail using hooks a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.400000000164596, 17.650000000061766] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-93", + "dateofocc": "2013-04-09", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER WESTGATE", + "descriptio": "VIETNAM:On 09 April, robbers boarded the berthed bulk carrier WESTGATE at 10-34N 107-01E, at the Ho Chi Minh Port, and stole items from the vessel. They robbers escaped undetected.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.016666700105532, 10.566666699999075] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-94", + "dateofocc": "2013-04-06", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER MAERSK BERING", + "descriptio": "INDONESIA:On 06 April, robbers boarded the anchored tanker MAERSK BERING at 03-56N 098-41E, at the Belawan Anchorage and stole items from the vessel. The robbery was reported to authorities and local agent, who laterr informed the Master that the robber'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-95", + "dateofocc": "2013-04-04", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER GARDEN CITY RIVER", + "descriptio": "INDONESIA:On 04 April, robbers boarded the anchored crude oil tanker GARDEN CITY RIVER at 01-42N 101-29E, at the Dumai Anchorage. The robbers stole engine spares and escaped unnoticed. The theft was not detected until the following day when bare foot pri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-96", + "dateofocc": "2013-04-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER IVER EXACT", + "descriptio": "INDONESIA:On 03 April, four men in a small boat approached the anchored chemical tanker IVER EXACT at 01-42N 101-25E, at the Dumai Anchorage. Upon detecting the boat, the duty officer shouted at them using loudhailer and flashed a light. The watchman ble", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.416666699744553, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-97", + "dateofocc": "2013-03-29", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 29 March, an anchored bulk carrier was boarded at 01-11S 117-16E, at the Belawan Anchorage. Two robbers armed with long knives boarded the vessel and stole ship's stores from the forecastle store. They were spotted by the crew and the alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.266666699762482, -1.18333330015605] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-277", + "dateofocc": "2013-09-15", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:On 15 September, anchored chemical tanker CARTOLA was boarded by four robbers at position 01-04N 103-38E Nipah Anchorage. Duty crew noticed four robbers on the poop deck. Duty officer was informed, alarm raised and crew mustered. Seeing alerted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-278", + "dateofocc": "2013-08-31", + "subreg": "26", + "hostility_": "Unknown boarder", + "victim_d": "Catamaran", + "descriptio": "PANAMA:On 31 August, an anchored catamaran experienced an attempted boarding at position 09-38N 079-34E, Isla Grande Anchorage. Vessel¿s owner heard voices outside the boat while anchored late at night and investigated. He found one person attempting t", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.566666699741234, 9.633333299905871] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-279", + "dateofocc": "2013-09-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 23 September, robbers boarded the Marshall Islands-flagged tanker Armada Ali at position 01-07N 103-37E, Nipah Anchorage. Three robbers armed with knives boarded an anchored tanker during transfer operations. Duty crewmen challenged the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-270", + "dateofocc": "2012-09-14", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "MALAYSIA:Tanker engaged in ship-to-ship transfer operations was boarded by six robbers in a speed boat armed with a gun and long knives. Crewmembers were taken hostage. The robbers escaped in their speed boat after having stolen personal belongings and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.083333299915296, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-280", + "dateofocc": "2013-09-23", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Offshore supply tug", + "descriptio": "MALAYSIA:On 23 September, underway offshore supply tug JM DAMAI experienced a boarding at position 04-52N 104-05 E, approximately 22 nm east-northeast of Pulau Tenggul. Eight pirates wearing masks armed with a hand gun and long knives in a high speed cra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.08333329994764, 4.866666699904727] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-281", + "dateofocc": "2013-09-21", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk freighter", + "descriptio": "INDONESIA:On 21 September, anchored bulk freighter USOLIE was boarded at position 00-16S 117-41E, Samarinda Anchorage. Ten robbers armed with knives and steel bars boarded the ship during cargo operations. They took hostage a duty crewman conducting rout", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.683333299667993, -0.299999999754334] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-282", + "dateofocc": "2013-10-01", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 1 October at 0355 local time, four robbers in a wooden boat approached and boarded an anchored chemical tanker at position 01-10N 103-58 E, the Batam Anchorage. When a crewmember noticed the robbers, he raised the alarm and the crew mustered", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-283", + "dateofocc": "2013-09-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 27 September at 1440 local time, five robbers in a wooden boat approached an anchored tanker at position 3-58N 98-45E, Belawan Anchorage. One robber managed to board via the hawse pipe. When the duty seaman noticed the robber, he raised alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.96666669960581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-284", + "dateofocc": "2013-09-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 21 September, at 2230 local time, duty crew on board an anchored tanker in the Jakarta Anchorage noticed five robbers disembarking the vessel and escaping in a small unlit boat near the stern. The alarm was raised and all crew mustered. U", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.083333299685023] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-285", + "dateofocc": "2013-10-06", + "subreg": "25", + "hostility_": "Unknown", + "victim_d": "Sailing vessel", + "descriptio": "GRENADA:On 6 October between 0145 and 0430, perpetrator(s) boarded sailing vessel SOULMATIE in Prickly Bay by Calabash beach. The owners were not present when the incident occurred, but found the perpetrator(s) forced open the locked companionway and sto", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.699999999761474, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-286", + "dateofocc": "2013-10-03", + "subreg": "25", + "hostility_": "Unknown", + "victim_d": "Sailing vessel", + "descriptio": "ST. VINCENT AND THE GRENADINES:On 3 October at 2040, a group of men with machetes boarded sailing vessel RAINBOW off Union Island at Frigate Island. They attacked the two people onboard; one of whom fought off the attackers. Local rescue, Coast Guard, an", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.399999999661816, 12.600000000033333] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-287", + "dateofocc": "2013-09-26", + "subreg": "24", + "hostility_": "Unknown", + "victim_d": "Catamaran", + "descriptio": "TOBAGO:On 26 September at 0100, four men boarded a cruising catamaran in Bloody Bay. A crewmember was restrained and threatened with a pistol while the captain attempted to repel the men and was hit with the flat side of his own machete. Another captain", + "hostilityt": 5, + "hostilit_D": "Unknown", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.599999999995646, 11.299999999901388] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-288", + "dateofocc": "2013-09-23", + "subreg": "53", + "hostility_": "Robbers", + "victim_d": "Sailing vessel", + "descriptio": "ITALY:On 23 September, robbers stole a dinghy from the owners of an anchored sailing vessel at Portopalo di Capo Passero in Sicily had used to access the pier. The owners returned the next morning to file a police report.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [15.099999999664533, 36.699999999643637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-31", + "dateofocc": "2012-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF OMAN: Petroleum Tanker HAPPY BIRD fired upon by pirates in two skiffs on 12 January near position 14-51N 056-03E, approximately 170 nm southeast of Salalah, Oman. Onboard security team returned fire, prompting skiffs to break off attack and depar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.050000000224429, 14.850000000330965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-32", + "dateofocc": "2012-01-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "DUAMI INNER AHCNORAGE, INDONESIA: Four robbers armed with knives boarded an anchored tanker. They entered the engine room, tied up the duty engineer and stole ship's stores. They took the duty engineer to the stern and disembarked into a waiting boat. No", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.456666699997641, 1.704999999667507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-89", + "dateofocc": "2015-04-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Merchant Ship", + "descriptio": "MALAYSIA:On 25 April, two robbers boarded an underway merchant ship approximately 7 nm south of Pengerang. The robbers were spotted by a duty crewman who raised the alarm. The robbers escaped empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-33", + "dateofocc": "2012-01-03", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MANILA ANCHORAGE, PHILIPPINES: A container ship at anchor was boarded by a group of people via the anchor chain. When bosun went forward to heave up anchor he noticed the hawse pipe cover open and small boat moving away from the ship. On investigating i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.885000000158243, 14.609999999711647] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-34", + "dateofocc": "2012-01-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA: Armed robbers boarded an anchored chemical tanker and held the duty motor man as hostage. The duty engineer noticed the robbers and informed the duty officer who raised the alarm. Upon hearing the alarm, the robbers esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-35", + "dateofocc": "2012-01-21", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "CHITTAGONG OUTER ANCHORAGE, BANGLADESH: Duty watchman onboard an anchored bulk carrier heard a small boat apprach the vessel. He then noticed movement on the forecastle deck and informed the duty officer. On reaching the forcastle the duty watchman and d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.736666699647344, 22.233333299593937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-36", + "dateofocc": "2012-01-23", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "DAR ES SALAAM, TANZANIA: Two skiffs with five pirates in each skiff approached a chemical tanker underway. Vessel enforced anti-piracy measures, increased speed, deployed security team. When skiff approached closer to the vessel, the security team fired", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.333333299877097, -6.683333299884282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-37", + "dateofocc": "2012-01-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "RED SEA: Security team onboard a bulk carrier underway reported two skiffs were approaching the vessel. There were a total of seven skiffs in the vicinity. The 1st skiff had six pirates armed with AK47s. No weapons were seen in the 2nd skiff which had fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.030833299778635, 13.206666699616846] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-38", + "dateofocc": "2012-01-12", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "ARABIAN SEA: Pirates in skiffs approached a LPG tanker underway. The tanker enforced anti-piracy measures, sent distress message and ordered armed guards to standby. When skiffs approached closer than 1000 meters, warning shots were fired and the skiffs", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [56.533333299893798, 14.861666699971636] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-39", + "dateofocc": "2012-01-25", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "KANDLA ANCHORAGE, INDIA: Ten robbers boarded an anchored general cargo ship, stole ship stores and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.016666700086944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-40", + "dateofocc": "2012-01-14", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "GULF OF ADEN: Five armed pirates boarded and hijacked a Dhow and took her eight crew members as hostage. The pirates released fire crew members at Ras Hafoon and maintained control over the remaining three crew and the Dhow.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.133333299834305, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-41", + "dateofocc": "2012-01-28", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDIAN OCEAN: A general cargo ship underway noticed a mother ship lowering a skiff. The skiff with five armed pirates was seen approaching the vessel. The onboard armed security team fired warning flares which were ignored by the skiff. As the skiff appr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [58.233333299858828, 4.91666669977144] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-42", + "dateofocc": "2012-01-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "SANDAKAN INNER ANCHORAGE, SABAH, MALAYSIA: Robbers boarded an anchored chemical tanker. Duty A/B on rounds sighted the robbers armed with long knives and immediatedly informed the duty officer. Seeing crew alertness the robbers escaped with stolen ship's", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-43", + "dateofocc": "2012-01-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "MAKASSAR STRAIT: Bulk carrier boarded on 28 January by four robbers armed with a gun and knives while anchored at position 01-43S 116-38E, Adang Bay Anchorage. The robbers tried to attack a nearby deckhand, who managed to escape and inform the duty offic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.633333299768992, -1.71666670041617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-44", + "dateofocc": "2012-01-27", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF TONKIN: Container ship boarded on 27 January by eight robbers armed with long knives while anchored at position 20-38N 106-53E, Haiphong Anchorage. The robbers took the duty deckhand hostage and forced him into the bosun stores locker and tied hi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, 20.633333300261654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-240", + "dateofocc": "2012-08-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "NIGERIA:Pirates armed with AK-47 assault rifles approached and boarded an anchored barge. They opened fire, killing two naval security officers and injuring two crew members. The pirates stole vessels property and cash and escaped. Incident was reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.666666699603184, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-241", + "dateofocc": "2012-08-21", + "subreg": "51", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "GUINEA:Armed pirates attacked and boarded a cargo vessel. All crew members immediately took shelter in the citadel. The pirates damaged bridge windows, ransacked crew cabins, stole cash and personal effects, and escaped. Master contacted Conakry Port Con", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.971666700394337, 9.264999999840086] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-242", + "dateofocc": "2012-08-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "TOGO:Eight robbers in a wooden craft approached and attempted to board an anchored chemical tanker using a hook attached to a long pole. Alert watchstanders spotted the robbers and raised the alarm. All crew was mustered. Upon seeing crew alertness, the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.266666699608436, 6.050000000406101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-243", + "dateofocc": "2012-08-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER ENERGY CENTURION", + "descriptio": "TOGO:Tanker Energy Centurion hijacked on 28 August at 05-52N 001-24E, Lome Anchorage. An unknown number of pirates boarded and hijacked the vessel. Togo Navy dispatched a patrol boat, which intercepted the tanker and ordered her to stop. The hijacked tan", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.400000000210753, 5.866666699937014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-244", + "dateofocc": "2012-08-28", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 28 August at 00-15S 117-35E, Muara Berau anchorage. An unknown number of robbers boarded the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-245", + "dateofocc": "2012-08-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "SINGAPORE:Tug boarded on 19 August at 01-00N 103-39E, 6.6 nm southeast of Pulau Tekong Kecil. An unknown number of robbers boarded the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-246", + "dateofocc": "2012-08-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "SINGAPORE:Tug boarded on 17 August at 01-04N 103-42E, Singapore Strait. An unknown number of robbers boarded the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.700000000011698, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-247", + "dateofocc": "2012-07-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA:Tug boarded on 23 July at 01-14N 103-0 E, Singapore Strait. An unknown number of robbers boarded the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.016666699976156, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-248", + "dateofocc": "2012-08-28", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TOGO:Armed pirates boarded and hijacked an anchored tanker. The TOGO Navy received the vessel's distress call and dispatched a patrol boat, which intercepted the tanker while underway. Orders to stop the vessel were ignored and the pirates opened fire at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.266666699608436, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-249", + "dateofocc": "2012-08-18", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TOGO:A gang of approximately 16 pirates armed with machine guns boarded a tanker drifting within an anchorage area. The pirates hijacked the vessel and sailed her to an unknown location, while sabotaging the ship's communication equipment, speed boats, r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.233333299814092, 5.833333300142726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-250", + "dateofocc": "2012-09-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER ABU DHABI STAR", + "descriptio": "NIGERIA:Tanker Abu Dhabi Star was boarded and hijacked by pirates on the evening of 4 September at 06-11N 002-55E, Lagos Anchorage. All crew members locked themselves in the citadel safe room.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.916666699706752, 6.183333300109098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-251", + "dateofocc": "2012-09-04", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:Chemical tanker boarded on 4 September at 01-04N 104-08E, Kabil Port anchorage. Four robbers boarded the berthed vessel and entered the engine room, where a crewman confronted them. One of the robbers assaulted the crewman, who then retreated i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-106", + "dateofocc": "2013-04-01", + "subreg": "53", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "BULK CARRIER CONDOR", + "descriptio": "LIBYA:On 01 April, the underway bulk carrier CONDOR experienced a suspicious approach at 34-50N 014-40E, approximately 133nm North-northeast of Tripoli. A group of boats were discovered off the ship's port side. Security team took \"shooting\" position. Cr", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [14.666666699861878, 34.833333300181266] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-252", + "dateofocc": "2012-09-02", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 2 September at 00-13S 117-35E, Muara Berau Anchorage. Five robbers in a speed boat approached and boarded the anchored vessel, broke into the paint and boatswain stores and stole ship's stores and properties. The master", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-253", + "dateofocc": "2012-08-31", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 31 August at 00-13S 117-35E, Muara Berau Anchorage. An unknown number of robbers boarded the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-98", + "dateofocc": "2013-03-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "NIGERIA:Armed pirates attacked and boarded a supply ship underway. at 3-57.3N 5-21.0E, about 57 nm WSW of Brass.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.349999999574038, 3.954999999965139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-99", + "dateofocc": "2013-04-14", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP", + "descriptio": "ECUADOR:On 14 April, a cargo ship under pilotage was boarded at 02-18S 079-55W, at Guayaquil. A group of armed robbers in a boat approached and boarded a container ship departing from the berth. The alarm was raised and the crew mustered in the accommoda", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.916666699707605, -2.299999999818965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-100", + "dateofocc": "2013-04-13", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "TANKER UNIQUE GUARDIAN", + "descriptio": "PERU:On 13 April, an anchored tanker UNIQUE GUARDIAN was boarded at 04-34S 081-19W, at the Talara Anchorage. Duty watch man on board an anchored chemical tanker sighted two robbers armed with long knives and notified C/O who raised the alarm. Upon hearin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.316666699572977, -4.566666700013741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-101", + "dateofocc": "2013-04-16", + "subreg": "57", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER CAP THEODORA", + "descriptio": "GULF OF GUINEA:On 16 April, the underway tanker CAP THEODORA was fired upon at 01-48N 006-46E approximately 36 nm west-northwest of Principe Island. The crew raised the alarm, activated the SSAS, initiated distress signals, and started the fire pump. Cre", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 1.800000000043781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-102", + "dateofocc": "2013-04-11", + "subreg": "51", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP RMS BAERL", + "descriptio": "SIERRA LEONE:On 11 April, the anchored cargo ship RMS BAERL was boarded at 08-30N 013-11W at Freetown Inner Roads. Master on board the anchored general cargo ship noticed a boat approaching and sent the able bodied seaman (AB) to investigate. Master then", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.183333299644801, 8.50000000017053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-103", + "dateofocc": "2013-04-13", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER DENSA JAGUAR", + "descriptio": "INDONESIA:On 13 April, the berthed bulk carrier DENSA JAGUAR was boarded at 07-05S 112-39E, at the Surabaya Port. Three robbers in a small boat armed with long knives approached the berthed ship. Duty A/B noticed the robbers, informed the D/O and retreat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.65000000043608, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-104", + "dateofocc": "2013-04-16", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP SHAMROCK", + "descriptio": "COLOMBIA:On 16 April, the anchored cargo ship SHAMROCK was boarded at 10-22N 075-33 W, at the Cartagena Inner Anchorage. The Officer of the Watch (OOW) observed a boat with several persons maneuvering in the vicinity of the vessel. Two watchmen were sent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.549999999714714, 10.366666699632901] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-105", + "dateofocc": "2013-04-15", + "subreg": "22", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP MAERSK NIENBURG", + "descriptio": "ECUADOR:On 15 April, the cargo ship MAERSK NIENBURG under pilotage was boarded at 02-18S 079-55W, at Guayaquil. A group of armed robbers in a boat approached and boarded a container ship departing from the berth. The alarm was raised and the crew muster", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.916666699707605, -2.299999999818965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-339", + "dateofocc": "2017-12-07", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 07 December, a vessel reported being attacked near 14-32N 042-47E, vicinity ofHodeida, Yemen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.783333299673927, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-107", + "dateofocc": "2013-04-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP BOSUN", + "descriptio": "NIGERIA:On 24 April, the underway cargo ship BOSUN was fired upon at 03-51N 005-40E, approximately 32 nm off the Niger Delta. The 3rd Officer observed one skiff approaching the vessel. The pirate's skiff approached from the starboard abeam, increased spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.66666669957084, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-289", + "dateofocc": "2013-09-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Fishing vessels", + "descriptio": "BANGLADESH:Between 14 and 15 September, robbers kidnapped 65 fishermen from their vessels from the sea and in the Sundarbans, near Dublar Char. The robbers looted fish and nets worth about $12,846, and demanded a ransom of approximately $1,285 for each f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.500000000092086, 21.799999999791282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-290", + "dateofocc": "2013-10-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product tanker SKS DONGGANG", + "descriptio": "INDONESIA:On 7 October at 0342 local time, four robbers with knives boarded product tanker SKS DONGGANG performing ship-to-ship transfer (STS) operations near position 01-08N 103-25E, Karimun Transhipment Area. One robber remained in their boat. Another", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-291", + "dateofocc": "2013-10-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 7 October at 0345 local time, five robbers boarded anchored tanker PIONEER EXPRESS during STS operations near position 01-08N 103-25E, Karimun Transhipment Anchorage. Robbers boarded via the poop deck and attempted to enter the accommodation", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-292", + "dateofocc": "2013-10-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 6 October at 0410 local time, six robbers dressed in black boarded anchored tanker ARMADA ALI near position 01-09N 103-35E Nipah anchorage and tried to enter the accommodation area. The alert duty officer raised the alarm and sounded the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-293", + "dateofocc": "2013-10-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 6 October at 0242 local time, robbers attempted to board an anchored tanker that was preparing for STS operations near position 01-09N 103-35E, Nipah anchorage. The duty crewmember noticed suspicious boats near aft of the vessel. As he appro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-294", + "dateofocc": "2013-10-05", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 5 October at 0040 local time, robbers with knives boarded anchored tanker HS CARMEN that was awaiting cargo operations near position 08-10S 117-33E, Santan anchorage. The duty crew noticed movements at the forecastle, informed the bridge, an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -8.166666700310032] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-295", + "dateofocc": "2013-09-26", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 26 September at 0200 local time, eight robbers armed with knives boarded anchored bulk carrier ROSALIA D'AMATO at position 01-02S 117-15E, the the Samarinda Anchorage. They stole ship's stores and departed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.249999999865395, -1.03333329965659] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-296", + "dateofocc": "2013-09-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tugboat", + "descriptio": "SINGAPORE:On 22 September at 0735, crew onboard underway tug BUDGET 17 in the Malacca Strait TSS Westbound Lane notice multiple people onboard the barge in tow BUDGET 27 that were stealing iron scrap metal pieces. There were three small boats in the vici", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.700000000011698, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-297", + "dateofocc": "2013-09-11", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 11 September, four robbers boarded a tanker engaged in STS operations at Nipah anchorage via the poop deck. The alert crewmembers deterred the robbers; the robbers then retreated. The port authorities were notified of the incident by radio b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.19999999957821, -0.99999999968702] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-298", + "dateofocc": "2013-10-01", + "subreg": "24", + "hostility_": "ROBBERS", + "victim_d": "FISHING VESSELS TARA 1 AND OMI 5", + "descriptio": "SURINAME:On 1 October at 1100, fishing vessels TARA 1 and OMI 5 were attacked near Coronie in the Corentyne River. Five masked men armed with cutlasses attacked the TARA 1, threw two tied-up fishermen overboard, and kidnapped a third. They destroyed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.116666700229302, 5.899999999906584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-299", + "dateofocc": "2013-10-15", + "subreg": "61", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "MOZAMBIQUE:On 15 October at 2050 local time, three robbers with knives approached a berthed container ship in a small wooden boat near position 19-49S 034-50E, Berth Number Five in Beira Port. One of the robbers boarded the ship and was noticed. The alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.833333300181266, -19.81666669983241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-301", + "dateofocc": "2013-10-09", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "FISHING TRAWLERS", + "descriptio": "BANGLADESH:On 9 October, unidentified individuals fired at two fishing trawlers in the Bay of Bengal near Charfashion Upazila. They hijacked a fishing trawler and kidnapped 21 fishermen onboard. Twenty-two fishermen jumped into the sea and were later res", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.833333300193601, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-45", + "dateofocc": "2012-01-27", + "subreg": "24", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BRAZIL: Bulk carrier experienced an attempted boarding on 27 January while at anchor at 00-02N 050-59W, Macapa Anchorage, Amazon River, Brazil. The deck watch crew noticed four robbers climbing up the anchor chain and trying to remove the hawse pipe cove", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-50.983333299608205, 0.033333300314894] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-46", + "dateofocc": "2012-01-26", + "subreg": "22", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "COLOMBIA: Container ship chased on 26 January by three suspected armed pirates while underway near position 02-26N 079-18W, approximately 45 miles from Tumaco, Colombia. The suspected pirates were described as wearing \"black military style uniforms\". The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.299999999611146, 2.433333300212666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-47", + "dateofocc": "2012-02-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "POINT NOIRE ANCHORAGE, THE CONGO:Duty watch onboard an anchored container ship noticed wet foot prints on the deck and the padlock to the bowthruster room broken. He informed the OOW who noticed a small boat alongside the vessel near the starboard midshi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.7833332995707, -4.766666700379915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-48", + "dateofocc": "2012-02-01", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "BATAM OUTER ANCHORAGE, INDONESIA: Robbers boarded an anchored chemical tanker, stole ship's stores and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-49", + "dateofocc": "2012-02-06", + "subreg": "91", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "MANILA MICT ANCHORAGE, PHILIPPINES: A duty crew onboard an anchored container ship waiting for pilot was taken hostage by robbers using a long knife. They tied up the duty crew, hit him and stole ship's stores. Another crew approaching the anchor station", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.888333300387671, 14.611666699738691] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-50", + "dateofocc": "2012-02-06", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Pirates in two white colored skiffs approached a chemical tanker uderway. OOW informed the Master who raised teh alarm and activated anti-piracy measures. As the skiffs approached, the onboard security team fired warning shots which were ig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.133333300384095, -5.049999999683109] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-51", + "dateofocc": "2012-02-07", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "STRAIT OF MALACCA, KARIMUN STS ANCHORAGE: Three robbers armed with rods boarded an anchored product tanker. Duty crew on rounds sighted the robbers on the poop deck and immediately raised the alarm. Seeing the alerted crew, robbers escaped empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.478333300391228, 1.103333300340523] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-52", + "dateofocc": "2012-02-08", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "VLCC", + "descriptio": "WESTERN INDIAN OCEAN, EAST OF SEYCHELLES ISLAND: OOW onboard a VLCC sighted two skiffs approaching. The VLCC increased speed to maimum and made evasive maneuvers and applied anti piracy measures. The skiff had five pirates carrying guns and a ladder. Onb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.983333299690571, -4.299999999883653] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-53", + "dateofocc": "2012-02-08", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "ARABIAN SEA: Merchant vessel hijacked in 13-32N 058-36E on 8 February at 1438Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [58.599999999722343, 13.53333330030182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-54", + "dateofocc": "2012-02-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "GHANA: Offshore tug boarded by four robbers on 9 February while berthed at position 04-53N 001-45W, Takoradi Port. The robbers, armed with long knives, threatened duty watchman and stole ship's stores, and escaped in a waiting canoe. No crew injuries and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.750000000385739, 4.883333299977096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-55", + "dateofocc": "2012-02-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Bulk carrier hijacked on 7 February while underway near position 16-03N 062-26E, approximately 520 miles off Socotra Island, Yemen. UKMTO was first notified about the potential hijacking when the vessel owner informed them that he could not", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.433333300354377, 16.049999999830163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-56", + "dateofocc": "2012-02-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "RED SEA: About 6-7 pirates in each skiff chased a general cargo ship and approached within 200 meters with intnet to board. The vessel enforced anti-piracy measures and contacted warship on VHF. The skiffs aborted the attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.318333300136374, 12.738333299992803] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-57", + "dateofocc": "2012-02-06", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "RED SEA: Pirates in two skiffs chased a LPG tanker underway and approached within .2 miles. The tanker enforced anti-piracy measures, altered course and managed to evade the attack.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.291666699551058, 12.730000000406278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-58", + "dateofocc": "2012-02-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCT TANKER", + "descriptio": "BENIN: Product tanker boarded on 9 February while adrift, awaiting orders, near position 04-57 N 002-16 E, approximately 83 nm South of Cotonou. Pirates boarded and hijacked the ship and sailed to an unknown location. Awaiting further reporting. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.278333300355996, 4.961666700281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-254", + "dateofocc": "2012-08-31", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:Bulk carrier boarded on 31 August at 01-42N 10127E, Dumai Anchorage. Three armed robbers carrying long knives approached and boarded the anchored vessel.The robbers took several crew members hostage but other crew members who saw the boarding w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-255", + "dateofocc": "2012-09-09", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "OIL TANKER", + "descriptio": "NIGERIA:Oil tanker fired upon while underway on 9 September at 06-09N 002-53E, approximately 34 nm southwest of Lagos during voyage from Lome to Lagos. An unknown number of pirates fired several shots at the vessel in an attempt to board. Non-essential c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.883333299912408, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-256", + "dateofocc": "2012-09-07", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIA:Chemical tanker hijacked on 7 September near 21-40N 088-01E, Sagar Anchorage, Haldia. Four armed robbers carrying knives and rods boarded the anchored vessel from the aft. Duty crew members spotted the robbers and immediately informed the Chief Of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.016666700390374, 21.666666700088285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-257", + "dateofocc": "2012-09-11", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:Container ship boarded on 11 September at 03-54N 098-46E, at Belawan Anchorage. Five robbers approached the anchored vessel in a small boat. Two robbers boarded the vessel and broke into the forward storeroom, stealing ship's property. Upon see", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-258", + "dateofocc": "2012-09-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "LPG TANKER", + "descriptio": "INDONESIA:LPG tanker boarded on 8 September at 05-34S 104-36E, at Teluk Semangka Anchorage. Five armed robbers carrying sticks boarded the vessel from a small fishing boat. A duty crew member noticed the robbers and informed the bridge, who raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.600000000310615, -5.566666700046085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-259", + "dateofocc": "2012-09-03", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:Chemical tanker boarded on 3 September at 03-55N 098-46E, at Belawan Anchorage. Six armed robbers carrying guns and knives boarded an anchored chemical tanker using hook attached to a bamboo pole. A crewman noticed the robbers and attempted to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-269", + "dateofocc": "2012-09-22", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker hijacked on 22 September at 01-15N 103-09E, in the vicinity of Tanjung Piai. Six pirates boarded and robbed the vessel armed with machetes and a gun. The pirates tied up 16 crew members and escaped with cash, laptops, mobile phones and p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.083333299915296, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-260", + "dateofocc": "2012-09-05", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "NIGERIA:A large group of heavily armed pirates boarded a drifting chemical tanker. The crew shut down and disabled all machinery, retreated into the citadel, and contacted their owners for assistance. Upon receipt of this distress message, the IMB Piracy", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.933333299779122, 6.183333300109098] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-261", + "dateofocc": "2012-08-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY SHIP", + "descriptio": "CONGO:Robbers boarded an anchored supply ship and broke into various store rooms, stole ship's stores and properties and escaped Unnoticed. The theft was later noticed by the duty crew on security rounds. Incident reported to Port Authority.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-262", + "dateofocc": "2012-08-19", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "INDONESIA:Four masked robbers in a small boat armed with guns and knives approached and boarded a tug towing a barge. They took hostage all crew members, tied them up and stole cash and personal belongings before escaping. Master reported the incident to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.653333300374413, 0.95083329971277] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-263", + "dateofocc": "2012-09-08", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "LPG TANKER", + "descriptio": "CAMEROON:LPG tanker boarded on 8 September at 04-03N 009-41E, Douala Port Facility. The ship was boarded while the shore security watch was on a break. The robbers took the deck cadet hostage, and stole ship's stores. Before escaping, they released the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-264", + "dateofocc": "2012-09-19", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "BANGLADESH:Bulk carrier boarded on 19 September at 22-15N 91-45E, at Chittagong Anchorage. Two armed robbers carrying knives boarded the ship while at anchor and held a crew member hostage at knifepoint. Four additional robbers boarded the ship via the h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-265", + "dateofocc": "2012-09-21", + "subreg": "26", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "HAITI:Cargo ship was boarded on 21 September at 18-09N 072-01W, Port-Au-Prince. The anchored vessel was boarded by three armed robbers carrying machetes. A watchman conducting routine rounds discovered the robbers on the forecastle. The robbers attacked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.016666700081657, 18.149999999628278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-108", + "dateofocc": "2013-04-22", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP HANSA MARBURG", + "descriptio": "NIGERIA:On 22 April, the container ship HANSA MARBURG was boarded at 02-31N 006-50E, approximately 133nm South of Port Harcourt. Armed pirates boarded a container ship underway. They kidnapped four crew members and escaped. No injuries were reported to t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.83333330017507, 2.516666699873667] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-109", + "dateofocc": "2013-04-22", + "subreg": "57", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "OIL TANKER CAP THEODORA", + "descriptio": "GULF OF GUINEA:On 22 April, the crude oil tanker CAP THEODORA was attacked near position 03-06N 007-08E, approximately 77 nm south of Bonny, Nigeria. During this attack, the vessel was approached by a speedboat with five or six men on board while underwa", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 3.16666669993964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-110", + "dateofocc": "2013-04-18", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP CORINTH", + "descriptio": "CONGO:On 18 April, the anchored cargo ship CORINTH experienced an attempted boarding at 04-44S 011-48E, at the Pointe Noire Anchorage. Three robbers in a small boat approached and attempted to board an anchored ship. Alert duty crew spotted the robbers c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.80000000036722, -4.733333299686308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-111", + "dateofocc": "2013-04-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER LEON DIAS", + "descriptio": "NIGERIA:On 13 April, the tanker LEON DIAS was boarded at 03-48N 006-25E, approximately 30nm Southeast of Brass. Vessel issued a distress signal, reported being under attack, and boarded by pirates. Although no further details are available; it is presum", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.416666700269616, 3.800000000108469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-112", + "dateofocc": "2013-04-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "SUPPLY VESSEL GYRE, ESCORT BOAT BLUE JAY", + "descriptio": "NIGERIA:On 13 April, the offshore supply vessel GYRE and escort boat BLUE JAY were fired upon at 04-43N 008-20E, approximately 5nm South of Parrot Island. A fast boat was spotted moving on intercept course towards the OSV. Escort boat, Blue Jay, interce", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.333333299773926, 4.716666700304529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-113", + "dateofocc": "2013-04-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER NADIYA MELISENDE", + "descriptio": "INDONESIA:On 24 April, the underway tanker NADIYA MELISENDE was boarded at 01-17N 104-50E, approximately 16 nm north-northeast of Bintan Island. Pirates armed with a gun and knives boarded a product tanker and robbed the crew of cash money, personal belo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.833333299747039, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-114", + "dateofocc": "2013-04-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER AD PHOENIX", + "descriptio": "INDONESIA:On 23 April, the underway tanker AD PHOENIX was boarded at 01-19N 104-47E, approximately 15 nm north-northeast of Bintan Island. Five pirates armed with a pistol and long knives, in a high speed wooden craft, approached and boarded the asphalt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.783333299880326, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-115", + "dateofocc": "2013-04-17", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER IVS MAGPIE", + "descriptio": "VIETNAM:On 17 April, the anchored bulk carrier IVS MAGPIE was boarded in the vicinity of 20-58N 107-19E, at the Cam Pha Outer Anchorage. Three robbers boarded a bulk carrier via the forward bow and hawse pipe, unnoticed. Duty AB noticed them in the proc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.316666700205133, 20.966666700155542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-116", + "dateofocc": "2013-03-28", + "subreg": "56", + "hostility_": "ROBBERS", + "victim_d": "SUPPLY SHIP NOR CHIEF", + "descriptio": "EGYPT:On 28 March, the anchored supply ship NOR CHIEF was boarded at 31-14N 032-18E, at the Port Said Anchorage. While anchored, four robbers boarded the ship. Two duty AB's conducting security checks discovered the robbers on the main deck. Upon seeing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [32.299999999681177, 31.233333299884976] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-117", + "dateofocc": "2013-04-02", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP WEHR BLANKENESE", + "descriptio": "VIETNAM:On 02 April, the cargo ship WEHR BLANKENESE was boarded in the vicinity of 10-45N 106-42E, at the Ho Chi Minh City Port. Robber's boarded the vessel, broke the padlock to the paint store, and stole 14 drums of paint.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.70000000010873, 10.749999999568843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-118", + "dateofocc": "2013-04-01", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER CRANE", + "descriptio": "BANGLADESH:On 01 April, the bulk carrier CRANE was boarded at 22-15N 091-44E, at the Chittagong Anchorage `A'. The vessel was attacked while discharging. During a routine patrol of vessel by ship staff, approx. 6 robbers armed with long knives were foun", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-300", + "dateofocc": "2013-10-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "TANKER ISLAND SPLENDOR", + "descriptio": "SOMALIA:On 11 October at 0918 UTC, pirates in two skiffs fired upon the tanker ISLAND SPLENDOR approximately 237 nm east of Hobyo. The master raised the alarm, sounded the ship's whistle, increased speed, and mustered the crew. The armed embarked securit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [52.516666699691996, 5.316666699604468] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-302", + "dateofocc": "2013-10-09", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "TRAWLER", + "descriptio": "BANGLADESH:On 9 October, unidentified individuals boarded a trawler in the bay near the Tin Char area and stole goods, including fish fries (small fish) worth between $8,992 to $10,277.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.850000000090802, 22.000000000157456] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-303", + "dateofocc": "2013-10-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER NORD NIGHTINGALE", + "descriptio": "INDONESIA:On 12 October at 2000 local time, three robbers in a small boat approached and boarded anchored chemical tanker NORD NIGHTINGALE near position 06-10S 106-48E, Jakarta Tanker Anchorage. The alert duty crew noticed the robbers and shouted at them", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.799999999842157, -6.166666700245344] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-304", + "dateofocc": "2013-10-10", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "OIL PRODUCT TANKER DANAI 4", + "descriptio": "MALAYSIA:On 10 October at 0530 local time, nine hijackers wearing masks and carrying guns boarded underway oil product tanker DANAI 4 with a speedboat 20 nm southeast of Pulau Aur. They hijacked the tanker, took the crew hostage, and destroyed all the co", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.749999999910756, 2.199999999876866] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-305", + "dateofocc": "2013-10-10", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER PORT HAINAN", + "descriptio": "INDONESIA:On 10 October at 0315 local time, five robbers with long knives boarded anchored bulk carrier PORT HAINAN near position 01-57N 118-05E, Muara Berau anchorage, Samarinda. They held one crewmember hostage while they broke into storage and stole s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 1.949999999643978] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-306", + "dateofocc": "2013-10-20", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "LPG tanker", + "descriptio": "DOMINICAN REPUBLIC:On 20 October, a moored LPG tanker was boarded by two robbers at position 18-24N 070-01W, Rio Haina Refidomsa. Alert duty crew noticed the robbers lowering the rescue boat engine to a waiting escape boat. Alarm sounded and the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.01666670001697, 18.399999999861166] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-307", + "dateofocc": "2013-10-19", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "GUYANA:On 19 October, an anchored bulk carrier was boarded by four robbers armed with knives at position 06-48N 058-10W, Georgetown Port. The robbers threatened the duty crewman on the forecastle deck, slapped him and forced him to open the forecastle st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.8000000002055] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-308", + "dateofocc": "2013-10-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore supply vessel", + "descriptio": "NIGERIA:During the early hours of 23 October, pirates attacked the U.S.-flagged offshore supply vessel C RETRIEVER near Brass and kidnapped the captain and chief engineer, both U.S. citizens.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.233333299975811, 4.316666699572124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-309", + "dateofocc": "2013-10-20", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 20 October, an anchored tanker was boarded by three robbers at position 17-36N 083-26E, Visakhapatnam Anchorage. The robbers were able to steal ship's stores and escape when spotted by crewmembers on duty.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.433333300134166, 17.600000000195053] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-310", + "dateofocc": "2013-10-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 22 October, an anchored chemical tanker was boarded from the stern by four armed robbers at position 01-42N 101-26E, Dumai Inner Anchorage. Alert deck watch crew noticed the robbers and raised the alarm, which caused the robbers to flee empt", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-311", + "dateofocc": "2013-10-22", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "LPG tanker", + "descriptio": "INDIA:On 22 October, an anchored LPG tanker was boarded by seven armed robbers at position 22-49N 070-06E, Kandla Anchorage. They forced open the forward storeroom and stole ship's property. Duty crewman on watch noticed the robbers and raised the alarm.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.099999999644581, 22.81666669972077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-312", + "dateofocc": "2013-10-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 22 October, an anchored chemical tanker was boarded at position 03-47N 098-46E, Belawan Anchorage. Duty crew on routine rounds notice the mid-ship storeroom lock broken and ship stores stolen. Port authorities were informed. Robbers escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-313", + "dateofocc": "2013-10-19", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 19 October, Six robbers armed with long knives boarded an anchored bulk carrier via the anchor chain at position 00-14S 117-33E, Muara Berau Anchorage. The robbers took hostage two duty watchmen, tied them up, and stole their personal belong", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -0.23333329999042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-59", + "dateofocc": "2012-02-10", + "subreg": "72", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA: General cargo ship boarded on 10 February while anchored at position 07-06 S 112-39 E, Gresik Port Inner Anchorage. The robbers managed to steal ship's stores and escaped unnoticed. Incident reported to port authorities. (IMB)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.663333300279078, -7.108333300100355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-60", + "dateofocc": "2012-02-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "ARABIAN SEA, SOUTHEAST OF MASIRAH ISLAND: C/O onboard a container ship underway noticed two suspicious boats in the vicinity. He informed the Master and started tracking the boats. It was observed that a red hull fishing vessel and a white skiff were cha", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [61.53333330005546, 18.733333299930393] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-61", + "dateofocc": "2012-02-11", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP", + "descriptio": "NIGERIA: General cargo ship fired upon 11 February while underway near position05-11 N 003-27 E, approximately 74 nm south of Lagos fairway buoy. Bridge crew noticed two boats approaching from astern. As the boats closed the cargo ship, they fired upon t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.450000000142154, 5.183333300076754] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-62", + "dateofocc": "2012-02-13", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "NIGERIA: Bulk carrier boarded on 13 February while adrift while awaiting berthinginstructions near position 04-43 N 003-44 E, approximately 110 nm south of Lagos. The pirates took the chief cook hostage and forced him to take them to Master's cabin. They", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.733333300344611, 4.716666700304529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-63", + "dateofocc": "2012-02-12", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "VIETNAM: Bulk carrier at anchor boarded on 12 February while anchored at position 20-40 N 107-14 E, Cailan Outer Anchorage. A gang of seven robbers boarded using a hook and a rope. Duty crewman noticed the robbers and informed bridge who raised the ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.233333299644812, 20.666666700055941] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-64", + "dateofocc": "2012-02-07", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "ARABIAN SEA: Pirates attacked and hijacked a bulk carrier underway. Pirates sailed the vessel towards Somalia coast. Awaiting further details.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.433333300354377, 15.99999999996345] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-65", + "dateofocc": "2012-02-15", + "subreg": "63", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDIA: Tanker experienced an attempted boarding on 15 February while anchored at position 09-57 N 076-02 E, 2.5 nm south of SPM Cochin Anchorage. Approximately 20 robbers in two boats approached the tanker and attempted to board. The lookout crew noticed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.03333330007473, 9.949999999902673] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-66", + "dateofocc": "2012-02-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "LAGOS ANCHORAGE, NIGERIA: OOW on board an anchored chemical tanker noticed two heavily armed pirates on deck and raised the alarm. Master contacted the navy on VHF ch 16 but received no response. Non-essential crew locked themselves in a safe location. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-67", + "dateofocc": "2012-02-18", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN: Chemical tanker attacked on 18 February while underway near position 05-29S 064-02E, approximately 500 nm east of the Seychelles. One skiff notedapproaching ship from 2 nm. As the skiff closed to a half nautical mile, it stopped and five to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [64.03333329968666, -5.483333300385027] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-266", + "dateofocc": "2012-09-24", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "DHOW", + "descriptio": "OMAN:Dhow attacked on 24 September near 15-45 N 055-26E. An unknown number of pirates attempted a failed hijacking on the dhow.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.43333330012797, 15.749999999730505] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-267", + "dateofocc": "2012-09-25", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG/BARGE", + "descriptio": "INDONESIA:Towed barge boarded on 25 September at 01-01N 104-01E, 6.8 nm northwest of Bintan Island. Officers on watch aboard the tug noticed two robbers had boarded the barge. The Alarm was raised, SSAS was activated, and a distress call was sent on VHF.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.0166667000085, 1.016666700274811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-268", + "dateofocc": "2012-09-24", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker attempted to be boarded on 24 September at 01-01N 103-04E, at the Nipah Anchorage. Two robbers attempted to board the anchored vessel from the port quarter. An alert crew member noticed the robbers and raised the alarm, and the crew was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.06666669984287, 1.016666700274811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-271", + "dateofocc": "2012-09-13", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker hijacked on 13 September at 01-14N 103-09E, off Tanjung Piai. Six pirates hijacked the vessel in an attempt to transfer bunker fuel to a second vessel. Robbers tied up the crew and escaped with cell phones and laptops as a Coast Guard pa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.083333299915296, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-272", + "dateofocc": "2012-09-08", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "INDONESIA:Tanker boarded on 8 September at 01-49.2N 103-48.6E, 5 nm SE of Tanjung Piai, Johor. An unknown number of robbers boarded the anchored vessel during heavy rain squalls and stole ship's property items and escaped unnoticed. The theft was later", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.810000000258071, 1.820000000170353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-273", + "dateofocc": "2012-09-29", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:Three robbers armed with knives boarded an anchored chemical tanker at forecastle. They held the duty A/B at knifepoint, tied him up, and stole ship's stores. Duty officer raised the alarm upon sighting the robbers and mustered the crew. Seei", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-274", + "dateofocc": "2012-09-16", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDONESIA:While at anchor, six robbers in an unlit boat boarded a container ship using a grappling hook and rope. They broke into the safety store and the deck store and stole equipment and ship's properties. Alarm raised and crew mustered. The robbers e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.916666700372105, -6.033333299818253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-275", + "dateofocc": "2012-08-17", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "INDONESIA:During security rounds in the accommodation area, duty watchman noticed an unknown person on the main deck and notified the duty officer, who raised the alarm. Upon hearing the alarm, the robbers escaped in a small timber boat. The crew was mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.175000000094542, 1.106666700394669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-276", + "dateofocc": "2012-09-06", + "subreg": "93", + "hostility_": "PIRATES", + "victim_d": "BARGE", + "descriptio": "INDONESIA:Barge boarded on 6 September in Straits of Malacca at 09-41N 103-48E. An unknown number of robbers boarded the barge while being towed by the tug Lady Cynthia. An internal door on the port side was forced open and the robbers escaped with 40 ca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.799999999745182, 9.683333299772585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-277", + "dateofocc": "2012-10-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF GUINEA:Vessel ORFEAS possibly hijacked on 6 October at 05-12.56N 004-03.68W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.061388899615906, 5.209444400236464] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-278", + "dateofocc": "2012-10-05", + "subreg": "62", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER VESSEL", + "descriptio": "EGYPT:Container vessel boarded on 10 October near 29-27N 14-32E, at Suez Anchorage. Four robbers boarded the anchored vessel via a hawse pipe. They broke into a container and stole contents while the duty crew were tending to the Suez Canal mooring boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [32.549999999914121, 29.81666669994712] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-279", + "dateofocc": "2012-09-15", + "subreg": "56", + "hostility_": "PIRATES", + "victim_d": "BULK CARRIER", + "descriptio": "EGYPT:Bulk carrier boarded on 15 September near 31-11N 29-46E, Alexandria. An unknown number of robbers boarded the vessel while at anchor. Crewmember discovered and confronted the robbers and sounded the alarm. Upon seeing the crewmembers approaching, t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.766666700080407, 31.183333300018262] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2012-281", + "dateofocc": "2012-10-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "TOGO:Tanker hijacked on 4 October near 04-48N 001-25E. Twelve armed robbers boarded the vessel while at anchor. The 14 crewmembers were held captive under threats of harm, while the attackers transferred the ship's fuel to a waiting bunker barge. Afterwa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.416666700107896, 4.800000000140813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-119", + "dateofocc": "2013-03-28", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER THEOMETOR", + "descriptio": "INDONESIA:On 28 March, the anchored bulk carrier THEOMETOR was boarded at 01-08S 117-15E, at the Muara Jawa Anchorage, Samarinda. A/B on routine security rounds on board the ship noticed robbers near the bosun store trying to remove mooring ropes. They p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.249999999865395, -1.133333300289337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-120", + "dateofocc": "2013-04-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP CITY OF GUANGZHOU", + "descriptio": "NIGERIA:On 26 April, the underway container ship CITY OF GUANGZHOU experienced an attempted boarding at 03-48N 004-57E, approximately 83 nm west-southwest of Brass. Pirates in a boat attempted to attack a container ship underway. Master raised alarm, swi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.94999999974101, 3.800000000108469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-339", + "dateofocc": "2013-11-23", + "subreg": "71", + "hostility_": "ROBBER", + "victim_d": "CARGO SHIP", + "descriptio": "INDONESIA:On 23 November, an anchored cargo ship experienced a boarding near position 03-55N 098-45E, Belawan Anchorage. Duty officer on bridge noticed one robber escaping from the vessel. Upon investigation, the crew discovered that the robber had manag", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-121", + "dateofocc": "2013-04-25", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP CITY OF XIAMEN", + "descriptio": "NIGERIA:On 25 April, the underway container ship CITY OF XIAMEN was boarded at 04-10N 005-30E, approximately 45 nm west-southwest of Brass. Heavily armed pirates boarded underway ship. The ship raised the alarm and the crew took shelter in the citadel. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.500000000073555, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-122", + "dateofocc": "2013-04-30", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CARGO SHIP KOHINOOR", + "descriptio": "INDONESIA:On 30 April, a berthed cargo ship KOHINOOR was boarded at 03-47N 098-42E, at the Belawan Port. Robbers boarded a berthed general cargo ship while crews were involved with customs and immigration and getting the ship ready to discharge. Duty AB", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-123", + "dateofocc": "2013-04-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER FAIRCHEM MAVERICK", + "descriptio": "INDONESIA:On 27 April, the berthed tanker FAIRCHEM MAVERICK was boarded in the vicinity of 03-47N 098-42E, at the Belawan Port. Two robbers in a boat approached and boarded the berthed tanker and broke into the tank cleaning gear locker and stole the shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-124", + "dateofocc": "2013-04-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "INDONESIA:On 24 April, the underway tug was boarded at 04-10N 005-30E, approximately 53 nm north-northeast of Bintan Island. Fifteen pirates armed with guns and long knives in three high speed boats boarded a tug underway. They took hostage nine crew me", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.500000000073555, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-125", + "dateofocc": "2013-04-19", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER SINGAPORE RIVER", + "descriptio": "INDONESIA:On 19 April, the anchored tanker SINGAPORE RIVER was boarded at 01-41N 101-30E, at the Dumai Inner Anchorage. Four robbers armed with knives boarded the anchored tanker from the poop deck and caught and tied up the duty A/B at knife-point. They", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-126", + "dateofocc": "2013-04-24", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "VESSEL", + "descriptio": "GULF OF GUINEA:Possibly hijacked in 03-51.3N 005-40.5E at 242245Z APR. Vessels are advised to keep clear of this position and to exercise extreme caution.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.675000000056684, 3.855000000231655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-127", + "dateofocc": "2013-04-26", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CONTAINER SHIP", + "descriptio": "GULF OF GUINEA:On 26 April 2013 at 1830 UTC, a container ship was attacked by armed pirates around the vicinity of position 03-46N 005-08E, off Nigerian coast. The vessel increased speed and managed to evade the attack. Pirates may still be in the area", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.13333330021004, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-128", + "dateofocc": "2013-04-23", + "subreg": "71", + "hostility_": "PIRATES", + "victim_d": "TUG", + "descriptio": "SOUTH CHINA SEA:232030Z April, 01-36N 105-23E. 15 pirates armed with guns and long knives in three high speed boats boarded a tug underway. They took hostage nine crew members, assaulted some of the crew and tied them up. They ransacked all cabins, st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.383333300079585, 1.599999999677607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-130", + "dateofocc": "2013-05-05", + "subreg": "62", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:On 5 May, an underway tanker experienced an attempted boarding at 13-40N 048-30E, approximately 63 nm south-southwest of Al Mukalla, Yemen. Four high speed skiffs, with three persons in each skiff, approached the tanker in groups of two, fr", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.499999999665476, 13.666666699829534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-131", + "dateofocc": "2013-05-06", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "GULF OF GUINEA:On 06 May 2013, at 0010 UTC, a merchant vessel was attacked by pirates around the vicinity of position 05-41.0N 001-26.2E. All crew are in the citadel and TOGO Navy armed personnel onboard still monitoring the situation. Pirates may stil", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.436666700234468, 5.683333299643266] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-132", + "dateofocc": "2013-05-04", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO SHIP FRIO ATHENS", + "descriptio": "NIGERIA:On 4 May, the underway cargo ship FRIO ATHENS was fired upon at 03-49N 006-41E, approximately 33 nm southwest of Bonny. Six to eight pirates in a speed boat chased and fired upon an underway refrigerated cargo ship. The vessel enforced anti-pirac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.68333329967561, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-314", + "dateofocc": "2013-10-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 19 October, three robbers boarded an anchored tanker at position 01-25N 104-34E, 11 nm north of Tanjung Berakit, Pulau Bintann. Duty crew noticed the robbers in the engine room, raised the alarm and mustered the crew. Upon hearing the alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-315", + "dateofocc": "2013-10-30", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDIA:On 30 October, an underway chemical tanker experienced a boarding near position 22-49N 70-05E, approximately 2.5 nm SW of Outer Tuna Buoy, Kandla Anchorage. During routine rounds, duty crewman noticed two robbers boarding the vessel near the amidsh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.083333299747437, 22.81666669972077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-316", + "dateofocc": "2013-10-28", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "BANGLADESH:On 28 October, an anchored container ship experienced a boarding at position 21-50N 091-38E, Chittagong Anchorage. Duty crewman noticed five to six robbers at the poop deck while conducting routine rounds. He immediately informed bridge and th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.633333299859771, 21.833333299760852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-317", + "dateofocc": "2013-10-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Asphalt tanker", + "descriptio": "SINGAPORE STRAIT:On 30 October, an underway asphalt tanker experienced a boarding near position 01-21N 104-24E, near the Horsburgh Lighthouse. Five robbers armed with guns and long knives boarded the ship unnoticed. They took hostage the Watch Officer a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.399999999944441, 1.350000000344039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-318", + "dateofocc": "2013-10-26", + "subreg": "93", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "Chemical tanker", + "descriptio": "MALAYSIA:On 26 October, an underway chemical tanker experienced an attempted boarding near position 03-40N 103-55E, approximately 35 nm ESE of Kuantan Port. Two speed boats approached and tried to come alongside the ship while underway. Duty Officer rais", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.916666700275073, 3.666666700405472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-319", + "dateofocc": "2013-10-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 27 October, an anchored chemical tanker experience a boarding near position 03-56N 098-45E, Belawan Outer Anchorage. Three skiffs approached the ship from the stern, forward and amidships. From the aft skiff, three robbers boarded the vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-320", + "dateofocc": "2013-10-23", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 23 October, an anchored tanker experienced a boarding near position 07-05S 112-39E, Gresik Anchorage. Two robbers in a small unlit boat approached and boarded the ship. Alert crew on watch noticed the robbers near the forecastle, raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.65000000043608, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-321", + "dateofocc": "2013-11-06", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Merchant vessel", + "descriptio": "INDIAN OCEAN:On 6 November, a merchant vessel reported a pirate attack near position 05-40S 046-59E, approximately 450 nm east-southeast of Mombasa, Kenya. The ship reported being attacked by five heavily armed pirates in one skiff, with the pirates rep", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.983333300169477, -5.666666699779512] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-322", + "dateofocc": "2013-11-02", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "INDIA:On 2 November, an anchored container ship experienced a boarding near position 21-40N 088-01E, Sagar Anchorage. 15 armed robbers boarded the ship and were spotted by ship's duty officer, who raised the alarm. The robbers were stealing ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.016666700390374, 21.666666700088285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-323", + "dateofocc": "2013-11-04", + "subreg": "71", + "hostility_": "robbers", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:On 4 November, an anchored chemical tanker experienced an attempted boarding near position 03-54N 098-46E, Belawan Anchorage. Duty crew spotted one boat with robbers attempting to board the tanker via anchor chain but alert crew thwarted the bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-324", + "dateofocc": "2013-11-11", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "Chemical tanker Torm Kansas", + "descriptio": "INDIAN OCEAN:On 11 November, the Denmark-flagged chemical tanker TORM KANSAS was attacked near position 07-19S 048-36E, approximately 180 nm northwest of Providence Island, Seychelles. Up to six armed pirates approached the tanker in a skiff. Officer on", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.600000000298223, -7.316666699877828] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-50", + "dateofocc": "2015-03-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 18 March near position 01-16N 104-16E, three robbers boarded an underway bulk carrier. The duty crew noticed the robbers and informed the bridge. The alarm was raised and all of the crew mustered at the bridge. The master informed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.266666700241444, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-51", + "dateofocc": "2015-03-20", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "MALAYSIA:On 20 March near position 06-00N 119-13E, persons in four speed boats approached a bulk carrier underway. The master raised the alarm, called the Malaysian Navy via VHF channel, increased speed and took evasive maneuvers. The crew mustered and a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.216666699960456, 5.999999999640067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-52", + "dateofocc": "2015-03-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 20 March near position 01-14N 103-58E, four robbers boarded a bulk carrier underway. The duty engineer spotted the robbers and informed the bridge. Alarm was raised, the crew mustered and the master informed the Vessel Traffic Informa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-53", + "dateofocc": "2015-03-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply Vessel", + "descriptio": "NIGERIA:On 19 March near position 04-14N 008-02E, around 19 nm south of Kwa Ibo, six pirates armed with rifles boarded a supply vessel. The master raised the alarm and sent an SSAS alert. The crew mustered. Two crew members were kidnapped and ship's prop", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.033333299674268, 4.233333299911124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-54", + "dateofocc": "2015-03-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "SINGAPORE STRAIT:On 20 March near position 01-07N 103-34E, seven robbers with knives boarded an underway container ship. They robbed the 2nd engineer of his personal belongings, tied him up and escaped. The duty wiper on routine rounds noticed the 2nd en", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-55", + "dateofocc": "2015-03-23", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "COLOMBIA:On 23 March, two robbers boarded a sailing yacht near position 10-24N 075-32W, Club Nautico, Cartagena. The owner of the yacht yelled a warning at the robbers, who jumped overboard to escape.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.399999999602471] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-56", + "dateofocc": "2015-03-25", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Refrigerated Cargo Ship", + "descriptio": "IVORY COAST:On 25 March, four robbers boarded a berthed refrigerated cargo ship near position 05-15N 004-00 W, Fishing Port Berth DNP 23, Abidjan. The Second Officer on routine rounds noticed the padlock to the central store room missing. As he opened t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.999999999784052, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-57", + "dateofocc": "2015-03-23", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "SOMALIA:On 23 March, an Iranian-flagged fishing boat was reportedly hijacked while illegally fishing near Ceel Huur, in the Mudug region of the country. Initial reports suggested that local maritime police had arrested the illegal fishermen and impounded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.333333300168192, 5.0666667002709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-58", + "dateofocc": "2015-03-23", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Wood Chip Carrier", + "descriptio": "VIETNAM:On 23 March, robbers boarded an anchored wood chip carrier near position 20-43N 107-11E, Cailan Outer Anchorage. The robbers broke into the forward store room, stole ship's property and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.183333299778099, 20.716666699922655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-59", + "dateofocc": "2015-03-25", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 25 March, four robbers armed with knives boarded an anchored bulk carrier near position 20-41N 107-17E, 8.4 nm southeast of Hon Gai. When the duty officer raised the alarm, the robbers fled with some of the ship's stores. Agent and port author", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.283333300410845, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-60", + "dateofocc": "2015-03-12", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tug Boat", + "descriptio": "BANGLADESH:On 12 March, armed robbers boarded an anchored tug near position 22-06N 091-44E, Chittagong Anchorage and stole ship's stores and properties. The alarm was raised and crew mustered. As the crew approached the robbers, they threw stones at the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.099999999890883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-61", + "dateofocc": "2015-03-16", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 16 March, an unknown number of robbers boarded an anchored product tanker near position 17-38N 083-25E, Visakhapatnam anchorage. The robbers stole ship's stores and escaped unnoticed. The theft was detected the next morning.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.416666700061796, 17.633333300164622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-62", + "dateofocc": "2015-03-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 21 March, five robbers armed with a gun and knives boarded an anchored bulk carrier near position 03-56N 098-45E, Belawan Anchorage. They took hostage a duty crewman and tied him up. The robbers stole ship's stores from the paint locker and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-63", + "dateofocc": "2015-03-31", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Yachts", + "descriptio": "BRAZIL:During the last week of March, there were two boardings of sailing yachts near position 12-59S 038-42W, Ilha de Itaparica. One boarding occurred during night hours while the other occurred during the day. Four local individuals were reportedly arr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.69999999991694, -12.983333300177947] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-250", + "dateofocc": "2015-11-25", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "COLOMBIA:On 25 November, four robbers boarded an anchored sailing yacht in Taganga Bay near position 11-16N 074-12W. They assaulted the owners of the boat and stole money, electronics and other valuables before escaping.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.199999999716056, 11.266666699931818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-251", + "dateofocc": "2015-11-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cargo Ship", + "descriptio": "NIGERIA:On 26 November, pirates in two speedboats boarded the Cyprus-flagged cargo ship SZAFIR near position 04-00N 006-00E, 70 nm southwest of Port Harcourt. Eleven crewmen managed to retreat and secure themselves in the engine room. The pirates kidnapp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.999999999640067, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-252", + "dateofocc": "2015-12-01", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tug Boat", + "descriptio": "REPUBLIC OF THE CONGO:On 01 December at 0400 LT near position 04-45S 011-50E, Pointe Noire Anchorage, 3 persons in a boat approached and tried to board an anchored tug. An alert duty crewman directed the search light towards the boat. The alerted crew ap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.83333330033679, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-253", + "dateofocc": "2015-11-26", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "VIETNAM:On 26 November, five armed pirates boarded a Vietnamese fishing boat anchored approximately 30 nautical miles south of Suoi Ngoc Island near position 09-05N 115-27E. During the boarding, a Vietnamese fisherman was shot and killed while he was try", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.450000000166824, 9.083333299573326] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-254", + "dateofocc": "2015-11-25", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDIA:On 25 November, three robbers armed with knives in a small boat approached an anchored bulk carrier near position 17-03N 082-24E, Kakinada Anchorage. Two robbers boarded the ship and began to collecting ship's stores. A deck crewman on routine roun", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.400000000132252, 17.049999999862507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-255", + "dateofocc": "2015-11-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "INDONESIA:On 20 November, three persons in a wooden boat attempted to board a barge being towed by a tug near position 01-10N 103-40E, 2.1 nm north-northeast of Nipah Island. The Master raised the general alarm and made a PA announcement. All crew gather", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.666666700042128, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-256", + "dateofocc": "2015-12-02", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 2 December at 0615 LT in the Sikka Crude Tanker Anchorage, near position 22-40N 069-58E, 5 robbers armed with iron rods boarded an anchored product tanker. They entered the tank cleaning store by breaking the padlock. The duty AB on routine roun", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.966666699941584, 22.666666700120629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-257", + "dateofocc": "2015-12-04", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 4 December at 2100 LT in the Campha Outer Anchorage, near position 20-42N 107-10E, 6 robbers armed with long knives in a wooden boat approached an anchored bulk carrier. Three of the robbers boarded the vessel and threatened the crew on watch.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.166666699705672, 20.700000000025511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-258", + "dateofocc": "2015-12-08", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 8 December at 0020 LT in the Tianjin Anchorage near position 38-59N 117-51E, armed robbers with long knives in a wooden fishing boat approached an anchored bulk carrier. Three of the robbers boarded the vessel. The alerted crew spotted the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.850000000064597, 38.983333299910782] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-259", + "dateofocc": "2015-12-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 8 December at 1355 LT in the Belawan Anchorage near position 03-57N 098-47E, the duty watchman on routine rounds onboard an anchored chemical tanker noticed a person on the main deck. The watchman notified the watch officer who in turn raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.783333299686319, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-260", + "dateofocc": "2015-12-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "THAILAND:On 3 December near position 07-04N 098-22E, two pirates armed with guns hijacked a Thailand-flagged fishing vessel south of Phuket. The pirates abandoned the six crew members on a nearby island. The crew was subsequently rescued by a patrol boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.366666699780808, 7.066666700335588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-261", + "dateofocc": "2015-12-08", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Ore Carrier", + "descriptio": "CHINA:On 8 December, two robbers boarded an anchored ore carrier near position 38-42N 118-48E, in the Caofeidian Anchorage. The robbers were spotted by the duty oiler on the aft deck trying to open the diesel oil tank manhole cover. The oiler shouted at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.800000000230284, 38.699999999708268] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-262", + "dateofocc": "2015-12-15", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 15 December at 0800 LT in Vung Tau Anchorage near position 10-14N 107-02E, robbers boarded a container ship unnoticed. They boarded the vessel while the crew was busy preparing to anchor and stole ship's stores. The theft was noticed during ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-214", + "dateofocc": "2016-09-10", + "subreg": "73", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "PAPUA NEW GUINEA:On 10 September, eight robbers boarded a boat and stole personal property in the vicinity of Madang, 05-02S 145-56E. Several of the passengers jumped overboard and swam ashore to Pig Island where they alerted police. Local authorities we", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [145.933333299907076, -5.033333299785909] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-215", + "dateofocc": "2016-09-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 14 September at 1500 LT in 22-13.5N 091-41.2E, at Chittagong, duty crew on an anchored bulk carrier noticed the store room broken into. Upon alerting the crew and carrying out a search, it was noticed that mooring gang employed onboard the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.683333299726485, 22.233333299593937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-216", + "dateofocc": "2016-09-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "INDONESIA:On 09 September between 0001Z and 0600Z in 00-43N 104-10E, at Galang Batam, the chief engineer on an anchored OSV noticed the spare cabinet and lockers broken into with some items missing. Incident reported to authorities who boarded and inspec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 0.71666670017521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-217", + "dateofocc": "2016-09-21", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "GUINEA:On 21 September, six robbers armed with guns fired upon and boarded the container ship WINDHOEK, anchored near position 09-18N 013-45W, Conakry Anchorage. Ship's Master activated the SSAS alert, raised the alarm and locked the accommodation area.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.74999999987449, 9.2999999998367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-218", + "dateofocc": "2016-09-16", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 16 September at approximately 2:50am, suspected sea robbers attempted to board tanker HANZE KOCHI vicinity 03-28N 005-59W, 50 nm off Bayelsa State, Nigeria. Due to naval personnel engagement, the sea robbers were not able to board the ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-5.983333299951539, 3.466666700039298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-219", + "dateofocc": "2016-09-20", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Fishing Trawler", + "descriptio": "BANGLADESH:On 20 September, 47 fishermen were abducted and 25 trawlers were looted by forest robbers in the Sundarbans in Bangladesh, vicinity 21-33N 088-47E. The robbers beat the fisherman and then demanded ransom. It is notable that in the past 12 days", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.783333300262257, 21.549999999558338] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-220", + "dateofocc": "2016-09-18", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Trawler", + "descriptio": "BANGLADESH:On 18 September, 15 fishermen from 15 different trawlers were kidnapped by pirate gangsin a river near Bhola, Bangladesh, vicinity 22-15N 090-52E. The kidnappers took three mobile phones, cash and also demanded a large ransom for each of the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.866666699987945, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-221", + "dateofocc": "2016-09-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "INDONESIA:On 16 September, the chief engineer conducting routine rounds on a vessel anchored near position 00-43N 104-10E, Galang, Batam, noticed the spares cabinet and lockers broken into and some items missing. The incident was reported to the authorit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 0.71666670017521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-222", + "dateofocc": "2016-09-23", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "MOROCCO:On 23 September at 0145 LT in 33-36N 007-37W, port of Casablanca, duty crew onboard an anchored bulk carrier observed two suspicious persons hiding on the jetty. The persons attempted to board the vessel at four different times but were unsuccess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-7.616666699977486, 33.599999999813178] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-223", + "dateofocc": "2016-09-22", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VENEZUELA:On 22 September at 2350 LT in 10-09.7N 064-46.8W, at Barcelona anchorage, four small fishing vessels engaged in fishing around an anchored tanker. Robbers disguised as fisherman boarded the tanker, stole ship's property and escaped unnoticed. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.783333299694732, 10.166666700166047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-224", + "dateofocc": "2016-09-26", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "VIETNAM:On 26 September at 1920Z in 10-15.3N 107-01.0E, at Vung Tau anchorage, routine rounds onboard an anchored cargo ship noticed three robbers near the paint locker. Two robbers stole paint drums, while the third acted as a lookout. Fearing for his s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.016666700105532, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-225", + "dateofocc": "2016-09-28", + "subreg": "83", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "TONGA:Escaped offender on stolen 40 foot S/V Sea Oak. Vessel was on transit between Vavau(18-36S 173-59W) and Toku Island (18-09S 174-12W).", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-173.99999999988583, 2.000000000410012] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-226", + "dateofocc": "2016-09-27", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA: On 27 September vicinity 05-10N 119-17E, NE Sabah state, a group of armed men boarded a fishing boat and kidnapped the captain. The six-member group used white speedboat with green and yellow stripes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.283333299899596, 5.166666700004328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-227", + "dateofocc": "2016-09-27", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 27 September, vicinity 05-10N 119-17E, NE Sabah state, a group of armed men boarded a fishing vessel and looted the vessel. The six-member group of men used a white speedboat with green and yellow stripes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.283333299899596, 5.166666700004328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-228", + "dateofocc": "2016-09-02", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "HAITI:On 02 September at 0200 LT vicinity 18-35N 072-20W, Port Au Prince anchorage, two robbers boarded an anchored bulk carrier. They threatened the crew with a long knife and stones. The alarm was raised and the crew mustered. Seeing the alert crew, th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.333333300253685, 18.583333300330253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-164", + "dateofocc": "2014-07-05", + "subreg": "92", + "hostility_": "Armed robebrs", + "victim_d": "Fishing boat", + "descriptio": "PHILIPPINES:On 5 July, armed persons in a small motorboat approached and fired upon a fishing boat near position 06-58N 118-30E, vicinity of Mapun de Tawi-Tawi. The fishermen jumped into the water to save their lives and were able to swim back to their b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.500000000130626, 6.966666699702841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-165", + "dateofocc": "2014-07-04", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 4 July, pirates hijacked the product tanker MORESBY 9 while underway near position 03-23N 105-08E, approximately 34 nm west-northwest of Anambas Island. The pirates took hostage the crew and damaged the communications equipment. Owners repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.133333299846697, 3.38333330037824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-166", + "dateofocc": "2014-07-11", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Fishing boat", + "descriptio": "SURINAME:On 11 July, armed men attacked and boarded a Guyanese fishing boat off Suriname. At least four crew members are still unaccounted for and the captain of the boat survived by clinging to floating debris after being thrown overboard by the attacke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-54.450000000201499, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-167", + "dateofocc": "2014-07-10", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "TRINIDAD AND TOBAGO:On 10 July, robbers boarded an underway tanker in the vicinity of Port of Spain. Eight to ten men reportedly boarded the ship from the stern using three small fishing boats. The men were armed with machetes, knives, one 9mm pistol, an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.566666700058477, 10.633333299938215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-168", + "dateofocc": "2014-07-15", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 15 July, product tanker ORIENTAL GLORY, enroute from Singapore to Sandakan, Malaysia was hijacked near position 01-44N 105-07E, 44 nm north-northeast of Pulau Bintan. Pirates stole part of the cargo, nearly 2,500 metric tons of gas oil, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.116666699774271, 1.733333300279924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-169", + "dateofocc": "2014-07-15", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "LPG tanker", + "descriptio": "INDONESIA:On 15 July, robbers boarded an anchored LPG tanker near position 01-29N 104-43E, 17 nm north-northeast of Pulau Bintan. The robbers were able to board the ship unnoticed and escape with ship's property and spare parts. Duty motorman noticed foo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.716666699941186, 1.483333300047036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-170", + "dateofocc": "2014-07-09", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "General cargo ship", + "descriptio": "INDONESIA:On 9 July, robbers boarded an underway general cargo ship near position 01-59N 108-28E, approximately 37 nm west-southwest of Pulau Merundung. The robbers briefly took the Master hostage, stole his personal properties, and escaped. During the i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.466666699837674, 1.983333299613548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-171", + "dateofocc": "2014-07-09", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 9 July, six robbers boarded an anchored product tanker near position 01-27N 104-38E, approximately 13 nm north-northeast of Pulau Bintan. Duty crewman on routine rounds noticed the robbers on the stern and informed the duty officer who raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-172", + "dateofocc": "2014-07-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Oil Rig and Gunboat", + "descriptio": "NIGERIA:On 23 July, armed criminals attacked an oil rig in Gbarain, in Southern Ijaw Local Government Area of the state. The gunmen approached the facility and opened fire on the policemen, who had taken strategic positions and repelled the attempt, kill", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.933333299876153, 4.466666700071642] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-173", + "dateofocc": "2014-07-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Passenger Boat", + "descriptio": "NIGERIA: On 20 July, gunmen suspected to be sea pirates attacked a passenger boat on the Ogbia-Nembe in Bayelsa State waterways, killed two persons and stole cash and valuables from boat passengers. According to news reports, the boat ran into a robbery", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.333333299709238, 4.783333300243669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-174", + "dateofocc": "2014-07-13", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 13 July, pirates boarded unnoticed on an underway product tanker near position 02-01N 104-29E, 24 nm south of Pulau Aur. Duty Officer saw a small boat maneuvering near the vessel and raised the alarm. Seeing alerted crew, the pirates escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.483333299780725, 2.016666700307155] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-149", + "dateofocc": "2014-06-17", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 17 June, the product tanker ARSENAL and accompanying tug PAWAI reportedly went missing. The two vessels last known position was near 01-31N 104-29E, approximately 12 nm east of Bandar Penawar, Malaysia.UPDATE:Product tanker ARSENAL is unlikel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.483333299780725, 1.516666699841323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-263", + "dateofocc": "2015-12-16", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "DR CONGO:On 16 December, two robbers armed with knives in a boat boarded an anchored general cargo ship near position 05-50S 013-25E, Matadi Anchorage. Five accomplices waited in the boat. When the robbers were spotted by the duty crewmen the robbers fle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.416666699596647, -5.833333300351399] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-264", + "dateofocc": "2015-11-13", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 13 November 5 robbers armed with knives boarded a berthed bulk carrier during cargo operations near position 06-04S 106-51E, Berth 115, Jakarta Port. They were noticed by the crew who raised the alarm. Upon seeing the alerted crew, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.849999999708871, -6.066666699612597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-265", + "dateofocc": "2015-12-16", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 16 December, an unknown number of robbers boarded an anchored bulk carrier during cargo operations near position 20-50N 107-20E, Campha Anchorage. The robbers were able to steal ship's properties and escape unnoticed. The theft was noticed by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.333333300277559, 20.833333299728508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-266", + "dateofocc": "2015-12-09", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH:On 9 December two pirate gangs attacked several groups of fishermen in the Sundarbans near position 21-25N 089-11E and kidnapped approximately 100 fishermen. There were 22 boats carrying the attackers, reportedly from the Jahangir Bahini pirat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.183333300095285, 21.416666699855341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-267", + "dateofocc": "2015-12-14", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 14 December, a duty officer onboard an anchored bulk carrier noticed a suspicious boat alongside the starboard quarter of the vessel near position 38-19N 118-20E, Tianjin Anchorage. The duty officer informed the Master. The alarm was raised and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.333333299734022, 38.316666699772384] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-268", + "dateofocc": "2015-12-05", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "DR CONGO:On 5 December, three robbers boarded an anchored bulk carrier via the anchor chain near position 04-45S 011-47E, Pointe Noire Anchorage. The duty crewman on routine rounds noticed the robbers, raised the alarm and the crew was mustered. Upon see", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.7833332995707, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-269", + "dateofocc": "2015-12-18", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 18 December, five robbers armed with guns in a speed boat approached and attempted to board an underway bulk carrier near position 05-57N 119-50E, 6.8 NM northwest of Doc Can Island. The second officer increased speed and commenced evasive", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.833333300232198, 5.949999999773297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-270", + "dateofocc": "2015-12-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 24 December near position 22-46N 070-02E, Kandla Anchorage, robbers boarded an anchored tanker unnoticed. They stole ship's properties and escaped. The incident was discovered later in the day.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.033333299880667, 22.766666699854056] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-271", + "dateofocc": "2015-12-27", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 27 December at 2200 LT near position 03-44S 114-26E, Taboneo Anchorage, four boats approached an anchored bulk carrier. One robber climbed the anchor chain and tried to enter through the hawse pipe. The robbers were spotted by the duty crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.733333299653964] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-272", + "dateofocc": "2015-12-29", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 29 December at 0255 LT near position 38-48N 118-16E, the Caofeidian Anchorage, five robbers in a large boat came alongside an anchored bulk carrier. They attempted to board the vessel. However, the alerted crew spotted the boat and raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.266666699794882, 38.800000000341072] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-273", + "dateofocc": "2015-12-09", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Yachts", + "descriptio": "ST MARTIN:On 9 December near position 18-04N 063-06W, Nettle Bay, two sailing yacht crews reported having a small boat and outboard motor stolen while they were anchored. In both instances, the thieves cut through the heavy steel chains and locks securin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.099999999626846, 18.066666699791995] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-274", + "dateofocc": "2015-12-20", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "TRINIDAD AND TOBAGO:On 20 December, an 80-foot sailing yacht sailing from Chaguaramas, Trinidad Island to Port Louis Grenada was boarded in the vicinity of the Hibiscus Gas Platform, approximately 30 miles north of Trinidad Island near position 11-08N 06", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.516666700191706, 11.133333300404047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-275", + "dateofocc": "2015-12-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Fishermen", + "descriptio": "BANGLADESH:On 24 December, robbers kidnapped three fishermen from a group fishing approximately 50 nm south-west of Kuakata near position 20-50N 88-46E. The robbers later attacked another group of fishermen, stealing their outboard motor and leaving them", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.76666670018983, 20.833333299728508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-276", + "dateofocc": "2015-12-19", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 19 December, an unknown number of robbers boarded an anchored tanker unnoticed near position 14-35N 120-49E, Manila Anchorage. The robbers stole ship's properties and escaped. The incident was discovered later in the day.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.816666700192059, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-277", + "dateofocc": "2015-12-01", + "subreg": "73", + "hostility_": "Robbers", + "victim_d": "Yacht", + "descriptio": "PAPUA NEW GUINEA:On 1 December, a 60-foot Sweden-flagged yacht on a circumnavigation of the world arrived at Wewak, East Sepik Province near position 03-31S 143-37E. During the first night at anchor, the yacht was boarded by approximately 10 armed robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [143.616666699670418, -3.516666700114683] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-1", + "dateofocc": "2016-01-01", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 01 January during the early morning hours near position 38-48N 118-19E in the Tianjin Outer Anchorage, in foggy conditions robbers boarded an anchored bulk carrier unnoticed. They opened the aft diesel oil tank and stole part of the oil. The rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.316666699661596, 38.800000000341072] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-2", + "dateofocc": "2015-12-30", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 30 December at 0015 LT near position 22-37N 069-55E in Sikka Anchorage, two robbers in a small fast craft boat boarded an anchored tanker. The duty crew noticed the robbers, raised the alarm which mustered the crew. Upon seeing the alerted crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.91666670007487, 22.616666700253916] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-3", + "dateofocc": "2016-01-04", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Unidentified Vessel", + "descriptio": "CONGO:On 4 January, three robbers boarded an anchored vessel near position 04-47S 011-52E, Pointe Noire Anchorage. The duty crewmen spotted the robbers on deck and raised the alarm. The robbers jumped overboard and escaped in their rowboat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.866666700131077, -4.783333299553021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-4", + "dateofocc": "2015-12-27", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 27 December an unknown number of pirates attacked an anchored tanker near position 05-35N 005-00E, approximately 10 nm west of Warri. The attack was reportedly repelled by an onboard detachment of Nigerian Navy personnel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.999999999607724, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-5", + "dateofocc": "2016-01-12", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Merchant Ship", + "descriptio": "NIGERIA:On 12 January near position 06-17N 003-12E, a merchant ship in the Lagos Secure Anchorage Area reported to local authorities of being followed by five men in a speedboat. The merchant ship soon after reported that they had seen two men in the rud", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.19999999990921, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-6", + "dateofocc": "2016-01-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vehicle Carrier", + "descriptio": "NIGERIA:On 19 January near position 03-52N 005-33E, 1000 - 1300 LT, around 37 NM SW of Bayelsa, pirates in two speed boats chased and fired on an underway vehicle carrier. The master raised the alarm and the SSAS. The crew mustered and activated the wate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.549999999940269, 3.866666699872383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-7", + "dateofocc": "2016-01-13", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "BELIZE:On 13 January near position 17-15N 088-05W, four robbers armed with guns boarded an anchored sailing yacht near Middle Long Cay. The robbers sexually assaulted a female passenger and stole cash, electronics, passports and an outboard motor.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.083333299638866, 17.250000000228681] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-8", + "dateofocc": "2016-01-20", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Unknown Vessel", + "descriptio": "COTE D'IVOIRE:On 20 January, two robbers armed with knives boarded an anchored vessel near position 05-13N 004-02W, Abidjan Anchorage. The robbers were spotted on the aft deck by duty crewmen, who then raised the alarm. The robbers escaped with mooring l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.033333299753622, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-9", + "dateofocc": "2016-01-19", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Unknown Vessel", + "descriptio": "CONGO:On 19 January, two robbers with knives boarded an anchored vessel near position 04-45S 011-50E, Pointe Noire Anchorage. The robbers were spotted by a duty crewman, who raised the alarm. The robbers were able to escape with ship's properties.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.83333330033679, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-10", + "dateofocc": "2016-01-09", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Oil Platform", + "descriptio": "NIGERIA:On 9 January, a speedboat with five armed men approached the AUNTU JULIE oil platform in the Coinoil Oil Field, near position 04-25N 005-35E. The MV SUNSHINE, the security vessel for the area approached the speed boat. Both boats briefly exchange", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 4.416666700204928] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-11", + "dateofocc": "2016-01-15", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Offshore Support Vessel", + "descriptio": "INDONESIA:On 15 January, four robbers boarded an anchored offshore support vessel near position00-44N 104-09E, Galang Anchorage, Batam. The duty oiler noticed the robbers via the security camera and informed the duty officer. The alarm was raised and the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.149999999711497, 0.73333330024758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-12", + "dateofocc": "2016-01-11", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDIA:On 11 January, an unknown number of robbers boarded an anchored bulk carrier near position 22-46N 069-59E, Kandla OTB Anchorage, Kandla Port. The robbers were able to steal ship' stores and escape unnoticed. The theft was noticed by the crew while", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.983333300013953, 22.766666699854056] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-13", + "dateofocc": "2016-01-11", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDIA:On 11 January, eight robbers boarded an anchored chemical tanker near position 22-46N 070-02E, Kandla Anchorage. They were noticed near the forecastle store room armed with knives. The duty crewman raised the alarm and crew mustered on the bridge.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.033333299880667, 22.766666699854056] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-338", + "dateofocc": "2013-11-24", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:On 24 November, an anchored chemical tanker experienced an attempted boarding near position 01-42N 101-29E, Dumai anchorage. Robbers attempted to board the vessel via the poop deck and were spotted by alert crew who raised the alarm and started", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-340", + "dateofocc": "2013-11-22", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "PRODUCT TANKER", + "descriptio": "INDONESIA:On 22 November, an anchored product tanker experienced a boarding near position 01-41N 101-27E, Dumai Port. The robbers boarded the ship unnoticed during cargo operations. They stole engine spare parts and escaped. The theft was noticed during", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-341", + "dateofocc": "2013-11-26", + "subreg": "27", + "hostility_": "ROBBERS", + "victim_d": "YACHT", + "descriptio": "GRAND CAYMAN:On 26 November, robbers boarded a moored yacht near position 19-20N 081-21W, West Bay, Grand Cayman and stole an outboard motor and navigation equipment. The incident was reported to local police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.350000000441867, 19.333333300129652] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-342", + "dateofocc": "2013-11-25", + "subreg": "61", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "KENYA:On 25 November, robbers boarded a berthed container ship at position 04-04S 039-41E, Mombasa Container Port and stole ship's stores. The theft was detected during routine rounds by the duty crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.683333299843468, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-343", + "dateofocc": "2013-12-02", + "subreg": "93", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER VESSEL", + "descriptio": "VIETNAM:On 2 December, robbers boarded a drifting container vessel near position 20-37N 107-10E, near Norway Islands, Haiphong and stole ship's property. The theft was noticed by the duty crew during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.166666699705672, 20.616666700189228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-344", + "dateofocc": "2013-12-01", + "subreg": "71", + "hostility_": "ROBBER", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 1 December, a robber armed with a knife boarded an anchored tanker conducting STS operations near position 01-06N 103-38E, Nipah Anchorage. When the duty crewman saw the robber during routine rounds, he notified the duty officer who raised t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-345", + "dateofocc": "2013-11-29", + "subreg": "71", + "hostility_": "SUSPICIOUS CRAFT", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 29 November, the crew of an anchored tanker near position 01-06N 103-36E, Nipah Anchorage, noticed a speedboat approaching their vessel. The crew raised the alarm resulting in the speedboat departing the area.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-346", + "dateofocc": "2013-11-27", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "OIL TANKER", + "descriptio": "INDONESIA:On 27 November, three robbers with knives boarded an anchored oil tanker near position 1-06N 103-38 E, Nipah Anchorage. When the duty crewman on routine rounds spotted the robbers, he informed the duty officer who raised the alarm. Seeing the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-347", + "dateofocc": "2013-11-23", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "GENERAL CARGO SHIP", + "descriptio": "INDONESIA:On 23 November, three robbers with knives boarded an anchored general cargo ship near position 05-59S 105-55 E, Tanjung Priok Anchorage. They entered the engine room through the boiler platform located on the poop deck. One of the robbers took", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.916666700339761, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-348", + "dateofocc": "2013-11-16", + "subreg": "71", + "hostility_": "ROBBER", + "victim_d": "PRODUCT TANKER", + "descriptio": "INDONESIA:On 16 November, the duty officer on an anchored product tanker near position 03-54N 098-46E, Belawan Anchorage, noticed a small wooden boat near the vessel. The crew members subsequently searched the tanker and found a robber stealing ship stor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-349", + "dateofocc": "2013-12-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "BULK CARGO SHIP", + "descriptio": "GULF OF ADEN:On 9 December at 0348 UTC, five suspected armed pirates in a skiff approached a bulk cargo ship near position 12-52N 047-52E, approximately 122 nm northwest of Bosaso, Somalia. The master raised alarm, activated fire hoses, sounded ship's ho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.866666700395967, 12.866666700163421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-350", + "dateofocc": "2013-12-09", + "subreg": "62", + "hostility_": "PIRATES", + "victim_d": "TANKER", + "descriptio": "GULF OF ADEN:On 9 December at 0330 UTC, five suspected pirates in a skiff attacked a tanker near position 12-50N 047-49E, approximately 122 nm northwest of Bosaso, Somalia. The Master raised alarm, activated fire hoses, increased speed, took evasive mane", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.816666699629934, 12.833333300369134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-351", + "dateofocc": "2013-12-10", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 10 December, five robbers boarded an anchored tanker near position 01-25N 104-41 E, near Palau Bintan while the crew was busy performing tank cleaning procedures. The duty engineer in the engine room noticed the robbers and informed bridge w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-176", + "dateofocc": "2014-07-25", + "subreg": "57", + "hostility_": "Suspicious boat", + "victim_d": "General cargo vessel", + "descriptio": "TOGO:On 25 July, a boat with eight persons aboard was seen to suspiciously approach an anchored general cargo vessel near position 06-05N 001-16E, Lome Anchorage. Master raised the alarm, alerted crew and authorities and sounded the ship's horn. Seeing t", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.266666699608436, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-177", + "dateofocc": "2014-07-23", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "RED SEA:On 23 July, A tanker underway in a narrow part of the Bab el Mandeb observed a suspicious vessel on a converging course near position 12-33N 043-27E, 5 nm southeast of Perim Island. As this vessel closed to a distance of 1 nm, a skiff appeared fr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.4499999996371, 12.550000000166619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-178", + "dateofocc": "2014-07-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "MALAYSIA:On 25 July, Ten robbers armed with guns and knives boarded the anchored product tanker JI XIANG near position 01-19N 104*15E, 2 nm south of Teluk Ramunia, Johor. They stole crew personal belongings and cash and escaped. During the robbery, one c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.250000000344244, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-179", + "dateofocc": "2014-07-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 25 July, four robbers in a speed boat approached an anchored product tanker near position 03-55N 098-45E, Belawan Anchorage. One of the robbers made an attempt to board the tanker but aborted it and moved away upon seeing the duty Bosun. Soo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-180", + "dateofocc": "2014-07-25", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 25 July, Three armed robbers in a wooden boat approached and boarded an anchored bulk carrier near position 00-15N 117-34E, Muara Berau Anchorage. They took hostage a duty crewman and tied him up. He managed to escape and informed the duty o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, 0.249999999678892] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-181", + "dateofocc": "2014-07-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "BANGLADESH:On 24 July, three robbers boarded an anchored tanker near position 22-10N 091-46E, Chittagong Anchorage. Ship's alarm raised, all crew mustered and Port Control notified. Seeing the crew alertness, the robbers escaped with stolen ship's proper", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-182", + "dateofocc": "2014-07-19", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 19 July, Four robbers in a fishing boat boarded an anchored tanker via the anchor chain near position 13-44N 121-02E, Batangas Anchorage 'A'. Duty crewmen on routine rounds spotted the robbers and raised the alarm. The robbers escaped with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-183", + "dateofocc": "2014-08-04", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "DEMOCRATIC REPUBLIC OF CONGO:On 4 August, two robbers in a small boat attempted to board an anchored bulk carrier using grappling hooks and ropes near position 05-52S 013-24E, Matadi Inner Anchorage. Duty crew noticed the robbers and raised the alarm. Se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.399999999699503, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-184", + "dateofocc": "2014-07-31", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:On 31 July, seven robbers armed with knives boarded an anchored container ship via the stern deck near position 22-10N 091-46E, Chittagong Anchorage. Duty crew spotted the robbers stealing ship's stores and raised the alarm. As the crew muster", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-185", + "dateofocc": "2014-08-09", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Underway vessel", + "descriptio": "GULF OF GUINEA:On 9 August, up to three small boats approached, and fired upon the underway vessel transiting 200 nautical miles south of the Nigerian shoreline. The ship's crew reported hearing multiple gun shots, including automatic gunfire coming from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.116666700169958, 0.933333299714491] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-186", + "dateofocc": "2014-08-11", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 11 August, four robbers in a wooden boat boarded an anchored chemical tanker near position 03-54N 098-46E, Belawan Outer Anchorage. One of the robbers boarded the vessel and attempted to steal ship's stores from the forecastle store. Duty cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-187", + "dateofocc": "2014-08-08", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 8 August, two robbers boarded an anchored bulk carrier near position 00-17S 117-41E, Muara Berau Anchorage. Duty crewman spotted the robbers and raised the alarm. Seeing the crew's alertness, the robber escaped. Upon searching the vessel it", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.683333299667993, -0.283333299857134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-64", + "dateofocc": "2015-04-01", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Anchored Ship", + "descriptio": "GUINEA:On 1 April, six robbers boarded an anchored ship near position 09-30N 013-42W, 2.7 nm south of the fairway buoy at Conakry. An alert deck officer sounded the general alarm and informed the captain. The deck watch informed the watch officer that th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.700000000007776, 9.500000000202874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-65", + "dateofocc": "2015-03-21", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "FPSO", + "descriptio": "NIGERIA:On 21 March, six armed pirates boarded an anchored Floating, Production, Storage and Offloading ship near YOHO position 04-02N 007-31E, 36 nm southeast of the Bonny Islands. The pirates entered the accommodation area, but were deterred by the sou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.516666700035387, 4.033333300444269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-66", + "dateofocc": "2015-03-30", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Dredger", + "descriptio": "INDIA:On 30 March, four robbers in a fishing boat approached an anchored dredger near position 16-59N 082-18E, Kakinada Inner Anchorage. Two robbers boarded the ship. They were noticed by the 2nd Officer on routine rounds, who informed the bridge and rai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.300000000398825, 16.983333300098593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-67", + "dateofocc": "2015-03-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "INDONESIA:On 29 March, three robbers boarded a cargo ship near position 01-05N 103-35E, 3.8 nm south-southwest of Nipah Island. Duty crewman saw the robbers and raised the alarm. The crew mustered on the bridge and all the water tight doors were secured.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-68", + "dateofocc": "2015-03-25", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "THAILAND:On 25 March, four robbers armed with knives boarded a berthed bulk carrier near position 13-17N 100-31E, Dolphin Buoy No.16, Bangkok. Crewmembers raised the alarm and mustered. Seeing the crew response, the robbers fled with stolen ship's proper", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.516666700344956, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-69", + "dateofocc": "2015-03-22", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Tug Boat", + "descriptio": "MALAYSIA:On 22 March, ten pirates armed with guns and knives hijacked a tug towing a barge near position 02-51N 104-31E, 18 nm east of Tioman Island. They entered the bridge and apprehended the bridge team, then took them to the Chief Engineer's cabin wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.516666699575012, 2.849999999942838] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-70", + "dateofocc": "2015-04-01", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "On 1 April near position 09-15N 013-43W, Conakry Anchorage, Guinea, six robbers in a blue hulled fishing boat attempted to board an anchored container ship using a hook attached to a long pole. One of the robbers pointed a gun towards the Duty Watchman w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.249999999969987] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-71", + "dateofocc": "2014-04-03", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "MALAYSIA:On 3 April near position 05-48N 118-05E, Berth NO. 4, Sandakan Port. Two robbers boarded a berthed general cargo ship. The alarm was raised and the crew mustered. Seeing the alerted crew, the robbers escaped with stolen ship's properties. Local", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-72", + "dateofocc": "2015-03-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 19 March, three robbers boarded an underway bulk carrier near position 01-16N 104-16E, 5.5 nm north of Batam Island. Duty crewman noticed the robbers and informed the bridge. The alarm was raised and the entire crew mustered at the bridge. T", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.266666700241444, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-73", + "dateofocc": "2015-04-01", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Petroleum Product Tanker", + "descriptio": "INDONESIA:On 1 April, up to 25 pirates armed hijacked the underway petroleum product tanker MT DONGFANG GLORY near position 02-09N 107-32E, 62 nm north of Pulau Uwi. They took the crew hostage, damaged all the bridge equipment, and stole crew personal be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.53333329974447, 2.150000000010152] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-74", + "dateofocc": "2015-03-15", + "subreg": "28", + "hostility_": "Pirates", + "victim_d": "Sailboat", + "descriptio": "HONDURAS:On 15 March, four armed pirates hijacked a rented sailboat enroute from Belize to the Honduran island of Roatan. The pirates threatened the married couple and the boat captain with violence, and grounded the sailboat in Escondido Bay, in Jeanett", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-87.399999999603324, 15.833333299566789] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-14", + "dateofocc": "2016-01-07", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 7 January, three robbers boarded an anchored bulk carrier near position 20-43N 107-09E, Hon Cam anchorage. During routine rounds, a duty crewman heard voices near the forecastle. As he approached to investigate he saw the three men with knives", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.149999999808529, 20.716666699922655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-15", + "dateofocc": "2016-01-05", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 5 January, an unknown number of robbers boarded an anchored bulk carrier near position 20-41N 107-10E, Hong Gai Anchorage. The robbers stole ship's stores and escaped unnotic Ved. The theft was discovered by duty crewmen later in the day.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.166666699705672, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-16", + "dateofocc": "2016-01-28", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 22 January, a bulk carrier reported being followed near position 05-15N 003-13E, approximately 70 nm south of Lagos. The ship was reportedly followed at a distance of 7 miles and lost the suspicious vessel after a speed increase and course cha", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.216666699806353, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-17", + "dateofocc": "2016-01-23", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDIA:On 23 January, a duty crewman onboard an LPG tanker anchored near position 17-39N 083-24E, Visakhapatnam Anchorage on routine rounds, noticed foot marks on the upper deck aft area. Alarm raised and a thorough search was made. It was reported that", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.400000000164596, 17.650000000061766] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-18", + "dateofocc": "2016-01-25", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "VENEZUELA:On 25 January, an unknown number of robbers boarded an anchored general cargo ship near position 10-16N 064-34W, Guanta Anchorage. The robbers were able to steal ship's properties and escape unnoticed. The incident was noticed later by the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.566666700155452, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-19", + "dateofocc": "2016-01-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 29 January, the tanker LEON DIAS was reportedly hijacked near Brass near position 04-16N 006-14E. Subsequent media reports indicate that the ship has been released, after five crewmen including the ship's Captain, were kidnapped. Two Filipinos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.233333299975811, 4.266666699705411] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-20", + "dateofocc": "2016-01-15", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug Boat", + "descriptio": "NIGERIA:On 15 January, ten pirates in a speedboat chased and fired upon an underway tug near position 04-05N 005-25E, 30 nm southwest of Bayelsa. The crew locked themselves in the safe area of the ship. The pirates then boarded the tug, damaged its navig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.416666700237272, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-21", + "dateofocc": "2016-02-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "LNG Tanker", + "descriptio": "NIGERIA:On 5 February near position 04-10N 006-58E around 0720 LT, about 16 nm sw of Bonny Island, approximately seven people wearing dark boiler suits with red caps in a speed boat chased and attempted to board an underway LNG tanker. The alarm was rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.966666699702841, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-22", + "dateofocc": "2016-02-02", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "GUYANA:On 5 February, robbers boarded an anchored container ship near position 06-49N 058-11W, Georgetown Port Anchorage. A duty crewman spotted the robbers near the paint locker and raised the alarm. The Ship Master notified the Coast Guard and a boat w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.183333300200786, 6.816666700102644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-23", + "dateofocc": "2016-02-03", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PERU:On 3 February, seven robbers in two speedboats came alongside an anchored product tanker near position 12-00S 077-12W, Callao Port Anchorage. Two robbers boarded the vessel but were spotted by the alert crew resulting in the robbers escaping without", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.000000000042746] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-24", + "dateofocc": "2016-02-05", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "NIGERIA:On 5 February, 6 robbers boarded the Singapore-flagged container ship SAFMARINE KURAMO near position 04-02N 006-54E, 60 nm south west of Bonny River. A Nigerian Navy ship responded to the boarding causing the robbers to flee the ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.899999999938927, 4.033333300444269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-25", + "dateofocc": "2016-02-09", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "DEMOCRATIC REPUBLIC OF THE CONGO:On 09 February near position 05-52S 013-02E at 0210 LT, Boma Anchorage, four robbers armed with knives in a motor boat approached and boarded an anchored bulk carrier. The duty crew on watch noticed the robbers and in for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.033333299835988, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-26", + "dateofocc": "2016-02-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "IVORY COAST:On 11 February at 2100 UTC near position 04-00N 004-00W, around 70 NM south of Abidjan, reports were received that approximately 6 pirates attacked an underway tanker. The tanker is missing and the fate of the crew is unknown.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.999999999784052, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-27", + "dateofocc": "2016-02-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 11 February at approximately 1500 UTC near position 03-36N 005-35E, around 56 NM SW of Bayelsa, reports were received that an unknown number of pirates attacked an underway tanker. Nigerian authorities were notified. The tanker is missing and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 3.599999999742295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-352", + "dateofocc": "2013-12-07", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 7 December, four robbers armed with knives boarded anchored tanker conducting STS operations near position 01-07N 103-35 E, Nipah Anchorage. Upon discovering the robbers, the duty engineer raised the alarm. Seeing the crew response, the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-353", + "dateofocc": "2013-12-05", + "subreg": "72", + "hostility_": "ROBBER", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 5 December, a robber attempted to board an anchored bulk carrier near position 03-43S 114-25E, Taboneo Anchorage via the hawse pipe. Duty crew on routine rounds saw the robber and immediately informed the duty officer who raised the alarm. U", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.716666699581538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-354", + "dateofocc": "2013-12-04", + "subreg": "63", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDIA:On 4 December, three robbers boarded an anchored bulk carrier near position 22-47N 070-05E, Kandla Anchorage. The Officer on Watch spotted the robbers and raised the alarm. Seeing crew response, the robbers escaped with stolen ship property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.083333299747437, 22.783333299926483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-355", + "dateofocc": "2013-12-16", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "PRODUCTS TANKER MT. ALTHEA", + "descriptio": "NIGERIA:On 16 December, ten pirates attacked the Marshall Islands-flagged oil products tanker MT ALTHEA and its 18 crewmembers approximately 35 nm off the Niger Delta. After boarding the vessel, the pirates kidnapped the Ukrainian captain and a Greek eng", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.416666700269616, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-356", + "dateofocc": "2013-12-03", + "subreg": "57", + "hostility_": "PIRATES", + "victim_d": "CARGO VESSEL", + "descriptio": "CAMEROON:On 3 December, pirates boarded a coastal cargo vessel near position 04-20N 08-45E, approximately 10 nm off the Cameroon coast. Two speedboats with eight pirates in each boat attacked the vessel and briefly board the vessel before a security team", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.750000000403475, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-357", + "dateofocc": "2013-12-18", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:On 18 December, three robbers boarded an anchored bulk carrier near position 00-15S 117-35E, Muara Berau Anchorage, Samarinda. They broke into the forward store and stole ship property. The robbers departed the area in their wooden boat after t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-358", + "dateofocc": "2013-12-16", + "subreg": "72", + "hostility_": "ROBBER", + "victim_d": "CRUDE OIL TANKER", + "descriptio": "INDONESIA:On 16 December, a robber boarded an anchored crude oil tanker near position 00-06S 117-34E, Santan Anchorage. Upon discovering the robber, the bridge raised the alarm which caused the robber to flee. The crew subsequently searched the ship and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.100000000287423] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-359", + "dateofocc": "2013-12-12", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:On 12 December, three to four robbers boarded an anchored tanker near position 01-06N 103-37E, Nipah Anchorage. They were immediately spotted by the duty officer who raised the alarm. Upon seeing the crew response, the robbers fled in their boa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-360", + "dateofocc": "2013-11-09", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDIAN OCEAN:07-20S 048-37E, Around 180nm NW of Providence Island, off Somalia. About 5 to 6 pirates armed with rifles in a skiff approached a chemical tanker underway. OOW raised the alarm and the armed security team on board fired rocket flares followe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.616666700195424, -7.333333299950255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-361", + "dateofocc": "2013-11-09", + "subreg": "72", + "hostility_": "ROBBERS", + "victim_d": "BULK CARRIER", + "descriptio": "INDONESIA:03-40S 114-26E, Taboneo Anchorage. On 9 November robbers boarded an anchored bulk carrier unnoticed. They broke into the bosun store and escaped with ship's stores and properties. The theft was noticed by the duty crew during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.666666699714824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-362", + "dateofocc": "2013-07-11", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "INDONESIA:01-07N 103-37E, Nipah Ship to Ship anchorage area. On 11 July, an alert crew member on-board a tanker carrying out ship to ship opperations, noticed 4 robbers on the poop deck and a fifth robber was in the process of climbing on board. The crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-363", + "dateofocc": "2013-07-26", + "subreg": "91", + "hostility_": "ROBBERS", + "victim_d": "CONTAINER SHIP", + "descriptio": "PHILIPPINES:Manila South Harbor Quarantine Anchorage, 14-33N 120-55E. An unknown number of robbers boarded an anchored container ship unnoticed and escaped with ship's properties. Duty crew on routine rounds noticed foot prints on the forecastle deck and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-364", + "dateofocc": "2013-10-03", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "TANKER", + "descriptio": "NIGERIA:04-12N 006-56E, Bonny Outer Anchorage.While at anchor, an on duty able bodied seaman on board a tanker informed the bridge that one skiff with six robbers was approaching the vessel. As the skiff approached the alarm was raised, and all crew ente", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.933333299908497, 4.199999999941554] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-188", + "dateofocc": "2014-08-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG tanker", + "descriptio": "INDONESIA:On 4 August, three robbers boarded an anchored LPG tanker near position05-34S 104-38E, Teluk Semangka Anchorage. Deck patrol noticed the robbers, raised the alarm and the crew mustered. Hearing the alarm and seeing the crew alertness, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, -5.566666700046085] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-189", + "dateofocc": "2014-08-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "MALAYSIA:On 2 August, six robbers armed with guns in a skiff attempted to board an underway product tanker near position 05-24N 100-05E, 6 nm west of Penang Island. Duty crew noticed the robbers and informed the duty officer who raised the alarm and swit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.083333299818264, 5.400000000340071] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-190", + "dateofocc": "2014-08-14", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Research vessel", + "descriptio": "CONGO:On 14 August, three robbers armed with knives boarded an anchored research vessel 5 nm north of Pointe-Noire. The vessel's crew raised the alarm and mustered. Upon seeing the crew response, the robbers fled empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.749999999601187, -4.666666699747168] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-191", + "dateofocc": "2014-08-18", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Bulk carrier", + "descriptio": "RED SEA:On 18 August, four skiffs approached an underway bulk carrier approximately 19 nm north of the Bab El Mandeb. As the skiffs approached the vessel, the Master raised the alarm, increased speed, commenced evasive manoeuvres while non-essential crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.283333300139759, 12.966666699896848] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-192", + "dateofocc": "2014-08-15", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing boat", + "descriptio": "SOUTH CHINA SEA:On 15 August, a Vietnamese fishing boat was reportedly boarded by persons from a Chinese vessel near the Hoang Sa (Paracel) archipelago. The fishing boat was near Phu Lam Island when a Chinese vessel appeared and chased after it. The Chin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.316666700366909, 16.833333299599133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-193", + "dateofocc": "2014-08-27", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "IVORY COAST:On 27 August, 12 armed pirates boarded a drifting product tanker near position 04-43N 003-30W, 45 nm southeast of Abidjan. They stole money, personal belongings and equipment from the ship while holding the crew hostage. Before departing the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.500000000008868, 4.716666700304529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-194", + "dateofocc": "2014-08-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 26 August, seven pirates armed with guns in a five meter long skiff fired upon an underway product tanker near position 04-08N 005-33E, 24 nm southwest of the Bayelsa State coastal area. The tanker increased speed and commenced evasive maneuve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.549999999940269, 4.133333300177696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-195", + "dateofocc": "2014-08-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 26 August, a speed boat with six armed pirates approached an underway product tanker near position 04-14N 005-13E, 33 nm southwest of Bayelsa State coast. Onboard Nigerian naval armed security opened fire at the pirates, who returned fire. Two", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.216666699871041, 4.233333299911124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-196", + "dateofocc": "2014-08-20", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "GHANA:On 20 August, three robbers in a canoe boarded an anchored offshore tug near position 04-54N 001-43W, Takoradi Anchorage. Duty crewman on routine rounds noticed the robbers attempting to steal the outboard engine of the vessel's rescue boat. He inf", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.71666670041617, 4.89999999987424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-197", + "dateofocc": "2014-08-28", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Oil Product Tanker", + "descriptio": "MALAYSIA:On 28 August, six armed pirates hijacked the Thailand-flagged oil product tanker, V.L. 14 approximately 30 nm north of Pulau Tioman. The vessel was en route from Singapore to Bangkok carrying 1,296 tons of lube oil. The pirates boarded from ster", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.250000000344244, 2.499999999976524] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-198", + "dateofocc": "2014-08-25", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "INDIA:On 25 August, an underway bulk carrier was twice approached by armed persons in skiffs near position 08-21N 076-36E, 22 nm west of Kovalam. On the first approach a skiff with five armed persons approached to within 100 meters of the vessel. Four ho", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.600000000304419, 8.34999999967107] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-75", + "dateofocc": "2015-04-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:During the weekend of 11-12 April, ten pirates in two speedboats boarded MT IMAS near Lagos Anchorage. The crew of the ship was able to make a distress call, resulting in a Nigerian Navy patrol ship quickly responding and capturing one of the pir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-76", + "dateofocc": "2015-04-10", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Passenger Boat", + "descriptio": "NIGERIA:On 10 April suspected robbers boarded a passenger boat and robbed five aides to the Deputy Speaker of the Bayelsa State House of Assembly, Chief Sam Ateki, along the waterways of Brass in Brass Local Government Area of the State.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.083333300375671, 4.299999999674981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-77", + "dateofocc": "2015-04-09", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 9 April, two robbers boarded an anchored product tanker near position 06-17N 003-23E, Lagos Anchorage. The onboard Nigerian Naval personal spotted the robbers and fired warning shots resulting in the robbers jumping overboard to escape. A Nige", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-78", + "dateofocc": "2015-04-11", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 11 April, duty crewman onboard a bulk carrier anchored near position 01-25N 104-37E, 12 nm north-northeast of Bintan Island, noticed robbers on the poop deck. He immediately informed the duty officer. The alarm was raised and crew alerted. S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-79", + "dateofocc": "2015-04-08", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Small Fishing Boats", + "descriptio": "BANGLADESH:On 8 April, pirates boarded and looted three small fishing boats, and kidnapped three fishermen, near the Sunderbans. Initially, 25 other fishermen were taken hostage, and then all but three were released. A ransom has been demanded and local", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.916666699789971, 21.933333300393599] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-80", + "dateofocc": "2015-04-03", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "MALAYSIA:On 3 April, two robbers boarded a berthed general cargo ship near position 05-48N 118-05E, Sandakan Port Berth No. 4. The alarm was raised and the crew mustered. Seeing the crew alertness, the robbers escaped with stolen ship properties. Local p", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-81", + "dateofocc": "2015-04-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:Four robbers armed with long knives boarded an underway tanker. The duty crew noticed the robbers in the engine room and raised the alarm. Upon hearing the alarm and seeing the alerted crew, the robbers escaped empty handed.VTIS was info", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.666666700042128, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-82", + "dateofocc": "2015-04-20", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "SOUTH CHINA SEA, SOUTHERN PART:Pirates armed with knives boarded a bulk carrier underway. They took all the crew hostage. The pirates then stole the ship's and crew's cash, properties, documents and the crew's personal belongings and then escaped. No inj", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.300000000211014, 3.599999999742295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-83", + "dateofocc": "2015-04-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SOUTH CHINA SEA, SOUTHERN PART:On 21 April near position 02-28N 104-26E, a nine meter long, light green fishing boat with two outboard engines approached a tanker underway from the stern. The Master raised the alarm, sounded the fog horn and increased sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.433333299914011, 2.466666700006954] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-84", + "dateofocc": "2015-04-16", + "subreg": "26", + "hostility_": "Pirates", + "victim_d": "Sailing Vessel", + "descriptio": "HAITI:On 16 April, six armed pirates boarded the Australia-flagged sailing vessel PELIKAAN near position 19-36N 072-59W, Petit Port a Piment. The married couple aboard the yacht cooperated with the pirates, but were still violently attacked by the pirate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.983333300319657, 19.60000000025974] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-85", + "dateofocc": "2015-03-30", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "DOMINICA:On 30 March, two armed robbers boarded a small sailing yacht anchored in the southern end of Prince Rupert Bay. The robbers threatened the boat's captain with a gun, stealing his wallet, cash, laptop computer, phone and VHF radio. The incident w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.483333300397419, 15.550000000263651] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-86", + "dateofocc": "2015-04-17", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "INDIA:On 17 April, seven Tamil Nadu fishermen were injured during an attack allegedly by pirates suspected to be from Sri Lanka, according to local police. The fishermen were fishing off Kodiakarai when they were attacked by assailants who came in a fast", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.899999999601789, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-87", + "dateofocc": "2015-04-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 16 April, five robbers armed with knives boarded an underway bulk carrier near position 01-03N 103-40E, 4.6 nm south-southeast of Nipah Island. The robbers were able to enter the engine room store unnoticed. The duty oiler on routine rounds", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.666666700042128, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-28", + "dateofocc": "2016-02-14", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 14 February at 0300 LT near position 13-43N 121-02E, Batangas Anchorage, robbers boarded an anchored product tanker and escaped with ship's properties. The CO who was preparing the tanker for berthing noticed the grappling hook marks on th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-29", + "dateofocc": "2016-01-27", + "subreg": "28", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "NICARAGUA:On 27 January, a large motor yacht on passage between Colon, Panama and Roatan, Honduras was nearly rammed and boarded by a 60-foot steel fishing boat near position14-30N 081-55W, off the east coast of Nicaragua, north of Isla Providencia, Colo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.916666699772293, 14.500000000364594] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-30", + "dateofocc": "2016-01-14", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Yacht", + "descriptio": "U.S. VIRGIN ISLANDS:On 14 January, a French citizen, en route from South Carolina, USA, via the Bahamas to Guadeloupe in a sailing yacht anchored overnight on the southwest coast of St. Croix, near Limetree Bay near position 17-41N 64-45W. The following", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.749999999725162, 17.683333300031336] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-31", + "dateofocc": "2016-02-14", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Merchant Vessel", + "descriptio": "NIGERIA:On 14 February, 3 small speed boats made a close-aboard approach to a merchant vessel at anchor in Lagos Port near position 06-23N 003-22E. Several persons were in each boat and they were reportedly carrying siphon hoses. The ship raised the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.383333299575952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-32", + "dateofocc": "2016-02-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "NIGERIA:On 11 February, a merchant vessel was boarded by up to 10 pirates near position 03-36N 005-37E, 112 nm southwest of the Bonny River. The crew was able to retreat into the citadel and was reportedly safe during the incident.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.616666699704126, 3.599999999742295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-33", + "dateofocc": "2016-02-14", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "PHILIPPINES:On 14 February, according to police reports unidentified gunmen abducted a fishing boat operator and two crewmembers in the southern Philippines near position 06-48N 122-01E. A police spokesman said in a statement that the vessel had been com", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.016666699691314, 6.8000000002055] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-34", + "dateofocc": "2016-02-09", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "PHILIPPINES:On 9 February near position 07-35N 122-45E, three people, including two children, were killed by suspected pirates in an attack offshore of the province of Zamboanga Sibugay. A regional police spokesman said the incident took place around 4:2", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.74999999959357, 7.58333329997447] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-35", + "dateofocc": "2016-01-22", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 22 January, a bulk carrier reported being followed near position 05-15N 003-13E, approximately 70 NM south of Lagos. The ship was reportedly followed at a distance of 7 miles and lost the suspicious vessel after a speed increase and course cha", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.216666699806353, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-36", + "dateofocc": "2016-02-19", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Towed Rig", + "descriptio": "INDIA:On 19 February near position 24-14N 072-17E about 11 NM SSE of Alang, India; robbers in 4 fishing boats approached and boarded a rig being towed by an underway tug. The tug crew noticed the robbers stealing items from the towed rig. Approximately o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [72.283333300178299, 24.233333299658568] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-37", + "dateofocc": "2016-02-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Service Vessel", + "descriptio": "NIGERIA: On 23 February near position 02-40N 007-30E, the BOURBON LIBERTY 251 a service vessel from the French oil services company Bourbon was attacked off the coast of Nigeria. Two crew members from Nigeria and Russia were reportedly abducted.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.500000000138186, 2.666666700373128] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-38", + "dateofocc": "2016-02-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:The chemical tanker MAXIMUS was hijacked 11 February off Abijan, Ivory Coast near position 04-10N 003-55W. There were 18 crew members from India, Pakistan, China, South Korea, Sudan and Ghana when the ship was boarded. The pirates intended to sel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.916666699947768, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-39", + "dateofocc": "2016-02-03", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "KUWAIT:On 3 February, a Kuwaiti-flagged fishing boat was attacked in international waters at approximately 29-10N 049-15E, near Kuwait. The four attackers were believed to be Iranians. The Egyptian fishermen were able to overpower their attackers, report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.250000000364253, 29.166666699881148] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-365", + "dateofocc": "2013-12-19", + "subreg": "71", + "hostility_": "ROBBERS", + "victim_d": "CHEMICAL TANKER", + "descriptio": "INDONESIA:03-55N 098-48E. On 19 December 9nm off Belawan Port robbers boarded an anchored chemical tanker unnoticed. They broke into the ship's forward stores and escaped with the ship's property. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.799999999583463, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2013-366", + "dateofocc": "2013-12-19", + "subreg": "71", + "hostility_": "SUSPICIOUS APPROACH", + "victim_d": "CHEMICAL TANKER", + "descriptio": "MALAYSIA:On 19 December, a speed boat approached at high speed an anchored chemical tanker near position 01-19N 104-16E, approximately 3 nm south of Kampung Tanjun Che Lahom. Crew raised the alarm and the ship search light was directed towards the boat w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.266666700241444, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-1", + "dateofocc": "2013-12-22", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Container vessel", + "descriptio": "BRAZIL:On 22 December, a duty crewman noticed three armed robbers opening cargo containers on an anchored container vessel near position 24-07S 046-19W, Santos Anchorage Area No. 4. The crewman was able to inform the bridge before being taken hostage by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.31666670023975, -24.116666700061444] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-2", + "dateofocc": "2013-12-19", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "MOROCCO:On 19 December, two robbers attempted to board a berthed bulk carrier by climbing the stern mooring rope at position 32-18N 009-14W, Safi Port. Alert duty crew noticed the robbers and informed the duty officer who raised the alarm and mustered th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-9.233333300281515, 32.299999999681177] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-3", + "dateofocc": "2013-12-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 20 December, robbers boarded an anchored chemical tanker near position 03-54N 098-47E, approximately 7 nm from Belawan Port. The robbers broke into the ship forecastle store room, stole parts and equipment and escaped when spotted by duty cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.783333299686319, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-4", + "dateofocc": "2013-12-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 18 December, robbers boarded a berthed tanker at position 03-47N 098-42E, Belawan Port. The robbers broke into the ship's forward store room and escaped with stolen ships property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-5", + "dateofocc": "2013-12-28", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "COLOMBIA:On 28 December, robbers boarded an anchored tanker via the hawse near position 10-18N 075-32W, Mamonal Anchorage, Cartagena. The robbers stole ship's properties and escaped unnoticed. The master reported the robbery to the local police authoriti", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-6", + "dateofocc": "2013-12-31", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "General cargo vessel", + "descriptio": "GHANA:On 31 December, three robbers boarded an anchored general cargo vessel at position 04-53N 001-41W, Takoradi Roads. When spotted by the security watch, the robbers fled without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.683333299722563, 4.883333299977096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-7", + "dateofocc": "2013-12-25", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing vessels", + "descriptio": "PHILIPPINES:On 25 December, pirates attacked a group of three fishing vessels near Zamboanga City. Two fishermen escaped with gunshot wounds and nine remain missing. Authorities suspect the nine missing fishermen were also wounded during the attack. Carg", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.083333299630453, 6.866666699969358] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-8", + "dateofocc": "2013-12-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "SINGAPORE STRAITS:On 18 December, robbers boarded a barge under tow near position 01-15N 104-07E, in the Singapore Straits and stole cargo. The master contacted authorities who dispatched a patrol craft to assist.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.116666699741927, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-9", + "dateofocc": "2013-12-13", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "SINGAPORE STRAITS:On 13 December, robbers boarded a barge under tow near position 01-14N 104-03E, in the Singapore Straits. The robbers were armed with knives and stole cargo before departing.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.04999999997807, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-10", + "dateofocc": "2014-01-08", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Cargo ship", + "descriptio": "LIBERIA:On 8 January, robbers boarded a berthed general cargo ship at position 06-20N 010-48W, Monrovia Port. After hearing some noise, the duty watchman noticed a robber throwing ships properties overboard. Upon seeing the crew response, the robber jump", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.799999999644228, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-11", + "dateofocc": "2014-01-07", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "CAMEROON:On 7 January, three robbers armed with knives boarded a berthed container ship near position 04-02N 009-40E, Douala Port. When the duty crewman noticed suspicious movements at the forecastle and saw one end of a mooring rope floating in the wate", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.666666699700215, 4.033333300444269] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-12", + "dateofocc": "2014-01-03", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "General cargo vessel", + "descriptio": "EQUITORIAL GUINEA:On 3 January, pirates boarded the general cargo vessel SAN MIGUEL near Bata, Equatorial Guinea and kidnapped three crew members. The ship was reportedly boarded approximately 20 miles northwest of Bata.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.200000000103273, 2.133333300113009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-13", + "dateofocc": "2014-01-02", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Gas carrier", + "descriptio": "GABON:On 2 January, five pirates boarded a drifting gas carrier near position 00-59N 008-23E approximately 55 nm west of Corisco Island. When crewmembers notice them, the alarm was raised and the pirates fled. The master reported that there were a few tu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.38333329964064, 0.983333299581204] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-199", + "dateofocc": "2014-08-20", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "RED SEA:On 20 August, six persons in a skiff approached an underway tanker near position 12-48N 043-14E, approximately 19 nm north of the Bab al Mandeb. As the skiff closed to a distance of 0.2 nm, the Master raised the alarm, increased speed, activated", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.233333300273046, 12.800000000399564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-200", + "dateofocc": "2014-08-25", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Trawlers", + "descriptio": "BANGLADESH:On 22 August, four robbers armed with knives boarded an underway bulk carrier near position 22-15N 091-43E, 4 nm west of Patenga, Chittagong. They threatened the duty watchmen who retreated into the accommodation area and locked the doors. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-201", + "dateofocc": "2014-08-25", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Trawlers", + "descriptio": "BANGLADESH:On 25 August, a group of 36 fishermen aboard three trawlers were attacked by a group of pirates near Hatiya Upazila. At least ten of the fishmen were injured, most by gunfire, while ten others were reportedly thrown into the sea. Pirates depar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.24999999992383, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-202", + "dateofocc": "2014-08-22", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 25 August, three persons in a wooden boat approached an anchored chemical tanker position: 06-01S 106-53E, Tanjung Priok Tanker Anchorage. Alert duty crew on routine rounds noticed the boat and informed the duty officer, who raised the alarm", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-203", + "dateofocc": "2014-08-22", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 22 August, twelve pirates armed with knives boarded an underway container ship near position 01-10N 103-34E, 5 nm west-northwest of Nipah Island. They entered the engine room and took hostage the Electical Officer who managed to alert the cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-204", + "dateofocc": "2014-08-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 22 August, three robbers boarded an anchored bulk carrier near position 01-26N 104-37E, approximately 13 nm north-northeast of Bintan Island. Alert duty crewmen noticed the robbers using a bamboo pole to board the ship and alerted the duty o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-205", + "dateofocc": "2014-08-20", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 20 August, robbers boarded an anchored bulk carrier near position 00-14S 117-40E, Samarinda Anchorage. When the duty crewman noticed the forward store room door lock broken, he discovered the mooring ropes were missing. The incident was repo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.666666699595567, -0.23333329999042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-206", + "dateofocc": "2014-08-20", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 20 August, four pirates armed with knives boarded an underway product tanker near position 01-33N 104-46E, approximately 23 nm east of Tg. Berakit. The crewman raised the alarm and the crew mustered. Seeing the crew response, the pirates fle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.766666699807956, 1.549999999810893] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-207", + "dateofocc": "2014-08-20", + "subreg": "61", + "hostility_": "Robber", + "victim_d": "Sailing Vessel", + "descriptio": "MADAGASCAR:On 20 August, one robber armed with a knife boarded the sailing vessel SOLACE while anchored in the port of Diego Suarez. The boarding occurred at 0200 local time and the thief attempted to steal the portable generator, which was on deck, just", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.416666699861537, -12.20000000040892] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-208", + "dateofocc": "2014-09-03", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 3 September, three robbers armed with knives boarded an anchored product tanker near position 22-44N 070-01E, Kandla Outer Anchorage. They threatened the duty crewman who managed to escape and inform the bridge. Alarm raised and crew mustered. S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.016666699808297, 22.733333300059769] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-209", + "dateofocc": "2014-09-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDIA:On 14 September, seven robbers in a boat approached an anchored chemical tanker near position 17-40N 083-23E, Visakhapatnam Anchorage. Four of the robbers boarded the tanker via the stern and stole fire hose nozzles and couplings. Master noticed th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.383333300267452, 17.66666669995891] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-210", + "dateofocc": "2014-09-17", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 17 September, eight armed pirates hijacked a product tanker, ORAPIN 2, enroute to Timor Leste, near position 01-26N 104-50E, 20 nm northeast of Tg Berakit, Bintan Island. The ORAPIN 2 rendezvoused with two smaller tankers and the cargo of ga", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.833333299747039, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-211", + "dateofocc": "2014-09-17", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VIETNAM:On 17 September, three robbers boarded an anchored tanker near position 10-14N 107-03E, Vung Tau Inner Anchorage. Duty crewman on routine rounds spotted the robbers and informed the duty officer who raised the alarm and mustered the crew. Upon he", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-88", + "dateofocc": "2015-04-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "SINGAPORE STRAIT:Six persons armed with guns and long knives in an unlit fast boat approached a container ship underway. As the fast boat drew closer the Master raised the alarm and the entire crew mustered.The duty AB directed the Aldis lamp towards the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-90", + "dateofocc": "2015-05-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALACCA STRAIT:On 2 May eight armed pirates boarded a tanker which was bound from Singapore to Myanmar. They hijacked the tanker and took the Master and crew as hostages. They ordered the tanker to anchor at position 02-19N 101-40E, around 13 nm SSW of P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.666666699977498, 2.316666700406813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-91", + "dateofocc": "2015-05-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 4 May near position 01-04N 103-37E, a skiff increased speed and came alongside a bulk carrier underway. The alerted crew spotted the skiff and informed the bridge. The master raised the alarm, announced the situation on the PA and mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-92", + "dateofocc": "2015-04-24", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "GUINEA:On 24 April, a duty crewman aboard an anchored bulk carrier near position 09-25N013-43W, 5 nm south of Conakry spotted a small wooden boat with eight persons attempting to board the vessel. The alarm was raised and the crew mustered. Seeing the cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.416666700366591] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-93", + "dateofocc": "2015-04-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 21 April, a nine meter long, light green fishing boat with two outboard engines approached an underway tanker near position 02-28N 104-26E, 4 nm east of Pulau Aur, Johor. The Ship's Master raised the alarm, sounded the fog horn, increased spe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.433333299914011, 2.466666700006954] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-94", + "dateofocc": "2015-04-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "BANGLADESH:On 24 April, a duty crewman aboard an anchored product tanker spotted one small motor boat approaching from the starboard quarter near position 22:07 N - 091:47 E, Chittagong Outer Anchorage 'C'. The alarm was raised and the crew mustered on t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": null + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 27.116666699949747] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-95", + "dateofocc": "2015-04-25", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 25 April, six armed robbers boarded a bulk carrier at anchor near position 22-06N 091-45E, Chittagong OPL. The alarm was raised, the crew mustered and Port Control informed. The robbers stole ship's properties and escaped. Later the Coast G", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-96", + "dateofocc": "2015-04-25", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Cotainer Ship", + "descriptio": "BANGLADESH:On 25 April, one robber armed with a long knife boarded an anchored container ship near position 22-11N 091-43E, Chittagong Anchorage. The robber was able to steal ship's stores before being spotted by a duty crewman, who raised the alarm. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.183333299727167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-97", + "dateofocc": "2015-05-01", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 1 May, a duty motorman onboard an anchored product tanker noticed a small boat with five persons circling around the vessel near position 01-43N 101-24E, Dumai Anchorage. The persons attempted to board the vessel from the poop deck. The alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.39999999984741, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-98", + "dateofocc": "2015-05-05", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "BANGLADESH:On 5 May, armed robbers boarded an anchored tanker near position 21-48N 091-42E, Chittagong Outer Anchorage. The robbers began arguing with the two shore watchmen. A duty crewman heard the raised voices and noticed the robbers attacking the wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 21.799999999791282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-99", + "dateofocc": "2015-05-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:Two robbers armed with long knives boarded a bulk carrier underway. The duty crew noticed the robbers and raised the alarm. All crew members mustered in the citadel except the bridge team. The Singapore VTIS was informed. The VTIS advise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.833333299714695, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-40", + "dateofocc": "2016-02-19", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "BANGLADESH:On 19 February, pirates killed a fisherman, wounded four others and kidnapped one from the Kachikhali Balesshar area near position 21-50N 090-51E. The pirates also looted the fish cargo, fishing nets, cash, mobile phone sets and other valuable", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.850000000090802, 21.833333299760852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-41", + "dateofocc": "2016-02-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDIA:On 14 February, four robbers boarded an anchored bulk carrier using a grappling hook and rope near position 22-46N 070-00E, in the vicinity of the Tuna Buoy Anchorage Kandla. A duty crewmember on routine rounds noticed the robbers trying to break o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.999999999911154, 22.766666699854056] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-42", + "dateofocc": "2016-03-04", + "subreg": "25", + "hostility_": "Gunmen", + "victim_d": "Yacht", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 4 March, near position 13-16N 061-16W, several gunmen boarded a yacht anchored at Wallilabou in southwestern St. Vincent. During the course of the boarding, a German citizen aboard the yacht was killed and another pers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.266666699958819, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-43", + "dateofocc": "2016-03-09", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "DR CONGO:On 9 March, a cargo ship at anchor was boarded near position 05-57S 013-03 E, Boma Port. Robbers were spotted by a duty crewman, the alarm was raised and the crew mustered. The robbers managed to escape without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.049999999733132, -5.949999999981969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-44", + "dateofocc": "2016-03-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 5 March, ten armed pirates in a black speed boat approached and opened fire on the tanker MADONNA I near position 04-05N 006-41E, 32 nm southwest of Bonny Island. They boarded the tanker using a grappling hook and ladder. The alarm was raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.68333329967561, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-45", + "dateofocc": "2016-02-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "NIGERIA:On 26 February, an offshore tug underway noticed a speed boat being launched from a mother vessel near position 03-51N 004-39E, 74 nm southwest of the Bayelsa coast. Five armed pirates boarded the tug. The ship's alarm and SSAS were activated. Al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.649999999641352, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-46", + "dateofocc": "2016-03-03", + "subreg": "61", + "hostility_": "Robber", + "victim_d": "Product Tanker", + "descriptio": "KENYA:On 3 March, a robber armed with a knife boarded a berthed product tanker near position 04-04S 039-40E, Mbaraki Wharf North, Mombasa. A duty crewman on routine rounds noticed the robber, who threatened him and escaped with ship's stores. The duty cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.649999999873899, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-47", + "dateofocc": "2016-03-06", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Fishing Boat", + "descriptio": "VIETNAM:On 6 March, a Vietnamese fishing boat was boarded, reportedly by a Chinese crewed boat, near position 16-30N 112-00E, the Paracel Islands. The robbers boarded the boat, stole food and fuel before destroying fishing nets and departing the area. No", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.000000000370051, 16.500000000429281] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-48", + "dateofocc": "2016-03-04", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH:On 4 March, pirates abducted 25 fishermen along with three fishing boats in an area approximately 100 kilometers south of Patharghata under Barguna, near position 21-02N 89-58E. Reportedly, the pirates demanded a large ransom for each fisherma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.966666699689029, 21.033333300094682] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-49", + "dateofocc": "2016-02-15", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 15 February, an unknown number of robbers boarded a berthed tanker near position22-02N 088-06E, Haldia Oil Jetty No 1, Haldia Port. The robbers were able to steal ship's stores and escape. The robbery was noticed when the crew approached the aft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.100000000226657, 22.033333300127026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-50", + "dateofocc": "2016-02-08", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 8 February, five robbers in a boat approached an anchored tanker near position 22-47N 070-00E, Kandla Outer Anchorage. Two robbers boarded the tanker using a grappling hook attached to a rope. The duty officer on the bridge noticed the robbers a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.999999999911154, 22.783333299926483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-51", + "dateofocc": "2016-01-25", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 25 January, five robbers armed with knives boarded an anchored tanker near position 22-47N 070-02E, 12 nm southwest of Kandla. The duty crewman on routine rounds noticed the robbers near the forecastle and informed the duty officer who raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.033333299880667, 22.783333299926483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-52", + "dateofocc": "2016-03-02", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "ST LUCIA:On 2 March, three robbers, armed with a pistol, a machete, and a club, boarded an anchored sailing yacht in the harbor at Soufriere, near position 13-51N 061-04W, confronting eight passengers. The robbers demanded money at gunpoint. They were gi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.066666699592645, 13.850000000298621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-14", + "dateofocc": "2014-01-07", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 7 January, two robbers boarded an anchored chemical tanker near position 07-05S 112-39E, Gresik Inner Anchorage. They threatened the duty watch keeper, with a knife and stole ship's stores. When other crewmembers noticed the robbers and rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.65000000043608, -7.08333329971731] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-15", + "dateofocc": "2014-01-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 6 January, six robbers armed with knives boarded an anchored chemical tanker near position 03-55N 098-46E, Belawan Outer Anchorage. The robbers boarded the ship via the anchor chain. The alert crew spotted the robbers and raised the alarm, w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-16", + "dateofocc": "2014-01-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 3 January, robbers boarded an anchored chemical tanker near position 03-57N 098-47E, Belawan Anchorage. The robbers stole ships property and escaped unnoticed. Incident reported to port authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.783333299686319, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-17", + "dateofocc": "2014-01-03", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 3 January, three robbers armed with a gun boarded an anchored bulk carrier at position 00-17S 117-40E, Muara Berau Anchorage, while it was carrying out loading operations. They took hostage a duty crewman on routine rounds, tied him up and s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.666666699595567, -0.283333299857134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-18", + "dateofocc": "2013-12-31", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Yachts", + "descriptio": "SAINT MARTIN:Yacht owners reported a number of robberies during 2013 to include six robberies of boats anchored in Simpson and Marigot Bay during a one night period in late December. Many of the thefts throughout the year consisted of electronics and nav", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.099999999626846, 18.033333299997707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-19", + "dateofocc": "2014-01-10", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "INDONESIA:On 10 January, robbers boarded a berthed container ship at position 06-06S 106-53E, Jakarta Container Terminal. The robbers were able to steal engine spare parts before departing the vessel undetected. The theft was noticed by duty engineer aft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-20", + "dateofocc": "2014-01-09", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 9 January, eight robbers boarded an anchored bulk carrier ship via the anchor chain near position 03-42S 114-26E, Taboneo Anchorage. When the watchman detected the robbers, he shouted for help and alerted the duty officer. Seeing the crew re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-21", + "dateofocc": "2014-01-18", + "subreg": "62", + "hostility_": "Hijackers", + "victim_d": "Merchant vessel", + "descriptio": "A merchant vessel reported being hijacked at 1539Z on 18 JAN in position 15-31N 39-57E, approximately 40NM east of Massawa, Eritrea. This area will remain high risk for at least the next 24-48 hours.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [39.949999999973556, 15.516666700294081] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-22", + "dateofocc": "2014-01-17", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Yacht", + "descriptio": "ST LUCIA:On 17 January, robbers boarded a yacht berthed in the port of Vieux Fort and attacked the boat owner and his wife. The 62 year old owner of the boat died from injuries sustained in the attack. Local press reports indicate that three persons were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.949999999962017, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-23", + "dateofocc": "2014-01-18", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Petroleum tanker", + "descriptio": "ANGOLA:On approximately 18 January, pirates possibly hijacked the Liberian-flagged petroleum tanker KERALA seven nautical miles from Luanda, Angola. The tanker was fully laden with gas oil. The owners of the vessel lost contact with the ship on 18 Januar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [12.999999999866418, -8.68333329994897] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-24", + "dateofocc": "2014-01-17", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "OMAN:On 17 January, pirates fired upon the Marshall Islands-flagged product tanker NAVE ATROPOS near position 15-06N 054-23E, approximately 115 nm south of Salalah, Oman. Pirates were operating from a skiff that was launched from a nearby mother ship. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [54.383333300228912, 15.099999999664533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-25", + "dateofocc": "2014-01-16", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "TANZANIA:On 16 January, robbers boarded a berthed bulk carrier at Dar Es Salaam port and stole ship's stores without being detected.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.283333300010383, -6.816666700311316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-26", + "dateofocc": "2014-01-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "General cargo ship", + "descriptio": "INDONESIA:On 16 January, four robbers boarded a general cargo ship near position 06-02S 106-53E, Tanjung Priok Anchorage. The robbers, who arrived in a small speed boat, were armed with a gun and long knives. They took the duty watchman hostage and engin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.033333299818253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-27", + "dateofocc": "2014-01-24", + "subreg": "56", + "hostility_": "Gunmen", + "victim_d": "Tankers", + "descriptio": "LIBYA:Gunmen are threatening tankers near Hariga as part of a blockade to prevent crude oil exports from the Hariga oil terminal in eastern Libya. Ships attempting to dock at the Harigas terminal could be attacked.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [24.000000000222144, 32.066666700244753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-28", + "dateofocc": "2014-01-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tugboat", + "descriptio": "NIGERIA:On 26 January, pirates attacked a tugboat near the Brass River crude oil export terminal in the Niger Delta, kidnapping the ship's captain and an engineer. Sources said that the tugboat was coming from Port Harcourt in Rivers State and transiting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.233333299975811, 4.283333299777837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-212", + "dateofocc": "2014-09-18", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Vehicle Carrier", + "descriptio": "BANGLADESH: On 18 September, twenty five robbers with knives approached an anchored vehicle carrier near position 22-12N 091-47E, Chittagong Outer Anchorage. Ten robbers, armed with knives, boarded via the stern ramp coaming brackets. The alarm was raise", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-213", + "dateofocc": "2014-09-22", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "THAILAND:On 22 September, six armed pirates boarded an underway tanker near position 07-10N 098-12E, 34 nm south-southwest of Phuket Island. They tied up the second officer and duty crewman on the bridge and mustered the rest of the crew in the Mess. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.200000000283524, 7.166666700069015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-214", + "dateofocc": "2014-09-22", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "THAILAND:On September 22, at 2130 LT, position 07-12N 098-00E, around 38 nm SW of Phuket, Thailand; seven armed pirates from a speed boat boarded a product tanker enroute to Penang and hijacked it. They transferred ship bunker to a mother vessel (white c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [97.999999999917293, 7.200000000038585] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-215", + "dateofocc": "2014-09-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 25 September, at 0545 LT, position 01-28N 104-41E around 16 nm NE of TG Berakit, Bintan Island; three robbers boarded an anchored tanker using a boarding hook. Duty A/B on routine rounds noticed the robbers near the poop deck and raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-216", + "dateofocc": "2014-09-27", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "BANGLADESH:On 27 September, four robbers armed with knives boarded an anchored product tanker using hooks attached to ropes near position 21-51N 091-48E, Chittagong Anchorage. They took hostage a duty crewman who was on routine rounds, seized his radio,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 21.849999999657996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-217", + "dateofocc": "2014-10-05", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Supply Tug", + "descriptio": "GUYANA:On 5 October, five robbers armed with knives boarded a berthed offshore supply tug near position 06-47N 058-10W, Georgetown Port. The duty crew discovered the water tight doors to the infirmary and laundry rooms forced open and reported the situat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.783333300308357] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-218", + "dateofocc": "2014-10-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Oil Tanker", + "descriptio": "INDONESIA:On 2 October, the Vietnam-flagged oil tanker SUNRISE 689 went missing and is presumed to have been hijacked soon after leaving Singapore. The SUNRISE 689 was carrying a cargo of 5,226 tons of oil products and a crew of 18.UPDATE: The ship was r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.499999999677868, 1.299999999577949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-219", + "dateofocc": "2014-09-30", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDIA:On 30 September, three robbers in a fishing boat boarded an anchored chemical tanker near position 22-47N 070-03E, Kandla Anchorage. Duty crew on the bridge, noticed the robbers, raised the alarm, sounded ship's horn and mustered the crew. Upon hea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.049999999777867, 22.783333299926483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-220", + "dateofocc": "2014-10-13", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Boat", + "descriptio": "NIGERIA:On 13 October, a gun battle between Nigerian Joint Task Force and suspected pirates left one soldier dead and another injured. The attack occurred along the Ogbia-Brass route of the Nembe waterway of Bayelsa State. The soldiers were apparently tr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.283333299842525, 4.400000000307728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-221", + "dateofocc": "2014-10-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Passenger boat", + "descriptio": "NIGERIA:On 11 October, gunmen attacked a passenger boat near Kiberi-Bio, on the Ogbia-Nembe-Brass waterways in Bayelsa East Senatorial District, leaving four persons missing. Press reports indicate that the gunmen took seized two women and two children,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.283333299842525, 4.400000000307728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-222", + "dateofocc": "2014-09-29", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "THE CONGO:On 29 September, an unknown number of robbers boarded an anchored tug at position04-45S 011-49E, Pointe Noire Anchorage. Duty crewman noticed a small boat with four persons near the vessel Alarm raised and searchlight directed towards the small", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-223", + "dateofocc": "2014-10-15", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Yacht", + "descriptio": "GULF OF ADEN:On 15 October, at 1510 UTC, a motor yacht reported a suspicious approach by one skiff near position 13-33N 050-27E, approximately 90 nm southwest of Al Mukalla, Yemen. The skiff approached the yacht to within 500 meters. Weapons and ladders", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.449999999863451, 13.550000000198963] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-100", + "dateofocc": "2015-05-07", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "DEMOCRATIC REPUBLIC OF CONGO:On 7 May, a duty crewman during routine rounds on a general cargo ship anchored near position 05-52S 013-25E, Ikungulu Anchorage, Matadi, noticed two boats approaching the ship. He immediately informed the duty officer. The r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.416666699596647, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-101", + "dateofocc": "2015-04-24", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "FSO Ship", + "descriptio": "NIGERIA:On 24 April, ten robbers armed with guns and a ladder in a fast wooden boat approached a moored Floating, Storage and Offloading (FSO) ship near position 04-13N 007-23E, 13 nm from Bonny. Four robbers managed to gain access onto the vessel. Duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.383333299608296, 4.216666699838697] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-102", + "dateofocc": "2015-04-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "MALAYSIA:On 25 April, an unknown number of robbers boarded an underway bulk carrier near position 01-20N 104-24E, 7 nm east-southeast of Tanjung Penyusop, Johor. They forced their way into the engine room, stole engine spares and escaped. The theft was n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.399999999944441, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-103", + "dateofocc": "2015-05-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "MALAYSIA:On 6 May, an unknown number of robbers boarded an anchored general cargo ship engaged in bunkering and stores replenishment near position 01-24N 103-08E, 16 nm west-southwest of Pontian District, Johor, The robbers were able to steal ship's prop", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.133333299782009, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-104", + "dateofocc": "2015-05-10", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 10 May, the deck watchman onboard an anchored chemical tanker noticed two robbers trying to gain access into the engine room by opening the skylight near position 01-42N 101-28 E: Dumai Tanker Anchorage. The Duty Officer was informed and the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-105", + "dateofocc": "2015-05-11", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 11 May, robbers in a fishing boat boarded an anchored bulk carrier with a hook attached with ropes near position 10-12N 107-04E, 6.5 nm south of Vung Tau. They broke two padlocks of the deck stores and stole ship's stores and then escaped. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-106", + "dateofocc": "2015-05-05", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 5 May, two robbers attempted to board an underway bulk carrier near position 01-03N 103-37E, 4.9 nm south of Nipah Island. The bridge crew raised the alarm and mustered the crew when they spotted the robber's small boat approaching. Two robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-107", + "dateofocc": "2015-05-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:On 17 May near position 01-05N 103-36E, the Duty Oiler on routine rounds on an underway tanker noticed four robbers in the steering room. He immediately informed the First Enginner who raised the alarm. The Master notified the VTIS Singa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-108", + "dateofocc": "2015-05-15", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "SOUTH CHINA SEA:On 15 May near position 08-19N 108-52E, the Chief Officer onboard an underway heavy lift cargo ship detected some suspicious noises near the aft of the ship. He immediately switched on the deck lights, sent the duty crew to investigate an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.866666699670702, 8.3166666997015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-109", + "dateofocc": "2015-05-01", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "BAHAMAS:On 1 May, two robbers boarded a berthed sailing yacht at the Stuart¿s Cove diving center in New Providence. The robbers shot the boat owner in the head, killing him. The boat owner¿s wife escaped the incident. The robbers escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.983333299614401, 26.683333300322374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-110", + "dateofocc": "2015-05-15", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "GUINEA:On 15 May, six robbers armed with AK-47 rifles boarded an anchored bulk carrier near position 09-25N 013-44W, Conakry Anchorage. The Second Officer saw two robbers on the poop deck and immediately raised the alarm and informed the Master. The robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.733333299977346, 9.416666700366591] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-111", + "dateofocc": "2015-05-14", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply Vessel", + "descriptio": "NIGERIA:On 14 May, pirates boarded two vessels near position 04-01N 007-05E, approximately 23 nm south of Port Harcourt. A platform supply vessel was boarded and then used to attack a self-propelled barge. Pirates kidnapped six crewmembers from one vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.083333300407958, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-53", + "dateofocc": "2016-03-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 11 March, eight pirates in a boat approached an underway tanker near position 02-52N004-52E, 108 nm southwest of the Bayelsa coast. Ship's Master raised the alarm increased speed, commenced evasive maneuvers, activated SSAS, sent distress mess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.866666699904727, 2.866666699840039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-54", + "dateofocc": "2016-03-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 11 March, a vessel reported being fired upon near position 03-30N 005-02E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.033333299577237, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-55", + "dateofocc": "2016-01-28", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 28 January, six robbers in a small boat boarded an anchored product tanker near position 22-49N 070-07E, Kandla Outer Anchorage. Alert duty crewman noticed the robbers and raised the alarm. Hearing the alarm and seeing the crew¿s alertness, the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.116666700441044, 22.81666669972077] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-56", + "dateofocc": "2016-03-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "JAKARTA ANCHORAGE, INDONESIA:On 22 March at 0120 LT near position 06-04S 106-49E, five robbers boarded an anchored bulk carrier. The duty AB on routine rounds was attacked and hit on the head. One robber stood guard near the AB. The remaining robbers ent", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.816666699739358, -6.066666699612597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-57", + "dateofocc": "2016-03-07", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Trawler", + "descriptio": "VIETNAM:On 7 March, a Vietnamese fishing boat, KH 96640 TS, operating in the Paracel Island area, was reportedly rammed and sunk by a much larger ship; painted gray with Chinese characters on the prow. Five crewmembers were able to escape into a very sma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.333333300439222, 16.666666699926566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-58", + "dateofocc": "2016-03-22", + "subreg": "73", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "BITUNG PORT, INDONESIA:At night on 22 March while conducting cargo operations in position 01-26N 125-11E, robbers broke into the safety locker of a berthed chemical tanker. They stole ships equipment and escaped unnoticed. Incident reported to owners.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.183333300360232, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-59", + "dateofocc": "2016-03-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On March 30 at 0130 LT, near position 06-00S 106-54E, Jakarta anchorage, robbers in three skiffs approached and attempted to board an anchored bulk carrier. The alarm was sounded and the crew mustered. The crew repelled the robbers with water c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -5.99999999984874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-60", + "dateofocc": "2016-03-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:On 26 March, pirates attacked the chemical tanker SAMPATIKI near position 04-20N005-10E, approximately 30 nm from the Bayelsa coastline. The pirates ransacked the ship and kidnapped five crewmembers. On 09 May, the five hostages were reportedly r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.166666700004328, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-61", + "dateofocc": "2016-03-26", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Tug and Barge", + "descriptio": "PHILIPPINES:On 26 March, the tug BRAHMA 12 and barge ANAND 12 were attacked and the crew of 10 Indonesian sailors was kidnapped. The crew was transporting coal from Indonesia tothe Philippines when they were hijacked. Subsequent reporting indicates that", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.216666699992857, 6.133333300242384] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-62", + "dateofocc": "2016-03-25", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Tug and Barge", + "descriptio": "PHILIPPINES:On 25 March a tug and barge was boarded by pirates. The barge was let loose and the tug and its ten crew members were taken hostage. The tug was abandoned off Languyan island near position 05-16N 120-05E. The tug was ransacked and all communi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.216666699960456, 4.816666700037956] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-63", + "dateofocc": "2016-04-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 3 April at 2345 LT in Jakarta anchorage in position 05-59S 106-54E, five robbers boarded an anchored container ship using a hook attached to a rope. Crewmembers raised the alarm after noticing the robbers. The robbers jumped overboard and es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-64", + "dateofocc": "2016-04-01", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 01 April at 0145 LT at the Samarinda anchorage in 00-15S 117-35E, the duty officer aboard an anchored bulk carrier heard voices on the forecastle deck. The alarm was sounded. Robbers escaped with ship's stores. Master notified Coast Guard bu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-65", + "dateofocc": "2016-03-23", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Vehicle Carrier", + "descriptio": "PERU:On 23 March two robbers wearing face masks boarded an anchored vehicle carrierpreparing for berthing operations near position 12-01S 077-12W, Callao Anchorage No.1. Duty crewman on routine rounds noticed movement near the forecastle store and report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-29", + "dateofocc": "2014-01-25", + "subreg": "57", + "hostility_": "Gunmen", + "victim_d": "Patrol boat", + "descriptio": "NIGERIA:On 25 January, gunmen attacked a Joint Task Force patrol boat near the Nembe-Bassanbiri Community in Nembe, Bayelsa. The attack left a soldier badly injured.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.383333299575952, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-30", + "dateofocc": "2014-01-23", + "subreg": "57", + "hostility_": "Gunmen", + "victim_d": "Ferry", + "descriptio": "NIGERIA:On 23 January, gunmen attacked a local ferry transiting near the coastal town of Ekeni in Southern Ijaw Local Government Area. The attack claimed the life of a local businesswoman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 4.700000000407385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-31", + "dateofocc": "2014-01-28", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "TANZANIA:On 28 January, robbers boarded the bulk carrier SAM JAGUAR berthed at a port in Tanzania and stole several lengths of 115 meter ropes. The robbers managed to depart the vessel without being detected.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.366666699671441, -6.816666700311316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-32", + "dateofocc": "2014-02-04", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "General cargo ship", + "descriptio": "CONGO:On 4 February, two robbers armed with long knives boarded an anchored general cargo ship near position 04-46S 011-52E, Pointe Noire Roads. The Duty Officer, while on routine rounds, noticed the robbers at the forecastle store room and raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.866666700131077, -4.766666700379915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-33", + "dateofocc": "2014-01-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "NIGERIA:On 30 January, at approximately 0430 local time, three pirates attacked and boarded the tug LAMNALCO HAWK near position 04-15N 005-35E, in vicinity of Pennington Terminal, Bayelsa State. Crew locked themselves in the citadel. Pirates departed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-34", + "dateofocc": "2014-01-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore supply vessel", + "descriptio": "NIGERIA:On 29 January at approximately 2215 local time, pirates attacked and boarded the offshore supply vessel CEE JAY near position 04-20N 005-17E, near off Bayelsa State coast. Pirates kidnapped the ships Master and Chief Engineer and robbed the crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.283333299810181, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-35", + "dateofocc": "2014-02-01", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 1 February, five robbers armed with knives boarded an anchored chemical tanker near position 01-42N 101-25E, Dumai Inner Anchorage. The robbers entered into the engine room and took hostage the duty oiler and second engineer. As the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.416666699744553, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-36", + "dateofocc": "2014-01-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 18 January, robbers fired upon and boarded an anchored bulk carrier ORIENTAL SAPPHIRE while at Kabil Anchorage in Batam. After boarding the vessel, the robbers went to the engine room. The crew locked themselves in the bridge and reported th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.149999999711497, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-37", + "dateofocc": "2014-02-06", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore supply vessel", + "descriptio": "NIGERIA:On 6 February, pirates attacked and boarded the Barbados-flagged offshore supply vessel PSV MARINER SEA off the Bayelsa State coast. Pirates directed the vessel to a particular spot on the coast, near 03-49N 005-43E and then departed the ship, ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.716666700336873, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-38", + "dateofocc": "2014-02-06", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 6 February, pirates attacked the Panamanian flagged tanker CHER approximately 75 nm west-southwest of Brass approximately 1000 local time.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.10000000024047, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-39", + "dateofocc": "2014-02-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 5 February, a drifting tanker experienced a suspicious approach near position 03-46N 006-24E: approximately 30 nm southeast of Brass Terminal. Watchmen on the ship sighted a skiff with six persons armed with rifles approaching the vessel and l", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.400000000372415, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-40", + "dateofocc": "2014-02-08", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "General cargo ship", + "descriptio": "GULF OF ADEN:On 8 February, twelve suspected pirates in three skiffs approached an underway general cargo ship near position 12-24N 043-32E, approximately 15 nm southeast of Perim Island, Yemen. The skiffs approached at high speed from the port and starb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.533333300372703, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-41", + "dateofocc": "2014-02-10", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 10 February, six robbers armed with guns and long knives boarded an anchored bulk carrier near position 01-21N 104-41E, approximately 10 nm northeast of Tg. Berakit, Pulau Bintan. When the duty oiler spotted the robbers in the engine room, h", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.350000000344039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-42", + "dateofocc": "2014-02-10", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "LPG tanker", + "descriptio": "INDIA:On 10 February, robbers boarded an anchored LPG tanker near position 17-37N 083-24E, Visakhapatnam Anchorage. The robbers escaped unnoticed with ships properties. The crew informed Port Control.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.400000000164596, 17.616666700092196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-43", + "dateofocc": "2014-02-05", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 5 February, five robbers armed with knives boarded an anchored chemical tanker near position 01-25N 104-34E, approximately 11 nm north of Tg. Berakit, Pulau Bintan. When the duty watchman on routine rounds noticed foot prints in the engine r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-224", + "dateofocc": "2014-10-15", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Merchant vessel", + "descriptio": "GULF OF ADEN:On 15 October, at 10:50 UTC, a merchant vessel was approached by a suspicious dark blue hull colored skiff with four person onboard, near position 12-41N 048-40E, approximately 90 nm northwest of Bosaso, Somalia. The closest point of approac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.666666700062137, 12.683333299869616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-225", + "dateofocc": "2014-10-12", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 12 October, three robbers boarded an anchored bulk carrier near position03-42S 114-25E, Taboneo Anchorage. When a duty crewman on rounds noticed the robbers, he informed the duty officer who raised the alarm, sounded the ship's fog horn, and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-226", + "dateofocc": "2014-10-11", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "VIETNAM:On 11 October, three robbers boarded a moored bulk carrier near position 10-43N 106-46E, Mooring Buoys, Ho Chi Minh City. During routine rounds duty cadet noticed the paint storeroom's lock missing. Upon approaching the storeroom the cadet was co", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.766666699872587, 10.716666699599273] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-227", + "dateofocc": "2014-10-08", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "BANGLADESH:On 8 October, twelve robbers armed with knives boarded an anchored bulk carrier near position 21-47N 091-46E, 3 nm west of Kutubdia Island. The crew raised the alarm raised, mustered, and notified Port Control. Seeing the crew response, the ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 21.783333299894139] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-228", + "dateofocc": "2014-10-05", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG tanker", + "descriptio": "INDONESIA:On 5 October, four robbers armed with knives boarded an anchored LPG tanker near position 05-35S 104-34E, Teluk Semangka Anchorage. Duty crewman noticed the robbers and raised the alarm. Upon hearing the alarm and seeing the crew alertness, the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, -5.583333300118511] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-229", + "dateofocc": "2014-10-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 22 October, five persons armed with knives boarded an anchored bulk carrier near position 01-25N 104-35E, 11 nm north-northeast of Tg Berakit. The duty crewman spotted the robbers and raised the alarm. Upon hearing the alarm and seeing the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-230", + "dateofocc": "2014-10-21", + "subreg": "81", + "hostility_": "Pirates", + "victim_d": "Fishing boat", + "descriptio": "PHILIPPINES:On 21 October, a Taiwanese-flagged fishing boat, FV CHUAN YU TSAI NO. 1, was looted by pirates traveling in two boats approximately 245 nautical miles east of Mindanao. The pirates reportedly took the boat's fishing gear, but did not board th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [130.683333300088407, 7.63333329984124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-231", + "dateofocc": "2014-10-21", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Container ship", + "descriptio": "VIETNAM:On 21 October, four small boats approached a drifting container ship near position10-09N 107-06E, 10 nm south of Vung Tau. Two boats approached the stern and persons in the boats asked duty crew men if they had any scrap items available. As the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.099999999941815, 10.150000000268903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-232", + "dateofocc": "2014-10-21", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "MALAYSIA:On 21 October, pirates armed with knives and guns hijacked an underway product tanker near position 01-48N 104-31E, 24 nm east-southeast of Tg Sedili Besar. The pirates took hostage the crew and had the Master anchor the vessel. The pirates dama", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.516666699575012, 1.800000000043781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-233", + "dateofocc": "2014-10-20", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 20 October, two robbers boarded an underway bulk carrier near position01-08N 103-29E, 4 nm east of Palau Karimun. The junior engineer raised the alarm when he spotted the robbers near the engine room. The crew mustered and searched the vesse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.483333299748381, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-234", + "dateofocc": "2014-10-19", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "LPG tanker", + "descriptio": "INDONESIA:On 19 October, two robbers boarded an underway LPG tanker near position 01-10N103-32E, 7 nm east-northeast of Palau Karimun Kecil. Duty crewman saw robbers escaping from steering flat and informed the bridge. Duty officer raised the alarm and m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.533333299615094, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-235", + "dateofocc": "2013-10-18", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 18 October, five robbers armed with long knives boarded an underway tanker near position 01-08N 103-28E, 3 nm east of Palau Karimun Kecil. The robbers went to the engine room, took third engineer hostage, stole engine spare parts and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.466666699675955, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-236", + "dateofocc": "2014-10-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 17 October, six robbers boarded an anchored bulk carrier near position 05-30S105-18E, Tarahan Anchorage. Duty crewman spotted robbers and raised alarm. The robbers escaped with engine spare parts.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.300000000243301, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-112", + "dateofocc": "2015-05-15", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 15 May, an unknown number of robbers boarded a berthed product tanker during cargo operations near position 23-01N 070-13E, Kandla Port. They stole ship's property and escaped. The Duty crewman on routine rounds noticed the theft and raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.016666700086944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-113", + "dateofocc": "2015-05-15", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 15 May, up to 30 pirates in six fishing boats hijacked the Malaysia-flagged tanker MT ORIENTAL GLORY off Bruit Island in Malaysia. The armed men forced the crew to take the vessel to another location further south where they transferred appro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.216666699701761, 2.583333299812807] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-114", + "dateofocc": "2015-05-16", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 16 May, an unknown number of robbers boarded an anchored bulk carrier near position 21-46N 091-42E, 7 nm west of Kutubdia Island. The robbers stole ship's property and escaped. The duty crew on routine rounds noticed the theft and raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 21.766666699821712] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-115", + "dateofocc": "2015-05-17", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "BANGLADESH:On 17 May, three robbers armed with long knives boarded an anchored general cargo ship near position 22-12N 091-43E, Chittagong Outer Anchorage. The duty crewman saw the robbers and raised the alarm, sounded the ship's whistle and directed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-116", + "dateofocc": "2015-05-22", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Anchored Vessel", + "descriptio": "COTE D'IVOIRE:On 22 May, two armed robbers in a wooden boat approached an anchored vessel near position 05-20N 004-01W, Abidjan Anchorage. The wooden boat appeared similar to those used by local fishermen. One of the robbers attempted to board the ship,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.016666699681195, 5.333333299676895] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-117", + "dateofocc": "2015-05-26", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 26 May, three robbers in a small boat attempted to board an anchored tanker near position 06-26N 003-20E, Tincan Berth No. 1, Lagos. The duty crewman on deck watch saw the robbers and raised the alarm. Upon seeing the crews response, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-118", + "dateofocc": "2015-05-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 4 May, four robbers boarded an underway bulk carrier near position 01-05N 103-46E, 1 nm south-southwest of Pulau Takong Besar. Duty crew spotted the robbers and informed the Bridge. The alarm was raised and the crew mustered. Seeing the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.766666699775612, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-119", + "dateofocc": "2015-05-16", + "subreg": "72", + "hostility_": "Suspicious Approach", + "victim_d": "Passenger Vessel", + "descriptio": "PHILIPPINES:On 16 May, several small inflatable speedboats made a suspicious approach on an underway passenger vessel near position 04-10N 121-10E, 69 nm south-southeast of Bintoulan Island. At a distance of 0.5 nm, the ship's master increased speed and", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.16666670015843, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-120", + "dateofocc": "2015-05-20", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 20 May, three robbers boarded an anchored product tanker near position 13-44N 121-02E, Batangas Anchorage. The robbers used a hook attached with rope to board the vessel while the crew was busy with pilot arrangements and berthing procedur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-121", + "dateofocc": "2015-05-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 20 May, an unknown number of robbers boarded an anchored product tanker near position 01-42N 101-28E, Dumai Anchorage. The robbers boarded unnoticed and broke the padlock of the aft engine room casing door. However, nothing was stolen. The m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-122", + "dateofocc": "2015-05-22", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 22 May, an unknown number of robbers boarded an anchored container ship near position 10-11N 107-03E, Vung Tau Roads. The Duty Bosun on routine rounds noticed the forward paint locker had been broken into. Upon checking, he found foot prints v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-123", + "dateofocc": "2015-05-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 23 May, four robbers boarded an underway container ship near position 01-02N 103-39E, 5 nm south of Pulau Nipah. A crewman spotted the robbers near the aft deck and alerted the other crewmembers. Seeing the alerted crew, the robbers escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-124", + "dateofocc": "2015-05-27", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 27 May, one robber boarded a berthed product tanker near position 23-01N 070-13 E, Jetty OJ4, Kandla. A duty crewman on routine rounds saw the robber and raised the alarm. The robber managed to escape with stolen ship's stores in a small boat wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.016666700086944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-81", + "dateofocc": "2016-04-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "INDONESIA:On 18 April, one robber boarded an anchored vessel near position 03-56N 098-45E, Belawan Anchorage. Duty crewman on routine rounds noticed a robber on the forecastle deck and informed the duty officer who raised the alarm. Upon hearing the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-66", + "dateofocc": "2016-04-01", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:On 1 April, duty officers onboard a chemical tanker underway near position03-54N 005-41E, 41 nm southwest of Brass noticed a black speed boat approaching. Master raised the alarm, sent distress messages, took anti-piracy preventive measures and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.683333299643266, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-67", + "dateofocc": "2016-04-01", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "MALAYSIA:On 1 April, eight armed pirates in a speed boat boarded an underway tug near position04-07N 118-55E, 17 nm east of Pulau Sipadan. They stole crew personal belongings then kidnapped four crew members and escaped. The remaining crew members sailed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.916666699860798, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-68", + "dateofocc": "2016-04-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "Nigeria:On 07 April at 0920Z in position 03-18.6N 005-23.9E, 75nm SW of Brass, seven pirates in a wooden speed boat armed with automatic weapons approached a drifing taker waiting for cargo loading instructions. The pirates attempted to board the tanker", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.400000000340071, 3.316666700439157] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-69", + "dateofocc": "2016-04-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:On 11 April at 0130 LT, in 02-48.4N 006-40.9E, 118 nm SW of Port Harcout, eight pirates in a speed boat armed with rifles boarded a chemical tanker while enroute from Douala to Abidjan. The pirates stole cash, ship's property and cew belongings.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.68333329967561, 2.800000000076125] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-70", + "dateofocc": "2016-04-10", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 10 April at 1000 LT, in position 03-17.8N 005-31.0E, about 74 nm SW of Brass, seven pirates in a skiff approached a drifting tanker awaiting berthing instructions. The pirates attempted to board the tanker using an expandable ladder but failed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.516666699970699, 3.299999999642637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-71", + "dateofocc": "2016-04-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 11 April at 2156Z in 04-07.33N 005-24.12E, vessel attacked by pirates. Master raised the alarm and raised the SSAS alarm. Crew members assembled in the citadel. Two crew members kidnapped. Nigerian Navy boarded the vessel for the investigation", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.400000000340071, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-72", + "dateofocc": "2016-04-12", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 12 April at 0730 LT in position 06-54S 110-22E, at Semarang anchorage, three robbers boarded a container ship. Robbers were in the engine room when the alarm was raised. Crew mustered after hearing alarm. Robbers escaped with spare engine pa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.366666700168878, -6.9000000001476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-75", + "dateofocc": "2016-04-12", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "COLOMBIA:On 12 April, three robbers armed with guns and a knife boarded an anchored bulk carrier near position 03-53N 077-04W, Buenaventura anchorage. Duty crewman on routine rounds noticed the robbers on the forecastle deck and reported to the duty off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.066666700110034, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-77", + "dateofocc": "2016-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 19 April at 1815 LT, a tanker reported that it was approached by a small boat near position 03-53N 005-22E, while transiting from Calabar, Nigeria, to Lome, Togo. The small craft approached from the starboard quarter and later came alongside t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.366666700370558, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-78", + "dateofocc": "2016-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 19 April a vessel reported being attacked near 03-03N 004-50E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.833333300110382, 3.050000000309069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-79", + "dateofocc": "2016-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 19 April a vessel reported being attacked near 03-37N 004-45E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.750000000274099, 3.616666699639438] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-80", + "dateofocc": "2016-04-18", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 18 April, pirates attempted to board an underway tanker near position03-54N 005-38E, 31 nm southwest of Bayelsa. The armed guard onboard the tanker opened fire while the Master carried out evasive maneuvers resulting in the pirates aborting th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.633333299776552, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-82", + "dateofocc": "2016-04-15", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "MALAYSIA:On 15 April, armed persons in a speed boat fired upon and boarded the tug boat HENRY near Pondo Sibugal, Sitangkai town, 04-40N 119-24E. One crewman was injured by gunfire. The armed persons then kidnapped four crew members and escaped. The Mala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.400000000429486, 4.666666700437816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-44", + "dateofocc": "2014-02-05", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "BANGLADESH:On 5 February, robbers boarded an anchored bulk carrier near position 22-15N 091-45E, Chittagong Anchorage. During routine rounds, duty crewman noticed the four robbers near the stern lowering ships stores into two wooden boats with three robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-45", + "dateofocc": "2014-02-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 19 February, six pirates in a small boat attempted to board an underway tanker near position 03-57N 005-18E, 26 nm southwest of Pennington Oil Terminal. The pirates approached the tanker and tried to hook onto a boarding ladder. Upon detecting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.299999999707325, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-46", + "dateofocc": "2014-02-13", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "RO-RO Vessel", + "descriptio": "SOMALIA: On 13 February, five armed individuals in a skiff chased and fired on the Sierra Leone flagged RO-RO vessel ANDREA near position 01-07N 044-34E, 3 nm north of Barawe, Somalia. The armed embarked security team returned fire and after 20 minutes t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.566666700199335, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-47", + "dateofocc": "2014-02-14", + "subreg": "71", + "hostility_": "Robber(s)", + "victim_d": "Anchored container ship", + "descriptio": "INDONESIA:On 14 February, a robber(s) boarded an anchored container ship near position 05-59S 106-55E, Jakarta Roads. When the duty crewman on routine rounds noticed an unlit small wooden boat quickly leaving the stern of the ship, the crew raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.916666700372105, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-48", + "dateofocc": "2014-02-06", + "subreg": "71", + "hostility_": "Robber(s)", + "victim_d": "Underway cargo ship", + "descriptio": "INDONESIA:On 6 February at approximately 0615 local time, five robbers armed with knives boarded an underway cargo ship near position 01-03N 103:36E, southern Singapore Strait. The robbers entered the engine room and threatened the duty crew who immediat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-49", + "dateofocc": "2014-02-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Underway container ship", + "descriptio": "INDONESIA:On 6 February at approximately 0630 local time, seven robbers armed with knives boarded an underway container ship near position 01:05 N 103:33 E, southern Singapore Strait. The robbers entered the engine room and tied up the electrical officer", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.550000000411558, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-50", + "dateofocc": "2014-02-13", + "subreg": "61", + "hostility_": "PIRATES", + "victim_d": "MERCHANT VESSEL", + "descriptio": "SOMALIA:On 13 February at 1400Z, a merchant vessel was fired on by pirates at 01-07N 044-07E.No injuries or damages were reported.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [44.116666699600216, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-51", + "dateofocc": "2014-02-20", + "subreg": "57", + "hostility_": "ROBBERS", + "victim_d": "SUPPLY SHIP", + "descriptio": "REPUBLIC OF THE CONGO:On 20 February at 0050Z in the Pointe Noire Anchorage, 04-54S 11-49E. Robbers boarded an anchored supply ship using a piece of rope. They stole ship's properties and escaped when the duty crew spotted them.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.900000000082912] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-52", + "dateofocc": "2014-02-09", + "subreg": "25", + "hostility_": "Boarders", + "victim_d": "Yacht", + "descriptio": "BRITISH VIRGIN ISLANDS:On 9 February, two masked men boarded an anchored yacht in Fat Hogs Bay. The owner heard them climbing on board and attempt to open the companion way doors. When the yacht owner yelled, the boarders proceeded to run away with the o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.566666700155452, 18.433333299830736] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-53", + "dateofocc": "2014-02-10", + "subreg": "25", + "hostility_": "Boarders", + "victim_d": "Yachts", + "descriptio": "ST MARTIN:Between late January and early February, a notable increase in boardings and thefts on yachts was noted by boat crews transiting the area. During this time period, there were at least two burglaries of unoccupied boats; four dinghy thefts; thre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.116666700423366, 18.083333299864421] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-132", + "dateofocc": "2015-06-03", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Timber carrier", + "descriptio": "MALAYSIA:On 3 June, pirates in speed boats hijacked the Indonesian-flagged timber carrierKM MUTIARA off Palau Bangka. The crew of the KM MUTIARA were thrown or forced to jump overboard. Local fishermen later rescued most of the crewmembers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.54999999960927, -2.016666699616508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-54", + "dateofocc": "2014-02-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "BANGLADESH:On 24 February, ten robbers boarded an anchored chemical tanker near position 22-15N 091-43E, Chittagong Anchorage. The robbers, who were armed with knives, arrived in an unlit wooden boat and boarded the tanker using grappling hooks. The duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-55", + "dateofocc": "2014-02-20", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Tug and cargo vessel", + "descriptio": "BANGLADESH:On 20 February, the crew on a tug towing a general cargo vessel to scrap observed five fishing boats approach the cargo vessel under tow near position 21-00N 091-37E, approximately 75 nm south of Chittagong. Two of the fishing boats came along", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.616666699787345, 21.000000000125112] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-56", + "dateofocc": "2014-03-04", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Underway bulk carrier", + "descriptio": "NIGERIA:On 4 March, armed pirates attempted to board an underway bulk carrier near position 04-00N 005-16E, approximately 60 nm west-southwest of Brass. The pirates in two skiffs chased and fired upon the vessel during the attempted boarding. The vessel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.266666699737755, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-237", + "dateofocc": "2014-10-15", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "BANGLADESH:On 15 October, two robbers boarded an anchored bulk carrier near position 21-46N091-47E, Chittagong Lightering Anchorage. Duty crewman on routine rounds saw the robbers, who threatened then attacked him. Duty crewman notified Duty Officer who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 21.766666699821712] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-238", + "dateofocc": "2014-10-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 14 October, five robbers boarded an anchored bulk carrier near position01-28N 104-37E, 14 nm north-northeast of Bintan Island. Duty Engineer on security rounds saw the robbers and raised the alarm. Robbers escaped empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-239", + "dateofocc": "2014-10-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG tanker", + "descriptio": "INDONESIA:On 14 October, five robbers boarded an anchored LPG tanker near position05-56S 106-46E, Bay of Jakarta. Duty Officer on bridge saw the robbers breaking into store room via CCTV on the bridge and raised the alarm. Robbers escaped empty handed in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.766666699872587, -5.933333300084826] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-240", + "dateofocc": "2014-10-14", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing boat", + "descriptio": "INDONESIA:On 14 October, four gunmen in a speedboat attacked an Indonesian flagged fishing boat in an area approximately 22 nm east of Banggi Island, in northern Sabah. Two crewmen from the fishing boat sustained injuries from gun fire and were taken to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.64999999969848, 7.266666699802443] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-241", + "dateofocc": "2014-10-14", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Oil/Chemical Tanker", + "descriptio": "MALAYSIA:On or about 14 October, pirates hijacked the 3,200-dwt SRIKANDI 515 which was en route from Gresik to Kalimantan with 3,100 tons of palm oil. The vessel left on 8 October, but by 17 October it had not reached its destination. The captain and 10", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.499999999904219, -6.250000000081627] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-242", + "dateofocc": "2014-10-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 27 October, two robbers armed with knives in a small boat boarded an underway bulk carrier near position 01-04N 103-36E, 11 nm east-northeast of Pulau Karimun Besar. Alarm was raised, crew mustered, and a search was carried out. Upon hearing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-243", + "dateofocc": "2014-10-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 26 October, four robbers in a small boat with a green canopy, armed with knives and bolos boarded an anchored container ship near position 01-24N 104-35E, 10 nm north of Tg. Berakit, Bintan Island. Duty crewman noticed the robbers attempting", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-244", + "dateofocc": "2014-10-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 24 October, twelve robbers in two boats approached an anchored bulk carrier near position 22-15N 091-43E, Chittagong Anchorage. Three robbers armed with long knives boarded the ship using hooks attached with ropes. They took hostage three s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.250000000390401] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-245", + "dateofocc": "2014-10-24", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VENEZUELA:On 24 October, two robbers armed with knives boarded an anchored bulk carrier near position 10-16N 064-35W, Guanta Anchorage. When the duty officer noticed the store room door open, he instructed two crew members to check. Upon arrival at the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-246", + "dateofocc": "2014-11-06", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Anchored Vessel", + "descriptio": "TOGO:On 6 November, nine robbers twice attempted to board an anchored vessel near position 06-02N 001-15E, Lome Anchorage using ropes with hooks. The crew raised the alarm and used fire pumps to prevent the robbers from boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.033333299609581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-247", + "dateofocc": "2014-11-04", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "NIGERIA:On 4 November, six pirates in a boat approached and fired upon an underway container vessel near position 04-03N 005-28E, 30 nm from the Bayelsa Coast. The pirates managed to come alongside the vessel, destroy part of the razor wire, and attempte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.466666700103985, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-248", + "dateofocc": "2014-11-04", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA: On 4 November, pirates boarded an underway tanker near position 03-00N 006-45E, approximately 77 nm south-southeast of Brass.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.750000000338787, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-249", + "dateofocc": "2014-11-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "MALAYSIA:On 4 November, the duty crewman on an anchored offshore tug near position 01-13N 103-34E, 4 nm southeast of Tanjung Piai, Johor, saw a robber on the main deck and immediately notified the bridge. The crew raised the alarm raised and mustered. Se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-125", + "dateofocc": "2015-06-01", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 01 June near position 22-16N 091-43E about 3.7 nm west of Patenga, Bangladesh, 5 robbers with knives boarded an anchored bulk carrier with a rope ladder. The robbers tried to attack the crew watchman. The alarm was raised and the crew muste", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.716666700420149, 22.266666700287544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-126", + "dateofocc": "2015-06-02", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Unidentified Vessel", + "descriptio": "TOGO:On 2 June, a vessel at anchor near position 06-08N 001-17E, Lome Anchorage, reported several small boats posing as fishing boats making repeated approaches to vessels at anchor, taking advantage of the heavy rain which impaired visibility. The vesse", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 6.133333300242384] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-127", + "dateofocc": "2015-06-04", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 4 June, pirates hijacked an underway product tanker near position 02-21N 104-22E,8 nm southwest off Pu Aur. They took hostage all crew members, altered course and sailed the vessel until it rendezvoused with another vessel into which part of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.366666699974871, 2.350000000376383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-128", + "dateofocc": "2015-06-08", + "subreg": "26", + "hostility_": "Pirates", + "victim_d": "Cargo vessel", + "descriptio": "PANAMA:On 8 June, local authorities received a report stating that robbers had boarded the Venezuelan-flagged cargo vessel VFM ALITA near the Atlantic entrance to the Panama Canal, about 50 miles north of Panama City. The two crewmembers onboard the ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.51666669987452, 9.816666700199676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-129", + "dateofocc": "2015-06-05", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "COLOMBIA:On 5 June, an unknown number of robbers boarded an anchored product tanker near position 03-51N 077-05W, Buenaventura Inner Anchorage. A duty crewman on routine rounds noticed the paint store room padlock had been broken. Upon checking, he found", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.08333330018246, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-130", + "dateofocc": "2015-06-08", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Cargo ship", + "descriptio": "DR CONGO:On 8 June, six robbers armed with bolos in a wooden boat boarded an anchored general cargo ship near position 04-44S 011-45E, Pointe Noire Anchorage. A duty crewman saw two of the robbers. One of the robbers chased the duty crewman who managed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.749999999601187, -4.733333299686308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-131", + "dateofocc": "2015-06-04", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "VIETNAM:On 4 June, two robbers boarded an anchored container ship near position10-05N 107-02 E, Vungtau Anchorage. A duty crewman on rounds noticed the robbers and informed the duty officer who raised the alarm and mustered the crew. Seeing the crew resp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.08333329960567] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-135", + "dateofocc": "2015-06-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "MALACCA STRAIT:On 17 June, at approximately 0221 Local Time, three robbers boarded the Brazil-flagged bulk carrier DENSA SHARK near position 01-05N 103-42E, approximately 1.1 nm south-southwest of Pulau Takong Kecil. The robbers were sighted in the engin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.700000000011698, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-136", + "dateofocc": "2015-06-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LNG Tanker", + "descriptio": "MALACCA STRAIT:On 17 June, at approximately 0503 Local Time, five robbers boarded the Norway-registered LNG tanker CLIPPER POSH near position 01:08 N - 103:46 E, approximately 3.9 nm northeast of Pulau Takong Kecil. The robbers were sighted in the engine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.766666699775612, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-137", + "dateofocc": "2015-06-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Oil Tanker", + "descriptio": "MALACCA STRAIT:On 17 June, at approximately 0525 Local Time, five robbers boarded the Panama registered oil tanker PRO TRIUMPH near position 01-03N 103-36E, approximately 6.9 nm southwest of Pulau Takong Kecil. The five perpetrators were sighted in the e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-138", + "dateofocc": "2015-06-13", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "INDONESIA: On 13 June, five pirates armed with guns and knives boarded a tug and barge near position 01-35N 105-00E, 35 nm northeast of Pulau Bintan. They stole the crew's and ship's properties and damaged the ship's communication equipment before escapi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.0000000001437, 1.583333299780463] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-83", + "dateofocc": "2016-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore Supply Vessel", + "descriptio": "NIGERIA:On 19 April, in 03-30N 004-50E about 97 nm SW of Brass, pirates attacked and boarded an underway offshore supply vessel. The alarm was raised and crew mustered. Pirates robbed and kidnapped two crew members. All remaining crew retreated to the ci", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.833333300110382, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-84", + "dateofocc": "2016-04-24", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "YEMEN:On 24 April at 2115Z , vessel was attacked in 14-25.8N 049-08.0E near port of Al Mukalla.Persons in two small skiffs fired shots at vessel. Armed security aboard vessel fired warning shots in return. Vessel reported safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.133333299834305, 14.433333299701417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-85", + "dateofocc": "2016-04-28", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "NIGERIAOn 28 April, a speedboat made a suspicious pass against an anchored tanker near position 04-19N 004-26E, vicinity of Bonga Oil Platform. Armed guards on the vessel fired warning shots and the speedboat moved away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.433333300277297, 4.316666699572124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-76", + "dateofocc": "2016-04-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore Supply Vessel", + "descriptio": "NIGERIA:On 20 April at 0530 LT, an offshore supply vessel reported being attacked and boarded near position; 03-39N 006-08E, 39 nm SW of Brass. Alarm was raised and all but two crew members on board went to citadel. The Nigerian Navy boarded the ship for", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.133333300242384, 3.649999999609008] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-86", + "dateofocc": "2016-04-21", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PERU:On 21 April, deck watchman on routine rounds onboard an anchored crude oil tanker, near position 12-01S 077-13W, Callao Anchorage No.12, noticed a robber attempting to break into the forecastle store room. Duty officer informed, alarm raised, fog ho", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.216666699710231, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-88", + "dateofocc": "2016-04-21", + "subreg": "92", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 21 April, crew onboard an underway bulk carrier noticed a speed boat approaching at high speed near position 10-38N 120-34E, 18 nm east of Dalanganem Island. Alarm raised, whistle sounded, crew mustered and fire hoses activated. The boat c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.566666699959114, 10.633333299938215] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-89", + "dateofocc": "2016-04-28", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 28 April at 1112 LT in 03-56N 004-43E, around 67 nm SW of Baylesa, pirates in a speed boat approached and opened fire on an underwent tanker. Alarm was raised, crew mustered and SSAS was activated. Master performed evasive maneuvers while onbo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.716666700304529, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-90", + "dateofocc": "2016-04-25", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "CONGO:On 25 April at 0200 LT in 04-45S 011-50E, at the Point Noire inner anchorage, two robbers boarded an anchored general cargo ship. Robbers escaped with ship's property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.83333330033679, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-91", + "dateofocc": "2016-04-30", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 30 April at 0650 LT in 17-35.4N 083-24.9E, in Visakhapatnam anchorage, robbers approached and boarded an anchored tanker. Crew noticed two robbers on the poop deck trying to open deck locker. Officer was informed and sounded the alarm. Crew must", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.416666700061796, 17.583333300297909] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-92", + "dateofocc": "2016-04-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore Supply Vessel", + "descriptio": "NIGERIA:On 20 April at 0430Z in 03-39N 006-50E, around 39 nm SSW of Brass, pirates attacked and boarded an underway offshore supply vessel. Crew retreated to the citadel. Pirates escaped before Nigerian Navy boarded vessel. All crew reported safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.83333330017507, 3.649999999609008] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-93", + "dateofocc": "2016-05-04", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "On 04 May at 0020 LT in 03-54.1N 005-17.6E, around 44 nm SW of Baylesa, armed pirates approached, fired upon and attempted to board an underway tanker. Armed guards aboard the tanker exchanged fire resulting in the pirates aborting the attack. All crew r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.299999999707325, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-94", + "dateofocc": "2016-05-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "On 05 May at 0226Z in 03-54N 005-32E, around 36 nm SW of Baylesa, armed pirates chased and fired upon an underway tanker. Pirates aborted attempt after anti piracy measures were performed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.533333300043068, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-95", + "dateofocc": "2016-05-03", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "DROC:On 3 May, robbers boarded an anchored vessel near position 05-51S 01326E, Matadi Anchorage. The robbers were seen by crewmen, who raised the alarm. The robbers escaped with stolen ship¿s stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.433333299669073, -5.850000000248542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-96", + "dateofocc": "2016-05-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 05 May at 1552Z in 03-50.9N 005-24.9E, around 43 nm SW of Baylesa, pirates in two speed boats chased and fired upon an underway tanker. Attack was aborted due to presence of Naval personnel and anti-piracy measures.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.416666700237272, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-97", + "dateofocc": "2016-05-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 07 May at 1500Z in 03-42N 005-10E, around 58nm SW of Baylesa, pirates with automatic weapons approached, fired upon and attempted to board an underway tanker. Master raised the alarm and took evasive maneuvers. The crew mustered in the citadel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.166666700004328, 3.700000000375042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-98", + "dateofocc": "2016-05-07", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "LNG Tanker", + "descriptio": "INDONESIA: On 7 May, merchant tanker HAI SOON 12, underway from Singapore to Sunda Straits was boarded by armed pirates near position 02-04.48S 108:39.27E, around 21 nm S of Pulau Serutu. They took hostage all crew members and hijacked the tanker. As the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [108.650000000306704, -2.066666700382541] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-57", + "dateofocc": "2014-03-04", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore supply vessel", + "descriptio": "NIGERIA:On 4 March at approximately 0130 local time, pirates boarded the Nigerian- flagged offshore supply vessel PRINCE JOSEPH 1 and kidnapping three crewmembers near position 04-17N 007-53E, Bight of Bonny, off Akwa Ibom State. After the pirates depart", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.883333300074128, 4.283333299777837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-58", + "dateofocc": "2014-03-06", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Merchant vessel", + "descriptio": "OMAN:On 6 March, three suspicious white skiffs approached a merchant vessel near position 22-27N 060-29E, approximately 122 nm southeast of Muscat, Oman. The skiffs with two persons onboard each skiff approached the ship to within a half mile. After self", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.486666700210549, 22.451666699884356] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-59", + "dateofocc": "2014-02-28", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Underway bulk carrier", + "descriptio": "PAKISTAN:On 28 February, suspected pirates in a skiff chased an underway Bangladeshi-flagged bulk carrier, MV CRYSTAL GOLD near position 24-33N 062-44E, approximately 40 nm southeast of Gwadar, Pakistan. The pirates reportedly chased for up to four hours", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [62.733333299554658, 24.54999999965537] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-60", + "dateofocc": "2014-03-03", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "RED SEA:On 3 March, pirates approached an Iranian-flagged tanker near the Bab al Mandeb Strait, in the southern Red Sea. Iranian Navy Commander Rear Admiral Habibollah Sayyari told reporters that the armed pirates attempted to attack the ship twice and t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.333333300006473, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-61", + "dateofocc": "2014-03-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Underway tanker", + "descriptio": "INDONESIA:On 6 March, four robbers boarded an underway tanker near position 01-11N 103-26E, approximately 3 nm from Pulau Karimun Kecil. The robbers were armed with knives and arrived in a speed boat. When the crew raised the alarm, the pirates escaped e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.433333299881667, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-141", + "dateofocc": "2015-06-01", + "subreg": "83", + "hostility_": "Robbers", + "victim_d": "Sailing Yachts", + "descriptio": "FRENCH POLYNESIA:At least five sailing yachts have been boarded since the beginning of June in the port of Uturoa, on the northern end of Raiatea Island. Various items have been stolen, including cash, valuables and electronics. Reportedly, one person wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [-151.416666699771582, -16.733333300074378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-62", + "dateofocc": "2014-03-01", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Anchored bulk carrier", + "descriptio": "BANGLADESH:On 1 March, four robbers boarded an anchored bulk carrier near position 22-14N 091-44E, Chittagong Anchorage. The robbers who were armed with knives boarded the ship from the stern. When the duty crew spotted the robbers and raised the alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.233333299593937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-63", + "dateofocc": "2014-03-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Underway tanker", + "descriptio": "SINGAPORE STRAIT:On 3 March near 01-11N 103-26E, four robbers armed with knives in a speed boat boarded a tanker underway. Alarm raised and crew alerted. Seeing the allerted crew the robbers escaped immediatly. Nothing was stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-64", + "dateofocc": "2014-03-03", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply vessel", + "descriptio": "NIGERIA:On 3 March at 19:12 LT near 04-11N 005-44E approximately 7 pirates in a speed boat boarded a supply vessel and hijacked it. They took crew members hostage and used the vessel as a mother vessel to attack and hijack other vessels. They also stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.733333300409299, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-65", + "dateofocc": "2014-03-06", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply vessel", + "descriptio": "NIGERIA:On 6 March, pirates boarded the Nigerian-flagged supply vessel PRIME LADY while in transit from Onne to the Utpotiki oil field near position 04-11N 005-44E, approximately 15 nm offshore. The Captain and one other crew member were reportedly kidna", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.733333300409299, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-66", + "dateofocc": "2014-03-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore tug", + "descriptio": "NIGERIA:On 5 March, pirates boarded the underway Nigerian-flagged offshore tug ASHA DEEP southwest of Brass. Three crewmembers were reportedly taken hostage. On 7 March, Nigerian Naval forces rescued three Indian nationals kidnapped from this ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.783333300308357, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-67", + "dateofocc": "2014-03-09", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "INDIA:On 9 March, three robbers armed with knives boarded an anchored product tanker near position 09-56N 076-09E, Kochi Anchorage. When the duty officer spotted the robbers, stealing ships stores, he raised the alarm. The crew members rushed to the scen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.149999999705301, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-68", + "dateofocc": "2014-03-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Crude oil tanker", + "descriptio": "INDONESIA:On 6 March, at approximately 0515 hours local time, four robbers boarded the underway Marshall Islands-flagged crude oil tanker SEA VOYAGER off Pulau Karimun Kecil. The robbers arrived on a fishing vessel and where armed with knives. Upon detec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-69", + "dateofocc": "2014-03-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Crude oil tanker", + "descriptio": "INDONESIA:On 6 March, at approximately 0535 hours local time, five robbers boarded the underway Liberian-flagged crude oil tanker ORPHEAS off Pulau Karimun Kecil. The robbers were armed with knives and managed to steal some engine spares. The crew was no", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-70", + "dateofocc": "2014-03-10", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 10 March, at approximately 0150 hours local time, four robbers boarded the underway Cyprus-flagged bulk carrier CAPE VENI southwest of Pulau Nipa in the traffic separation schemes eastbound lane. The robbers who arrived on a small boat were", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.900000000377929, 1.199999999844522] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-250", + "dateofocc": "2014-11-07", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "COLOMBIA:On 7 November, an unknown number of robbers boarded an anchored bulk carrier near position 03-49N 077-09W, Buenaventura Anchorage. The duty crewman on routine rounds noticed the hawse pipe cover opened and the securing chain broken. The ship¿s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.149999999946317, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-251", + "dateofocc": "2014-11-12", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Unidentified Vessel", + "descriptio": "NIGERIA:On 12 November, two suspicious motor boats approached a vessel near position 04-32N 005-15E near TULIA Terminal. When the vessel altered course in order to avoid close contact with the motor boats, pirates fired at the accommodation area of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.249999999840611, 4.533333300010781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-252", + "dateofocc": "2014-11-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:On 5 November, the Malta-flagged chemical tanker BASAT and its 14 Turkish crew members were attacked by Nigerian pirates in Nigerian waters while en route from Douala, Cameroon to Abidjan, Ivory Coast. Few details are known, but the pirates board", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.050000000406101, 3.450000000142154] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-253", + "dateofocc": "2014-11-12", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Cargo Ship", + "descriptio": "RED SEA:On 12 November, an Israeli-flagged cargo ship was reportedly attacked by pirates in the Strait of Bab-el-Mandeb. Security guards stationed aboard the transport ship repelled the attack. The incident occurred as the ship made its way from East Asi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.333333300006473, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-254", + "dateofocc": "2014-11-08", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 8 November, five robbers boarded an anchored bulk carrier during cargo operations near position 00-17S 117-36E, Muara Berau Anchorage, Samarinda. The robbers took hostage two duty crewmen, tied them up, and then broke into the forecastle sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.599999999831766, -0.283333299857134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-255", + "dateofocc": "2014-11-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA: On 8 November, duty watchman on routine rounds onboard an anchored chemical tanker near position 01-28N 104-38E, 14 nm north-northeast of Tanjung Berakit, Bintan Island, noticed three persons on the stern of the ship. One of them was armed wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-256", + "dateofocc": "2014-11-04", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH: On 4 November, an armed group attacked a group of fishing boats near the Kuakata Beach area in the Patuakhali District, kidnapping up to 14 fishermen and stealing one of their fishing boats.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.116666700188489, 21.816666699688426] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-257", + "dateofocc": "2014-11-16", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bitumen Tanker", + "descriptio": "IVORY COAST: On 16 November, eight robbers armed with Kalashnikov machine guns and knives boarded an anchored bitumen tanker near position 05-12N 004-02W, Abidjan Outer Anchorage. They tried to hijack the vessel, but the Second Engineer managed to immob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.033333299753622, 5.199999999973898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-258", + "dateofocc": "2014-10-25", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 25 October, 10 robbers in a high-speed boat approached an anchored product tanker and hid under the tanker's bow flare near position 06-19N 003-24E, Lagos Anchorage. One of the robbers boarded the vessel and rigged three hoses into the forwar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-259", + "dateofocc": "2014-11-20", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH: On 20 November, six robbers armed with knives boarded a bulk carrier during anchoring operations near position 21-48N 091-48E, Kutubdia Anchorage. When duty crew saw the robbers on the poop deck lowering mooring ropes over the side, the alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 21.799999999791282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-260", + "dateofocc": "2014-11-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 19 November, five persons armed with knives boarded an anchored tanker near position 01-29N 104-51E, 22 nm northeast of Tanjung Berakit, Bintan Island. The alarm was raised and crew mustered. Seeing the crew response, they confronted the dec", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.84999999964424, 1.483333300047036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-261", + "dateofocc": "2014-11-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA: On 16 November, four robbers boarded an underway chemical tanker near position 01-08N 103-30E, 5 nm east of Pulau Karimun Kecil. Duty crew noticed the robbers and raised the alarm. Upon seeing the crew response, the robbers fled. A search of t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-139", + "dateofocc": "2015-06-12", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Wood Chip Carrier", + "descriptio": "INDONESIA:On 12 June, a Duty Officer onboard an anchored wood chip carrier saw an unlit boat in close proximity to the ship near position 04-00N 098-54E, Belawan anchorage. He informed the duty crewman on deck, who reported that 7 robbers had just boarde", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.90000000021621, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-140", + "dateofocc": "2015-06-11", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "BANGLADESH:On 11 June four robbers boarded an anchored chemical tanker near position 22-12N 091-47E, CUFL Jetty, Chittagong. The Chief Officer saw the robbers on deck and raised the alarm. Seeing an alerted crew, the robbers escaped empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 22.199999999624367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-142", + "dateofocc": "2015-06-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:On 16 June near position 01-04N 103-34E, five robbers armed with knives boarded a tanker approaching the Eastern Anchorage Area. They took one crew member hostage and stole ship's properties and escaped. The alarm was sounded. The crew m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-143", + "dateofocc": "2015-06-20", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:On 20 June, three robbers armed with long knives in a speed boat boarded a container ship approaching the anchorage point near position 22-10N 091-42E, Chittagong B Anchorage. The bridge duty officer informed a deck crewman who shouted at the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.699999999623628, 22.166666699654797] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-144", + "dateofocc": "2015-06-22", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "BANGLADESH:On 22 June, during heavy rain robbers boarded an anchored container vessel near position 22-09N 091-44E, Chittagong Anchorage. A duty crewman saw the robbers attempting to enter the accommodation area. He informed the Duty Officer who raised t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.149999999757654] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-145", + "dateofocc": "2015-06-26", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "TOGO:On 26 June, at the Lome Anchorage near position 06-01N 001-17E, approximately 7 suspected robbers in 2 boats approached and came alongside an anchored container ship. Upon seeing the robbers attempting to board the ship, the duty officer raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.283333299680805, 6.016666700436531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-146", + "dateofocc": "2015-06-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:On 27 Jun near position 01-06N 103-32E, 8 robbers armed with knives boarded a tanker underway. The alarm was raised, the Ship Security Alert System was activated and non-essential crew mustered into the citadel. The robbers escaped with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.533333299615094, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-147", + "dateofocc": "2015-06-27", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "KENYA:On 27 June, robbers armed with long knives boarded a tanker near position 04-02S 039-38 E, Shimanzi Oil Terminal, Mombasa. They were spotted by a duty crewman who alerted the duty officer. The duty officer raised the alarm and the crew mustered. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.633333299976755, -4.033333299753622] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-148", + "dateofocc": "2015-06-27", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 27 June, robbers boarded an anchored tanker near position 13-44N 121-02 E, Batangas Anchorage. The robbers broke into the forepeak store room and escaped with ship's properties. A duty crewman on routine rounds noticed the theft and inform", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-149", + "dateofocc": "2015-06-24", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 24 June, two robbers armed with long knives boarded a bulk carrier during cargo operations near position 00-18S 117-40E, Muara Berau Anchorage, Samarinda. They boarded the vessel via the anchor chain and forced their way thru the hawse pipe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.666666699595567, -0.299999999754334] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-150", + "dateofocc": "2015-06-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 26 June, robbers armed with long knives boarded an underway bulk carrier from the stern near position 01-06N 103-44E, 1 nm east-southeast of Pulau Takong Kecil. As they broke the padlock to the engine room entrance, the alarm was raised and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.733333299981268, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-151", + "dateofocc": "2015-06-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 26 June, an unknown number of robbers boarded a tanker underway probably near position 01-11N 103-25E, 2.5 nm northeast of Pulau Karimun Kecil. The robbers stoleship's properties and escaped. The incident was discovered later in the day.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-73", + "dateofocc": "2016-04-15", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "MALAYSIA:On 15 April at 1739 LT in position 04-31N 119-00E, pirates in a speed boat approached and boarded an underway tug. Pirates opened fire, kidnapped four crew members and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.999999999697138, 4.516666699938355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-74", + "dateofocc": "2016-04-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "INDONESIA:On 17 April at 2345 LT in 01-30N 104-52E, approximately 24nm NE of Bintan Island, four robbers in a wooden boat approached and attempted to board an anchored ship. The robbers aborted the attempt after the crew mustered after hearing the ship a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.866666700440703, 1.49999999994418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-99", + "dateofocc": "2016-05-02", + "subreg": "61", + "hostility_": "Robber", + "victim_d": "Product Tanker", + "descriptio": "KENYA:On 02 May at 0110LT in vicinity 04-03S 039-39E, one robber boarded a berthed product tanker. Alert crew noticed the robber and raised the alarm. Crew mustered and rushed to the location. Upon hearing the alarm and seeing the crew alertness, the rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.649999999873899, -4.049999999650765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-100", + "dateofocc": "2016-05-08", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDIA:On 08 May at 0730 LT in 17-37.1N 083-22.0E, three persons in a fishing boat approached an anchored LPG tanker. They boarded the tanker using a heaving line and a hook. Watch noticed the persons and ordered them to leave.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.366666700195026, 17.616666700092196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-101", + "dateofocc": "2016-05-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 08 May at 2050 LT in 03-20N 109-36E, while enroute from Labuan to Kuantan the engineer noticed some unauthorized persons trying to enter the accommodation space. The alarm was sounded and all deck lights were turned on. Crew mustered and a s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.599999999573015, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-102", + "dateofocc": "2016-04-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "INDONESIA:On 25 April at 0400 LT in 01-09.35N 103-56.68E, four robbers in a wooden boat approached and boarded an anchored dredge via the stern. They stole ship's properties and escaped. Incident reported to authorities who boarded the ship the following", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.950000000244643, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-103", + "dateofocc": "2016-05-09", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 09 May at 2106 LT in 10-11N 107-04E, robbers boarded an anchored container ship and stole ship's stores. The alarm was raised and the robbers escaped. Port control informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.066666699972245, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-104", + "dateofocc": "2016-05-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 5 May, armed pirates in a speed boat chased and fired upon a tanker underway near position 03-53N 005-36E, 34 nm SW of the Bayelsa coast. Ship's Master made loudspeaker announcement and all crew was mustered on the bridge. Attack was aborted d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.599999999806982, 3.883333299944752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-105", + "dateofocc": "2016-05-04", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 4 May, robbers armed with knives boarded an anchored bulk carrier near position00-15S 117-40E, Samarinda Anchorage. Alarm was raised and crew was mustered. The robbers escaped with stolen ship's properties.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.666666699595567, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-106", + "dateofocc": "2016-05-04", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 4 May, robbers boarded a bulk carrier underway near position 01-20S 116-52E, Balikpapan. The robbers stole ship properties and escaped unnoticed. The theft was noticed by the duty crew on routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.866666699929397, -1.333333299756191] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-107", + "dateofocc": "2016-05-05", + "subreg": "57", + "hostility_": "Militants", + "victim_d": "Offshore Oil Facility", + "descriptio": "NIGERIA:On 5 May, militants attacked the Okan offshore oil facility, vicinity 05-30N 005-00E, located in the Escravos Bay in the Niger Delta region. A group known as the Niger Delta Avengers has claimed responsibility for the attack. The facility has bee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.999999999607724, 5.500000000073555] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-108", + "dateofocc": "2016-05-03", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "VIETNAM:On 3 May, a Vietnam-flagged fishing ship was rammed and subsequently sunk while operating in the Paracel Island group vicinity 16-40N 112-20E. The incident occurred late at night, though the crew of the fishing ship believed that the ship that ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.333333300439222, 16.666666699926566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-109", + "dateofocc": "2016-04-24", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 24 April, an unauthorized person boarded a berthed bulk carrier conducting cargo operations near position 35-21N 119-32E, Rizhao Port. Duty crewman noticed the person hiding on the poop deck area and raised the alarm. Seeing the alerted crew, th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.53333330013254, 35.349999999644922] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-110", + "dateofocc": "2016-04-23", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "CHINA:On 23 April, duty crewman on routine rounds noticed a hose inserted into a diesel oil tank. The ship was anchored near position 37-50N 120-01E, Longkou Anchorage. Duty officer on the bridge was informed and alarm was raised. Upon hearing the alarm,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.016666699626626, 37.833333300278298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-111", + "dateofocc": "2016-05-16", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN: On 16 May at 0512Z, five skiffs made a suspicious approach on an underway container ship near position 14-45N 050-58E, near Al Mukalla. Ship¿s Master raised the alarm, increased speed and mustered the crew. As the skiffs closed to 0.5 nm, a ladde", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.966666700226426, 14.749999999698161] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-112", + "dateofocc": "2016-05-12", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "VENEZUELA:On 12 May at 2150 LT in 10-11.3N 064-47.0W, Puerto Jose anchorage, four robbers armed with steel pipes boarded an anchored LPG tanker. Duty crew on routing rounds noticed the robbers and raised the alarm. Seeing the alerted crew the robbers esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.783333299694732, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-71", + "dateofocc": "2014-03-12", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tugboat", + "descriptio": "NIGERIA:On 12 March at approximately 0130 local time, criminals boarded the tugboat SOMKE in the Nembe Local Government Area of Bayelsa, northeast of Brass and kidnapped the vessel's captain. The kidnappers and hostage subsequently disappeared into nearb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.249999999872955, 4.316666699572124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-72", + "dateofocc": "2014-03-12", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tugboat", + "descriptio": "NIGERIA:On 12 March at approximately 0130 local time, criminals boarded the tugboat EBIZAR in the Nembe Local Government Area of Bayelsa, northeast of Brass and kidnapped the vessel's captain. The kidnappers and hostage subsequently disappeared into near", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.249999999872955, 4.316665999899612] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-73", + "dateofocc": "2014-03-22", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Passenger vessel", + "descriptio": "NIGERIA:On 22 March, several armed men boarded a passenger vessel near position 04-46N 006-01E, approximately 30 nm northwest of Brass and robbed the passengers. The men were traveling in a speedboat boarded the vessel near Okpotuwari, in Bayelsa State.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.016666700436531, 4.766666700171243] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-74", + "dateofocc": "2014-03-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Crude oil tanker", + "descriptio": "NIGERIA:On 20 March at approximately 0130 local time, four pirates in a speedboat attacked the Liberian-flagged crude oil tanker CRETE near position 04-14N 005-00E, approximately 40 nm offshore of Bayelsa State, Nigeria. The oil tanker issued a distress", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.999999999607724, 4.233333299911124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-75", + "dateofocc": "2014-03-23", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Chemical tanker", + "descriptio": "RED SEA:On 23 March, five skiffs with three persons in each skiff, approached an underway chemical tanker at high speed near position 13-18N 042-52 E, approximately 50 nmnorthwest of Perim Island, Yemen. The ship's Master raised the alarm, mustered the c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.866666700234305, 13.299999999966076] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-76", + "dateofocc": "2014-03-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 20 March, three robbers boarded an anchored tanker using a rope near position 05-59S 105-55E, at Cigading Anchorage. The duty crewman spotted the robbers and reported the activity to the duty officer on the bridge. The duty officer raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.916666700339761, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-77", + "dateofocc": "2014-02-06", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical tanker", + "descriptio": "NIGERIA:On 6 February at 10:55 local time, position 04-01N 005-01E, around 60 nm east of Brass, Nigeria eight armed pirates in a speedboat chased a chemical tanker underway. The vessel raised alarm, made evasive maneuvers, sent a distress message and act", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.016666700404187, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-86", + "dateofocc": "2014-04-12", + "subreg": "24", + "hostility_": "Robber", + "victim_d": "Anchored Bulk Carrier", + "descriptio": "BRAZIL:On 12 April, a robber armed with a knife boarded an anchored bulk carrier near the position 01-04S 048-29W, Mosqueiro Pilot Station Anchorage. The robber was detected when the Duty Officer saw movement near the forecastle and directed the watchmen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-48.483333299977005, -1.066666700350197] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-79", + "dateofocc": "2014-04-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 2 April, four robbers boarded an anchored tanker from the stern near position 01-24N 104-43E, approximately 12 nm northeast of Palau Bintan. When the duty crewman noticed the robbers, he informed the bridge. The alarm was raised and the cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.716666699941186, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-80", + "dateofocc": "2014-04-01", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "VIETNAM:On 1 April, three robbers boarded a container ship near position 20-52N 107-07E, Cailan Channel. The robbers were attempting to break into the forward store space when they were noticed by the crew. The crew raised the alarm, mustered, and activ", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.116666699838959, 20.866666700422115] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-81", + "dateofocc": "2014-03-31", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 31 March, four robbers boarded an underway bulk carrier near position 01-06N 103-34E, approximately 9 nm east-northeast of Pulau Karimun Besar. The robbers went to the engine room, threatening the Duty Oiler with a knife, tied him up, and fl", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-82", + "dateofocc": "2014-03-31", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 31 March, four robbers boarded an anchored tanker near position 01-24N 104-41E, approximately 12 nm north-northeast of Tanjung Berakit, Pulau Bintan. When the duty crewman noticed the robbers boarding the vessel near the stern, he informed t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-262", + "dateofocc": "2014-11-16", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 16 November, seven robbers armed with knives boarded an anchored bulk carrier near position 01-14S 117-35E, Muara Berau anchorage, Samarinda. When the duty crew on routine rounds noticed the robbers on the forecastle, he immediately notified", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -1.233333300022764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-263", + "dateofocc": "2014-11-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 16 November, five robbers boarded an anchored bulk carrier near position 01-38N 104-55E, 30 nm northeast of Tg. Berakit, Bintan Island. When the duty engineer saw the robbers, he immediately informed bridge. The bridge raised the alarm and m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.916666700307417, 1.633333299647177] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-264", + "dateofocc": "2014-11-13", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 13 November, two robbers boarded an anchored tanker near position 01-14N 103-28E, 2 nm SW of Tanjung Piai. When the engine room crew discovered the robbers in the steering gear room, they informed the duty officer who raised the alarm and mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.466666699675955, 1.233333299814092] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-265", + "dateofocc": "2014-11-11", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 11 November, three robbers boarded a berthed LPG tanker near position 01-04N 104-12E, Tanjung Uban Jetty No.1. The robbers fled when the second engineer raised the alarm after discovering them in the engine room and steering gear room. Termi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.19999999957821, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-266", + "dateofocc": "2014-11-21", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 21 November, an unknown number of robbers boarded a tanker near position 06-19N 003-24E, Lagos Anchorage. All ship's crew retreated into the citadel. After waiting an hour, the crew conducted a search of the vessel; it was reported to have be", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.40000000027544, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-267", + "dateofocc": "2014-11-25", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 25 November, five robbers boarded an anchored product tanker near position 09-58N 076-14E, Kochi Anchorage. They broke into the paint store room and stole items from it. Duty crew noticed the robbers and informed the duty officer who raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.233333300440904, 9.966666699799816] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-268", + "dateofocc": "2014-11-23", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:On 23 November, two robbers armed with long knives boarded an anchored container ship near position 22-07N 091-48E, Chittagong Anchorage. Duty crewman on rounds saw the robbers and raised the alarm. Upon hearing the alarm and seeing the crew r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 22.116666699788084] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-269", + "dateofocc": "2014-11-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 23 November, six robbers armed with knives boarded an underway bulk carrier near position 01-07N 103-29E, 4 nm east-southeast of Pulau Karimun Kecil. The robbers entered the engine room and were seen by duty oiler and the second engineer who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.483333299748381, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-270", + "dateofocc": "2014-11-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 22 November, three robbers boarded an underway chemical tanker near position 01-07N 103-30E, 5 nm east-southeast of Pulau Karimun Kecil. The robbers entered the engine room and tried to take hostage the duty oiler who managed to escape and r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-159", + "dateofocc": "2015-07-24", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 24 July near position 01-03N 103-39E a duty oiler and chief engineer on board an underway bulk carrier sighted 2 robbers armed with knives in the engine room stealing engine spares. The emergency alarm was raised, the crew mustered an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-271", + "dateofocc": "2014-11-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 22 November, three robbers boarded an anchored LPG tanker near position 01-24N 104-41E, 12 nm north-northeast of Tg. Berakit, Bintan Island. Second mate on routine rounds saw the robbers with bags on their back on the poop deck. He immediat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-272", + "dateofocc": "2014-11-20", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "VIETNAM:On 20 November, two robbers in a speedboat boarded an anchored LPG tanker near position 10-15N 107-09E, Vung Tau. Duty crew spotted the robbers and raised the alarm. Seeing the crew response, the robbers fled without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.149999999808529, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-273", + "dateofocc": "2014-11-19", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 19 November, an unknown number of robbers boarded a drifting container ship unnoticed and escaped with ship¿s stores near position 10-12N 107-15E, 11 nm southeast of Vung Tau. Duty crew discovered footprints on the main deck in the vicinity o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.250000000441275, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-274", + "dateofocc": "2014-11-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "SAO TOME AND PRINCIPE:On 30 November, an underway tanker experienced an attempted boarding near position00-45S 006-15E, 47 nm south-southwest of Sao Tome and Principe Island. The Ship's Master observed a black hull tug boat lowering a speed boat with eig", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.249999999872955, -0.750000000353396] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-152", + "dateofocc": "2015-07-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 04 July at the Belawan International Container Terminal near position 03-43N 098-42E, three robbers in a wooden boat approached a berthed container ship. The duty watchman noticed two robbers boarding the ship near the forward deck. He shout", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.699999999850036, 3.716666700272185] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-153", + "dateofocc": "2015-06-25", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "HONDURAS:On 25 June, a sailing vessel anchored near position 16-06N 086-55W, East Harbor, Utila Island, experienced the second boarding and robbery in ten days. Both incidents involved night-time boardings with mostly dive gear being stolen. There were n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.916666699933955, 16.099999999696877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-154", + "dateofocc": "2015-07-05", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDIA:On 5 July, five persons in a boat approached an anchored product tanker and attempted to board using the anchor chain near position 17-40N 083-24E: Vishakhapatnam Anchorage. The duty watchman raised the alarm and informed the bridge. Seeing the ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.400000000164596, 17.66666669995891] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-155", + "dateofocc": "2015-06-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 17 June, five robbers boarded an underway LPG tanker near position 01-04N 103-36E, 5.6 nm southwest of Pulau Nipah. The alarm was raised and the crew mustered. Seeing the crews alertness, the robbers escaped empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-156", + "dateofocc": "2015-07-11", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "VIETNAM:At the Vung Tau Anchorage near position 10-10N 107-05E, an unnoticed robber boarded an anchored product tanker, stole ship's stores and escaped. The incident was noticed later in the day and reported to the authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.083333300044671, 10.166666700166047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-157", + "dateofocc": "2015-07-14", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Container Ship", + "descriptio": "TOGO:On 14 July, near position at 06-07N 001-16E, Lome Anchorage, the deck watch of an anchored container ship noticed a wooden boat with 5 individuals and no lights circling the vessel with the intention of climbing on board. The alarm was raised, the c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.266666699608436, 6.116666700169958] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-158", + "dateofocc": "2015-07-15", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "Vietnam:On 15 July, 8 robbers in 2 wooden boats boarded a berthed bulk carrier near position at 10-45 N 106-42 E, in the Fertilizer Terminal, Ho Chi Minh City Port. The duty crewman on routine rounds noticed the robbers and informed the duty officer who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.70000000010873, 10.749999999568843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-160", + "dateofocc": "2015-07-25", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:On 25 July near position 01-04N 103-36E, persons in an unlit boat attempted to board an underway tanker. The anti-piracy crew observed the boat approaching to 20 meters. The crew flashed lights resulting in the boat aborting the attempt", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-161", + "dateofocc": "2015-07-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "SINGAPORE STRAIT:On 26 July near position 01-04N 103-37E, the duty engineer onboard an underway product tanker discovered 3 robbers in the engine room near the incinerator space. The robbers fled to the poop deck. The engineer immediatly closed and locke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-162", + "dateofocc": "2015-07-21", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "SEYCHELLES:On 21 July near position 04-37S 055-28E, an unknown number of robbers boarded an anchored sailing yacht in Victoria Harbour and stole personal electronic items, a small amount of cash and the yacht's dinghy tied alongside the yacht. The robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.466666699922314, -4.616666699880454] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-163", + "dateofocc": "2015-07-21", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "SEYCHELLES:During the week of 21 July near position 04-37S 55-28E, two robbers boarded an anchored sailing yacht in Victoria Harbour. The yacht owner attempted to defend himself and his wife using a flare gun, but one robber took the flare gun away from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.466666699922314, -4.616666699880454] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-164", + "dateofocc": "2015-07-20", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "KENYA:On 20 July, two robbers attempted to board a berthed product tanker during cargo operations near position 04-04S 039-40E, Mbaraki Terminal, Mombasa Port. The alerted crew and shore watchmen noticed the robbers as they attempted to gain access via t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.666666699771042, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-113", + "dateofocc": "2016-05-15", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:On 15 May at 0242 LT in 22-06N 091-45E, at Chittagong \"C\" anchorage, seven robbers in a small boat came alongside and attempted to board an anchored container ship. Alert crew noticed the robbers and informed the duty officer who raised the al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 22.099999999890883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-114", + "dateofocc": "2016-05-11", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "TOGO:On 11 May at 0131Z in 06-05.7N 001-15.0E, at Lome anchorage, seven robbers in a wooden boat approached an anchored product tanker. One robber managed to board the tanker using a manrope. Alert crew noticed the robbers and notified the duty officer w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.100000000272814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-115", + "dateofocc": "2016-05-11", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "TOGO:On 11 May, seven robbers in a wooden boat approached an anchored product tanker, with one robber getting aboard the tanker near position 06-05N 001-15E, Lome Anchorage. Alert crew noticed the robbers and informed the duty officer who in turn raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.249999999711235, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-116", + "dateofocc": "2016-04-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "MALAYSIA:On 16 April at 0345 LT in 01-23N 104-28E, five unauthorized persons were noticed by the duty crew onboard a pipe laying barge. They tried to communicate with the duty crew in their local dialect. The duty crew did not respond and the persons wal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.466666699708298, 1.383333300313609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-117", + "dateofocc": "2016-05-18", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 18 May between 0001 and 0400 LT in 00-14S 117-34E, at Samarinda anchorage, a robber boarded an anchored bulk carrier. Robber stole ship's property and escaped. Incident was discovered during later rounds by crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.23333329999042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-118", + "dateofocc": "2016-05-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "INDONESIA:On 21 May at 0330 LT in 01-10N 103-58E, Batam anchorage, six robbers in a skiff approached an anchored tug. Four robbers wearing ski masks managed to board the vessel. Duty officer raised the alarm and crew mustered. Upon hearing the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.966666700141786, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-119", + "dateofocc": "2016-04-29", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Ore Carrier", + "descriptio": "CHINA:On 29 April at 0020 to 0140 LT at 38-55.5N 119-13.8E, at Jingtang anchorage, duty crew onboard an anchored ore carrier noticed the diesel oil level gauges lower than normal. The diesel oil tank vents were found to be damaged with indications that o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.233333300032882, 38.933333300044069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-120", + "dateofocc": "2016-03-27", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 27 March at 0610 LT vicinity 32-16N 119-25E, at Yangzhou terminal, robbers disguised as stevedores boarded bulk carrier during cargo operations and escaped with ship's property. Duty crew noticed the theft and raised the alarm. Crew mustered and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.416666700326687, 32.266666699711607] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-121", + "dateofocc": "2016-02-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:Between 27 April and 03 March vicinity 06-06S 106-48E, at Tanjung Prick port berth 202, unauthorized persons boarded a bulk carrier while at berth and escaped with ship's properties. The ship departed from berth to Jakarta anchorage where the t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.799999999842157, -6.099999999582167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-122", + "dateofocc": "2016-05-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Research Veseel", + "descriptio": "INDONESIA:On 19 May at 0430 LT in 01-11N 103-57E, at Batam anchorage, four robbers in a small vessel boarded an anchored research vessel. They stole ship's properties and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.950000000244643, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-123", + "dateofocc": "2016-05-23", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SOUTH AFRICA:On 23 May at 2000 LT vicinity 29-52N 031-01E, at Durban port, an unauthorized person disguised as bunker crew boarded a berthed tanker. Person entered accommodation area and stole ship's properties and crew cash. Incident reported to port co", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [31.016666700345695, -29.866666700022563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-124", + "dateofocc": "2016-05-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDIA:On 14 May at 0400 LT in 23-02N 070-13E, at Kandla port, a robber boarded a berthed LPG tanker and stole ship's properties and escaped. The incident was discovered later during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.216666700174471, 23.03333330015937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-125", + "dateofocc": "2016-05-28", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SURINAME:On 28 May vicinity 05-46N 056-52W, in Nickerie, police arrested five people allegedly involved in a pirate attack that left one man dead and three others missing at sea. They said the four crew members were aboard a boat in Surinamese waters whe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-56.866666699996358, 5.766666700203587] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-126", + "dateofocc": "2016-05-25", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 25 May, a UK-flagged yacht was boarded by two masked men, one with a gun, while anchored in Tobago Cays, vicinity 12-38N 061-21W. The intruders demanded money and hit the Captain several times on the head with the yach", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.349999999795102, 12.633333300002903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-83", + "dateofocc": "2014-03-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 29 March, four robbers boarded an underway product tanker near position 01-07N 103-30E, approximately 6 nm east of Pulau Karimun Kecil. The robbers wore masks and were armed with knives. Once onboard, the robbers went to the engine room and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-84", + "dateofocc": "2014-04-05", + "subreg": "62", + "hostility_": "Two skiffs and a dhow", + "victim_d": "Merchant vessel", + "descriptio": "OMAN:On 5 April, two skiffs and a dhow approached a merchant vessel to within 300 meters by near position 20-15N 059-02E, approximately 15 nm from Masirah Island, Oman. When an armed embarked security team fired warning shots, the skiffs turned away.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [59.03333330042426, 20.250000000325713] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-85", + "dateofocc": "2014-02-23", + "subreg": "71", + "hostility_": "Robbers on fishing boats", + "victim_d": "Barge under tow", + "descriptio": "SINGAPORE STRAIT:On 23 February at 1430 local time, ten robbers from six fishing boats boarded a barge under tow near position 01-11N 103-34E. The Master of the tug sounded the alarm and reported the boarding to VTIS Central, Singapore. The robbers depar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-87", + "dateofocc": "2014-04-14", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Oil Tanker", + "descriptio": "GULF OF ADEN:On 14 April, seven persons armed with an RPG in a white-and blue skiff approached an oil tanker near position 12-25N 043-43E, south of the Bab El Mandeb Strait in the Gulf of Aden. The ship's master raised the alarm, sounded the ship's whist", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.716666699767131, 12.416666699564303] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-127", + "dateofocc": "2016-05-25", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "GUATEMALA:On 25 May, a sailing yacht was boarded at night in a marina area of Rio Dulce, vicinity15-49N 088-45W. The thieves stole an outboard motor from a dinghy that was chained to the yacht.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.749999999602039, 15.816666700393739] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-88", + "dateofocc": "2014-04-13", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "YEMEN:On 13 April, four persons in a skiff approached an underway chemical tanker near position 13-58N 055-32E, approximately 106 nm northeast of Socotra Island, Yemen. The master raised alarm, increased speed, and mustered the non-essential crew members", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [55.533333299861454, 13.966666699929192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-89", + "dateofocc": "2014-04-05", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Chemical Tanker", + "descriptio": "RED SEA:On 5 April, five persons in a skiff approached an underway chemical tanker near position 12-35N 043-26E, Bab El Mandeb Strait, Red Sea. The master raised alarm, altered course, and directed non-essential crew members to muster in a safe room. Whe", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.4333332997399, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-90", + "dateofocc": "2014-04-09", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Anchored Bulk Carrier", + "descriptio": "INDONESIA: On 9 April, nine robbers armed with knives boarded an anchored bulk carrier near position 03-54N 098-46E, Belawan Anchorage. The duty crewmen on routine rounds spotted the robbers and informed the duty officer who raised the alarm, sounded shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-91", + "dateofocc": "2014-04-23", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Anchored tanker", + "descriptio": "NIGERIA:On 23 April, three individuals in a small boat approached an anchored tanker carrying out STS operations near position 06-17N 003-21E, 6.3 nm south-southwest of Lagos breakwater. The suspected robbers tried to board the ship via the anchor chain.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.35000000040867, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-92", + "dateofocc": "2014-04-21", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "LNG tanker", + "descriptio": "NIGERIA:On 21 April, an unlit small boat made a sudden course change, increased speed, and made a close pass by an LNG tanker near position 03-41N 006-18E, approximately 37 nm south of Brass. The master raised the alarm, increased speed, altered course,", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.299999999739669, 3.683333299578578] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-93", + "dateofocc": "2014-04-17", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Underway bulk carrier", + "descriptio": "GULF OF ADEN:On 17 April, five armed persons in a skiff approached an underway bulk carrier near position 12-24N 043-42E, approximately 21 nm southeast of Perim Island, Yemen. The ship's master raised alarm, mustered the crew, increased speed and charged", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.699999999869988, 12.399999999667159] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-94", + "dateofocc": "2014-04-22", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "MALAYSIA:On 22 April, up to ten heavily armed pirates boarded and hijacked the product tanker, MT NANIWA MARU No 1, near position 02-59N 100-54E, 3 nm west-northwest of One Fathom Bank, near Port Klang. The pirates pumped out 3 million liters of the 4.5", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.900000000280897, 2.983333299645892] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-95", + "dateofocc": "2014-04-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Anchored product tanker", + "descriptio": "INDONESIA:On 21 April, an unknown number of robbers boarded an anchored product tanker near position 01-24N 104-34E, 11 nm north of Palau Bintan. The robbers stole spare parts and property before escaping undetected. The thefts were subsequently noticed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-275", + "dateofocc": "2014-11-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 8 November, eight pirates armed with machine guns and explosives in a speed boat approached and opened fire on an underway tanker near position 04-24N 005-03E, Pennington Oil Terminal. Ship's Master raised the alarm, commenced evasive maneuver", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.050000000373757, 4.400000000307728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-276", + "dateofocc": "2014-11-27", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Bulk Cargo Carrier", + "descriptio": "INDIA:On 27 November, one person boarded an anchored bulk cargo carrier waiting to discharge cargo near position 20-55N 088-07E, 40 nm south of the Sagar Islands. The robber boarded the ship from a small boat carrying six other persons. The robber was sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.116666700123858, 20.916666700288829] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-277", + "dateofocc": "2014-12-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "On 6 December, position 02-15N 104 49E, armed robbers boarded a tanker underway. They shot a crew member in the head, stole crew properties and escaped. Authorities sent a helicopter and evacuated the injured crew member and sent him to a hospital for tr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.81666669967467, 2.249999999743579] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-147", + "dateofocc": "2016-07-01", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MARTINIQUE:On 01 July, a robber boarded an anchored sailing yacht in Ansa Mitan, vicinity14-32N 061-05W. Robbers stole a small outboard motor. Local authorities were notified.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.083333299665014, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-278", + "dateofocc": "2014-12-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bitumen Tanker", + "descriptio": "MALAYSIA:On 7 December, approximately 0430 Local Time, as many as seven robbers boarded the bitumen tanker VP ASPHALT 2, loaded with 2,300 tons of bitumen near position 02-15N 104-49E, 20 nm southeast of Pulau Aur, Johor, Malaysia. The robbers checked wh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.81666669967467, 2.249999999743579] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-279", + "dateofocc": "2014-12-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 7 December, 20 armed robbers in a boat approached an underway product tanker, with five robbers boarding the vessel near position 01-31N 104-35E, 17 nm west-southwest of Tanjung Punggai, Johor, using ladders and cutting through the razor wire", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.516666699841323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-280", + "dateofocc": "2014-11-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 4 November, four robbers in small boat boarded an anchored LPG tanker near position 01:29N - 104:40E, 16 nm north-northeast of Tg Berakit, Bintan Island. Duty crewman spotted the robbers and informed the duty officer who raised the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.483333300047036] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-281", + "dateofocc": "2014-11-04", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 4 November, three robbers in a small wooden boat boarded an anchored bulk carrier near position 01-26N 104-39E, 13 nm north-northeast of Tg Berakit, Bintan Island. Duty crewman spotted one robber onboard the vessel. He informed the duty offi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.650000000177329, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-282", + "dateofocc": "2014-11-26", + "subreg": "82", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "PAPUA NEW GUINEA:On 26 November, 4 robbers boarded a sailing yacht near position 04-20S 152-16E, Kokopo, New Britain Island. They tied up the captain and threatened him and a passenger with a machete. The passenger chased one robber from the boat, and th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [152.266666699995085, -4.333333299853223] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-283", + "dateofocc": "2014-11-15", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "SINGAPORE STRAIT:On 15 November, position 01-08N 103-30E four robbers boarded a chemical tanker underway. The duty crew noticed the robbers and raised the alarm.Seeing the alerted crew the robbers escaped. A search was carried out throughout the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-284", + "dateofocc": "2014-12-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "SOUTH CHINA SEA, SOUTHERN PART:On 6 December near 01-31N 104-35E, around 20 persons in a boat approached a product tanker underway. Five people managed to board the vessel using ladders and by cutting through the razor wire. The second officer noticed th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.516666699841323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-285", + "dateofocc": "2014-12-13", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Research Vessel", + "descriptio": "POINTE NOIRE ANCHORAGE, THE CONGO:On 13 December near 4-46S 011-50E, 4 robbers in a small rowing boat approached an anchored research vessel. Two robbers boarded the vessel entered the engine room and stole ship's properties. The duty AB on routine round", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.83333330033679, -4.766666700379915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-286", + "dateofocc": "2014-12-12", + "subreg": "28", + "hostility_": "Suspicious approach", + "victim_d": "Sailing yacht", + "descriptio": "HONDURAS:On 12 December, a sailing yacht experienced a suspicious approach near position14-11N 082-16W, approximately 29 nm southeast of Cayos Miskitos. The yacht master reported that an unlit fishing boat at first shadowed the yacht for some time and th", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.266666699738607, 14.183333300367792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-165", + "dateofocc": "2015-07-26", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "ANDAMAN SEA:On 26 July, two pirates boarded the Indonesia-flagged fishing boat MAJU JAYA near position 04-53N 098-37E, approximately 60 nm north of Balewan. The pirates ransacked the fishing boat, stole the vessel's documents, electronics, personal mobil", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.616666700013752, 4.883333299977096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-166", + "dateofocc": "2015-07-28", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Tug Boat", + "descriptio": "MALAYSIA:On 28 July near position 03-25N 103-55E, a tug with a barge under tow departed Batam Anchorage at 1600 local time for Kuantan Port, Malaysia. An on duty crewman discovered some properties on the barge were missing during the routine check the fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.916666700275073, 3.416666700172584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-167", + "dateofocc": "2015-07-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 30 July near position 01-05N 103-42E, 5 robbers armed with long knives in a small unlit speed boat approached an underway bulk carrier.One of the robbers attempted to board the ship using a hook attached to a rope. The alerted crew no", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.700000000011698, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-168", + "dateofocc": "2015-08-03", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Trawlers", + "descriptio": "BANGLADESH:On 3 August near position 21-35N 89-11E, 12 pirates belonging to the Akash Bahini group attacked a group of small fishing trawlers in the Dhansiddhirchar area of the Sundarbans. The pirates ransacked several of the trawlers and kidnapped 12 lo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.183333300095285, 21.583333300427228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-169", + "dateofocc": "2015-08-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 3 August, two robbers armed with knives boarded an anchored chemical tanker near position 03-56N 098-44E, Belawan Anchorage. The duty crewman on routine rounds sighted the robbers at the forecastle and informed the bridge. The alarm was rais", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.733333299819606, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-175", + "dateofocc": "2015-08-09", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:On 9 August near position 01-05N 103-35E, five robbers armed with knives boarded an underway tanker.They entered the engine room, seized and tied up the chief engineer and stole his personal effects. The chief engineer managed to free hi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.583333300381128, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-176", + "dateofocc": "2015-08-09", + "subreg": "72", + "hostility_": "Robber", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 9 August, a surveyor arrived from a service boat and requested the duty officer of an anchored bulk carrier to carry out a draft survey near position 03-42S 114-28E, Taboneo Anchorage. As the duty officer was taking the draft readings a smal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.466666700031737, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-177", + "dateofocc": "2015-08-12", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 12 August near position 04-00N 098-45E, around 13 nm NNE of Belawan, robbers boarded an anchored product tanker via the anchor chain and hawse pipe. The robbers stole ship's properties and fled before being spotted. When the crew returned to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-178", + "dateofocc": "2015-08-12", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "SINGAPORE STRAIT:On 12 August near position 01-07N 103-31E, five robbers armed with long knives boarded a container ship underway. The alarm was raised and the crew mustered. Upon hearing the alarm and seeing the alerted crew, the robbers fled. A search", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.516666700441988, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-179", + "dateofocc": "2015-08-15", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "SINGAPORE STRAIT:on 15 August near position 01-16N 104-08E, while enroute to Tianjin, China a duty crewman onboard a container ship noticed padlocks on 3 store rooms damaged. He immediatly raised the alarm and the crew mustered. Upon hearing the alarm, a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-180", + "dateofocc": "2015-08-16", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "On 16 August at 0800 local time in the Guanta Anchorage near position 10-16N 064-35W, a bosun on routine rounds onboard an anchored general cargo ship noticed 3 store rooms opened and their padlocks broken. He immediatly raised the alarm and the crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.583333300227878, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-181", + "dateofocc": "2015-08-20", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 20 August, a duty crewman onboard a berthed product tanker saw an unauthorized person on deck near position 07-02N 125-39E, New Davao Oil Mill, Davao Port. The duty crewman shouted at the unauthorized person, who jumped overboard and escap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.649999999957117, 7.033333299641924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-182", + "dateofocc": "2015-08-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 20 August, seven robbers boarded an underway bulk carrier near position 01-04N 103-36E, 4.1 nm south-southwest of Pulau Nipah. The crew spotted the robbers and immediately retreated to the bridge. Two crewmen remained in the engine room. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-128", + "dateofocc": "2016-06-06", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "BENIN: On 06 June, an oil tanker underway near position 05-22N 002-24E, approximately 60 nm south of Cotonou, reported that a mother ship and a skiff chased them. The mothership, with an additional skiff on deck, was reportedly 60 meters long with a grey", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.400000000243097, 5.366666700370558] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-129", + "dateofocc": "2016-06-02", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tug and Barge", + "descriptio": "MALAYSIA:On 02 June, the tug EVER PROSPER, towing the barge EVER DIGNITY, was hijacked near Mukah, Sarawak, East Malaysia, vicinity 02-53.8N 112-04.7E. Reportedly, another tug and barge pulled alongside, hijacked the tug and siphoned approximately 3,000", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.083333300206391, 2.899999999809609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-130", + "dateofocc": "2016-06-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "BANGLADESH:On 14 June at 0140 LT in 22-08N 091-44E, at Chittagong anchorage, five robbers boarded an anchored container ship. Security noticed the robbers with long knives on poop deck and informed the watch officer. The alarm was raised and the whistle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.133333299860453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-131", + "dateofocc": "2016-06-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug and Barge", + "descriptio": "MALAYSIA:On 02 June at 2300 LT in 03-07.24N 112-35.14E, around 11nm NNE of Balingian, Sarawak, armed persons in two speed boats approached and boarded a tug towing a barge loaded with crude palm kernel oil. They took all crew members hostage, damaged shi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.583333299772903, 3.116666700072926] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-132", + "dateofocc": "2016-05-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 21 May at 0130 LT in 06-02.5S 106-54.0E, at Jakarta tanker anchorage, robbers boarded an anchored tanker and stole ship's property and escaped. The incident was noticed by third officer during routine rounds. Additional checks revealed that", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.049999999715453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-133", + "dateofocc": "2016-06-16", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "INDONESIA:On 16 June at 0300 LT in 01-10N 103-57E, around 2.5 NM W of Batu Ampar, four robbers armed with guns boarded an anchored heavy lift carrier. They held the duty ab hostage at gun point and stoles ship's engine spares and escaped. Theft reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.950000000244643, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-134", + "dateofocc": "2016-06-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 18 June at 0110 LT in 01-41.9N 101-29.2E, at Dumai anchorage, three robbers boarded an anchored product tanker. Duty ab noticed the robbers and informed the watch officer who raised the alarm and the crew mustered. One of the robbers rushed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-135", + "dateofocc": "2016-06-13", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "ANGOLA:On 13 June at 2145 LT in 08-44.7S 013-17.9E, at Luanda anchorage, a robber boarded an anchored tanker and transferred ship's stores into his boat. Alarm sounded and the crew were able to detain the robber. Port officials and local police were info", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.299999999966076, -8.749999999712827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-136", + "dateofocc": "2016-06-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONEISA:On 21 June at 0540 LT in 01-41.5N 101-30.4E, at Dumai inner anchorage, three robbers armed with knives boarded an anchored bulk carrier. Two robbers managed to enter the engine room via the open skylight. They threatened the duty oiler with kni", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-137", + "dateofocc": "2016-05-27", + "subreg": "27", + "hostility_": "Roobbers", + "victim_d": "Sailing Vessel", + "descriptio": "CUBA:On 27 May, robbers boarded a Canada-flagged sailing yacht anchored near Isla de la Juventud, vicinity 21-45N 082-51W. The robbers were able to steal miscellaneous deck gear and escape unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.850000000040723, 21.749999999924569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-138", + "dateofocc": "2016-06-16", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "VIETNAM: On 16 June, the Vietnam-flagged fishing boat QNg-95821 was reportedly attacked by a Chinese vessel near position 16-11N 112-30E, seven nautical miles from Bom Bay Island. The attacking ship reportedly had a hull number of 31102. The Vietnamese f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.499999999936563, 16.18333330043248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-139", + "dateofocc": "2016-05-15", + "subreg": "81", + "hostility_": "Suspicious Approach", + "victim_d": "Vehicle Carrier", + "descriptio": "MICRONESIA: On 15 May, two fast boats made a suspicious approach against an underway vehicle carrier near position 08-17N 150-53E, between Pisares Island and East Fayu Island. The boats initially called the vessel and asked it to stop. Master raised the", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [150.883333300202025, 8.283333299907213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-96", + "dateofocc": "2014-04-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Anchored product tanker", + "descriptio": "INDONESIA:On 20 April, two robbers in a small boat boarded an anchored product tanker near position 01-26N 104-38E, approximately 12 nm north-northeast of Pulau Bintan. Duty crewman on routine rounds noticed the robbers and informed the duty officer who", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, 1.433333300180323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-97", + "dateofocc": "2014-04-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Anchored general cargo ship", + "descriptio": "INDONESIA:On 19 April, five robbers armed with knives attempted to board an anchored general cargo ship near position 03-55N 098-46E, Belawan Anchorage. They took hostage a duty crewman on the forecastle and stole his personal belongings. The incident wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-98", + "dateofocc": "2014-04-18", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Anchored product tanker", + "descriptio": "INDIA:On 18 April, three robbers in a small boat attempted to board an anchored product tanker near position 09-56N 076-09E, Kochi Anchorage. Duty crew on routine rounds noticed the robbers and informed duty officer on the bridge who raised the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [76.149999999705301, 9.933333300005529] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-99", + "dateofocc": "2014-04-08", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Anchored bulk carrier", + "descriptio": "INDONESIA:On 18 April, three robbers attempted to board an anchored bulk carrier near position 00-13S 117-35E, Samarinda Anchorage. The duty officer noticed the robbers and raised the alarm. Due to the crew response, the robbers departed the area without", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-100", + "dateofocc": "2014-04-17", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Underway product tanker", + "descriptio": "MALAYSIA:On 17 April, 16 armed pirates boarded and hijacked an underway product tanker near position 01-59N 104-25 E, 26 nm south-southwest of Pulau Aur. The pirates then transferred part of the fuel cargo into smaller unknown tankers. Crew and ship prop", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.416666699841585, 1.983333299613548] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-101", + "dateofocc": "2014-03-11", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Anchor handling tug", + "descriptio": "INDONESIA: On 11 March, two skiffs reportedly chased M/V LEWEK EBONY, an anchor handling tug, in an area 250 nm west of Jakarta. The chase prompted the master of the vessel to report a pirate attack in progress and to light off the firefighting monitors", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.900000000280897, -6.200000000214914] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-102", + "dateofocc": "2014-04-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 29 April, pirates approached the product tanker SP BRUSSELS while underway near position 04-56N 004-49E, 35 nm west off coast of Bayelsa State. The armed guards on board fired at the pirates who had boarded. Then most crewmembers and the armed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.816666700037956, 4.93333329984381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-103", + "dateofocc": "2014-05-01", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 1 May at 0530 local time, three robbers armed with knives boarded a drifting product tanker near position 01-29N 104-47E, 20 nm northeast of Pulau Bintan. Duty crew on bridge raised alarm, seeing the alerted crew the robbers retreated empty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.783333299880326, 1.489722199755704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-104", + "dateofocc": "2014-05-01", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "INDONESIA:On 1 May at 0430 local time, a duty crewman on board an anchored general cargo ship saw a small boat approaching from astern near position 01-24N 104-35E, 10 nm north of Pulau Bintan. The small boat then came alongside carrying six robbers arme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-105", + "dateofocc": "2014-04-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 30 April, three robbers boarded an anchored chemical tanker near position 01-24N 104-41E, 12 nm north-northeast of Pulau Bintan. Duty crewman on outine rounds noticed the robbers and informed the duty engineer who raised the alarm. The robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-106", + "dateofocc": "2014-04-30", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "BANGLADESH:On 30 April, two robbers boarded an anchored tanker near position 22-08N 091-41E, Chittagong Anchorage. Crew noticed robbers on stern and raised alarm. Crew mustered and Port Control notified. Seeing the crew alertness, the robbers escaped wit", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.683333299726485, 22.133333299860453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-107", + "dateofocc": "2014-04-24", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 24 April, 20 robbers boarded an anchored bulk carrier at position 21-51N 091-40E, Chittagong OPL, and broke into the forward store room,stole ship's property and escaped. The ship's attempt to contact the local coast guard office failed but", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.666666699654058, 21.849999999657996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-108", + "dateofocc": "2014-04-18", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On April 18, three robbers attempted to board an anchored bulk carrier near position 0-13S 117-35E, Samarinda Anchorage. The duty officer noticed the robbers and raised the alarm. Due to the crew response, the robbers departed the area without", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-109", + "dateofocc": "2014-03-06", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "CONGO:On 6 March, position 4-44.4S 11-44.9E, Pointe Noire Anchorage. Two armed robbers boarded an anchored general cargo ship using a rope. They stole ships properties and escaped when the duty crew spotted them.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.748333299574085, -4.739999999969825] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-287", + "dateofocc": "2014-12-07", + "subreg": "25", + "hostility_": "Armed boarders", + "victim_d": "Sailing yachts", + "descriptio": "DOMINICAN REPUBLIC:There were two reported boardings of sailing yachts at Marina ZarPar in Boca Chica between 7 and 11 December. In both instances, there were several reported attackers armed with knives.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.616666700183885, 18.449999999727879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-288", + "dateofocc": "2014-12-08", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing yachts", + "descriptio": "ST LUCIA:On 8 December, robbers boarded two sailing yachts in one night near position13-51N 061-03W, Soufriere, St Lucia. One of the yacht master reported losing a large amount of cash as a result of the boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.049999999695444, 13.850000000298621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-289", + "dateofocc": "2014-12-13", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Research vessel", + "descriptio": "CONGO:On 13 December, four men in a small row boat approached an anchored research vessel near position 4-46S 011-50E, Pointe Noire Anchorage. Two of the men boarded the vessel and entered the engine room and stole ship's properties. Duty crewman on rout", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.83333330033679, -4.766666700379915] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-290", + "dateofocc": "2014-12-09", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical tanker", + "descriptio": "NIGERIA:On 9 December, pirates attacked an underway chemical tanker approximately 18 nm southwest of Akwa Ibon State. The crew spotted the pirates as they were inbound and raised the alarm. The pirates reportedly attacked the ship for approximately 30 mi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.550000000004957, 4.233333299911124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-291", + "dateofocc": "2014-12-16", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "MOZAMBIQUE:On 16 December, an unknown number of robbers boarded a berthed chemical tanker near position 19-48S 34-49E, Biera Port. A port security watchman noticed one of the robbers armed with a long knife lowering mooring ropes from a berthed chemical", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.81666670010884, -19.799999999935267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-292", + "dateofocc": "2014-12-19", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA: On 19 December, two robbers boarded a berthed tanker using hooks attached with ropes near position 06-26N 003-19E, Capital Oil Jetty, Lagos. When the alarm was raised and the crew responded, the robbers fled empty handed. Lagos Port Control and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.316666700439157, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-293", + "dateofocc": "2014-12-17", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "BANGLADESH:On 17 December, three robbers armed with long knives boarded a product tanker during anchoring operations near position 22-18N 091-46E, Chittagong Anchorage. A duty crew member on routine rounds noticed the robbers stealing ship's stores from", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.300000000257114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-294", + "dateofocc": "2014-12-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 20 December, four robbers wearing face masks and armed with knives boarded an anchored container ship near position 01-23N 104-40E, 11 nm north-northeast of Tg. Berakit, Bintan Island. They took hostage the duty oiler, tied his hands and too", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.383333300313609] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-295", + "dateofocc": "2014-12-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 20 December, robbers boarded an anchored product tanker near position 01-19N 104-08E, 1.5 nm south of Tanjung Setapa, Johor. The robbers entered the engine room and broke open the engine store room¿s padlock, stole engine spares and ship¿s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 1.316666700374469] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-148", + "dateofocc": "2016-06-25", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "DOMINICAN REPUBLIC:On 25 June, a robber boarded an anchored sailing yacht in Santa Barbara de Samana, vicinity 19-12N 069-19W. Robbers escaped with ship's stores unnoticed. Theft was discovered by the duty crew during routine rounds. Incident reported to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.316666700084227, 19.200000000426655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-296", + "dateofocc": "2014-12-20", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "PHILIPPINES:On 20 December, several robbers armed with knives boarded an anchored container ship near position 14-34N 120-54E, Manila South Harbor Quarantine Anchorage. They cut off the razor wire lashing protecting the hawse pipe cover to gain access to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.900000000028399, 14.566666700128451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-297", + "dateofocc": "2014-12-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Underway Vessel", + "descriptio": "INDONESIA:On 23 December, four robbers boarded an underway vessel near position 01-06N 103-32E, Pulau Karimun Kecil. Duty crewman on routine rounds saw the robbers in the engine room and raised the alarm. Robbers escaped without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.533333299615094, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-298", + "dateofocc": "2014-12-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 25 December, eight persons armed with long knives boarded an underway product tanker near position 01-02N 103-38E: 13 nm east of Pulau Karimun Besar. The robbers entered the engine room, tied up the duty oiler, stole engine spares and escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-183", + "dateofocc": "2015-08-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "On 21 August near position 01-06N 103-44E, three robbers boarded an underway product tanker and entered the steering room. The duty crew noticed the robbers and raised the alarm. The crew mustered. Upon hearing the alarm and seeing the alerted crew, the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.733333299981268, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-184", + "dateofocc": "2015-08-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "On 21 August near position 01-11N 103-27E, five robbers in a speed boat approached an underway tanker and attempted to board the vessel using a grappling hook. The duty crew noticed the robbers and raised the alarm. Upon hearing the alarm and seeing the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.449999999778811, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-185", + "dateofocc": "2015-08-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 21 August at 0340 local time, four robbers armed with knives boarded the underway tanker MT NAVIG8 STEALTH SV near position 01-07N 103-29E, approximately 6.3 nm east of Pulau Karimun Besar. The robbers were sighted in the engine room. The ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.483333299748381, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-186", + "dateofocc": "2015-08-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 21 August at 0430 local time, four robbers boarded the underway container ship MV MAERSK LEBU near position 01-10N 103-30E, approximately 5.9 nm east of Pulau Karimun Kecil. The robbers were sighted in the engine room. The master raised the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-187", + "dateofocc": "2015-08-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 21 August at 2329 local time, four robbers boarded the underway bulk carrier MV PEACE BRIGHT near position 01-04N 103-41E, approximately 4.4 nm northwest of Pulau Kepalajerih. The alarm was raised and the perpetrators escaped in a waiting bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-188", + "dateofocc": "2015-08-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 22 August at 0525 local time, four unarmed robbers boarded the underway container ship MV ATOUT near position 01-07N 103-31E, approximately 1.3 nm west of Pulau Takong Kecil. The alarm was raised and the robbers escaped. There was no loss of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.516666700441988, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-189", + "dateofocc": "2015-08-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Oil Tanker", + "descriptio": "INDONESIA:On 22 August at 0535 local time, four robbers armed with knives boarded the underway oil tanker MT ELBTANK DENMARK near position 01-10N 103-49E, approximately 6.3 nm northwest of Pulau Batam. The perpetrators stole the crew's personal effects a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.816666699642326, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-190", + "dateofocc": "2015-08-15", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 15 August, an unknown number of robbers boarded an anchored bulk carrier near position 10-14N 107-03E, Vung Tau Anchorage. They broke into the paint locker, stole ship's stores and escaped. The theft was noticed by the Duty Officer at 0830 loc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-191", + "dateofocc": "2015-08-15", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "MALACCA STRAIT:On 15 August, the Thailand-flagged coastal fishing boat KHF 1989 was hijacked in the Malacca Strait near position 06-14N 098-59E, approximately 40 nm west of Langkawi Island, Malaysia. Pirates forced the crew to move to another boat and or", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.983333300052493, 6.233333299975811] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-192", + "dateofocc": "2015-09-01", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug Boat", + "descriptio": "SINGAPORE STRAIT:On 01 September near position 01-13N 103-55E, robbers boarded the tug MV Permata1 in the Singapore Strait. The bridge crew sent out a distress call, which was answered by the Republic of Singapore Navy (RSN) ship RSS Resilience.The robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.916666700275073, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-193", + "dateofocc": "2015-09-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "SINGAPORE STRAIT:On 8 September near position 01-07N 103-31E, the chief officer onboard a container ship under way noticed the duty engineer laying on the floor bound and gagged with his mouth bleeding. The alarm was raised. Upon searching the vessel it", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.516666700441988, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-194", + "dateofocc": "2015-09-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 7 September near position 01-11N 103-25E, while transiting the Singapore Straits, robbers boarded a bulk carrier and were spotted by the master who raised the alarm and switched on all deck lights. The crew mustered and a search was c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-195", + "dateofocc": "2015-09-02", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "INDONESIA:On 2 September near position 08-22S 117-11E, robbers boarded a sailing yacht anchored in Potopaddu Bay, Sumbawa Island. The robbers were able to steal deck equipment and other valuables and escape.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.183333300101481, -8.366666699776886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-140", + "dateofocc": "2016-06-25", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "COLOMBIA:On 25 June between 0300 and 0600 LT in 10-18.7N 075-32.8W, at Mamonal tanker anchorage, robbers boarded an anchored product tanker and escaped with ship's property. The theft was discovered by the deck crew while performing routine work near the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.549999999714714, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-141", + "dateofocc": "2016-06-28", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 28 June at 0050 LT in 01-28S 116-48E, at Balikpapan anchorage, two unauthorized persons attempted to board an anchored tanker. The duty crew noticed the persons and informed the bridge officer. Alarm was raised and crew mustered. Upon hearin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.466666700183282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-142", + "dateofocc": "2016-06-28", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 28 June at 1945 UTC in 03-00N 105-10E, about 26 NM WSW of Mangkai island, ten pirates boarded a tanker and entered the bridge as the vessel was altering course. The officer and AB on watch where held hostage at gun point and beat them. They", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.166666699640984, 3.000000000442355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-143", + "dateofocc": "2016-06-22", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "PHILIPPINES:On 22 June, vicinity 05-53N 121-44E, armed men believed to be associated with the Abu Sayyaf Group kidnapped seven crewmembers from the tug CHARLES 001 while the tug was towing a barge in the southern Philippines. The operation consisted of t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.733333299664082, 5.88333330000944] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-144", + "dateofocc": "2016-07-03", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "GUINEA:On 03 July at 0450 LT in 09-23.6N 013-41.9W, at Conakry anchorage, six robbers armed with guns and knives boarded an anchored heavy lift vessel. They attacked the duty O/S causing injuries and took the second officer hostage. They opened fire to t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.700000000007776, 9.399999999570127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-145", + "dateofocc": "2016-06-26", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "PERU:On 26 June at 0006 LT in 12-01S 077-11W, at Callao anchorage, robbers boarded an anchored bulk carrier and escaped with ship's stores unnoticed. The theft was discovered by the duty crew during routine rounds at the forecastle. Incident was reported", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-146", + "dateofocc": "2016-07-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 07 July at 0650Z in 03-16N 005-09E, about 89 NM SW of Brass, armed pirates boarded an underway tanker. Alarm raised and all crew retreated to citadel. Crew regained control of the vessel. All crew members reported safe. Vessel continued onto d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.150000000107184, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-149", + "dateofocc": "2016-06-20", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "PUERTO RICO:On 20 June, robbers boarded an anchored sailing yacht in Isabel Segunda Vieques, vicinity 18-09N 065-26W. Stole an outboard motor, boat hook, and personal items. Local authorities were notified.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.433333299760761, 18.149999999628278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-150", + "dateofocc": "2016-06-09", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 09 June, robbers stole an outboard engine attached to the back of a sailing yacht anchored in Union Clifton harbor, vicinity 12-35N 061-25W. Local authorities were notified.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.416666699558959, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-151", + "dateofocc": "2016-06-02", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing yacht", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 02 June, robbers boarded an anchored sailing yacht in Canouan Charlestown Bay, vicinity 12-42N 061-20W. Robbers were able to steal a substantial amount of cash.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.333333299897959, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-152", + "dateofocc": "2016-07-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 07 July at 0727Z, pirates attacked vessel in 03-18N 005-11E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.183333300076754, 3.299999999642637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-153", + "dateofocc": "2016-07-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply Ship", + "descriptio": "NIGERIA:On 07 July at 1400Z, supply ship attacked in 03-15N 005-10E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.166666700004328, 3.249999999775923] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-154", + "dateofocc": "2016-07-03", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDIA:On 03 July at Haldia port, berth No. 4B, vicinity 22-01N 088-04W, robbers boarded a berthed bulk carrier. They entered into the engine room, stole spare parts and escaped unnoticed. The theft was noticed on 06 July after the vessel left port. Local", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [88.066666700257088, 22.016666700054657] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-155", + "dateofocc": "2016-07-08", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 08 July at 2220 LT in 06-25N 003-22E, at Folawiyo Nispan jetty in Lagos, a robber armed with a knife boarded a berthed product tanker. Duty office raised the alarm, sounded the whistle and crew mustered. Upon hearing alarm and seeing crew aler", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.416666700269616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-110", + "dateofocc": "2014-04-20", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "LNG Tanker", + "descriptio": "NIGERIA:On 20 April, position 3-41N 6-18E, around 37nm south of Brass. An unlit suspicious craft underway with a speed of six knots, suddenly altered course, increased speed and approached a passing LNG tanker. The master onboard the LNG tanker raised al", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.299999999739669, 3.683333299578578] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-111", + "dateofocc": "2014-05-05", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SIERRA LEONE:On May 5, 0320 LT, position 8-29N 13-13W, berth No. 2, Freetown Port. Five robbers armed with knives in a boat approached a berthed bulk carrier. Two robbers boarded the ship and took hostage the duty cadet on rounds. They then cut off and s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.216666700338465, 8.483333300273387] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-112", + "dateofocc": "2014-05-04", + "subreg": "57", + "hostility_": "Bandits", + "victim_d": "Dutch and Nigerian Citizens", + "descriptio": "NIGERIA:On 4 May, three Dutch citizens and two Nigerian citizens were kidnapped near the settlement of Letugbene, a river community in Bayelsa State, position 4-51N 5-33E. The group was reportedly touring the area to promote work on a local hospital. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.549999999940269, 4.850000000007526] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-113", + "dateofocc": "2014-05-02", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "RED SEA:On 2 May, two skiffs made a 15 knot approach on an underway bulk carrier near position 15-45N 041-26E, approximately 68 nm northwest of Al Hudaydah, Yemen. Ships Master raised the alarm, increased speed, altered course, activated fire hoses, and", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.433333299675212, 15.749999999730505] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-114", + "dateofocc": "2014-05-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 3 May, five robbers attempted to board an anchored chemical tanker near position 01-24N 104-41E, approximately 12 nm north-northeast of Pulau Bintan. Duty crewman on routine rounds saw a boat alongside the port quarter and saw the robbers at", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-115", + "dateofocc": "2014-05-04", + "subreg": "71", + "hostility_": "Robber", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 4 May, a duty crewman making routine rounds aboard an anchored chemical tanker at position 01-27N 104-35E, approximately 13 nm north of Pulau Bintan, noticed the steering gear rooms door open. Upon approaching, he saw a robber escaping over", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-116", + "dateofocc": "2014-05-05", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "BANGLADESH:On 5 May, four robbers armed with long knives boarded an anchored chemical tanker near position 22-08N 091-46E, Chittagong Roads. The robbers cut the aft mooring rope. Duty officer raised the alarm, mustered the crew in the accommodation area", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.766666700286862, 22.133333299860453] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-117", + "dateofocc": "2014-05-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 7 May, four robbers armed with knives boarded an anchored product tanker near position 01-28N 104-40E, 15 nm north-northeast of Pulau Bintan. Alert duty crewmen saw the robbers on the stern section of the ship and raised the alarm. Hearing t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-118", + "dateofocc": "2014-05-12", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 12 May, four robbers boarded an anchored tanker near position 01-35N 104-32E, approximately 21 nm north of Pulau Bintan. The Third Engineer subsequently saw the robbers in the steering gear room and informed the bridge. Bridge crew raised th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.533333299647438, 1.583333299780463] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-119", + "dateofocc": "2014-04-30", + "subreg": "92", + "hostility_": "Kidnappers", + "victim_d": "Yacht", + "descriptio": "PHILIPPINES:Two German citizens living in the Philippines were reportedly kidnapped in late April from their sailing yacht CATHERINE near Palawan Island while on an island-hopping trip, according to police and press reports. They are reportedly being hel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.73833329982358, 9.835000000299146] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-120", + "dateofocc": "2014-05-03", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "DOMINICA: On 3 May, two men boarded a 43 foot sailing yacht moored south of Roseau and assaulted the owner and passenger onboard. One of the robbers attacked the boat owner while the other attempted to assault the passenger, who used mace on her attacker", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.383333299764672, 15.300000000030707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-121", + "dateofocc": "2014-05-13", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 13 May, two robbers boarded an anchored tanker near position 04-45N 006-59E, Port Harcourt Anchorage. The robbers took two crewmembers hostage and threatened them with knives. The robbers released the crewmembers after stealing mooring ropes.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.983333299775211, 4.750000000274099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-299", + "dateofocc": "2014-12-25", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "VIETNAM:On 25 December, four robbers boarded an anchored general cargo ship near position 20-41N 107-12E, Campha Anchorage. The robbers broke into the forward store room, stole ship's properties and escaped unnoticed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.199999999675242, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-1", + "dateofocc": "2015-01-05", + "subreg": "57", + "hostility_": "Gunmen", + "victim_d": "Houseboat", + "descriptio": "NIGERIA:On 5 January, unidentified gunmen attacked a house boat belonging to Nigeria¿s Joint Task Force near Kula community in Akuku Toru local government area of Rivers state. The attackers kidnapped a Sergeant and stole weapons and ammunition.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 4.733333300376955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-2", + "dateofocc": "2014-12-27", + "subreg": "57", + "hostility_": "Kidnappers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 27 December, Nigerian naval personnel rescued the captain and chief engineer of MT EQUINOX, a Panamanian-flagged tanker, after they were kidnapped and held for ransom for more than two weeks in a hotel in Warri, Delta State. The ship¿s captai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 5.516666699970699] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-3", + "dateofocc": "2014-12-30", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "RED SEA:On 30 December, two skiffs, one with six possible pirates and the other with three possible pirates approached an underway tanker near position 15-06N 042-00E, approximately 6.5 nm west of the Zubair Island Group. Bridge crew raised the alarm and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.999999999904958, 15.099999999664533] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-4", + "dateofocc": "2015-01-07", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing vessels", + "descriptio": "VIETNAM:On 7 January, two Vietnamese fishing vessels were involved in incidents near the Paracel Islands where their catch of fish was stolen and fishing gear and bridge equipment was stolen or damaged.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [110.89999999970496, 16.250000000196337] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-5", + "dateofocc": "2015-01-09", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "COLOMBIA:On 9 January, an unknown number of robbers boarded a general cargo ship during anchoring operations near position 10-18N 075-33W, Cartagena Anchorage. The robbers stole the forward life raft. The theft was noticed by the duty crew during departu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.549999999714714, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-6", + "dateofocc": "2015-01-18", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "GHANA:On 18 January, Ghana's navy freed a tanker ship hijacked off the coast of Nigeria and arrested eight pirates believed to be responsible for seizing it. The small tanker's owners, using an onboard tracking device, informed Ghanaian authorities of it", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.833333300110382, 5.249999999840611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-7", + "dateofocc": "2015-01-14", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "GHANA: On 14 January, eight heavily armed pirates boarded a drifting bulk carrier near position03-24N 001-21E, 157 nm south-southeast of Accra. They opened fire to intimidate the crew. The pirates destroyed the communication equipment, manhandled some cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.350000000344039, 3.40000000027544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-8", + "dateofocc": "2015-01-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 18 January, two robbers boarded an underway bulk carrier near position 01-07N 103-31E, 6nm east of Pulau Karimun Kecil. When the robbers were spotted by the duty crewman on routine rounds, he informed the duty officer who raised the alarm. A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.516666700441988, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-9", + "dateofocc": "2015-01-10", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA: On 10 January, three armed robbers boarded an anchored LPG tanker near position 01-04N 104-10E, Tanjung Uban Anchorage. The robbers then took hostage and secured the duty crewman and entered the engine room storeroom with intention to steal sp", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-10", + "dateofocc": "2015-01-08", + "subreg": "71", + "hostility_": "Robber", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 8 January, one robber attempted to board an anchored tanker near position 01-11N 104-00E, Kabil Port, Batam. Duty watchman heard the sound of a boat engine. Upon checking he found a person attempting to board the ship. Alarm raised and crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.000000000111356, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-11", + "dateofocc": "2015-01-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Supply Vessel", + "descriptio": "NIGERIA:On 23 January, the Nigeria-flagged offshore supply vessel JASCON 24 was attacked near position 03-29N 005-27E, approximately 70 nm from the Nigerian coastline, at the Agbami Oil Field. One Nigerian naval officer was reportedly killed during the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.450000000206785, 3.483333300111724] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-12", + "dateofocc": "2015-01-20", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Bunkering Vessels", + "descriptio": "IVORY COAST:On 20 January, a skiff with eight persons aboard made a suspicious high speed approach toward two ships conducting bunkering operations near position 04-05N 003-50W, 70 nm south-southeast of Abidjan, Ivory Coast. The bunkering vessels raised", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-3.833333300286711, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-196", + "dateofocc": "2015-08-21", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "COLOMBIA:On 21 August a duty crewman on routine rounds onboard a chemical tanker noticed four robbers lowering paint drums into a waiting boat near position 03-49N 077-09W, Buenaventura Inner Anchorage. He immediately informed the duty officer who raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.149999999946317, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-197", + "dateofocc": "2015-09-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE:On 6 September, four robbers boarded an anchored tanker near position 01-16N 103-59E, 3 nm south of Singapore. The thieves broke into the engine room, stole engine spares and escaped unnoticed. Ship's Master informed local authorities of the bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.983333300214213, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-198", + "dateofocc": "2015-09-15", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 15 September near position 01-06N 103-31E, a duty lookout onboard an underway bulk carrier noticed a speed boat alongside the ship. The alarm was raised, the crew mustered and the SSAS was activated. The robbers entered the engine roo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.516666700441988, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-199", + "dateofocc": "2015-09-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 19 September near position 01-11N 103-25E, three robbers armed with a bolo boarded an underway bulk carrier. They entered the engine room stole ship properties and escaped.The duty crew spotted the robbers raised the alarm and the cre", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.416666699809241, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-28", + "dateofocc": "2015-02-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 14 February, ten robbers armed with knives boarded a berthed bulk carrier near position 03-47N 098-41E, Berth 107, Belawan Port. When the duty crewman spotted the robbers, the alarm was raised and the robbers fled with cargo from the ship. L", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-200", + "dateofocc": "2015-09-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 20 September near position 01-04N 103-41E, the alert crew onboard an underway bulk carrier noticed a speed boat with eight persons approaching. The alarm was raised, the crew mustered and VTIS was informed. Anti-piracy measures were d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-201", + "dateofocc": "2015-09-19", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Kacht", + "descriptio": "COLOMBIA:On 19 September near position 10-10N 075-45W, six robbers boarded a sailing yacht anchored in the Rosario Islands area near Cartagena. During the robbery, the wife of the yacht owner was killed. Local authorities are investigating the case.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.750000000080945, 10.166666700166047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-202", + "dateofocc": "2015-09-17", + "subreg": "57", + "hostility_": "Suspicious Vessel", + "victim_d": "N/A", + "descriptio": "GULF OF GUINEA:On 17 September, a suspicious vessel was reportedly operating near position 01-13N 001-50E, approximately 288 nm south of Benin. The vessel was described as having a blue hull, white superstructure and was not displaying AIS. It reportedl", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.833333300013351, 1.216666699741666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-203", + "dateofocc": "2015-09-18", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 18 September, an unknown number of robbers boarded a berthed product tanker near position 13-40N 121-03E, JG Summit Petrochemical Group Jetty No. 1, Batangas. The robbers boarded unnoticed, stole ship's properties and escaped. The theft wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.04999999962854, 13.666666699829534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-204", + "dateofocc": "2015-09-16", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 16 September, an unknown number of robbers boarded an anchored bulk carrier near position 10-14N 107-02E at the Vungtau anchorage. The robbers were able to steal ship's property and escape unnoticed. The incident was discovered later in the da", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-205", + "dateofocc": "2015-09-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA: On 29 September, four robbers armed with machetes boarded a product tanker at anchor near position 01-42N 101-30E, Dumai Anchorage. Upon hearing the intrusion alarm the duty officer contacted the aft duty crewman to investigate. When the aft c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-206", + "dateofocc": "2015-09-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 25 September, an unknown number of robbers boarded an anchored product tanker near position 03-56N 098-45E, Belawan Anchorage. The robbers were able to steal engine spares and escape unnoticed. The crew was mustered and a search of the ship", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-207", + "dateofocc": "2015-09-28", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Fishing Vessel", + "descriptio": "TRINIDAD AND TOBAGO:On 28 September, robbers boarded the fishing vessel LULU near the Hibiscus oil platform approximately 30 nm from the country's northern coast at approximately 11-05N 061-40W. During the robbery, the robbers shot and killed one of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.666666699791904, 11.083333299638014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-208", + "dateofocc": "2015-09-22", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 22 September, a small boat came alongside an anchored product tanker near position 006-16N 003-13E, 14.8 nm south-southwest of Lagos. The persons onboard pretended to be cargo inspectors and produced a fake letter of authorization purportedly", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.216666699806353, 6.266666699770099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-209", + "dateofocc": "2015-10-05", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 5 October, a fishing boat saw five robbers boarding an anchored product tanker near position 03-56N 098-49E, Belawan Anchorage, and notified the tanker. The alarm was raised, the fog horn sounded and the crew mustered. The robbers threatened", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.816666700379926, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-156", + "dateofocc": "2016-07-10", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 10 July at 0500 LT in 03-41.17S 114-25.20E, at Taboneo anchorage, robbers boarded an anchored bulk carrier and escaped with ship's property. The theft was discovered by the duty crew while performing routine rounds. Two mooring ropers were r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-157", + "dateofocc": "2016-07-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore Supply Vessel", + "descriptio": "NIGERIA:On 7 July, the Nigeria-flagged offshore supply vessel PRINCE JOSEPH 1 was attacked near position 03-15N 005-10E, approximately 80 nm southwest of the Bayelsa coast. Nigerian Naval ship MEDIATOR intervened and repelled the attackers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.166666700004328, 3.249999999775923] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-158", + "dateofocc": "2016-07-09", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "VIETNAM:On 9 July, Vietnam-flagged fishing vessel QNg 90479-TS with six sailors on board was attacked and sunk by Chinese vessels at around 11:00 am while fishing near the Paracel Islands, vicinity 16-40N 112-20E. The Vietnamese boat was closed by two Ch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.333333300439222, 16.666666699926566] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-159", + "dateofocc": "2016-07-09", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "MALAYSIA:On 9 July, gunmen kidnapped three Indonesian members of a small boat off Malaysia's eastern state of Sabah, the latest in a string of abductions in a region noted for kidnappings by Islamist militants. It was not immediately clear whether the me", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.966666699695224, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-160", + "dateofocc": "2016-07-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 16 July at 0230Z vessel attacked in 01-00N 006-00E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.999999999640067, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-161", + "dateofocc": "2016-07-16", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "tINDONESIA:On 16 July at 1520Z in 02-55N 105-19E, seven robbers armed with knives boarded the bulk carrier Baltimore. They tied up the master and escaped with cash and ship's property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.316666700140502, 2.916666699706752] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-162", + "dateofocc": "2016-07-17", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Barge", + "descriptio": "CONGO:On 17 July at 0245LT in 04-47.0S 011-47.9E, at pointe noire anchorage, a robber boarded an anchored pipe laying barge. Duty crew on routine rounds noticed the robber and informed the bridge. Alarm raised and crew mustered. Seeing the crew alertness", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.80000000036722, -4.783333299553021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-163", + "dateofocc": "2016-07-16", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 16 July at 1230LT in 07-10N 125-40E, at New Davao oil mill berth, three robbers armed with knives boarded a berthed product tanker. Alarm raised and crew mustered. Upon hearing the alarm and seeing the crew alertness, the robbers escaped w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.666666699854318, 7.166666700069015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-164", + "dateofocc": "2016-07-04", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "CONGO:On 04 July at 0900LT in 04-44.9S 011-48.6E, at pointe noire outer anchorage, robbers in a small boat boarded an anchored pipe laying barge. They stole ship's stores and escaped unnoticed. The theft was noticed during routine rounds and incident was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-165", + "dateofocc": "2016-07-16", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "CONGO:On 16 July at 0450LT in 04-44.9S 011-48.6E, at pointe noire outer anchorage, robbers in a fishing canoe boarded an anchored pipe laying barge. Duty crew noticed the robbers and raised the alarm. Seeing the alerted crew, the robbers escaped with sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-166", + "dateofocc": "2016-07-17", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "HAITI:On 07 July at 2115LT in 18-34N 072-023W, at Port Au Prince E anchorage, robbers boarded an anchored product tanker. Duty crew on routine rounds noticed the robbers. Alarm raised and crew mustered. Seeing the crew alertness, robbers jumped overboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.566666700257827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-168", + "dateofocc": "2016-07-11", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "COLOMBIA:On 11 July vicinity 09-48N 075-50W, near Isla Grande, Rosario Islands area, two robbers armed with knives boarded an anchored sailing yacht. Crew got into an altercation with robbers and eventually repelled them. Nothing reported stolen. Crew re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.833333299917228, 9.800000000302532] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-169", + "dateofocc": "2016-07-01", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "GRENADA:The first week of July vicinity 12-00N 061-45W, Mt Hartman Bay, eight sailing yachts in storage anchorage were boarded. Yachts had numerous items stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.749999999628187, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-171", + "dateofocc": "2016-07-17", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 17 July, vicinity 22-22N 091-48E, pirates attacked a fishing boat operating near the Chittagong Gas Field, leaving one fisherman dead. After shooting at the boat, the pirates boarded and ransacked the ship, in addition to beating the remain", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 22.366666700020971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-122", + "dateofocc": "2014-05-21", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "TOGO:On 21 May, a boat with eight robbers armed with long knives attempted to board an anchored chemical tanker near position 06-03N 001-14E, approximately 4 nm south of Lome Port. When the deck watch saw the boat with the suspected robbers, they raised", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.233333299814092, 6.050000000406101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-123", + "dateofocc": "2014-05-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 23 May, three robbers boarded an anchored bulk carrier near position 06-01S 106-54E, Jakarta Anchorage. Duty crewman on security rounds saw the robbers and raised the alarm. The robbers threatened the duty crewman with a knife and escaped wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-124", + "dateofocc": "2014-05-25", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 25 May, armed pirates boarded an underway tanker near position 01-51N 104-31E, 30 nm south of Pulau Aur. They stole cash, crew personal effects, and provisions and damaged equipment before disembarking the vessel. Following the incident, the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.516666699575012, 1.849999999910551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-125", + "dateofocc": "2014-05-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Processing Ship", + "descriptio": "INDONESIA:On 27 May, three robbers boarded an offshore processing ship using a rope and hook near position 01-28N 104-37E, 14 nm north-northeast of Pulau Bintan. An alert duty crewman spotted the robbers and raised the alarm, resulting in the robbers esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.616666700207759, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-126", + "dateofocc": "2014-05-28", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 28 May four robbers boarded the Liberia-registered bulk carrier Ore Vitoria at 0625 local time while underway southwest of Nipa Anchorage. No further information was provided.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.633333300247841, 1.149999999977808] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-127", + "dateofocc": "2014-05-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical tanker", + "descriptio": "INDONESIA:On 22 May, two robbers boarded an anchored chemical tanker near position 03-47N 098-41E, Belawan Anchorage. Robbers spotted by crew members who raised the alarm. The robbers escaped with stolen ships property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-128", + "dateofocc": "2014-06-02", + "subreg": "13", + "hostility_": "Robbers", + "victim_d": "Tugboat", + "descriptio": "UNITED STATES:On 2 June, robbers stole a small tug boat from the Oyster House pier in East Providence, Rhode Island. The boat was later found aground and half-submerged in the Providence River near Sabin Point. East Providence Police and Fire were alerte", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.386388899567351, 41.818333299638255] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-129", + "dateofocc": "2014-06-02", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "NIGERIA:On 2 June, robbers in two speedboats approached and fired upon an underway bulk carrier near position 04-49N 008-02E, Calabar River. When the robbers got close enough to the ship to see the armed embarked security team, the robbers turned away an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.033333299674268, 4.816666700037956] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-130", + "dateofocc": "2014-06-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "General cargo ship", + "descriptio": "INDONESIA:On 3 June, three robbers attempted to board an anchored general cargo ship near position 06-01S 106-54E, Tanjung Priok. An alert deck watchman saw the robbers and raised the alarm. Seeing the alerted crew, the robbers retreated into their boat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-131", + "dateofocc": "2014-05-31", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 31 May, ten pirates boarded an underway tanker near position 04-03N 112-26E, approximately 60 nm northwest of Bintulu. The robbers tied up the duty officer and lookout and asked them the details of the vessel destination, type of cargo, natio", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.433333300172762, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-132", + "dateofocc": "2014-05-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 29 May, three suspected robbers approached an anchored tanker near position01-34N 104-27E, approximately 22 nm north of Pulau Bintan. Duty crewman spotted the skiff and reported to the duty officer on the bridge, who raised the alarm and must", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.449999999811155, 1.566666699708037] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-133", + "dateofocc": "2014-05-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 29 May, four robbers boarded an underway bulk carrier near position 01-08N 103-30E, 4 nm southwest of Karimun Kecil Island. When the robbers entered the engine room, the duty crewman alerted the duty officer, who raised the alarm and mustere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-134", + "dateofocc": "2014-05-29", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "BANGLADESH:On 29 May, two robbers attempted to board an anchored product tanker near position21-43N 091-47E, Kutubdia Anchorage. Duty crewman saw the robbers on the stern of the ship and notified the duty officer, who raised the alarm. Seeing the crew re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.783333300359232, 21.716666699954999] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-135", + "dateofocc": "2014-05-27", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "SINGAPORE:On 27 May, robbers hijacked the product tanker ORAPIN 4, laden with diesel fuel, shortly after it departed Singapore enroute Thailand. The owners lost contact with the vessel and informed the IMB Piracy Reporting Centre which immediately notifi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.399999999912097, 7.349999999638726] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-136", + "dateofocc": "2014-05-29", + "subreg": "71", + "hostility_": "Intruders", + "victim_d": "Tugboat", + "descriptio": "INDONESIA:On 29 May, at 0042 hours local time, Kien San 1, a Malaysia-registered tugboat loaded with scrap metal, was boarded by four men as the ship was under way northwest of Nipa Anchorage. However, the four men soon made their escape after the Singap", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.399999999912097, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-13", + "dateofocc": "2015-01-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA: On 29 January, two robbers boarded an anchored bulk carrier near position 06-01S 106-55E, Tanjung Priok Outer Roads, Jakarta. Two deck watchmen on routine rounds saw the robbers on the forecastle deck. They immediately informed the duty office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.916666700372105, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-14", + "dateofocc": "2015-01-08", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Barge", + "descriptio": "INDONESIA:On 8 January, robbers in three small boats boarded a barge under tow near position 01-11N 103-37 E, 2.7 nm northwest of Pulau Nipah. They stole some of the cargo and escaped. The tug reported the incident to the local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.616666700175415, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-15", + "dateofocc": "2015-02-03", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Super Tanker", + "descriptio": "NIGERIA:On 3 February, up to a dozen pirates boarded the super tanker MT KALAMOS, killing one crewman and reportedly kidnapping three others. The attack occurred near the Qua Iboe Terminal.UPDATE:According to 25 February reporting, the three kidnapped cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.983333299807555, 4.333333299644551] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-16", + "dateofocc": "2015-02-01", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 1 February, two crewmen on the forecastle of an anchored tanker noticed a boat approaching at high speed near position 05-28N 005-05E, 10 nm southwest of Escravos. As the boat closed, the crew noticed something being thrown towards the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.083333300343327, 5.466666700103985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-17", + "dateofocc": "2015-01-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "GHANA:On 30 January, armed pirates hijacked the Ghana-flagged fishing vessel LU RONG YUAN YU 917 near position 04-26N 001-43W, 27 nm south of Takoradi. The Togo Navy responded and engaged the pirates. Twenty crewmen jumped overboard in an attempt to esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.71666670041617, 4.433333300277297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-18", + "dateofocc": "2015-01-28", + "subreg": "73", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 28 January, chemical tanker MT REHOBOT, sailing under the Indonesian flag, went missing after being hijacked by pirates, but all of the crew members are safe. The ship was reportedly boarded by pirates near Lembeh Island, North Sulawesi. The", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.266666700021233, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-19", + "dateofocc": "2015-01-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug Boat", + "descriptio": "INDONESIA:On 14 January, a duty crewman on board a berthed tug spotted several robbers armed with long knives near position 01-02N 103-54E, PT Idros Private Jetty, Tanjung Uncang, Batam. The duty crewman raised the alarm, armed himself with a long knife", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.900000000377929, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-20", + "dateofocc": "2015-02-03", + "subreg": "73", + "hostility_": "Pirates", + "victim_d": "Merchant Vessel", + "descriptio": "PAPUA NEW GUINEA:On 3 February, MV KWADIMA II was boarded by pirates near Alotau. During the attack, passengers and crew sustained non-life threatening injuries. In addition, some personal items along with translator's notes were stolen or lost; some of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 5, + "victim_l_D": "Merchant Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [150.416666700429914, -10.31666669997486] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-21", + "dateofocc": "2015-02-01", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sail Boat", + "descriptio": "HONDURAS:On 1 February, three armed men boarded an underway sailing boat approximately 15 nm offshore of Puerto Cortez. The men initially approached the sailing boat and asked for gasoline, then quickly boarded the boat. They stole the boat's outboard mo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.1333333004049, 16.049999999830163] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-22", + "dateofocc": "2015-02-05", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:On 5 February, a duty crewman onboard a berthed chemical tanker near position 06-26N 003-22E, ENL Jetty, Lagos Harbor, spotted robbers attempting to board the vessel. He alerted the onboard security team who chased the robbers away. Soon afterwa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-23", + "dateofocc": "2015-02-08", + "subreg": "62", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "GULF OF ADEN:On 8 February, gunmen in four skiffs reportedly made a suspicious approach against the Kuwait-flagged MT BURGAN while the vessel was transiting the Gulf of Aden. The ship was carrying 40,303 tons of aviation fuel and was transiting from the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.000000000098964, 12.366666699697589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-210", + "dateofocc": "2015-10-01", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 1 October, two robbers boarded a tanker via the anchor chain near position 05-49N 118-05E, 1.5 nm north-northeast of Sandakan, Borneo. An alert crewman spotted the robbers and raised the alarm, resulting in the robbers abandoning the collect", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-211", + "dateofocc": "2015-09-30", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 30 September, a stevedore onboard a container ship berthed near position 10-46N 106-44E, Vietnam International Container Terminal, Ho Chi Minh City Port noticed two robbers near the forecastle and alerted the duty crewman who in turn notified", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.7333333000783, 10.766666700365306] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-212", + "dateofocc": "2015-10-10", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "MINDANAO, PHILIPPINES:While enroute to Tambler, General Santos City, a cargo ship about 4.5 NM southeast of Olanivan Island near position 05-27N 125-32E, noticed 2 speed boats with 7 armed persons with guns approaching the vessel. The Master suspecting a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.533333300326603, 5.450000000206785] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-213", + "dateofocc": "2015-10-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 14 October near position 01-07N 103-30E, the duty crew onboard an underway bulk carrier noticed a speed boat approaching the ship. The alarm was raised, the crew mustered and the search light was directed at the speedboat. Upon seeing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-214", + "dateofocc": "2015-10-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "N/A", + "descriptio": "SINGAPORE STRAIT:On 14 October near position 01-07N 103-32E, the 3rd engineer noticed 4 armed robbers with long knives entering the engine room workshop through the aft door. The 3rd engineer and junior engineer were taken hostage and tied up. The robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 12, + "victim_l_D": "Unknown", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.533333299615094, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-215", + "dateofocc": "2015-10-08", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CAMEROON:On 8 October, an unknown number of robbers boarded a berthed bulk carrier near position 04-03N 009-41E, Douala Port. The robbers were able to break the lock to the forecastle store room, steal ship's properties and escape unnoticed. A duty crewm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.683333299772585, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-216", + "dateofocc": "2015-10-15", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 15 October, six robbers boarded the Panama-flagged tanker ALMI SPIRIT in the Kukup Anchorage area of Johor Province, near position 01-20N 103-26E. Forces from the Malaysian Maritime Enforcement Agency responded to the boarding and are investi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.433333299881667, 1.333333300446839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-217", + "dateofocc": "2015-10-12", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH:On 12 October, a group of fishermen came under attack from pirates it the Kuakata Bay region of Patuakhali, near position 21-45N 090-19E. According to the Alipur Trawler Owners' Association, three fishing boats came under attack from the pirat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.3166666996554, 21.749999999924569] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-162", + "dateofocc": "2014-07-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 2 July, two armed robbers in a wooden fishing boat boarded an anchored tanker from the stern near position 01-28N 104-40E, 13 nm northeast of Pulau Bintan. Alert crew spotted the robbers and raised the alarm. Seeing the alerted crew, the rob", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-218", + "dateofocc": "2015-10-06", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 6 October, an unknown number of robbers boarded an anchored product tanker during hours of darkness near position 05-49N 118-09E, Sandakan Anchorage, Sabah. The robbers forced their way into the bosun store room, stole spare parts and escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.150000000164255, 5.8166667000703] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-219", + "dateofocc": "2015-10-05", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "INDONESIA:On 5 October, an unknown number of robbers boarded an anchored general cargo ship near position 06-01S 106-53E, Tanjung Priok Anchorage. They entered into the engine room workshop, stole ship's properties and escaped. The theft was noticed by t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.016666699745883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-220", + "dateofocc": "2015-10-18", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "LPG Tanker", + "descriptio": "CAMEROON:On 18 October near position 02-43N 009-11E, around 45 nm WSW of Kribi, Caneroon; 2 suspicious high speed skiffs appoached an underway LPG tanker. The 2nd officer informed the Master who in turn raised the alarm and made announcements. As the ski", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [9.183333300206129, 2.716666700239841] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-221", + "dateofocc": "2015-10-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "SINGAPORE STRAIT:On 14 October near position 01-11N 103-26E, six robbers boarded an underway tanker using hooks attached with ropes. Two of the robbers entered the engine room and were spotted by the 2nd Engineer. One of the robbers threatened the 2nd En", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.433333299881667, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-222", + "dateofocc": "2015-10-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Refrigerated Cargo Ship", + "descriptio": "On 19 October near position 03-50N 005-35E, armed pirates attacked and boarded a refrigerated cargo ship underway off the Niger Delta. They stole ship's cash, destroyed equipment and kidnapped 4 crew members before escaping. Authorities have been notifie", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.583333299909839, 3.833333300078039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-167", + "dateofocc": "2016-07-20", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "PERU:On 20 July at 0045 LT vicinity 12-01S 077-12W, at Callao anchorage, robbers boarded an anchored bulk carrier. Crew noticed robbers at forecastle and informed watch officer. Alarm raised and crew mustered. Upon hearing the alarm and seeing crew alert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-172", + "dateofocc": "2016-07-20", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PERU:On 20 July at 0430 LT in 04-33.9S 081-18.6W, at Talaro Road, crew aboard an anchored tanker noticed a small motor boat near the starboard anchor chain. One robber was climbing up the chain while one remained in the boat. Duty crew notified the watch", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.316666699572977, -4.566666700013741] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-173", + "dateofocc": "2016-07-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Offshore Supply Vessel", + "descriptio": "NIGERIA:On 07 July at 1430Z in 03-05N 004-53E, around 98 NM SW of Baylesa, three pirates armed with guns fired upon and boarded an underway offshore supply vessel. Alarm raised, distress alert activated and crew retreated to the citadel. Pirates kidnappe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.883333299977096, 3.083333300278639] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-174", + "dateofocc": "2016-07-22", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Cable Laying Vessel", + "descriptio": "RED SEA:On 22 July at 0447Z in 13-37.5N 042-35.9E, 16 pirates in two skiffs armed with an AK47 and a RPG approached and fired upon an underway cable laying vessel. Alarm was raised, SSAS activated and crew retreated to the citadel. UKMTO and a warship ac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.600000000104217, 13.633333300035247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-175", + "dateofocc": "2016-07-24", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 24 July at 2220LT in 00-13.4S 117-33.9E, at Samarinda anchorage, three robbers in a small wooden motor boat approached and boarded an anchored bulk carrier. Duty crew noticed robbers and raised the alarm. Seeing the crew alertness, the robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-176", + "dateofocc": "2016-07-28", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "GHANA:On 28 July at 0350Z, vessel attacked in 04-54N 001-41E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.68333330041321, 4.89999999987424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-177", + "dateofocc": "2016-07-24", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 24 July at 0515 LT in 06-26.1N 003-19.6E, at Capital terminal berth, three robbers in a small boat approached and boarded a berthed tanker. An armed guard on rounds noticed the robber and raised the alarm. Hearing the alarm and seeing crew ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.333333299612207, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-178", + "dateofocc": "2016-07-26", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "GHANA:On 26 July at 0338 LT vicinity 04-57N 001-42W, at Sekondi naval berth in Takoradi, a robber armed with a knife in a small boat boarded a berthed tug. The deck crew noticed the robber and raised the alarm. Seeing the approaching crew, the robber esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.699999999619706, 4.94999999974101] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-179", + "dateofocc": "2016-07-28", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 28 July at 0520 LT vicinity 01-44.8N 101-22.6E, at SDS terminal, Lubuk Gaung, six robbers armed with knives boarded a berthed product tanker and entered the engine room. They took the oiler and third engineer hostage, stole ship's spare part", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.383333299950266, 1.750000000177067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-180", + "dateofocc": "2016-07-30", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Sailing Vessel", + "descriptio": "GRENADA:On 30 July, two men, one armed with a gun, attempted to kidnap two persons and use their sailing yacht to get to Puerto Rico. During the course of the kidnapping, the sailing yacht grounded on a reef, at which point the armed man took the man¿s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.666666699791904, 12.116666700363965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-181", + "dateofocc": "2016-08-07", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CONGO:On 7 August, two robbers boarded an anchored bulk carrier near position 04-44S 011-46E, Pointe Noire Outer Anchorage. The robbers broke into the bosun store room, which triggered an alarm on the bridge. Duty officer raised the alarm and alerted the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.76666670039765, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-182", + "dateofocc": "2016-08-05", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 5 August, four robbers armed with long knives boarded a berthed product tanker near position 06-26N 003-25E, Folawiyo Nispan Jetty, Apapa, Lagos. They took hostage the duty pump man and threatened him with their knives. The robbers put two hos", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.416666700172584, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-183", + "dateofocc": "2016-08-07", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 7 August, three robbers in a small boat boarded an anchored bulk carrier near position 10-15.50N 107-01.26E, Vung Tau Anchorage. Duty crewman on routine rounds noticed the robbers and raised the alarm. All crew mustered on the main deck. Heari", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.016666700105532, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-137", + "dateofocc": "2014-05-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk carrier", + "descriptio": "INDONESIA:On 29 May, Eastern Star, a Vietnam-registered bulk carrier was targeted next by the sea robbers at 0353 hours local time on 29 May as it was under way southwest of Nipa Anchorage. Four men were spotted on board the stern of the vessel. The robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-138", + "dateofocc": "2014-06-10", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Container ship", + "descriptio": "TOGO:On 10 June, seven robbers in a small boat attempted to board an anchored container ship using a long stick with a hook near position 06-0N 001-18E, Lome Anchorage. An alert duty crewman saw the activity and raised the alarm; duty officer notified To", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.299999999577949, 6.016666700436531] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-139", + "dateofocc": "2014-06-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Fishing vessel", + "descriptio": "GHANA:On 5 June, pirates hijacked fishing vessel MARINE 711 in the coastal area of the border between Ghana and Togo. The pirates took the 41 crewmembers hostage and cut power to the communications equipment. They then forced the captain to sail the vess", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [0.73333330024758, 5.033333299577237] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-140", + "dateofocc": "2014-06-04", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Oil product tanker", + "descriptio": "GHANA:On approximately 4 June, pirates hijacked the Liberia-flagged oil product tanker FAIR ARTEMIS and its 24 crewmembers off Ghana. Pirates stole the vessels cargo of gas oil and other items before releasing the vessel. The owner reported that the crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-0.983333299789876, 3.700000000375042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-141", + "dateofocc": "2014-06-10", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 10 June, two robbers boarded an anchored tanker near position 17-37N 083-24E, Visakhapatnam. When the duty officer spotted the robbers and raised the alarm, the robbers disembarked the tanker and escaped in their fishing boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [83.400000000164596, 17.616666700092196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-142", + "dateofocc": "2014-06-08", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "BANGLADESH:On 8 June, six armed robbers in a small boat boarded an anchored tanker using a hooked ladder near position 22-29N 091-41E, Chittagong anchorage. When a duty crewman informed the duty officer on the bridge, who raised the alarm, sounded ships", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.683333299726485, 22.483333299826825] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-143", + "dateofocc": "2014-06-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo ship", + "descriptio": "MALAYSIA:On 7 June, four robbers in a small boat boarded an anchored cargo ship near position 01-40N 104-25E, approximately 10 nm east-northeast of Tanjung Balau, Johor. The robbers boarded the ship from the stern area with a hook and rope, but were spot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.416666699841585, 1.666666700340784] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-144", + "dateofocc": "2014-06-07", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 7 June, ten machete-wielding pirates hijacked the Malaysia-registered tanker MT BUDI MESRA DUA off Bintulu in the oil-rich Sarawak state as the ship sailed from neighboring Singapore. The tanker was carrying about a million liters of diesel f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.083333300238678, 3.38333330037824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-145", + "dateofocc": "2014-06-22", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Merchant tug", + "descriptio": "MALAYSIA:UPDATE:On 22 June, the crew and cargo barge from the still-missing tug MANYPLUS 12 were rescued by a Vietnamese fishing boat near position 08-12N 115-46E, approximately 110nm northwest of Kota Kinabalu. The shipping company originally reported t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.766666700163682, 8.200000000070929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-146", + "dateofocc": "2014-06-10", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Fishing boat", + "descriptio": "PHILIPPINES:On 10 June three robbers hijacked a fishing boat and terrorized its two crewmen in the waters of Margosatubig, Zamboanga Del Sur. The small fishing boat named Ronald, was on its way home when three robbers in a speedboat armed with a 12 gauge", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.150000000325917, 7.59999999987167] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-147", + "dateofocc": "2014-06-14", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "MALAYSIA:On 14 June, pirates hijacked the Honduras-flagged tanker AL MARU near position 02-06N 104-39E, approximately 31 nm off Tanjung Sedili, Johor. Initial investigations revealed that seven pirates armed with pistols and knives boarded the product ta", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.650000000177329, 2.100000000143439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-148", + "dateofocc": "2014-06-19", + "subreg": "73", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "INDONESIA:On 19 June, the owner of the Taiwan-flagged fishing boat KUO RONG 333 lost contact with the vessel. The KUO RONG 333 had departed Palau for the Solomon Islands six days earlier. On 23 June, satellite data helped locate the ship 64 nm northwest", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.26666669985957, -7.85000000031323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-24", + "dateofocc": "2015-02-10", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM: On 10 February, a deck watchman on routine rounds aboard a berthed container ship near position 20-52N 106-40E, Nam Hai Container Terminal, Haiphong saw two robbers near the forward store room and alerted the Duty Officer and local police office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.66666670013916, 20.866666700422115] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-25", + "dateofocc": "2015-02-04", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 4 February, five robbers boarded an anchored container ship near position 10-12N 107-03E, 7 nm south of Vungtau. Alert crew spotted the robbers and raised the alarm. Seeing the crew alertness, the robbers escaped with stolen ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-26", + "dateofocc": "2015-02-15", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "BRAZIL:On 15 February, several armed robbers boarded a sailing yacht near position 02-30S 044-19W, at the Sao Luis Yacht Club in northeast Brazil. During the course of the robbery, the Dutch owner of the yacht was shot in the chest and died on the scene.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-44.316666700175062, -2.500000000185196] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-27", + "dateofocc": "2015-02-02", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Schooner", + "descriptio": "BRAZIL:On 2 February, three knife wielding robbers attempted to board the sailing schooner WINDJAMMER near position 03-45S 038-35W, Fortaleza, Brazil. They tried climbing up to the main deck shouting \"pirata' pirata\" but the crew was able to fend them of", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-38.58333330028637, -3.749999999551108] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-29", + "dateofocc": "2014-02-14", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Anchored Vessel", + "descriptio": "VIETNAM:On 14 February, five robbers boarded an anchored vessel near position 20-37N 106-51E, Haiphong OPL Anchorage. When the duty crewman on routine rounds saw the robbers on the forecastle deck, he raised the alarm and the crew mustered. Upon hearing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.849999999708871, 20.616666700189228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-30", + "dateofocc": "2015-02-13", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALACCA STRAIT:On 13 February, six to eight pirates, armed with pistols and knives hijacked MT LAPIN from a small boat near position 03-11N 100-43E, approximately 40 nm west-southwest of Port Klang, Malaysia. The pirates gathered the crew and took contro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.716666699811867, 3.183333300012066] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-31", + "dateofocc": "2015-02-12", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 12 February, two robbers boarded an anchored bulk carrier using hooks attached with ropes near position 03-41S 114-28E, Taboneo Anchorage. When the duty crewman spotted the robbers, the alarm was raised and the crew was mustered. Seeing the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.466666700031737, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-32", + "dateofocc": "2015-02-12", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 12 February, five robbers armed with knives boarded an anchored bulk carrier near position 20-41N 107-12E, Hongai Outer Anchorage. When the Duty Officer saw movement on the forecastle, he instructed the duty crewman to check the area. When the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.199999999675242, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-33", + "dateofocc": "2015-01-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Anchored Ship", + "descriptio": "INDONESIA:On 22 January, four robbers boarded an anchored ship near position 05-51S 106:56E, Jakarta Anchorage. The Duty Oiler saw the robbers in the engine room. The robbers subdued the crewman, threatening him with a knife. The remaining robbers stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.933333300444474, -5.850000000248542] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-34", + "dateofocc": "2015-02-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 25 February, three robbers boarded an underway bulk carrier near position 01-08N 103-28 E, 3 nm east of Pulau Karimun Kecil. The alarm was raised and the crew mustered. Seeing the crew response, the robbers escaped empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.466666699675955, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-35", + "dateofocc": "2015-02-20", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA: On 20 February, seven pirates armed with guns and knives hijacked the product tanker MT PHUBAI PATTRA 1 near position 02-08N 104-39 E, 18 nm southeast of Pulau Aur. The crew was taken hostage. The pirates transferred part of the cargo of gasoli", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.650000000177329, 2.133333300113009] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-223", + "dateofocc": "2015-10-20", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "COLOMBIA:On 20 October near position 10-19N 075-31W, in Mamonal Anchorage. The Duty Watchman on board an anchored product tanker noticed 2 robbers on the forecastle and informed the Officer on Watch. The alarm was raised, the search light was directed to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-224", + "dateofocc": "2015-10-18", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VIETNAM:On 18 October, a duty crewman on routine rounds onboard an anchored tanker noticed two robbers on the poop deck near position 10-06N 107-06E, Mui Vung Tau Anchorage. He shouted at the robbers then retreated to a safe location and raised the alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.099999999941815, 10.100000000402133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-225", + "dateofocc": "2015-09-29", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Boat", + "descriptio": "VIETNAM:On 29 September near position 16-32N 111-44E, near Luoi Liem Island in the disputed Paracel Island group, a Vietnam-flagged fishing boat QNg 90352 was reportedly rammed and then boarded by a boat carrying uniformed Chinese personnel armed with kn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [111.73333330024002, 16.533333300398851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-226", + "dateofocc": "2015-10-24", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "LIBERIA:On 24 October, 0830 LT, near position 06-20N 010-51W, Monrovia Anchorage. Unnoticed robbers boarded an anchored bulk carrier. They stole ship's properties and escaped. The theft was noticed when the crew noticed the padlock to the safetylocker wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.850000000410262, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-227", + "dateofocc": "2015-10-25", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Oil Platform", + "descriptio": "CAMEROON:On 25 October, a large canoe made a suspicious approach against an oil platform near position 04-19N 008-28E, approximately 11 nm offshore from the Bakassi area. A security vessel responded and the canoe turned around and headed into Nigerian te", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.46666670020096, 4.316666699572124] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-228", + "dateofocc": "2015-10-26", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH:On 26 October, near position 21-40N 089-35E, pirates abducted at least 50 fishermen from the Bay of Bengal, attacking a fleet of more than a hundred fishing boats. They captured 25 of the fishing boats. Eleven fishermen from Patharghata of Bar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.58333329992837, 21.666666700088285] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-229", + "dateofocc": "2015-10-26", + "subreg": "72", + "hostility_": "Hijacking", + "victim_d": "Sailing Yacht", + "descriptio": "INDONESIA:During the week of 26 October near position 08-46S 115-44E, a German-flagged sailing yacht, FARAWAY, was reportedly hijacked in the Lombok Strait near Bali Island. Two German citizens were onboard; no ransom demand has been made.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.733333300369395, -8.766666699609971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-230", + "dateofocc": "2015-10-22", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 22 October, three robbers armed with long knives boarded an underway bulk carrier near position 01-06N 103-32E, 7.5 nm east-northeast of Pulau Karimun Besar. The duty oiler sighted the robbers in the engine room's storeroom and immediately i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.533333299615094, 1.100000000111095] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-231", + "dateofocc": "2015-10-22", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 22 October near position 20-41N 107-13E, Cai Lan Anchorage, a duty crewman on an anti-piracy and robbery watch onboard an anchored bulk carrier noticed six robbers climbing onto the forecastle using a rope attached to a hook. He notified the d", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.216666699572386, 20.683333300128368] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-232", + "dateofocc": "2015-10-31", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "On 31 October between 0017 and 0200 local time near position 22-47N 070-2E, Kandla Anchorage, India; robbers boarded an anchored bulk carrier unnoticed. The duty crew on routine rounds noticed the pad locks to the bosun stores were damaged. Ship's stores", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.033333299880667, 22.783333299926483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-233", + "dateofocc": "2015-10-29", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 29 October, an unknown number of robbers boarded an anchored tanker via the anchor chain near position 22-40N 069-56E, Reliance Crude Anchorage. The robbers stole ship's properties from the forecastle store room and escaped. The theft was notice", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [69.93333330014724, 22.666666700120629] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-234", + "dateofocc": "2015-10-16", + "subreg": "83", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "FRENCH POLYNESIA:On 16 October, an unknown number of robbers boarded an anchored sailing yacht near position 17-29S 149-50W in Maharepa, Moorea. The robbers broke into several cabins on the yacht, stealing personal electronics, navigational equipment and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [-149.833333299612377, -17.483333299873777] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-235", + "dateofocc": "2015-11-03", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Commercial Tug", + "descriptio": "TRINIDAD AND TOBAGO:On 3 November, four robbers boarded an anchored commercial tug, MS. ANNE, in the western end of Chaguaramas Bay, near position 10-40N 061-40W. The robbers demanded cash, jewelry, and cell phones. When they were refused, the pirates to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.666666699791904, 10.666666699732559] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-184", + "dateofocc": "2016-08-03", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 3 August, unidentified gunmen reportedly kidnapped the captain of a fishing boat as it operated northeast of Sabah state on Borneo Island. The kidnappers let the two crewmen go. No group has claimed responsibility.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.000000000434738, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-185", + "dateofocc": "2016-07-29", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 29 July, robbers boarded an anchored bulk carrier near position 10-16.03N 107-01.83E, Vung Tau Anchorage. Duty crewman on routine rounds noticed the robbers and raised the alarm. Seeing the alert crew, robbers escaped with stolen ships stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-186", + "dateofocc": "2016-08-02", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "TRINIDAD AND TOBAGO:On 02 August a vessel with three men onboard approached a sailing vessel vicinity10-49N 061-38W, 10 nm NE of Boca Monos. Robbers pulled alongside yacht and grabbed hold of the sailing yacht but the sea conditions were too rough. The v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.63333329999756, 10.833333300304446] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-187", + "dateofocc": "2016-08-13", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 13 August vicinity 06-26N 003-22E, two robbers boarded a berthed product tanker in Apapa, Lagos. Duty crew noticed the robbers and informed the bridge who raised the alarm and sounded the fog horn. Hearing the alarm, the robbers escaped in the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.433333300341985] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-188", + "dateofocc": "2016-08-17", + "subreg": "56", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "LIBYA:On 17 August, vessel fired upon vicinity 33-09.8N 012-25.7E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [12.433333299636729, 33.166666700010524] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-189", + "dateofocc": "2016-08-17", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "NIGERIA:On 17 August at 1327 LT, nine pirates in a wooden speedboat approached and boarded an underway cargo vessel. Alarm raised and all crew retreated to the citadel. Pirates departed by the time the Nigerian Navy boarded the vessel. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.150000000171872, 3.899999999841896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-190", + "dateofocc": "2016-08-19", + "subreg": "21", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "COSTA RICA:On 19 August, a dinghy and small outboard motor were stolen from a sailing vessel anchored in Golfito Bay.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.166666700037524, 8.616666699801158] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-191", + "dateofocc": "2016-08-24", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "GUINEA:On 24 August, at 0110 LT, seven robbers armed with guns and knives boarded an anchored bulk carrier near position 09-24.5N 013-43.3W, 5.5 nm south of Conakry. Two crewmen were taken hostage and beaten. The robbers escaped with crew's cash and prop", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.716666699904977, 9.416666700366591] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-192", + "dateofocc": "2016-08-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "NIGERIA:On 19 August, two fishermen were kidnapped from the Ibeno area of Akwa Ibom State, vicinity 04-34N 007-59E. A large ransom was reportedly made for their release.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.983333299807555, 4.566666699805069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-193", + "dateofocc": "2016-08-18", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "NIGERIA:On 18 August, six fishermen were kidnapped from the Ibeno area of Akwa Ibom State, vicinity 04-34N 007-59E . A large ransom was reportedly made for their release.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.983333299807555, 4.566666699805069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-194", + "dateofocc": "2016-08-07", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA: On 7 August at 2130 LT, while en route from Singapore to Haiphong, the asphalt tanker AD MATSU was boarded by five pirates armed with guns and knives near position 02-00N 104-52E, 32 nm southeast of Pulau Aur, Johor. The Master and chief office", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.883333299613753, 2.016666700307155] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-195", + "dateofocc": "2016-05-03", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Heavy Lift Carrier", + "descriptio": "COLOMBIA:On 03 May at 0700Z in 10-18.4N 075-33.4W, Cartagena anchorage, robbers boarded an anchored heavy lift carrier. They stole ship's stores and escaped unnoticed. The theft was noticed during routine rounds and incident reported to port control.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.549999999714714, 10.299999999869044] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-196", + "dateofocc": "2016-08-18", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "MALAYSIA:On 18 August in 02-20.9N 104-56.1E, a vessel reported a robbery attempt.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.933333300379843, 2.350000000376383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-197", + "dateofocc": "2016-08-27", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "PERU:On 27 August at 0630Z in 12-01S 077-10.9W, at Callao anchorage, three robbers armed with guns boarded an anchored bulk carrier. Crew on routine rounds managed to notify the bridge before being taken hostage at gunpoint. The alarm was raised, SSAS ac", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-198", + "dateofocc": "2016-08-17", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "GRENADA:On 17 August, robbers boarded a sailing yacht anchored in the Port Louis Marina, vicinity 12-02N 061-45W. They stole a bag containing personal effects and a large amount of cash.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.749999999628187, 12.033333299803644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-199", + "dateofocc": "2016-08-17", + "subreg": "56", + "hostility_": "Pirates", + "victim_d": "Supply Vessel", + "descriptio": "LIBYA:On 17 August, Médecins Sans Frontières (MSF) reported that Luxemburg-flagged tug supply vessel BOURBON ARGOS was taking part in migrant rescue operations 24 nm north of Libyan coast, vicinity 32-46N 15-11E, when they were \"approached and attacked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [15.183333300400136, 32.766666700177439] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-245", + "dateofocc": "2015-11-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "SOMALIA:On 22 November at 1105 UTC near position 06-16N 053-30E, around 232 NM SE of the Somali coast, a fishing vessel was hijacked by pirates.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.499999999827196, 6.266666699770099] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-150", + "dateofocc": "2014-06-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Anchored Ship", + "descriptio": "INDONESIA:On 17 June, four robbers armed with knives boarded an anchored ship near position 03-57N 098-46E, Belawan Anchorage. Duty crewman on security rounds saw the robbers and raised the alarm. Upon hearing the alarm the robbers escaped. During an ins", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 1, + "victim_l_D": "Anchored Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.766666699613893, 3.949999999708666] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-151", + "dateofocc": "2014-06-25", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "COLOMBIA:On 25 June, robbers boarded an anchored tanker near position 10-19N 075-31W. Cartagena Inner Anchorage 'A'. The roving patrol on duty noticed the robbers on the forecastle and informed the duty officer who raised alarm. Search lights were direct", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-152", + "dateofocc": "2014-06-30", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "General Cargo Ship", + "descriptio": "IVORY COAST:On 30 June, two robbers, armed with long knives, in a speedboat boarded an anchored general cargo ship near position 05-13N 004-04W, Abidjan Anchorage. The duty crewman on routine rounds spotted the robbers at stern of the ship and informed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.066666700447229, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-153", + "dateofocc": "2014-06-28", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN:On 28 June, a skiff made a suspicious approach on an underway tanker, TORM SOFIA, near position 13:15N 049:11E, approximately 76 nm south of Al Mukalla, Yemen. The vessel was en route from Sikka, India to New York when it was approached. Acc", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.183333299701019, 13.250000000099305] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-154", + "dateofocc": "2014-06-25", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 25 June, two robbers boarded an anchored tanker near position 13-45N 121-02E, Batangas Anchorage. Duty officer and duty crewman saw movement on the forecastle. Upon investigation, they saw the robbers lowering stolen ship's stores into the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.749999999665818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-155", + "dateofocc": "2014-06-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 25 June, robbers boarded an anchored tanker near position 01-25N 104:34E, 11 nm north of Pulau Bintan. The robbers entered the engine room, stole engine spares and escaped unnoticed. The robbery was later noticed by duty crewman on routine r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.566666700341045, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-156", + "dateofocc": "2014-06-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 26 June, robbers approached an anchored container ship near position 01-24N 104-40E, 11 nm north-northeast of Pulau Bintan. Alert crewman noticed a small boat with ropes and hooks approaching from the stern and raised the alarm. Seeing crew'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.666666700074472, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-157", + "dateofocc": "2014-06-25", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA: On 25 June, five armed robbers boarded an underway chemical tanker near position01-11N 103-52E, 3.6 nm northwest of Pulau Batam. They entered into the engine room, took hostage the third engineer and tied him up. Other crew found the engineer,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.866666700408359, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-158", + "dateofocc": "2014-06-27", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "INDONESIA:On 27 June, robbers boarded an anchored cargo ship near position 01-18S 116-48E, Balikpapan Inner Anchorage. Duty crewman on security rounds found that the padlock to the forecastle store room had been broken and then sighted three robbers arm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.800000000165596, -1.299999999786621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-159", + "dateofocc": "2014-06-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "INDONESIA:On 30 June, robbers boarded an anchored cargo ship near position 01-25N 104:44E, around 15 nm NE of Pulau Bintan. Alert crewman onboard the vessel spotted unauthorized persons, resulting in their escape with stolen ship's stores.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.733333300013612, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-160", + "dateofocc": "2014-06-30", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 30 June, six armed robbers boarded an underway LPG tanker near position 01-07N 103:30E, 5 nm East of Karimun Kecil Island. They entered into the engine room and took hostage an engine room crewman, tied his hands and stole engine spares. Whi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.499999999645524, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-161", + "dateofocc": "2014-06-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vehicle Carrier", + "descriptio": "INDONESIA:On 30 June, five robbers, armed with long knives, boarded an anchored vehicle carrier near position 05-59S 106-54E, Tanjung Priok Anchorage. They entered into the engine room, took hostage the duty oiler, tied him and blind folded him. They sto", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.899999999575641, -5.983333299951539] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2014-163", + "dateofocc": "2014-07-06", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Product tanker", + "descriptio": "INDIA:On 6 July, two robbers in a fishing boat boarded an anchored product tanker near position 22-48N 070-01E, Kandla Anchorage. Duty crew on routine rounds noticed the robbers and raised the alarm resulting in the robbers jumping overboard and escaping", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.016666699808297, 22.799999999823626] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-36", + "dateofocc": "2015-02-15", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH:On 15 February, pirates attacked up to seven fishing boats while they were operating about 50 km south from Sonar Char area. The pirates attacked three fishing boats, initially, when four other boats came to the aid of the other fishing boats", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.50000000012443, 21.533333299661194] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-37", + "dateofocc": "2015-02-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 25 February near position 01-04N 103-36E, four robbers armed with long knives boarded an underway bulk carrier. The fourth engineer noticed the robbers and informed the bridge who raised the alarm, sent an SSAS alert and mustered the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.600000000278271, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-38", + "dateofocc": "2015-02-24", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 24 February near position 01-08N 103-28E, three robbers boarded an underway bulk carrier. Alarm was raised and the crew was mustered. Seeing the crew's alertness the robbers escaped empty handed", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.466666699675955, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-39", + "dateofocc": "2015-03-03", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Reefer Ship", + "descriptio": "NIGERIA:On 3 March, eight robbers boarded a berthed reefer ship near position 06-27N 003-22 E, Apapa Berth No.9, Lagos. Ship's security watch spotted the robbers and raised the alarm. Seeing the crew's alertness, the robbers escaped empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-40", + "dateofocc": "2015-03-30", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "INDONESIA:On 3 March, six robbers attempted to board an anchored cargo ship near position 01-08N 103-55 E, vicinity of Cape Uncang, Batam Island. The robbers were spotted by an Indonesian Navy patrol boat and quickly apprehended. They were carrying two", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.916666700275073, 1.133333300080665] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-41", + "dateofocc": "2015-03-07", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 7 March near position 06-13N 119-50E, a suspected mother vessel disguised as a fishing vessel deployed six high speed skiffs which chased an underway bulk carrier. The persons onboard the skiffs were wearing camouflage clothes circled arou", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.833333300232198, 6.216666699903385] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-42", + "dateofocc": "2015-03-06", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "ST VINCENT AND THE GRENADINES:On 6 March, robbers boarded an anchored sailing vessel through an open window. The robbers rummaged thru a money clip and purse and took $400 in cash while the crew slept unaware on a windy, noisy night. The incident was rep", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.316666699825532, 12.716666699663961] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-43", + "dateofocc": "2015-03-11", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 11 March, a duty crewman onboard a bulk carrier anchored near position 10-15N 107-02E, Vung Tau Anchorage, noticed robbers on deck. He informed the duty officer who raised the alarm and mustered the crew. The robbers managed to steal ship's st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-44", + "dateofocc": "2015-03-08", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "SOUTH CHINA, SOUTHERN PART:On 8 March near position 01-43N 105-50E, seven pirates in a speed boat armed with guns and long knives boarded and hijacked a tanker underway. They took hostage all of the crew members, damaged all of the communication and navi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.833333299779383, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-45", + "dateofocc": "2015-03-07", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Recreational boats", + "descriptio": "VENEZUELA:On 7 March, robbers boarded three weekend motor boats in the Morrocoy National Park. The robbers reportedly spent seven hours ransacking all three boats, stealing all the belongings and valuables of the three families. They departed the area by", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-68.250000000288026, 10.833333300304446] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-46", + "dateofocc": "2015-03-14", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "CONGO:On 14 March, robbers boarded an anchored barge vessel near position 04-45S 011-48 E, Pointe Noire Outer Anchorage. They broke open a store room, stole ship properties and escaped unnoticed. The incident was discovered the next morning.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.80000000036722, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-47", + "dateofocc": "2015-03-12", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Petroleum product tanker", + "descriptio": "NIGERIA:On 12 March, two robbers boarded a berthed petroleum product tanker near position06-27N 003-22E, Terminal 5, Apapa Port, Lagos. Duty pump man noticed the robbers hiding near the hatch cover of No.1 cargo oil tank. He immediately informed the duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-48", + "dateofocc": "2015-03-10", + "subreg": "57", + "hostility_": "Suspicious approach", + "victim_d": "Unspecified vessel", + "descriptio": "GHANA:On 10 March, a suspicious approach was reported near position 04-04N 001-22W, 54 nm south-southeast of Takoradi. The suspicious vessel was described as a 50 meter long gray or white-hulled fishing boat.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.366666699550535, 4.066666700238557] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-49", + "dateofocc": "2015-03-09", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Product tanker", + "descriptio": "INDONESIA:On 9 March, seven pirates in a speed boat, wearing masks and armed with guns and long knives hijacked product tanker MT SINGA BERLIAN near position 01-43N 105-50 E, 37 nm south of Pulau Repong. They took hostage the crew members, damaged all th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.833333299779383, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-236", + "dateofocc": "2015-11-07", + "subreg": "56", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "EGYPT:On 7 November, two robbers armed with knives boarded an anchored container ship near position 31-12N 029-44E, 9.4 nm west of Alexandria. A duty crew man on routine rounds noticed the robbers on the quarter deck. Before he could report the boarding", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [29.73333330028612, 31.199999999915406] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-237", + "dateofocc": "2015-11-10", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 10 November, an unknown number of robbers boarded an anchored container ship near position 10-15N 107-03E, Mui Vung Tau anchorage. The theft was noticed when the crew observed the padlock to the steering gear room broken. A thorough search was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.250000000002331] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-238", + "dateofocc": "2015-11-03", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 3 November, three robbers boarded an anchored bulk carrier via the anchor chain near position 03-42S 114-26E, Taboneo Anchorage. The alarm was raised and crew was mustered. Seeing the crew's alertness, the robbers escaped empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.433333300237337, -3.699999999684394] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-239", + "dateofocc": "2015-10-18", + "subreg": "81", + "hostility_": "Robbers", + "victim_d": "Sailing Yacht", + "descriptio": "PAPUA NEW GUINEA:On 18 October, two robbers boarded an anchored sailing yacht near position 04-11N 144-53E, Hansa Bay in Madang Province. The robbers attacked the boat owner with machetes. Both robbers were eventually thrown overboard and escaped without", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [144.883333300008076, 4.18333330004441] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-240", + "dateofocc": "2015-11-12", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 12 November at 0720 hours LT in the Belawan Outer Anchorage near position 03-56N 098-45E, two robbers boarded an anchored bulk carrier via the hawse pipe. The alarm was raised and the crew mustered. Upon seeing the crew's alertness, the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.933333299811466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-241", + "dateofocc": "2015-11-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "INDONESIA:On 06 November at 1505 hours LT in the Belawan Anchorage near postion 03-47N 098-45E two robbers boarded an anchored container ship. The duty crew on routine rounds noticed the robbers and raised the alarm. Upon hearing the alarm the robbers es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.749999999716749, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-242", + "dateofocc": "2015-11-15", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Trawlers", + "descriptio": "NIGERIA:On 15 November near position 04-17N 007-13E, the local press reported that pirates attacked two trawlers along the Bonny Anchorage in the Rivers State. A spokesman said the recent attacks left two crew members dead, three abducted and two serious", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.216666699935729, 4.283333299777837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-243", + "dateofocc": "2015-11-14", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 14 November, six robbers armed with long knives and iron bars boarded an anchored container ship near position 10-14N 107-02E, Vung Tau Anchorage. The duty deck watchman noticed the robbers and informed the duty officer who raised the alarm an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.033333300177958, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-244", + "dateofocc": "2015-11-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 6 November, five robbers armed with knives boarded a berthed bulk carrier during cargo operations near position 06-04S 106-51E, Berth 115, Jakarta Port. They were noticed by the crew who raised the alarm. Seeing the alerted crew the robbers", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.849999999708871, -6.066666699612597] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-246", + "dateofocc": "2015-11-18", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Cargo Ship", + "descriptio": "HAITI:On 18 November, two robbers boarded an anchored general cargo ship near position18-33N 072-23W, Port-au-Prince Anchorage. A duty crewman noticed the robbers hiding near the forward mooring station and informed the duty officer. As the crewman appro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.383333300120398, 18.550000000360683] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-247", + "dateofocc": "2015-11-18", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "DR CONGO:On 18 November, a robber boarded an anchored product tanker near position 04-45S 011-49E, Pointe Noire Anchorage. A crewman immediately informed the Ship's Master who in turn raised the alarm. The deck crew members rushed to the forecastle. Upon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-248", + "dateofocc": "2015-11-20", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Ship", + "descriptio": "GULF OF ADEN:On 20 November, a bridge lookout onboard an underway general cargo ship saw three skiffs approaching the ship near position 13-12N 049-00 E, approximately 113 NM north of Bosasso, Somalia. The alarm was raised, the crew mustered and a securi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.000000000131308, 13.200000000232592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2015-249", + "dateofocc": "2015-11-19", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Boats", + "descriptio": "BANGLADESH:On 19 November near position 21-50N 89-58E, up to 42 fishermen and 22 fishing boats were captured by a group of pirates in the Bay of Bengal about 50 KM off Patharghata in the Barguna district. Bangladesh Coast Guard officials are investigatin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.966666699689029, 21.833333299760852] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-200", + "dateofocc": "2016-08-25", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 25 August, suspected pirates abducted a fisherman in the Meghna River at Manpura Upazila in Bhola district, vicinity 22-21N 091-12E. Initially, the pirates opened fire at the fishermen who tried to resist them. Frightened, five fishermen ju", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.200000000057116, 22.350000000123828] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-201", + "dateofocc": "2016-08-25", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 25 August, a gang of pirates kidnapped four fishermen for not paying a toll in the Meghna river adjacent to Char Abdullahpur in Ramgati upazila of Lakshmipur, vicinity22-34N 090--59E. When the fishermen refused to pay, the bandits attacked", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.983333299793799, 22.566666700387202] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-202", + "dateofocc": "2016-08-25", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Cruise Ship", + "descriptio": "PHILIPPINES:On 25 August, gunmen attacked the passenger boat MB PRINCESS AJ near Claveria town on the island province of Masbate, vicinity 12-49N 123-14E. The gunmen reportedly fired at the engine of the passenger boat, and instead hit three passengers,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 7, + "victim_l_D": "Passenger Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.233333300162258, 12.816666700296707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-203", + "dateofocc": "2016-09-02", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 02 September at 0820 LT in 07-09.7N 125-39.6E, at New Davao oil mill terminal, duty crew noticed a robber on a berthed product tanker. The alarm was raised and the robber escaped after seeing crew alertness. Ship's property was reported st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.666666699854318, 7.166666700069015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-204", + "dateofocc": "2016-08-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "SINGAPORE STRAIT:On 19 August at 0130 LT in 01-11N 103-52E, four armed robbers attempted to board an underway tug. The alarm was raised and the crew mustered. Seeing the crew alertness, the robbers aborted the attempt and moved away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.866666700408359, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-205", + "dateofocc": "2016-09-06", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MOZAMBIQUE:On 06 September at 0350 LT at jetty number 10 in Beira, crew onboard a berthed tanker noticed robbers stealing ship's property. The alarm was raised. Seeing the alerted crew, the robbers escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.833333300181266, -19.81666669983241] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-206", + "dateofocc": "2016-09-06", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 06 September at 2335 LT at the Dumai inner anchorage, four robbers boarded an anchored bulk carrier and entered engine room. They threatened the duty oiler with knives and tied him up. Robbers proceeded to steal engine spares and then escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.683333300049867, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-207", + "dateofocc": "2016-08-28", + "subreg": "73", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "PAPUA NEW GUINEA:On 28 August, seven armed men boarded a small boat on the way to pick up a local priest and nun at Milne Bay, vicinity 10-22S 150-30E. The robbers forced the boat operator into the water and stole the boat. The operator swam ashore and c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [150.500000000266141, -10.366666699841574] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-208", + "dateofocc": "2016-09-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 08 September at 0345 LT in 01-41.8N 101-29.7E, Dumai inner anchorage, four robbers armed with knives boarded an anchored tanker. Duty engineer informed the bridge after robbers entered through engine room. Duty officer on bridge raised the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-209", + "dateofocc": "2016-09-07", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "SOMALIA:On 7 September, persons on a foreign fishing ship, reportedly fishing illegally in Somali waters, fired on a small group of Somali fishermen near Jawasa-hasani Island, in the lower Jubba region of southern Somalia. Two fishermen were killed and n", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.099999999864735, 6.033333299609581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-210", + "dateofocc": "2016-09-14", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 14 September, five robbers wearing masks and armed with long knives boarded a berthed bulk carrier during cargo operations near position 01-44N 101-23E, Dumai Anchorage. Two crewmen who entered the engine store room were taken hostage, robbe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.383333299950266, 1.733333300279924] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-211", + "dateofocc": "2016-09-14", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 14 September, a group of robbers reportedly kidnapped 20 fishermen and looted valuables from their boats in the Dhanshiddhir Char in Mongla area of Bagerhat in the Sundarbans, vicinity 21-48N 089-44E. Several fishermen who escaped the kidna", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [89.73333330042783, 21.799999999791282] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-212", + "dateofocc": "2016-09-10", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 10 September, seven armed men, believed to be from the Philippines, kidnapped the captain and two crewmen from a fishing boat in Sabah waters near the tourist resort of Pulau Pom Pom off Semporna, vicinity 04-24N 118-52E. The kidnappers took", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.866666699994084, 4.400000000307728] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-213", + "dateofocc": "2016-09-09", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "BANGLADESH:On 09 September, vicinity 21-58N 090-19E, nine robbers boarded the cargo ship BANDHU SARDAR then attacked and robbed the crew. The ship, loaded with clinker was enroute Meghnaghat from Payra sea port when the robbers attacked the crew with lon", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.3166666996554, 21.966666700187886] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-8", + "dateofocc": "2016-12-20", + "subreg": "28", + "hostility_": "Pirates", + "victim_d": "Sailing Vessel", + "descriptio": "NICARAGUA:On 20 December, a sailing vessel was boarded while anchored in Media Luna Cay. The boarding occurred after 13 pangas carrying up to 60 men tried to push the sailing vessel onto a reef where two other wrecks were seen. The apparent leader of the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.133333300243237, 13.983333300001618] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-9", + "dateofocc": "2017-01-03", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 03 January, six persons in two speed boats, armed with automatic rifles, chased and fired upon the general cargo ship OCEAN KINGDOM near position 06-36N 122-41E, 21.6 nm east of Basilan Island. Master raised the alarm and increased speed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.683333299829656, 6.599999999839326] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-68", + "dateofocc": "2017-03-13", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "SOMALIA:On 13 March, Somali pirates hijacked the Comoros-flagged tanker ARIS 13 as the ship was in transit with a cargo of fuel from Djibouti to Mogadishu, in vicinity 11-47N 050-31E.The ARIS 13 sent a distress call, turned off its tracking system and al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.516666699627308, 11.7833332995707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-78", + "dateofocc": "2017-03-23", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 23 March, probable Abu Sayyaf militants boarded the vehicle carrier SUPER SHUTTLE RORO 9, in vicinity 06-32N 122-34E, approximately 19 nm southeast of Sibago Island, in the Moro Gulf. Four crewmen were kidnapped during the boarding, includ", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.566666700023802, 6.533333300075412] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-170", + "dateofocc": "2016-07-18", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Tug and Barge", + "descriptio": "MALAYSIA:On 18 July vicinity 05-16N 119-15E, near Dent Haven Sabah, the tug Serudong 3 and barge Seruding 4, were found abandoned with the engine still operating. The tug carried a crew of five and one of the crewmen has reportedly contacted the shipping", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.249999999930083, 5.266666699737755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-79", + "dateofocc": "2017-03-19", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 19 March, duty crewman on routine rounds onboard a tanker anchored near position 01-42N 101-28E: 0.8 nm off Pulat Rupat, Dumai, noticed one person attempting to climb onboard by using a hook attached to a bamboo stick. The duty crewman infor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.466666699611267, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-80", + "dateofocc": "2017-03-19", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "BANGLADESH:On 19 March, four armed men boarded the container ship SANTA FIORENZA, anchored near position 22-05N 091-48E, Chittagong Anchorage, and stole several gas cylinders. The master reported the incident to the Bangladesh Coast Guard via VHF Channel", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 22.08333329999374] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-81", + "dateofocc": "2017-03-15", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "PHILIPPINES:On 15 March, robbers boarded a chemical tanker anchored near position 13-45N 121-03E, Batangas Anchorage. Duty crewman on routine rounds noticed that the forepeak store room lock was broken and immediately informed the duty officer on the bri", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.04999999962854, 13.749999999665818] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-82", + "dateofocc": "2017-03-11", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 11 March, an unknown number of robbers boarded a chemical tanker anchored near position 01-42N 101-26E, Lubuk Gaung Inner Anchorage, Dumai. The robbers stole ship's properties and escaped unnoticed. The theft was noticed by the duty crew dur", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-83", + "dateofocc": "2017-03-09", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 09 March, duty crewman onboard a product tanker anchored near position05-52S 105-59E, Merak Anchorage OPL, noticed a boat close to the stern and informed the duty officer. Alarm was raised and crew was mustered. Hearing the alarm, one robber", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.9833333002789, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-50", + "dateofocc": "2017-02-21", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "HONDURAS:On 21 February, a sailing yacht anchored near Utila was boarded. A small dinghy and outboard motor was stolen. The dinghy was recovered later that day, by a local dive shop, minus the outboard motor.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.933333300006382, 16.083333299799733] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-51", + "dateofocc": "2017-02-17", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "ST LUCIA:On 17 February, a sailing yacht was boarded and thoroughly ransacked while anchored in Marigot. The incident was reported to local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.033333299798301, 13.966666699929192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-52", + "dateofocc": "2017-02-16", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "ST LUCIA:On 16 February, two fishing rods were stolen from a sailing yacht anchored in Marigot. The incident was reported to local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.033333299798301, 13.966666699929192] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-53", + "dateofocc": "2017-02-09", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "CONGO:On 09 February, duty crewman onboard a supply vessel anchored near position04-45S 011-49E, Pointe Noire Anchorage noticed a small boat alongside near the bow and informed the duty officer. Alarm was raised and crew was mustered. Seeing the crew ale", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.816666700264363, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-54", + "dateofocc": "2017-02-24", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "SRI LANKA:On 24 February, four Tamil Nadu fishermen suffered serious injuries after they were attacked, allegedly by Sri Lankan fishermen, near Kodiyakarai, in vicinity 10-16N 079-49E. The Sri Lankan fishermen first threatened them with hand guns and att", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [79.816666699765506, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-55", + "dateofocc": "2017-02-22", + "subreg": "72", + "hostility_": "Suspicous Approach", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 22 February, bulk carrier DONG HAE STAR was enroute Indonesia when two black speedboats with five individuals aboard each boat pursued them near Pearl Bank off Taganak Island, Tawi-Tawi, in vicinity 06-05N 118-19E. A spokesperson for the W", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.316666699661596, 6.083333300375671] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-56", + "dateofocc": "2017-03-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:Vessel attacked in 04-41N 007-09E on 07 March at 0620Z.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.150000000171872, 4.683333299610922] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-57", + "dateofocc": "2017-03-05", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 05 March, a skiff with six persons onboard approached and followed general cargo ship PHU AN 268 for approximately 1.5 hours. The skiff initially started following the ship near position 06-20N 118-08E, 4.43 nm northeast of Lihiman Island.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.133333300267054, 6.349999999606382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-62", + "dateofocc": "2017-03-02", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "PUERTO RICO:On 2 March, robbers stole a dinghy and outboard motor from a sailing yacht anchored in Sun Bay, Vieques, vicinity 18-05.7N 068-27.3W. The dinghy was recovered later that day, minus the motor and fuel tank.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.449999999657905, 18.099999999761565] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-63", + "dateofocc": "2017-03-01", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "VENEZUELA:On 01 March, three robbers boarded an anchored product tanker near position10-16N 064-42W, Puerto La Cruz. Alert crewman noticed the robbers and raised the alarm. Seeing the crew's alertness, the robbers escaped without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.699999999858449, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-64", + "dateofocc": "2017-02-24", + "subreg": "56", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "LIBYA:On 24 February, HACI TELLI, a Turkey-flagged oil tanker, was seized by an armed group in Libya, with 11 crew members on board held captive, according to Turkish media reports. According to the Deniz Haber Ajansi news agency, the armed group detaine", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [12.083333299670358, 32.949999999747149] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-65", + "dateofocc": "2017-03-09", + "subreg": "62", + "hostility_": "Suspicous Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 09 March 2017 at 0845 UTC in position 13-52N - 050-20E, an MV reported two motherships had deployed four skiffs that approached the MV to within 1 cable. Onboard armed security team showed weapons and skiffs retreated. Vessel is safe.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.33333330023288, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-66", + "dateofocc": "2017-03-07", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 07 March at 0834 UTC in position LAT 13-12N 048-58E, an MV reported being followed by a two skiffs with 16 - 20 armed persons. Skiffs followed astern for 40 minutes. MV is safe.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.966666700161738, 13.200000000232592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-67", + "dateofocc": "2017-02-17", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "INDIA:On 17 February, two robbers boarded an offshore support vessel anchored near position 18:54.23N 072:52.25E, 6.3nm West of JNPT Port, Mumbai. The robbers stole ship's equipment and escaped. Incident reported to Coast Guard who boarded the vessel to", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [72.866666700305132, 18.900000000326997] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-15", + "dateofocc": "2017-01-30", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Warship", + "descriptio": "YEMEN:On 30 January at 1220Z, in the Southern Red Sea a warship was attacked in14-49.1N 042-21.8E. The attack resulted in an explosion. The Houthis used three suicide boats, one of which was successful in striking the rear of the Saudi warship and blew u", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.366666699768473, 14.816666700361395] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-16", + "dateofocc": "2017-01-30", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Container Vesel", + "descriptio": "SIERRA LEONE:On 30 January at 0345Z in 08-27.3N 013-26.4W, Freetown outer anchorage, an anchored container ship was boarded by two robbers. Deck crew alerted the bridge after two robbers were sighted on the forecastle. The alarm was raised, announcement", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.433333299877745, 8.450000000303817] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-17", + "dateofocc": "2017-01-21", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 21 January, a sailing yacht anchored near Young Island was boarded. The thief was able to steal a cell phone, dive watch, and flashlight. A report was made to the local police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.200000000194962, 13.133333299569415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-18", + "dateofocc": "2017-01-19", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "HONDURAS:During the morning hours of 19 January, a France-flagged catamaran transiting from Isla Providencia, Colombia, to Rio Dulce, Guatemala, was boarded two different times during a three-hour period in an area approximately 35 nm east-southeast of t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.733333300410152, 15.916666700127166] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-19", + "dateofocc": "2017-01-19", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "HONDURAS:During the evening hours of 19 January, a sailing yacht was boarded in an area approximately 20 nm from Gordo Bank. The robbers stole computers, electronics, and alcohol. Incident reported to Honduran Navy and local police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-83.416666700270468, 15.416666699661334] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-20", + "dateofocc": "2017-01-19", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "ECUADOR:On 19 January, unknown numbers of robbers boarded a bulk carrier anchored near position 02-43S 080-24W, Guayaquil Outer Anchorage. The robbers stole ship's properties and escaped unnoticed. The theft was noticed by the duty crew during routine ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-80.400000000276293, -2.716666700448513] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-21", + "dateofocc": "2017-01-13", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "HONDURAS:On 13 January, a US-flagged sailing yacht transiting from Puerto Cortez to Roatan was boarded approximately 5 miles off the coast after anchoring in rough weather. Eight armed men boarded the yacht and ransacked it, stealing electronics, a wall", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-86.533333300173297, 16.449999999663248] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-22", + "dateofocc": "2017-01-12", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "REUNION ISLAND:On 12 January, a Canada-flagged sailing yacht was boarded while berthed in Le Port. Two folding bicycles were stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [55.283333299628509, -20.933333299670608] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-23", + "dateofocc": "2017-01-19", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 19 January, three Indonesian crewmen were kidnapped from their boat operating near Taganak in Sabah. A Malaysian Foreign Ministry official later stated that one of the men had been in contact with his family, saying the three men had been kid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.150000000164255, 5.966666699670498] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-24", + "dateofocc": "2017-01-08", + "subreg": "73", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "INDONESIA:On 08 January, a sailing catamaran was boarded while anchored in Sorong Harbor. The thief stole a computer and two cellular phones and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [131.266666700215296, -0.899999999953593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-302", + "dateofocc": "2016-11-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 20 November at 0420Z in 06-19N 003-18E, pirates attempted to board an underway vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.299999999642637, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-303", + "dateofocc": "2016-11-24", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "CONGO:A M/V was attacked in 04-44.4S 011-47.2E on 24 November at 2156Z.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.7833332995707, -4.733333299686308] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-304", + "dateofocc": "2016-11-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:A M/V was hijacked on 29 November at 0900Z in 04-37N 003-40E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.666666700405472, 4.616666699671782] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-38", + "dateofocc": "2017-02-07", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "PERU:On 07 February, an anchored bulk carrier at position 12-01S 077-12W, Callao Anchorage, was boarded by four men from a small boat. The men used climbing ropes to access the vessel where the robbers seized and tied up a crew member then stole items fr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-39", + "dateofocc": "2017-02-06", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "BANGLADESH:On 06 February, an anchored offshore supply vessel at position 21-51N 091-48E, 1nm west of Kutibidja Island, was boarded by unknown assailants. The paint locker was broken into and a large amount of paint was stolen. The crew noticed the theft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 21.849999999657996] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-349", + "dateofocc": "2017-12-16", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "BANGLADESH:On 16 December robbers boarded a barge under tow in 21-14.7N 091-47.5E. Robbers escaped with stolen property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 21.250000000358057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-350", + "dateofocc": "2017-12-16", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 16 December at 1630Z ten to twelve robbers boarded an anchored bulk carrier in20-53.8N 107-16.6E. The robbers boarded using the mooring ropes. The AB noticed robbbers stealing paint drums and raised the alarm. The robbers escaped", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.283333300410845, 20.900000000391685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-241", + "dateofocc": "2016-10-06", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "PERU:On 06 October at 0412 LT in 12-01.1S 077-11.2W, Callao anchorage, robbers in a wooden skiff approached and boarded an anchored cargo ship. They stole ship's property and escaped unnoticed. Theft was discovered by duty AB during routine rounds. Incid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-242", + "dateofocc": "2016-10-14", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "PERU:On 14 October, four robbers approached a cargo ship anchored near position 12-01S 077-11W, Callao anchorage. The crew was alerted and activated the pressurized fire hoses resulting in the robbers aborting the attempted boarding.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.183333299915887, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-243", + "dateofocc": "2016-10-10", + "subreg": "25", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "ST. VINCENT AND THE GRENADINES:On 10 October, one yacht anchored at Chateaubelair, vicinity 13-17.4N 061-15.1W, was boarded by armed men with machetes who injured the captain as he forced the attackers back to their boat. Although a mayday call was made,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.250000000061675, 13.283333300068875] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-244", + "dateofocc": "2016-09-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "NIGERIA:On 16 September, while en route from Port Harcourt to Lagos, 12 pirates armed with guns approached a chemical tanker near position 03-52N 005-20E, 44 nm southwest of Bayelsa. One pirate boarded the vessel and heaved up two aluminum ladders to ass", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.333333299676895, 3.866666699872383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-245", + "dateofocc": "2016-09-12", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "CONGO:On 12 September, an unknown number of robbers boarded an anchored offshore supply ship near position 04-45S 011-50E, Pointe Noire Inner Anchorage. The robbers stole the rescue boat outboard motor. The theft was discovered by the duty bosun during r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [11.83333330033679, -4.749999999583451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-246", + "dateofocc": "2016-10-15", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Naval Vessel", + "descriptio": "YEMEN:On 15 October, initial reports on the latest incident said the crew detected multiple missiles fired toward the USS MASON, which responded with onboard countermeasures to defend itself. No damage was reported to the vessel or other ships accompanyi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.933333300173388, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-247", + "dateofocc": "2016-10-12", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 12 October, four robbers armed with knives boarded a bulk carrier anchored near position 01-42.5N 101-29.3E, Dumai anchorage. One crewmember was taken hostage and threatened with a knife. Property was stolen from the vessel¿s engine room an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.483333299683693, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-248", + "dateofocc": "2016-10-12", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 12 October, three robbers boarded a bulk carrier anchorage near position 10-16.2N107-03.0E, Vung Tau Anchorage. The crew confronted the robbers who then fled. The incident has been reported and is currently being investigated by Vung Tau Port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-249", + "dateofocc": "2016-10-12", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 12 October, two fishermen on a boat off Tigabu Island, vicinity 06-55N 117-28E, were attacked by four armed men, injuring one.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.466666700128712, 6.916666699836071] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-250", + "dateofocc": "2016-10-09", + "subreg": "83", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "FIJI:On 9 October, a small dinghy and outboard motor were stolen from a sailing yacht anchored in Saweni Bay, vicinity 17-38.7S 177-23.6E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [177.399999999607303, -17.650000000270438] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-10", + "dateofocc": "2016-12-15", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 15 December, eight robbers in a skiff approach and attempted to board an anchored tanker using a long ladder, near position 04-21N 008-26E, Qua Iboe Anchorage. Duty officer on the bridge noticed the attempt and informed the Master. Alarm was r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.433333300406673, 4.350000000441014] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-11", + "dateofocc": "2016-12-12", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 12 December, three robbers in a small speed boat attempted to board an anchored product tanker using ropes, near position 06-18N 003-21E, Lagos Anchorage. Alarm was raised and crew was mustered in the accommodation. The armed security team onb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.35000000040867, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-308", + "dateofocc": "2016-11-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "SINGAPORE STRAITS:On 26 November, duty crewmen onboard a tug anchored near position 01-11N 103-39E, 4.1 nm southwest of Pulau Jurong, discovered a store room had been broken into and ship's stores stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-12", + "dateofocc": "2016-12-20", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "PHILIPPINES:On 20 December, suspected Abu Sayyaf militants kidnapped four fishermen from the fishing boat RAMONA 2 in the Celebes Sea, in the area where other Abu Sayyaf-related kidnappings have occurred.UPDATE:Abu Sayyaf bandits beheaded a Filipino fish", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.583333300096228, 5.783333300276013] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-13", + "dateofocc": "2016-12-08", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 08 December, three robbers boarded an anchored bulk carrier near position00-17S 117-39E, Muara Berau Anchorage, Samarinda. Alarm was raised and crew was mustered. Seeing the crew alertness, the robbers escaped with stolen ship's stores. Port", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.64999999969848, -0.283333299857134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-14", + "dateofocc": "2016-11-30", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 30 November, four robbers armed with knives boarded an LPG Tanker, anchored near position 07-46S 109-04E, Cilacap Anchorage. They took hostage a duty crewman and forced him to guide them into the engine room. The robbers then took the duty o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.066666700036933, -7.766666699577627] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-236", + "dateofocc": "2016-10-07", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 7 October, three sea robbers were arrested for robbing four women in a boat in the creeks around Ataba, vicinity 04-25.6N 007-20.6E. The robbers stole money and handsets from the victims.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.349999999638726, 4.433333300277297] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-237", + "dateofocc": "2016-10-09", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Naval Vessel", + "descriptio": "YEMEN:On 9 October, USS MASON, a U.S. Navy guided missile destroyer was targeted in a failed missile attack from territory in Yemen controlled by Iran-aligned Houthi rebels, neither of the two missiles hit the ship. There were no injuries to the sailors", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.46666670040122, 14.033333299868332] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-238", + "dateofocc": "2016-10-12", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Naval Vessel", + "descriptio": "YEMEN: On 12 October, A U.S. Navy destroyer was targeted in a failed missile attack from territory controlled by Houthi rebels, the second such incident in the past four days. USS Mason, which was accompanied by USS Ponce - an amphibious transport dock -", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.933333300173388, 13.183333300335448] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-239", + "dateofocc": "2016-10-07", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "INDONESIA:On 7 October at approximately 4:45 am, a Customs and Excise Office patrol vessel was attacked by a mob in Tanjung Jumpul waters off Asahan regency, North Sumatra, vicinity 02-52.6N 100-07.6E. The four officials reported injuries after the mob t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [100.133333299684978, 2.883333299912408] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-240", + "dateofocc": "2016-10-09", + "subreg": "94", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOUTH KOREA:On 9 October, a 4.5-ton speed boat for the Coast Guard had carried several officers in an operation to capture a Chinese vessel fishing illegally in the area, when another Chinese boat rammed the vessel and fled the scene, causing the Coast G", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.66666669978963, 37.066666700406415] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-305", + "dateofocc": "2016-12-01", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "ANGOLA:On 01 December, two robbers boarded an anchored product tanker near position08-44S 013-17E, Luanda anchorage. Alarm was raised and crew was mustered. Seeing the crew alertness, the robbers escaped with stolen ship's properties.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [13.283333300068875, -8.733333299815683] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-306", + "dateofocc": "2016-12-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "INDONESIA:On 02 December, crewmen onboard a heavy lift vessel anchored near position01-05N 104-10E, Kabil Anchorage, Palau Batam, discovered robbers boarding the ship. Duty officer raised the alarm, made the PA announcement and crew was mustered. Seeing", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 1.083333300213951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-307", + "dateofocc": "2016-12-01", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "INDONESIA:On 01 December, duty crewman on routine rounds onboard an anchored general cargo ship noticed three robbers on the forecastle deck, near position 03-40S 114-27E, Banjaramasin Anchorage. Duty officer raised the alarm and crew was mustered. Seein", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.450000000134537, -3.666666699714824] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-309", + "dateofocc": "2016-11-20", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 20 November, a duty crewman onboard an anchored bulk carrier noticed two robbers on the forecastle deck, near position 03-41S 114-25E, Taboneo anchorage. On seeing the duty crewman, the robbers threatened him with a long knife. Alarm was rai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.68333329978725] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-310", + "dateofocc": "2016-12-07", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 07 December at 2200 LT in 00-14.4S 117-35.1E, Muara Berau anchorage, duty AB onboard an anchored bulk carrier noticed the skylight of the forecastle store open. The cover of the anchor chain was also removed. He saw two robbers in a small bo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.23333329999042] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-311", + "dateofocc": "2016-12-08", + "subreg": "92", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 08 December at 1140 LT in 05-29.3N 119-38.4E, three persons in a blue and white speed boat approached an underway bulk carrier. The Master sounded the ship's whistle continuously, made a PA announcement, increased speed, commenced evasive", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.633333299865967, 5.483333300176355] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-44", + "dateofocc": "2017-02-13", + "subreg": "25", + "hostility_": "Sailing Vessel", + "victim_d": "Robbers", + "descriptio": "ST LUCIA:On 13 February, robbers boarded an anchored sailing yacht at the Soufriere Bat Caves. The robbers were able to steal cash, computers, a camera, and electronics. Incident reported to local authorities.", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.083333299665014, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-45", + "dateofocc": "2017-02-12", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "DOMINICAN REPUBLIC:On 12 February, a robber armed with a knife boarded an anchored sailing yacht in Marina Zar Par. He threatened the couple while stealing cash, a cell phone, a wristwatch and a bottle of rum. He then escaped. Incident reported to local", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.633333300256311, 18.449999999727879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-251", + "dateofocc": "2016-10-21", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PERU:On 21 October, an unknown number of robbers boarded an anchored tanker near position 12-02S 077-31W, Callao Anchorage. The robbers stole ship's spare parts and escaped unnoticed. The theft was discovered by the duty crew during routine rounds. Incid", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.516666699809832, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-252", + "dateofocc": "2016-10-26", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "YEMEN:On 26 October, the product tanker MELATI SATU was attacked in the Bab el Mandeb Strait area. Reportedly, the ship was attacked with a rocket propelled grenade and automatic rifle fire, but damage is reported to be slight. Crew is reportedly safe an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.550000000269847, 12.533333300269476] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-253", + "dateofocc": "2016-10-25", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "YEMEN:On 25 October, a merchant tanker was approached by a small boat near Perim Island, vicinity 12-39.8N 043-24.9E. The occupants fired an RPG at the vessel, the damage is unknown at this time. All crew are safe and the vessel has continued with her pa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.41666669966753, 12.666666699797247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-254", + "dateofocc": "2016-10-25", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "MALAYSIA:On 25 October, pirates attacked the tug EVER OCEAN SILK towing the oil barge EVER GIANT approximately 60 nm north of the port of Bintulu, Sarawak, vicinity 04-09.1N113-03.9E. The pirates robbed the crew of all valuables and fled. Crew is safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [113.066666700166252, 4.15000000007484] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-255", + "dateofocc": "2016-10-20", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 20 October, 10 gunmen attacked Korean heavy lift ship DONGBANG GIANT NO 2 near position 04-32N 119-33E, 8 nm south of Bongao, Tawitawi Island. The vessel was en route from Australia to Masan, Korea. Militants, allegedly belonging to Abu Sa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.550000000029627, 4.533333300010781] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-256", + "dateofocc": "2016-10-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 20 October, an unknown number of robbers boarded an anchored tanker near position 01-42.5N 101-27.0E, Dumai Tanker Anchorage. They stole engine spare parts and escaped unnoticed. The incident was discovered during routine rounds and was repo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.449999999714123, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-257", + "dateofocc": "2016-10-17", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:Early during the week of 17 - 21 October, pirates attempted to board the tanker VAJARA in the Ramos River area of Delta State, vicinity 05-21.2N 005-12.4E. Fire was exchanged between Nigerian authorities and the pirates. The attempt to board was", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.199999999973898, 5.349999999574038] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-258", + "dateofocc": "2016-10-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOMALIA:On 22 October at 0955LT in 04-28.1N 053-22.2E, vessel was approached by a speed boat with six persons on board. Warning shots were fired from the vessel when boat got too. Speed boat returned fire and departed from the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.366666700124199, 4.466666700071642] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-47", + "dateofocc": "2017-02-23", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tug", + "descriptio": "INDONESIA:On 23 February, five robbers armed with a knife boarded an offshore tug anchored near position 01-10N 103-059E, Batu Ampar Anchorage, Batam Island. Alert crew noticed the robbers on the CCTV cameras and raised the alarm. Seeing the crew's alert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.983333300214213, 1.166666699874952] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-48", + "dateofocc": "2017-02-16", + "subreg": "95", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOUTH KOREA:On 16 February, a South Korean fisheries patrol boat fired 900 rounds from a machine gun to drive off dozens of Chinese fishing vessels that were allegedly trying to interfere with an interdiction operation. The patrol boat apprehended one ve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.099999999624629, 33.533333300049264] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-59", + "dateofocc": "2017-03-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 08 March at 0800Z in 03-20.0N 004-28.9E, a bulk carrier was attacked. The vessel managed to evade the threat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.483333300144011, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-113", + "dateofocc": "2017-04-14", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 14 April at 0652Z, a vessel was attacked in 15-55.5N 052-20.7E. Shots were fired towards the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.350000000194711, 15.933333300199536] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-114", + "dateofocc": "2017-04-15", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 15 April at 1316Z, the M/V Alheera was attacked in 12-53N 047-57E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.950000000232251, 12.883333300235847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-115", + "dateofocc": "2017-04-16", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Container Vessel", + "descriptio": "RED SEA:On 16 April at 1022Z, a vessel was approached in 12-49.1N 043-16.0E. Three blue skiffs with five persons in each approached the underway container vessel. Master raised the alarm, non-essential crew retreated into the citadel and the armed securi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.266666700067333, 12.816666700296707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-25", + "dateofocc": "2017-01-28", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "PANAMA:On 28 January, items were stolen an anchored unlocked catamaran in San Blas. The thieves took a wallet and cellphones from the salon chart table and left two sets of muddy footprints. A report was made to the local police and to a weather report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-78.816666699941834, 9.566666699966788] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-26", + "dateofocc": "2017-01-27", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "PUERTO RICO:On 27 January, a dinghy and outboard motor was stolen from a sailing yacht anchored inVieques Esperanza. The dinghy and outboard motor had been secured with a steel chain that had been cut. Later the dinghy was found on a nearby beach minus t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.483333299627475, 18.099999999761565] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-27", + "dateofocc": "2017-01-25", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "DOMINICAN REPUBLIC:On 25 January, a knife-armed intruder swam on to a sailing yacht and attacked thehusband and wife in the Marina Zar Par, Boca Chica. After a struggle the intruder held a knife to the wife¿s neck and demanded and received money and jew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.616666700183885, 18.449999999727879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-28", + "dateofocc": "2017-01-24", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "COLOMBIA:On 24 January, robbers boarded an anchored chemical tanker near position10-19N 074-32W, Mamonal Inner Anchorage, Columbia. The robbers stole ship items, and escaped without being noticed. The crew noted the theft during routine rounds later in t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-74.533333299785227, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-29", + "dateofocc": "2017-01-30", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "SIERRA LEONE:On 30 January, two robbers boarded an anchored container ship near position08-27N 013-26W, Freetown Outer Anchorage. A duty crewman informed the duty officer that he saw them on the forecastle. Alarm was raised, PA announcement made and crew", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.433333299877745, 8.450000000303817] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-30", + "dateofocc": "2017-01-25", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SIERRA LEONE:On 25 January, three men armed with knives boarded an anchored bulk carrier near position 08-27N 013-21W, Pepel Anchorage. Upon noticing the men, the crew raised the alarm but the assailants stole ship's stores and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.350000000041462, 8.450000000303817] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-31", + "dateofocc": "2017-01-25", + "subreg": "83", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "FIJI:On 25 January two individuals boarded a sailing yacht boat anchored in Suva. They attacked the lone crewman with a cane knife and injured him severely. The crewman was hospitalized and police apprehended one of the perpetrators.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [178.433333299609103, -18.133333299939807] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-32", + "dateofocc": "2017-02-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 05 February at 1024Z, a vessel was attacked in 03-58.6N 005-28.6E. The general cargo ship BBC CARIBBEAN was attacked by pirates at position at the Pennington Oil Terminal, off of Bayelsa. Eight crewmen, seven Russians and one Ukrainian, were k", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.483333300176355, 3.983333299678179] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-116", + "dateofocc": "2017-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 19 April at 0855Z, a tanker was attacked in 03-25N 005-36E. Nine pirates in a speed boat fired upon a tanker being escorted by a security boat. Master immediately notified the escort vessel and Nigerian Navy. Pirates aborted the attack and mov", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.599999999806982, 3.416666700172584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-304", + "dateofocc": "2017-11-19", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "WESTERN INDIAN OCEAN:On 19 November at 0917Z, a vessel was attacked in 01-56S 047-57E. The vessel was attacked by a skiff with four persons on board. They tried to board the vessel but failed due to razor wire along the gunnel. They fired two RPG after t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.950000000232251, -1.933333299955507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-305", + "dateofocc": "2017-11-18", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "WESTERN INDIAN OCEAN:On 18 November at 0555Z a fishing vessel reported suspicious activity in 01-52S 049-23E. One skiff approached the fishing vessel at a distance of 1000 meters. The vessel fired warning shots and the skiff turned away.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.38333330006725, -1.866666700016367] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-58", + "dateofocc": "2017-03-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:Vessel attacked in 03-16N 004-31E on 08 March at 0830Z.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.516666699938355, 3.266666699673067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-171", + "dateofocc": "2017-06-13", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 13 June at 1350Z, a vessel was approached by four skiffs with six persons in each skiff, in 12-56.49N 043-12.17E. Skiffs approached and followed the vessel for about ten minutes. Security team aboard vessel showed weapons and skiff dropped bac", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.200000000303476, 12.933333300102561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-180", + "dateofocc": "2017-06-25", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 25 June at 1411Z in 14-43.6N 042-05.6E, a vessel was approached by one dark hulled skiff with eight persons on board. The skiff was armed with weapons. Skiff approached to within three cables of the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.099999999638385, 14.733333299801018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-181", + "dateofocc": "2017-06-28", + "subreg": "62", + "hostility_": "Suspicous Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 28 June at 0800Z, five skiffs with four or five persons on board each, approached a vessel in 12-28N 043-44E. The skiffs approached to 0.5 NM before retreating.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.733333299839558, 12.466666700330336] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-182", + "dateofocc": "2017-06-30", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 30 June at 0820Z, a vessel was approached by four skiffs with seven persons on board each, in 12-53N 043-11E. The skiffs approached to within 40 meters of vessel before retreating.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.183333300406332, 12.883333300235847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-183", + "dateofocc": "2017-07-05", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 05 July at 1220Z, a vessel was approached by seven skiffs in 14-17.9N 042-21.3E. Each skiff had five or six persons on board and were sighted with weapons. Skiffs approached to within 320 meters of vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.349999999871272, 14.299999999998363] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-184", + "dateofocc": "2017-06-24", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VENEZUELA:On 24 June, eight robbers boarded an anchored tanker near position 10-12 N 064-46W, Jose Terminal Anchorage, during the pre-departure inspection. They assaulted a duty crewman on security rounds. Another crew noticed the robbers, raised the ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.766666699622363, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-185", + "dateofocc": "2017-06-01", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 11 June, an outboard motor was stolen from a sailing yacht anchored in Wallilabou, in vicinity 13-16N 061-16W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.266666699958819, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-186", + "dateofocc": "2017-05-24", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 24 May, a dinghy and outboard motor were stolen from a sailing yacht anchored in Wallilabou, in vicinity 13-16N 061-16W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.266666699958819, 13.266666699996506] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-187", + "dateofocc": "2017-06-23", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 23 June, CP 41, a laden tanker en route from Singapore to Songkhla, Thailand, was boarded by six armed pirates from a speed boat near position 03-55N 103-52E, 33 nm north-northeast of Kuantan. They took the 17 crew members hostage, hit a few", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.866666700408359, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-188", + "dateofocc": "2017-06-21", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "INDONESIA:On 21 June, while carrying out pre-departure checks a duty crewman noticed wet footsteps on the poop deck of a cargo ship anchored near position 01-04N 104-08E, Jetty No. 3, CPO Kabil Port, Batam. Upon carrying out further checks he noticed the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-195", + "dateofocc": "2017-07-14", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 14 July, two robbers boarded an anchored container ship near position14-33N 120-55E, Manila South Harbor Anchorage. Duty crewman informed the Chief Officer who raised the alarm. Crew mustered and moved towards the bow. Seeing the alerted c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-196", + "dateofocc": "2017-07-10", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 10 July, robbers boarded an anchored container carrier near position 14-33N 120-54E, Manila South Harbor Anchorage, stole ship's properties and escaped unnoticed. The theft was noticed by the duty crew during routine rounds. Incident repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.900000000028399, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-197", + "dateofocc": "2017-07-13", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Fishing Vessel", + "descriptio": "TAIWAN:On 13 July, the Coast Guard Administration (CGA) said that all seven fishermen aboard the Taiwanese fishing boat JIN JIN HE FA 2 were safe after being robbed by men from a Chinese boat. The fishermen were attacked in vicinity 21-55N 118-19E,113 na", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.316666699661596, 21.916666700321173] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-198", + "dateofocc": "2017-07-07", + "subreg": "95", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "JAPAN:On 07 July, Japan reported that one of its patrol vessels was chased by an apparently armed fishing boat believed to be from North Korea, according to a government spokesman. The incident occurred in the Sea of Japan, in vicinity 36-39.5N 133-12.1E", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [133.199999999616807, 36.666666699674067] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-200", + "dateofocc": "2017-07-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 30 July, the cargo vessel OYA 1 was attacked and boarded by piratesin 04-10.12N 006-59.44E. The pirates kidnapped five crew members and escaped. The Nigerian Navy has been notified.UPDATE: On 19 August, two Moroccan sailors kidnapped on 30 Jul", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.983333299775211, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-201", + "dateofocc": "2017-07-29", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 29 July between 1630Z and 1830Z, a vessel was approached three instances in vicinity14-16N 051-08E. The vessel was approached by one skiff from the starboard side. The vessel fired a warning shot and the skiff turned away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.133333299898993, 14.26666670002885] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-202", + "dateofocc": "2017-07-21", + "subreg": "51", + "hostility_": "Robber", + "victim_d": "Tanker", + "descriptio": "LIBERIA:On 21 July, a suspicious man was sighted on the poop deck of a merchant tanker anchored near position 06-21N 010-52W, Monrovia Anchorage. Vessel raised the alarm, crew members conducted a search but nothing was reported stolen. No injuries report", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-10.866666700307405, 6.349999999606382] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-328", + "dateofocc": "2017-11-22", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "INDONESIA:On 22 November, pirates hijacked the tug EVER PROSPER in vicinity 07-11S 116-27E, tied up the crew and stole the barge EVER OMEGA, carrying 3,700 tons of Palm Oil. The barge was later found by authorities, but the cargo was gone.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [116.450000000199225, -7.183333300350114] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-329", + "dateofocc": "2017-11-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 20 Nov, an unlit boat approached a bulk carrier underway near position01-02N 103-39E, 6 nm south of Pulau Nipah, and came alongside the starboard quarter. Crew on deck watch noticed the boat and informed the duty officer. Deck lights and sea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.650000000144985, 1.033333300347238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-147", + "dateofocc": "2017-05-04", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PERU:On 04 May, six robbers armed with knives boarded a container ship anchored near position 12-01S 077-12W, Callao Anchorage. They took hostage a duty crewman and the shore security watchman and tied them up. The robbers then broke into the forecastle", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.199999999813031, -12.01666669993989] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-148", + "dateofocc": "2017-05-17", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "NIGERIA:On 17 May, armed pirates boarded a general cargo ship near position 03-59N 006-46E, approximately 50 nm southwest of Port Harcourt. They kidnapped six crew members and escaped. The remaining crew sailed the vessel to Bonny anchorage. The Nigerian", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, -3.983333299886851] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-149", + "dateofocc": "2017-05-16", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF ADEN:On 16 May, an Indian anti-piracy patrol received a distress call from a Liberia-registered bulk carrier that reported a suspicious incident by two suspicious mother vessels along with 7-8 skiffs. When it sent the distress call, bulk carrier", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.383333300164281, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-150", + "dateofocc": "2017-05-16", + "subreg": "73", + "hostility_": "Suspicious Approach", + "victim_d": "Offshore Supply Vessel", + "descriptio": "INDONESIA:On 16 May, an underway offshore supply ship was approached by a small speed boat near position 03-32N 126-23E, 26 nm southwest of Kepulauan Talaud North Sulawesi. The small boat closed to approximately 30 meters. Alarm raised, crew mustered and", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [126.383333299859373, 3.533333299978437] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-151", + "dateofocc": "2017-05-11", + "subreg": "74", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 11 May, a robber armed with a knife boarded an anchored bulk carrier via the anchor chain near position 14-50S 117-32E, Muara Berau Anchorage, Samarinda. Duty crewman on routine rounds noticed the robber and informed the duty officer who rai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [117.533333300067852, -14.833333299743117] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-152", + "dateofocc": "2017-05-10", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "PHILIPPINES:On 10 May, authorities recovered the remains of a fisherman and young boy, who went missing and who are believed to be have been killed by pirates in the seas off Tungawan town, Zamboanga Sibugay, in vicinity 07-32N 122-31E. A spokesman said", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.516666700157089, 7.533333300107756] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-153", + "dateofocc": "2017-05-06", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Container Vessel", + "descriptio": "IVORY COAST:On 06 May, duty officer onboard a container ship anchored near position005-10N 004-04W, Abidjan Anchorage, noticed a suspicious boat approaching from astern and alerted the duty crew on deck. As the boat came alongside, alarm and ship's whist", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-4.066666700447229, 5.166666700004328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-154", + "dateofocc": "2017-05-07", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "GULF OF OMAN:On 07 May, duty officer onboard a bulk carrier underway near position 25-32N 057-33E, 12 nm southwest of Bandar E Jask, Iran, noticed three skiffs approaching the vessel. At the same time a vessel suspected to be the mother vessel was seen a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.549999999823285, 25.53333329979057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-155", + "dateofocc": "2017-04-22", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 22 April, duty crewman onboard a container vessel anchored near position07-10N 122-39E, 10 nm southwest of the Olutanga Coast noticed a small boat near the anchor chain. The hawse pipe cover was opened and the crewman informed the duty off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.649999999860142, 7.166666700069015] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-156", + "dateofocc": "2017-05-18", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "VENEZUELA:On 18 May, robbers boarded an anchored chemical tanker near position 10-11N 064-46W, 4 nm west of Lecheria, stole ship's equipment, stores and escaped unnoticed. Theft noticed by crew on routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.766666699622363, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-157", + "dateofocc": "2017-05-12", + "subreg": "27", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "CAYMAN ISLANDS:On 12 May, a beached dinghy/outboard motor was stolen from the beach area near downtown Georgetown, in vicinity 19-18N 081-21W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-81.350000000441867, 19.300000000160082] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-158", + "dateofocc": "2017-05-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 16 May, Warri gunmen kidnapped four Itsekiri community leaders and four officials of Elcrest, a Nigerian Petroleum Development Company, along the Benin River, Warri North Local Government Area of Delta State, in vicinity 05-45N 005-03. The vic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.050000000373757, 5.750000000306443] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-159", + "dateofocc": "2017-05-12", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 12 May, crew of a tanker underway near position 03-58N 007-33E, Yoho Anchorage, noticed two skiffs with around nine persons approaching in suspicious way. Alarm raised and crew was mustered. One skiff closed to a distance of three meters and s", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.550000000004957, 3.96666669960581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-42", + "dateofocc": "2018-01-01", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 01 January, seven robbers boarded an anchored container ship in vicinity 14-33N 120-54E, South Harbor Anchorage. The robbers stole ship's properties and escaped unseen. The master reported the incident to the port authorities who notified", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.900000000028399, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-278", + "dateofocc": "2016-11-06", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 06 November, an unknown number of robbers boarded an anchored tanker near position 07-20N 125-37E, Davao Anchorage. The robbers stole ship's stores and escaped. The theft was noticed by the duty crew on routine rounds. Port control informe", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [125.616666699987604, 7.333333299741582] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-160", + "dateofocc": "2017-05-23", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "SOMALIA:On 23 May, Somali pirates reportedly hijacked an Iranian fishing vessel, in vicinity07-45N 050-13E, to use as a base to attack bigger, more valuable ships, Ali Shire, the mayor of Habo in the northern semi-autonomous region of Puntland, told Reut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [50.216666700427027, 7.750000000371131] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-161", + "dateofocc": "2017-05-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Chemical Tanker", + "descriptio": "INDONESIA:On 20 May, six robbers wearing masks and armed with long knives boarded a berthed chemical tanker near position 01-43N 101-23E, MSSP Jetty, Lubuk Gaung Port, Dumai. Alert crewman noticed the robbers and raised the alarm. The robbers stole ship'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.383333299950266, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-234", + "dateofocc": "2017-09-26", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 26 September at 0700Z, in 12-08N 044-15E, a vessel reported sighting five skiffs with four persons on board. One skiff came within one cable of the vessel. Armed guards aboard the vessel showed weapons and the skiff changed direction.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.250000000202533, 12.133333300436391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-235", + "dateofocc": "2017-09-24", + "subreg": "56", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "LIBYA:On 24 September at 0700Z, a bulk carrier was attacked by a speed boat in 32-55N 023-27E. The speed boat fired gun shots and rockets at the vessel. The vessel is safe and continued passage to port.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [23.449999999889599, 32.916666699777579] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-236", + "dateofocc": "2017-09-22", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 22 September at 0721Z, a vessel reported a suspicious approach in 12-37N 047-28E. The vessel was approached by a skiff with three persons on board.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.466666699663563, 12.616666699930477] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-237", + "dateofocc": "2017-09-15", + "subreg": "51", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "GUINEA:On 15 September at 0206Z, a vessel was attacked in 09-24.35N 013-44.56W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.74999999987449, 9.399999999570127] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-238", + "dateofocc": "2017-09-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LNG Carrier", + "descriptio": "MALAYSIA:On 07 September at 1910Z, a vessel was attacked in 02-03.6N 104-59.3E. Four armed robbers with guns and knives boarded an underway LNG carrier. The robbbers' stole crew property and escaped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.983333300246557, 2.066666700173869] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-239", + "dateofocc": "2017-09-06", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 06 September at 1500Z in 05-38.3N 103-11.8E, an underway tanker was boarded and hijacked by ten pirates in a speed boat. Authorities were able to detain all ten pirates and the vessel continued on voyage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.200000000445186, 5.633333299776552] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-240", + "dateofocc": "2017-09-01", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VENEZUELA:On 01 September, five robbers in a small fishing boat armed with pistols, knives and sticks boarded a tanker anchored near position 10-14N 064-44W, Puerto La Cruz Anchorage. They assaulted the aft duty watchman, tied him up and took him hostage", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.733333299828018, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-241", + "dateofocc": "2017-09-02", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "BANGLADESH:On 02 September, four robbers armed with long knives boarded an anchored bulk carrier during cargo operations near position 22-14N 091-44E, Chittagong Alpha Anchorage. The watchmen and duty crewman on routine rounds noticed the robbers on the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.233333299593937] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-242", + "dateofocc": "2017-09-02", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "COLOMBIA:On 02 September, duty officer onboard an LPG tanker anchored near position10-19N 075-32W, Cartagena Inner Anchorage, noticed a small boat approaching near the bow and asked the duty watch crewman to investigate. Upon checking, the duty crewman r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-243", + "dateofocc": "2017-09-01", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "GRENADA:On 01 September, multiple boarding's were reported aboard six occupied and unoccupied yachts in Prickly Bay, in vicinity 11-59.7N 061-45.9W. A minor altercation with was reported with the thief, who escaped, when discovered by one of the onboard", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.766666700424651, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-244", + "dateofocc": "2017-09-08", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "GUINEA:On 08 September, seven robbers armed with knives and crowbars boarded an anchored bulk carrier near position 09-21N 013-44W, Conakry Anchorage. They attempted to kidnap the master. After 15 minutes, the robbers left the vessel with ship's property", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.733333299977346, 9.349999999703414] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-128", + "dateofocc": "2017-04-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOMALIA:On 22 April at 1610Z, a vessel was attacked in 05-39N 048-57E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.950000000264595, 5.649999999673696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-245", + "dateofocc": "2017-09-07", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 11 September, robbers boarded a bulk carrier during cargo operations, near position 00-13S 117-33E, Muara Berau, Samarinda anchorage, and stole two mooring ropes from the forecastle storeroom and escaped unnoticed. Incident reported by duty", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.549999999964939, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-246", + "dateofocc": "2017-08-29", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 29 August, robbers boarded an anchored chemical tanker during cargo operations near position 16-57N 082-15E, Kakinada Port. They stole ship's stores and escaped unnoticed. The theft was noticed by the duty crew during routine rounds. Port contro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [82.249999999632792, 16.95000000012908] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-300", + "dateofocc": "2016-11-26", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "MEXICO:On 26 November, robbers boarded the offshore supply ships GLOBAL EXPLORER and VIKRANT DOLPHIN while the vessels were anchored at Dos Bocas anchorage, Tabasco State. 11 armed men boarded the ships about 0200 LT and stole equipment, cargo and crews'", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-93.200000000330476, 18.449999999727879] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-301", + "dateofocc": "2016-11-27", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "BENIN:On 27 November, pirates boarded the refrigerated cargo ship SARONIC BREEZE near position 05-04N 002-37E, 70 nm south of Cotonou. The pirates maintained control of the ship until 29 November when they left the ship, taking 3 crewmen as hostages.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.616666699607094, 5.0666667002709] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-247", + "dateofocc": "2017-09-28", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "YEMEN:On 28 September at 1236Z in 15-05.7N 052-29.0E, a merchant tanker was attacked and fired upon by one small boat with five or six persons on board. Vessel and crew reported safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.483333299897708, 15.133333299634103] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-337", + "dateofocc": "2017-12-10", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 10 December, duty crewman onboard a tanker anchored near 06-19N 003-17E, 5 nm south of Lagos, noticed three robbers on the main deck and raised the alarm. Seeing the alerted crew, the robbers escaped empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.283333299745493, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-340", + "dateofocc": "2017-12-08", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 08 December, four robbers armed with knives and swords boarded an anchored tanker near 01-27N 104-39E, 15 nm north-northeast of Pulau Bintan. The robbers tied up the second engineer in the engine room workshop, stole engine spare parts and e", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.650000000177329, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-341", + "dateofocc": "2017-12-07", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 07 December, duty watchmen onboard a container ship anchored near 14-35N 120-51E, Manila anchorage, noticed three robbers near the forecastle and immediately notified the officer on watch. Alarm raised and crew mustered. Seeing the alerted", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.850000000161685, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-342", + "dateofocc": "2017-12-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "INDONESIA:On 07 December, four robbers, armed with knives, boarded an anchored offshore supply vessel near 00-43N 104-10E, Galang Anchorage. Duty watchman spotted the robbers and informed the duty officer. Alarm was raised and crew mustered. Seeing the c", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.166666699608641, 0.71666670017521] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-343", + "dateofocc": "2017-12-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "INDONESIA:On 07 December, a crewmember onboard an offshore support vessel anchored near00-44N 104-08E, Galang Lay Up Anchorage, noticed several robbers armed with crow bars and raised the alarm. Seeing the alerted crew, the robbers escaped with stolen sh", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 0.73333330024758] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-344", + "dateofocc": "2017-10-05", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDIA:On 05 October, robbers attempted to board an unmanned tanker under tow near20-43N 071-29E, 10 nm south of Pipavav. Alarm raised, crew mustered and evasive maneuvers initiated. Seeing the alerted crew, the robbers escaped, stealing the buoys attache", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [71.483333299612809, 20.716666699922655] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-345", + "dateofocc": "2017-12-05", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "BANGLADESH:On 05 December, robbers boarded a barge under tow near 21-52N 091-45E, 4.47 nm west of Kutubdia Island. The robbers were able steal barge properties and escape. No injury to crews. Incident reported to the authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.750000000389662, 21.86666669955514] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-351", + "dateofocc": "2017-12-14", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 14 December, at 0830 UTC pirates boarded the Greece-flagged bulk carrier SKYLIGHT near 03-46N 006-17E, 32 nm south of Brass. Ten crewmen were kidnapped.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.283333299842525, 3.766666700138899] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-352", + "dateofocc": "2017-12-14", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 14 December, a merchant vessel reported a suspicious approach near13-56N 049-51E, 60 nm southeast of Mukalla. Three skiffs with three to four persons in each skiff made a close approach, and then turned away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.849999999664192, 13.933333300134905] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-353", + "dateofocc": "2017-12-09", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 09 December, robbers boarded an anchored container ship via the anchor chain, near14-35N 120-55E, Manila South Harbor Anchorage. The thieves cut through the forecastle store room padlock, stole ship's properties and escaped. The incident w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-262", + "dateofocc": "2016-11-01", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "HAITI:On 01 November, an unknown number of robbers boarded an anchored bulk carrier near position 18-34N 072-21W, Port Au Prince Anchorage. The thieves boarded via the anchor chain, stole ship¿s stores and escaped unnoticed. Crew noticed the theft on ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.350000000150828, 18.566666700257827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-263", + "dateofocc": "2016-11-03", + "subreg": "57", + "hostility_": "Robbres", + "victim_d": "LPG Tanker", + "descriptio": "GHANA:On 03 November, an unknown number of robbers boarded an anchored LPG tanker near position 04-52N 001-39W, Takoradi Anchorage. The duty watchmen noticed one robber on the poop deck and raised the alarm. Seeing the alerted crew, the robbers escaped i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.649999999752993, 4.866666699904727] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-264", + "dateofocc": "2016-11-05", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 05 November, Nigerian authorities were alerted to a possible pirate attack against bulk carrier COLUMBIA RIVER, in the Lagos Outer Anchorage, vicinity 06-20N 003-23E. The Nigerian Navy sent a ship, NNS KARADUWA, to investigate. They found 16 m", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.38333330037824, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-265", + "dateofocc": "2016-10-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Chemical Tanker", + "descriptio": "SOMALIA:On 22 October, suspected Somali pirates attacked the chemical tanker CPO KOREA 330 nautical miles off the east coast of Somalia. The attack was confirmed after a thorough investigation into the incident. The Operation Commander of the EU Naval Fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [53.000000000260684, 4.91666669977144] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-266", + "dateofocc": "2016-11-06", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Sailing Vessel", + "descriptio": "PHILIPPINES:On 06 November, Abu Sayyaf militants boarded a Germany-flagged sailing yacht ROCKALL, near a remote island in the southern Sulu Archipelago, vicinity05-01N 119-34E. The militants kidnapped a 70-year-old German man and killed his female compan", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.566666699926827, 5.016666700404187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-267", + "dateofocc": "2016-11-05", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 05 November, at about 11:00 local time, an Indonesian fishing boat captain was kidnapped while his ship operated in Kertam waters some 15 nautical miles from the Kinabatangan river. The gunmen, three of whom wore fatigues and two in civilian", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.766666700260657, 5.700000000439729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-268", + "dateofocc": "2016-11-05", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 05 November, at about 11:45 local time, an Indonesian fishing boat captain was kidnapped by the same group that attacked another fishing boat at 11:00 in the same area as the above incident in Kertam waters some 15 nautical miles from the Kin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.783333300333084, 5.700000000439729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-269", + "dateofocc": "2016-11-01", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "VIETNAM:On 01 November, a Vietnam-flagged fishing boat was chased and hit by a Chinese ship and two smaller boats seven nautical miles north of Woody Island. The captain claimed ten Chinese crewmen jumped onto the Vietnamese boat and attacked the fisherm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.316666700366909, 16.93333330023188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-270", + "dateofocc": "2016-10-30", + "subreg": "93", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "VIETNAM:On 30 October, a Vietnam-flagged fishing boat carrying 18 fishermen was attacked by Chinese ships while fishing six nautical miles from Woody Island. The ship's captain stated that his boat was chased and boarded by Chinese sailors who proceeded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.316666700366909, 16.91666670015951] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-271", + "dateofocc": "2016-10-25", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tug and Barge", + "descriptio": "MALAYSIA:On 25 October at 2030 LT in 04-08.8N 112-30.0E, Bintulu Sarawak, armed pirates in a wooden boat approached, boarded and hijacked a tug and barge. The ten member crew was taken hostage. The pirates stole navigational equipment, personal belonging", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [112.499999999936563, 4.15000000007484] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-272", + "dateofocc": "2016-11-07", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "GUYANA:On 07 November at 0500 LT at Berbice port, vicinity 06-18N 057-32W, duty officer aboard a berthed cargo vessel noticed a robber attempting to board the vessel form the stern with a hook. Crew confronted the robber and threatened to call police. Ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-57.533333300134757, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-104", + "dateofocc": "2017-04-08", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 08 April, armed pirates in a skiff boarded the tanker bulk carrier OS 35 near position14-02N 051-40E, 147nm southeast of Al Mukalla. The Master and crew stopped the engine and retreated into the citadel and requested help via radio. The v", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.600000000395255, 14.016666699795906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-118", + "dateofocc": "2017-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 19 April, nine pirates in a skiff approached and fired upon a tanker underway near position 03-25N 005-46E, 59 nm south-southwest of Brass. Alarm raised, fire pumps started and non-essential crew retreated to the citadel. Vessel increased spee", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.766666700203587, 3.416666700172584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-119", + "dateofocc": "2017-04-15", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "GULF OF ADEN:On 15 April, six pirates armed with automatic weapons in a white skiff approached and fired upon the product tanker ALHEERA underway near position 12-53N 048-02E. Master raised the alarm, contacted UKMTO and non-essential crew members took s", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.033333300068534, 12.883333300235847] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-287", + "dateofocc": "2017-10-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 29 October at 1742Z an underway tanker was boarded by five robbers. They entered the engine room and tied up the crew. Robbers escaped with spare parts and ship property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.216666700374731, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-229", + "dateofocc": "2016-10-03", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Chemical Tanker", + "descriptio": "YEMEN:On 3 October, at 0650 UTC, an underway chemical tanker near position 14-01.4N042-49.6E, southern Red Sea, reported a skiff closing to within two tenths of a mile. The skiff had a black hull with six persons on board wearing black and white clothing", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.833333300439961, 14.016666699795906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-230", + "dateofocc": "2016-10-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 1 October at approximately 0100Z, Houthi fighters fired a possible missile at a civilian logistics ship, an Australian-built HSV-2 SWIFT logistics catamaran, near the Bab el Mandab Strait off Yemen's southern coast, vicinity 12-33.9N 043-32.9E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.550000000269847, 12.566666700063763] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-231", + "dateofocc": "2016-10-04", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 4 October, Pirates kidnapped 32 fishermen from two fishing trawlers-FV MA BABAR DOA and FV NASIMA located on the Meghna River in Noakhali, vicinity 22-21.9N091-11.04. The pirates also looted fishing nets and the catch from both vessels. Lat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.183333300159973, 22.366666700020971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-232", + "dateofocc": "2016-10-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 2 October, three robbers in a wooden boat boarded an anchored bulk carrier near position 05-29.7S 105-17.3E, Panjang Anchorage. Duty crewman on rounds spotted the robbers and notified the bridge. Hearing the crewman reporting via radio, the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, -5.500000000282228] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-233", + "dateofocc": "2016-10-01", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 1 October, pirates of Alauddin Bahini opened fire at a vessel carrying Hilsha fish on the Meghna River, vicinity 22-21.9N 091-11.4E, killing one and injuring six.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.183333300159973, 22.366666700020971] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-234", + "dateofocc": "2016-09-25", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 25 September, three robbers armed with long knives boarded an anchored bulk carrier near position 07-46S 109-04E, Cilacap Anchorage. They took hostage a duty crewman, threatened and tied him to the gangway railing. Then they entered the engi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.066666700036933, -7.766666699577627] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-97", + "dateofocc": "2017-03-26", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 26 March, a dinghy and small outboard motor were stolen from a yacht anchored in Saline Bay, in vicinity 12-38N 061-24W. Report made to local area authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.399999999661816, 12.633333300002903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-98", + "dateofocc": "2017-03-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 29 March, armed pirates in a boat chased and fired upon a tanker underway near position 04-05N 004-42E, 64 nm southwest of the Bayelsa Coast. The onboard armed naval security team returned fire resulting in the pirates aborting the attack and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.700000000407385, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-99", + "dateofocc": "2017-04-04", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOMALIA:On 04 April, Somali pirates hijacked SALAMA I off the coast of central Somalia, in vicinity 03-37N 048-47E. The vessel is reportedly carrying a cargo of food.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.783333299867991, 3.616666699639438] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-100", + "dateofocc": "2017-03-26", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 26 March, duty crewman on routine rounds onboard a bulk carrier anchored near position 03-43S 114-25E, Taboneo Anchorage, noticed the forecastle store room door lock was broken. Further checks made on the forecastle indicated that the hawse", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [114.416666700165024, -3.716666699581538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-101", + "dateofocc": "2017-03-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "INDONESIA:On 26 March, one robber attempted to board an anchored product tanker near position01-43N 101-26E, Lubuk Gaung Anchorage, Dumai. Alert crewman noticed the robber and raised the alarm. Seeing the crew's alertness, the robber escaped in a boat wi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.433333299816979, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-102", + "dateofocc": "2017-03-21", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "PHILIPPINES:On 21 March, one robber boarded an LPG tanker anchored near position13-40N 121-03E, JG Summit Berth, Batangas, during loading operations. An alert duty crewman saw a robber hiding near the starboard winches. When confronted, the robber threat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.04999999962854, 13.666666699829534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-103", + "dateofocc": "2017-03-30", + "subreg": "73", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "PAPUA NEW GUINEA:In late March, a group of 13 persons, including two foreign missionaries, were robbed at knife point as they were travelling to Fergusson Island, Milne Bay province, in vicinity09-24S 150-40E, via motor boat. The pirates stole almost eve", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "X" + }, + "geometry": { + "type": "Point", + "coordinates": [150.666666699763482, -9.3999999997788] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-167", + "dateofocc": "2017-05-26", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "SIERRA LEONE:On 26 May, robbers boarded an anchored container ship near position 08-26N 013-28W, Free Town Roads Anchorage, stole ship's properties and escaped. The theft was discovered by duty crew during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.466666699672032, 8.433333300406673] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-168", + "dateofocc": "2017-06-03", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 03 June, a merchant vessel was approached by a number of skiffs with four or five persons in each skiff and weapons sighted in position 12-57N 043-06E, near Bab el Mandeb Strait. There were nine skiffs sighted; however, it is uncertain if they", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.099999999670729, 12.949999999999704] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-169", + "dateofocc": "2017-05-31", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 31 May, robbers boarded a bulk carrier anchored near position 07-46S 109-04E, Cilacap Anchorage, stole ship's properties and escaped. The theft was noticed by the duty crew during routine rounds. Incident reported to the local agents.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.066666700036933, -7.749999999680483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-170", + "dateofocc": "2017-05-28", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 28 May, six persons armed with guns boarded a tanker, using a rope, near position02-49N 105-17E, 24 nm west of Pulau Jemaja. They tied up the crew, threatened them with their weapons, stole ship's cash and master's personal belongings and es", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, 2.816666699973325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-269", + "dateofocc": "2017-10-15", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 15 October, an Iranian fishing boat captain reported that his boat had broken down and he had sighted two approaching fast boats. No further communication was received from the boat and its location is unknown. The boat had 20 crew onboar", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.916666700262681, 13.333333299935589] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-270", + "dateofocc": "2017-10-18", + "subreg": "63", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "INDIAN OCEAN:On 18 October, a merchant vessel near position 20-15N 066-50E, approximately 170 nm southwest of Porbandar, India, reported two unknown vessels had followed the merchant vessel at a range of 50 meters for approximately 1 hour. Nothing else w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [66.833333300316781, 20.250000000325713] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-271", + "dateofocc": "2017-10-17", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDIA:On 17 October, two robbers boarded an anchored bulk carrier near position22-47N 070-01E, Kandla Anchorage. Duty officer spotted the robbers and raised the alarm. Seeing the alerted crew, the robbers escaped with stolen ship's properties.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [70.016666699808297, 22.783333299926483] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-272", + "dateofocc": "2017-10-14", + "subreg": "92", + "hostility_": "Robbers", + "victim_d": "Fishing Vessel", + "descriptio": "PHILIPPINES:On 14 October, armed men abducted five crewmen from F/V DANVIL 9 in the port of Poblacion on Pangutaran Island, in vicinity 06-19N 120-32E. A spokesman said the probable Abu Sayyaf captors were aboard two motorized bancas and immediately left", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.533333300164827, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-129", + "dateofocc": "2017-04-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 29 April at 0408Z, a vessel was attacked in 03-51.2N 006-46.1E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 3.849999999975182] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-273", + "dateofocc": "2017-10-13", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 13 October, two robbers in a wooden boat boarded an anchored bulk carrier via the anchor chain near position 00-13S 117-35E, Muara Berau, Samarinda Inner Anchorage. They stole ship's properties and threatened duty AB with knives. As the robb", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.216666699918051] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-285", + "dateofocc": "2016-11-15", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 15 November in 01-25N 104-41E, an unknown number of robbers boarded an anchored heavy load carrier. They stole ships parts and escaped. Theft noticed by crew on routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-286", + "dateofocc": "2016-11-29", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "NIGERIA:On 19 November, Singapore flagged MAERSK COTONOU was approached by a speedboat with eight armed men in vicinity 04-01N 007-03E, 25 NM South of Bonny. The alarm was raised and the ship managed to evade the boat using speed and maneuvering.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.050000000438445, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-287", + "dateofocc": "2016-11-15", + "subreg": "51", + "hostility_": "Suspicious Approach", + "victim_d": "Sailing Vessel", + "descriptio": "CAPE VERDE:On 15 November, a fishing boat approached S/V SHERPA in vicinity 27-07N 013-58W, 35 miles from shore of EL Aajum, Western Sahara. Three men in the fishing boat made a very close pass to the sailing vessel but the fishing boat propeller became", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-13.966666700137864, 27.116666699949747] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-288", + "dateofocc": "2016-11-05", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MOZAMBIQUE:On 05 November, an unknown number of robbers stolean outboard motor from a dinghy tied to S/V EUTIKIA, anchored near position 21-39S 035-25E, at Bazaruto anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [35.416666700308099, -21.650000000399814] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-289", + "dateofocc": "2016-10-30", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MADAGASCAR:On 30 October, three robbers boarded S/V EUTIKIA, anchored in vicinity 15-43S 046-18E, Mahajanga anchorage. The robbers threatened the crew with knives and forced them inside the boat. They then stole money, cameras, video cameras, cell phones", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [46.300000000133934, -15.716666699969608] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-290", + "dateofocc": "2016-07-15", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 15 July at 0500 LT in 00-17.5S 117-40.4E, duty crew noticed one robber with long knives on board an anchored bulk carrier. There were another three or four robbers in the boat. The duty crew retreated to the accommodation and raised the alar", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.666666699595567, -0.299999999754334] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-291", + "dateofocc": "2016-11-23", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 23 November at 0920 LT in 06-21.5N 119-53.8E, eight persons wearing masks armed with automatic weapons in a speed boat attempted to board an underway bulk carrier using a long pole with a hook. Master raised the alarm and activated the SSA", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.899999999995998, 6.366666700402845] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-292", + "dateofocc": "2016-11-23", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 23 November at 0530 LT in 03-35.4N 005-13.6E, pirates with automatic weapons approached and fired upon an underway tanker. The alarm was raised, SSAS activated, crew alerted and the on board security team opened fire. Pirates boarded the tanke", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.233333299943467, 3.583333299845151] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-293", + "dateofocc": "2016-10-26", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Container Ship", + "descriptio": "VIETNAM:On 26 October at 0330 LT in 10-23.26N 107-03.15E, crew aboard an anchored container ship noticed robbers boarding vessel via small wooden boat. Master raised the alarm and crew managed to apprehend one robber. Incident reported to port authoritie", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.050000000075102, 10.383333299705328] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-294", + "dateofocc": "2016-07-03", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 03 July at 0435 LT in 00-15.5S 117-37.3E, robbers boarded an anchored bulk carrier. They stole ship's stores and escaped. The theft was noticed by crew during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.616666699728853, -0.266666699784764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-295", + "dateofocc": "2016-11-05", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "INDONESIA:On 05 November at 0245 LT in 06-01.76S 106-53.21E, Tanjung Priok anchorage, two robbers in a small boat boarded an anchored LPG Tanker using a rope with a hook. They stole ship's spares and escaped. Engineer on routine rounds noticed the theft", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.883333299678441, -6.033333299818253] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-296", + "dateofocc": "2016-11-23", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VENEZUELA:On 23 November at 0145 LT in 10-11.4N 064-45.4W, Puerto Jose anchorage, duty crew aboard an anchored bulk carrier noticed the bosun store door open. Two robbers armed with knives were seen stealing ship's stores. The crew tried to confront the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.749999999725162, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-297", + "dateofocc": "2016-11-27", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "HAITI:On 27 November at 2210 LT in 18-34.18N 072-23.7W, Port Au Prince anchorage, robbers attempted to board an anchored tanker via the hawspipe. Crew on routine rounds noticed the robbers and raised the alarm resulting in the robbers retreating. Crew mu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.400000000017542, 18.566666700257827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-298", + "dateofocc": "2016-11-24", + "subreg": "92", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 24 November at 1040 LT in 05-47.7N 119-51.8E an underway bulk carrier noticed a blue speed boat with about ten armed persons wearing black masks approaching the vessel at high speed. Master raised the alarm, alerted the crew and contacted", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.866666700026485, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-346", + "dateofocc": "2017-12-13", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 13 December at 1200Z, four armed robbers boarded an underway tanker in01-14.6N 104-02.3E. As they entered the engine room, they encountered an oiler and assaulted him. The alarm was raised and crew mustered. Robbers escaped with ship's engin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.033333300080926, 1.249999999711235] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-347", + "dateofocc": "2017-12-14", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 14 December at 0110Z a vessel was chased in 03-58.3N 006-12.4E. A wooden speedboat with four persons on board attempted to board the vessel. The vessel increased speed and took preventative measures while managing to evade boat.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.200000000006241, 3.96666669960581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-348", + "dateofocc": "2017-12-12", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "OMAN:On 12 December M/V Grand Ace 11 was approached by a skiff in 24-57N 057-42E.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.700000000322746, 24.950000000387774] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-299", + "dateofocc": "2016-11-24", + "subreg": "92", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 24 November at 0722 LT in 05-55.6N 119-50.2E, seven armed persons wearing black masks in a speed boat approached an underway bulk carrier from astern. The crew noticed the approaching boat and raised the alarm, started evasive maneuvers an", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.833333300232198, 5.933333299876153] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-33", + "dateofocc": "2017-02-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 07 February at 1936Z, a vessel was attacked in 03-31N 007-04E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.066666700335588, 3.516666699906011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-34", + "dateofocc": "2017-02-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "LPG Tanker", + "descriptio": "NIGERIA:On 07 February at 1904Z, a LPG tanker was boarded by pirates in 04-03.2N 007-13.5E. 21 members went into the citadel and the remaining four crew members are missing. The Nigerian Navy has been notified.Update:NIGERIA:On 08 February, the Nigerian", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.233333300008155, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-35", + "dateofocc": "2016-12-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 29 December at 0001Z, two robbers boarded an anchored tanker. Duty crew on routine rounds spotted the robbers and informed the bridge. The alarm was raised and crew mustered. Seeing the alert crew, the robbers escaped empty handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.700000000310354] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-36", + "dateofocc": "2016-12-23", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 23 December at 1905Z, a vessel reported being approached by three skiffs in15-45.7N 041-18.1E. The closest the skiff got was 100 meters. The vessel security team fired warning shots. Crew mustered in the citadel while the vessel took evasive a", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [41.299999999972215, 15.766666699627649] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-37", + "dateofocc": "2016-12-22", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 22 December at 1025Z, a vessel reported being approached by two high speed boats with five people in each boat. The vessel sounded the alarm, increased speed and activated hoses. The security team showed their weapons to the boats who then alt", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.333333300006473, 12.683333299869616] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-194", + "dateofocc": "2017-07-22", + "subreg": "51", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "SENEGAL:On 22 July at 0249Z fishing vessel approached and attempted to board an underway bulk carrier in 15-31.9N 018-10.0W. The alarm was raised, crew mustered, vessel increased speed and conducted evasive maneuvers.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-18.166666699734094, 15.533333300366508] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-1", + "dateofocc": "2017-12-24", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 24 December, a merchant vessel reported being attacked and boarded in 03-47N 006-50E, 42 nm south-southwest of Bonny Island.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.83333330017507, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-267", + "dateofocc": "2017-10-06", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 06 October, one skiff carrying twelve suspected pirates were interdicted by Indian Naval forces aboard INS TRISHUL. They were responding to a distress call from the India-flagged bulk carrier M/V JAG AMAR. The event occurred in the Gulf o", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [47.900000000365537, 12.983333299969274] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-2", + "dateofocc": "2017-12-21", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "NIGERIA:On 21 December, the Nigerian Navy in Lagos rescued four Chinese nationals from kidnappers around Igbokoda area of Ondo State in vicinity 06-09N 004-40E. The Flag Off Commanding, Western Naval Command, Rear Adm. Sylvanus Abbah, told journalists in", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.666666700437816, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-3", + "dateofocc": "2017-12-29", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "COLOMBIA:On 29 December, three robbers in a wooden boat boarded a general cargo vessel anchored in vicinity 10-19N 075-31W, Cartagena Inner Anchorage. Duty crewman noticed the robbers and raised the alarm. Seeing the crew alertness, the robbers escaped w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-4", + "dateofocc": "2017-12-28", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "BRAZIL:On 28 December, four robbers armed with a handgun boarded a small sailing yacht in the approaches to the port of Santos, in vicinity 23-59S 046-18W, late at night. The robbers methodically ransacked the boat, taking almost anything they could carr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "V" + }, + "geometry": { + "type": "Point", + "coordinates": [-46.300000000342607, -23.983333299634353] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-5", + "dateofocc": "2017-12-24", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 24 December, duty crewmen onboard a product tanker anchored in vicinity 06-17N 003-13E, SSA Anchorage, Lagos, saw three robbers attempting to board the vessel and immediately notified the officer on watch. Alarm was raised and crew was mustere", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.216666699806353, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-6", + "dateofocc": "2017-12-31", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "BANGLADESH:On 31 December, robbers boarded a barge under tow in vicinity 21-49N 091-34E, and stole barge's properties. All crew safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.566666699920631, 21.816666699688426] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-7", + "dateofocc": "2017-12-28", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "SINGAPORE STRAIT:On 28 December, four robbers boarded a bulk carrier awaiting a Pilot boat in vicinity 01-16N 104-02E, 3 nm south of Changi. They entered the engine room and threatened the duty engineer with a knife. The engineer managed to escape and ra", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.033333300080926, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-8", + "dateofocc": "2017-12-25", + "subreg": "72", + "hostility_": "Robbbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:ON 25 December, duty crewman onboard a tanker anchored in vicinity 07-46S 109-04E, Cilacap Anchorage, spotted four robbers near the poop deck. Alarm raised and crew mustered. Seeing the crew alertness, the robbers escaped with stolen ship's eng", + "hostilityt": 0, + "hostilit_D": null, + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.066666700036933, -7.766666699577627] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-9", + "dateofocc": "2017-12-29", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 29 December, duty crewman onboard a bulk carrier anchored in vicinity38-46N 118-30E, Caofeidian Anchorage, noticed suspicious movements on the main deck. Upon checking, he noticed two unauthorized persons standing near the emergency generator ro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.500000000130626, 38.766666700371502] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-84", + "dateofocc": "2017-03-24", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOMALIA:On 24 March at 1545Z, in position 07-58N 049-53E, vessel Casayr II - No 30 was hijacked. 20 crew members were taken hostage. The dhow had three skiffs onboard. The pirates released 13 crew members in one skiff. The dhow with the remaining crew an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.883333299633762, 7.966666699735129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-85", + "dateofocc": "2017-03-26", + "subreg": "71", + "hostility_": "Sucpicious Approach", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 26 March at 1254Z, an underway tanker was approached by two speed boats with two persons in each boat. Vessel took evasive action, sounded the horn and directed signal lamp towards boats. At a distance of 15 meters from the tanker, the speed", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.533333299615094, 1.116666700008238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-86", + "dateofocc": "2017-03-24", + "subreg": "61", + "hostility_": "Mothership Activity", + "victim_d": "Vessel", + "descriptio": "SOMALIA:On 24 March, possible mothership operations in area within 300 miles of 07-58N 049-53E have been reported.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.883333299633762, 7.966666699735129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-266", + "dateofocc": "2017-10-07", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 07 October, a merchant vessel reported a suspicious approach by four dark-hulled skiffs with 4-5 persons in each skiff near position 11-56N 044-43E, approximately 54 nm southwest of Aden. They approached to 0.7 nm and turned away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.716666699799475, 11.933333300070217] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-311", + "dateofocc": "2017-11-21", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 21 November at 2140Z a vessel was approached by pirates in 05-13N 004-03E.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.050000000341413, 5.216666699871041] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-268", + "dateofocc": "2017-10-04", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 04 October, six to eight robbers boarded an anchored container ship near position14-33N 120-54E, Manila South Port Anchorage, and were noticed by a duty crewman who raised the alarm. Seeing the crew's alertness, the robbers escaped with st", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.900000000028399, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-172", + "dateofocc": "2017-06-13", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "ERITREA:On 13 June at 1350Z, a vessel was approached by four skiffs with six or seven persons on board in 12-56.49N 043-12.17E. Skiffs approached and followed for ten minutes closing to a CPA of 0.5NM. Armed security team showed weapons and the skiffs dr", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.200000000303476, 12.933333300102561] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-178", + "dateofocc": "2017-06-19", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "KENYA:On 19 June, duty crewman on anti-piracy watch onboard a product tanker berthed near position 04-04S 039-39E, Mbaraki Terminal, Mombasa, noticed a robber attempting to board via the poop deck using a hook attached with rope and informed the duty off", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.649999999873899, -4.066666700447229] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-179", + "dateofocc": "2017-05-31", + "subreg": "83", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "FIJI:On 31 May, two robbers boarded a sailing yacht anchored near position17-19S 177-07E, Wayasewa Island. The robbers stole an iPad, 2 phones and a dive lamp. Local authorities notified.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "XIV" + }, + "geometry": { + "type": "Point", + "coordinates": [177.116666700304108, -17.31666670020121] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-330", + "dateofocc": "2017-12-07", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 07 December, a merchant ship reported that eight robbers attempted to board their ship near 03-31N 007-07E, approximately 60 nm south of Bonny. The boarding attempt failed and the ship and crew are reportedly safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.116666700202302, 3.516666699906011] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-189", + "dateofocc": "2017-07-11", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "IRAN:On 11 July at 1120Z, a vessel was approached by a yellow hulled skiff in 25-31N 057-25E.There were two persons on board with weapons. The skiff approached to within one cable of the vessel. The armed security team fired warning shots and the skiff r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.416666700120288, 25.516666699718144] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-190", + "dateofocc": "2017-06-30", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VENEZUELA:On 30 June, five robbers boarded a chemical tanker anchored near position10-16N 064-42W, Puerto La Cruz Anchorage. The robbers entered the forepeak storeroom. Alert crewman noticed the robbers and raised the alarm, resulting in the robbers esca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.699999999858449, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-191", + "dateofocc": "2017-07-02", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "MOZAMBIQUE:On 02 July, a duty crewman onboard a container ship anchored near position14-22S 040-42E, Nacala Anchorage, noticed two robbers attempting to board the ship. Alarm was raised and crew was mustered. Seeing the crew alertness, the robbers escape", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [40.699999999772956, -14.366666699970949] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-192", + "dateofocc": "2017-06-13", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "Offshore Supply Vessel", + "descriptio": "INDONESIA:On 13 June, duty crewman onboard an offshore supply vessel anchored near position01-00N 104-14E, Singatac Anchorage, Pulau Bintan, noticed four suspicious persons in a small boat near the stern of the vessel. He immediately informed the duty of", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.2333333004471, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-309", + "dateofocc": "2017-11-22", + "subreg": "57", + "hostility_": "Suspicous Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 22 November a vessel was approached in 03-17.5N 006-52.5E. One speed boat with three persons on board approached to within one cable after chasing the vessel for 30 minutes. Vessel performed maneuvers and the boarding was thwarted.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.883333300041784, 3.299999999642637] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-310", + "dateofocc": "2017-11-22", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 22 November at 0340Z a vessel was attacked in 03-04N 006-59E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.983333299775211, 3.066666700206213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-273", + "dateofocc": "2016-11-11", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "COLOMBIA:On 11 November, four robbers armed with knives boarded an anchored LPG tanker near position 10-19N 075-31W, Mamonal Inner Anchorage. Duty crewman on routine rounds spotted the robbers and reported to the bridge. Duty officer raised the alarm, ma", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-274", + "dateofocc": "2016-11-03", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "DOMINICAN REPUBLIC:On 03 November, robbers boarded a sailing yacht anchored near Luperon, vicinity19-54N 070-57W. The thieves were able to steal a laptop computer, a mobile phone, an Iridium satellite phone and other valuables.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.950000000285399, 19.900000000359341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-275", + "dateofocc": "2016-11-13", + "subreg": "72", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 13 November, the tanker SOUTHERN FALCON, underway near position03-40N 119-51E, 65 nm southeast of Sibutu Island, reported a suspicious approach by six speed boats with one armed person in each boat. The boats gave chase to the tanker; the", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.850000000129285, 3.666666700405472] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-276", + "dateofocc": "2016-11-11", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 11 November, ten persons armed with guns approached the underway bulk carrier ROYAL 16 near position 06-40N 122-31E, 10 nm north-northeast of Basilan Island. Ship's master raised the alarm and activated the SSAS. The armed persons boarded", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.516666700157089, 6.666666699603184] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-277", + "dateofocc": "2016-11-09", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 09 November, ten robbers armed with knives boarded an anchored tanker near position 01-41N 101-30E, Dumai Anchorage, and entered the engine room. They took hostage the duty oiler, punched him, tied him up, and threatened him with a knife. Th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.499999999580837, 1.68333330041321] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-49", + "dateofocc": "2017-03-02", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 02 March, an alert crewman onboard a general cargo vessel underway near position04-28N 002-30E, 127 nm southwest of Lagos, noticed a suspicious boat doing 9 knots at a distance of 0.9 nm astern. The cargo vessel increased speed and made large", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [2.499999999976524, 4.466666700071642] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-204", + "dateofocc": "2017-07-25", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES: On 25 July, a yacht was boarded in Canouan, in vicinity 12-43N 061-20W, by a single male who dove overboard and swam away after being confronted by the owners. Several VHF calls to the SVG Coast Guard were not answered.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.333333299897959, 12.716666699663961] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-205", + "dateofocc": "2017-07-11", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "GRENADA:On 11 July, an unoccupied yacht on a mooring had its dinghy's outboard motor stolen overnight, in vicinity 12-07N 061-40W. The dinghy was lifted and the outboard was locked to the dinghy. A police report was made and this was also announced on th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.666666699791904, 12.116666700363965] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-206", + "dateofocc": "2017-07-29", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 29 July, Yemen's Huthi rebels said they targeted a military ship belonging to the United Arab Emirates, in vicinity 13-19N 043-15E, part of the Saudi-led coalition fighting them in the country. The ship, carrying military equipment, was arriving", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.250000000170189, 13.316666699863219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-207", + "dateofocc": "2017-06-28", + "subreg": "63", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "BANGLADESH:On 28 June, gunmen kidnapped four fishermen along with two trawlers near the Moktar area of the Meghna River, in vicinity 22-39N 090-49E. Local people said a gang of sea robbers of the notorious Kalam Bahini gang raided the two trawlers and lo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [90.816666700121232, 22.650000000223486] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-5", + "dateofocc": "2017-01-09", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "PHILIPPINES:On 09 January, gunmen attacked a Filipino fishing boat with 15 crew on board which was operating off Laud Siromon Island near the Zamboanga peninsula. Five armed men were in the speedboat that attacked the fishing boat. A police spokesman sai", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.333333299863398, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-6", + "dateofocc": "2017-01-08", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 08 January, five robbers boarded a bulk carrier anchored near position00-15S 117-34E, Muara Berau Anchorage, Samarinda. They took hostage a duty crewman and tied him at the fore mast. Another duty crewman tried to contact the detained crew b", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-7", + "dateofocc": "2017-01-07", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "PHILIPPINES:On 07 January, robbers in two unlit boats boarded a product tanker anchored near position 13-44N 121-02E, Batangas Anchorage. Duty crewman on routine rounds noticed the robbers and raised the alarm. Hearing the alarm, the robbers escaped in t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-297", + "dateofocc": "2017-11-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 16 November, a merchant vessel was attacked near position 04-07N 006-57E, 20 nm southwest of Bonny. All crew mustered in the citadel. A Nigerian Navy team boarded the vessel, but pirates had already left the vessel.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.949999999805641, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-315", + "dateofocc": "2017-11-16", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "COLOMBIA:On 16 November, robbers armed with knives boarded an anchored chemical tanker near position 10-19N 075-31W, Mamonal Anchorage. Duty crewman on routine rounds noticed the robbers and notified the duty officer who raised the alarm. Hearing the ala", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-316", + "dateofocc": "2017-11-22", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 22 November, a merchant vessel reported that one speed boat with three persons onboard, approached to within cable after following for about 30 minutes, near position03-17N 006-52E, 66 nm south-southwest of Bonny. Vessel took anti-piracy preve", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.866666699969358, 3.283333299745493] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-317", + "dateofocc": "2017-11-21", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 21 November, crew aboard a merchant vessel near position 06-18N 003-10E, Lagos Anchorage, observed two small boats approach to a close proximity. Persons on the boat attempted to board the ship using hooked ropes. Nigerian patrol boat informed", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.16666669993964, 6.299999999739669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-318", + "dateofocc": "2017-11-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 16 November, a merchant tanker reported an attempted boarding by seven individuals in a white speedboat using ladders near position 03-30N 006-46E, 60 nm south of Bonny. Due to the vessel's high freeboard, pirates aborted the boarding after fi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-319", + "dateofocc": "2017-11-16", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 16 November, pirates attacked a bulk carrier underway near position 04-07N 006-57E, 19 nm southwest of Bonny. The attack occurred about 15 minutes after its Nigerian Navy security escort boat departed the area. Upon hearing them mayday transmi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.949999999805641, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-138", + "dateofocc": "2017-04-28", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Supply Vessel", + "descriptio": "GUYANA:On 28 April, duty officer on routine rounds onboard a seismic support vessel anchored near position 06-49N 058-10W, Georgetown Anchorage, noticed a boat alongside the vessel and raised the alarm. Seeing the alerted crew, five robbers were seen esc", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.816666700102644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-320", + "dateofocc": "2017-11-16", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 16 November, seven pirates in a speed boat chased a tanker underway near position 03-30N 006-45E, 56 nm south-southwest of Bonny Island. As the boat closed to 300 meters, the crew noticed a long ladder. The crew raised the alarm, commenced eva", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.750000000338787, 3.500000000008868] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-321", + "dateofocc": "2017-11-21", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "Gulf of Aden:On 21 November, a merchant ship reported being attacked skiff near position14-08N 048-57E, near the port of Al Mukalla, Yemen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [48.950000000264595, 14.133333299601759] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-322", + "dateofocc": "2017-11-19", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 19 November, a merchant ship reported sighting a suspicious skiff near position14-04N 051-47 E, near IRTC Point B. The skiff was reportedly carrying a ladder.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.783333299964966, 14.066666699662619] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-323", + "dateofocc": "2017-11-18", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "INDIAN OCEAN:On 18 November, pirates attacked fishing vessel GALERNA III near position01-56S 049-23E, 380 nm east of the Somali coast. The Italian Navy ship ITS VIRGINIO FASAN investigated the incident and intercepted two small boats and arrested six Som", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.38333330006725, -1.933333299955507] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-324", + "dateofocc": "2017-11-17", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "INDIAN OCEAN:On 17 November, pirates attacked MV EVER DYNAMIC near position 01-55S 047-56E, 363 nm east of the Somali coast. The Italian Navy ship ITS VIRGINIO FASAN investigated the incident.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [47.933333300335107, -1.916666699883081] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-325", + "dateofocc": "2017-11-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 17 November, three robbers armed with knives boarded an anchored product tanker near position 01-25N 104-35E, 12 nm north of Tanjung. Berakit, Pulau Bintan. Duty crewman on routine rounds noticed the robbers. Alarm raised and crew mustered.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.583333300413472, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-326", + "dateofocc": "2017-12-01", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 01 December at 0846Z a vessel was attacked in 03-28N 006-50E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.83333330017507, 3.466666700039298] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-327", + "dateofocc": "2017-12-03", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 03 December at 1610Z robbers were discovered aboard a container vessel in14-33.72N 120-55.25E. Liferafts and immersion suits were reported missing. It was noticed the robbers had boarded the vessel via the anchor chain. Authorities carried", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.566666700128451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-281", + "dateofocc": "2017-10-20", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VENEZUELA:On 20 October, a crewman onboard a tanker anchored near position 10-11N 064-46W, Puerto Jose Anchorage, noticed five robbers on the poop deck and raised the alarm. Seeing the crew's alertness, the robbers escaped. A search was carried out throu", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.766666699622363, 10.183333300238417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-282", + "dateofocc": "2017-10-25", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 25 October, pirates attacked a laden tanker underway near position 03-32N 006-47E, 54 nm south-southwest of Bonny. Two armed pirates boarded the vessel and crew mustered in the citadel. The authorities were notified. The vessel and crew are sa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.783333300308357, 3.533333299978437] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-283", + "dateofocc": "2017-10-21", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Container Vessel", + "descriptio": "NIGERIA:On 21 October, container ship DEMETER was attacked by pirates near position03-47N 007-09E, south of Port Harcourt, while transiting from Malabo, Equatorial Guinea to Monrovia, Liberia. Pirates boarded the ship, kidnapped six crewmembers, includin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.150000000171872, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-284", + "dateofocc": "2017-10-20", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 20 October, an Iranian vessel with 19 sailors onboard was seized near Socotra Island by local fishermen. There was no immediate official Iranian reaction to the comments made by Yemen's Prime Minister on his Twitter account in which he said the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.816666699823998, 12.266666699964162] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-285", + "dateofocc": "2017-10-25", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 25 October, four robbers armed with knives boarded an anchored LPG tanker near position 07-44S 109-04E, Cilacap Anchorage. The duty crewman on routine rounds spotted the robbers on the main deck. Alarm raised, SSAS activated and all crew mus", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.066666700036933, -7.733333299783339] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-286", + "dateofocc": "2017-10-17", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 17 October, a duty crewman onboard an underway bulk carrier near position01-16N 104-12E, 9 nm northwest of Todang, Bintan Island, noticed two unauthorized persons on the aft deck. Duty officer notified and alarm raised. Seeing the alerted cr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.19999999957821, 1.266666699608436] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-216", + "dateofocc": "2017-08-21", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "PANAMA:On 21 August, an in-the-water but chain locked dinghy and outboard motor were stolen overnight from a sailing yacht anchored in Portobello Bay, in vicinity 09-33N 079-39W. The dinghy minus the outboard motor was recovered the next morning.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.649999999577517, 9.550000000069588] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-217", + "dateofocc": "2017-08-18", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "DOMINICAN REPUBLIC:On 18 August, an unoccupied trimaran on a mooring in Luperon Bay, in vicinity19-54N 070-57W had its primary mooring line released and the secondary anchor and rope stolen. The boat went adrift and damaged its stern mounted radio antenn", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.950000000285399, 19.900000000359341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-218", + "dateofocc": "2017-08-12", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "VENEZUELA:On 12 August, six fishermen on Lake Maracaibo, in vicinity 10-06N 071-35W, were assaulted and murdered by pirates during two simultaneous assaults by armed gangs that ply Lake Maracaibo. Local media reports indicate that the first attack was ag", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-71.583333299554909, 10.100000000402133] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-219", + "dateofocc": "2017-08-09", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "ST MARTIN:On 09 August, a dinghy and outboard motor were stolen from a sailing yacht anchored in Simpson Bay Lagoon, in vicinity 18-02N 063-06W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-63.099999999626846, 18.033333299997707] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-220", + "dateofocc": "2017-08-19", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 19 August, an alert duty crewman onboard the bridge of a tanker anchored in position 06-20N 003-18E, Lagos General Purpose Anchorage, spotted a floating object near the starboard bow and informed the armed security guard who fired warning shot", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.299999999642637, 6.333333299709238] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-221", + "dateofocc": "2017-08-19", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 19 August, a merchant vessel reported that eight black-hulled skiffs with two persons onboard each skiff made a suspicious approach 14 nm off Delta state, in vicinity04-18N 006-23E. The skiffs travelled at 7 knots and came within 0.3 nm of the", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.383333299575952, 4.299999999674981] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-222", + "dateofocc": "2017-08-04", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "GHANA:On 04 August, deck watch personnel onboard an LPG tanker anchored near position04-54N 001-39W, Takoradi Anchorage. Crew noticed a robber near the starboard side poop deck and informed the duty officer who raised the alarm. Hearing the alarm and see", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.649999999752993, 4.89999999987424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-223", + "dateofocc": "2017-08-19", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 19 August, a merchant vessel near position 12-50N 043-12E was approached by five skiffs with three persons in each skiff. Armed security team onboard showed weapons and the skiffs altered course away from the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.200000000303476, 12.833333300369134] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-224", + "dateofocc": "2017-08-20", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 20 August, two robbers boarded an underway bulk carrier near position01-04N 103-41E, 4.7 nm south-southeast of Pulau Nipah, and entered the steering gear room. They threatened the duty oiler with a knife. Once the robbers left the steering g", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 1.066666700141525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-277", + "dateofocc": "2017-10-24", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SUQUTRA:On 24 October at 0748Z a wooden vessel was attcked in 11-50N 054-35E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.583333299695823, 11.83333330033679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-278", + "dateofocc": "2017-10-24", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "SUQUTRA:On 24 October at 0800Z a vessel was attacked in 11-50N 054-30E. The vessel had 13 persons on board and four of them were injured by the pirates firing shots.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [54.49999999985954, 11.83333330033679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-214", + "dateofocc": "2017-08-18", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "DJIBOUTI:On 18 August at 1132Z, a vessel was approached in 12-38N 043-21E by a number of skiffs with five or six persons in each skiff. Ladders were sighted and the armed security team fired warning shots.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.349999999903616, 12.633333300002903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-215", + "dateofocc": "2017-08-19", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 19 August at 0716Z, a vessel was approached in 05-44.8N 004-47.5E by eight black hulled skiffs with two persons in each skiff. The skiffs approached to within 0.3 NM of the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.800000000140813, 5.750000000306443] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-336", + "dateofocc": "2017-12-17", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 17 December at 0106Z robbers attempted to board a vessel in 06-17N 003-21E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.35000000040867, 6.283333299842525] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-120", + "dateofocc": "2017-04-10", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "GUATEMALA:On 10 April, one robber boarded an anchored yacht at Bahia de Graciosa, in vicinity 15-51N 088-32W, waking both crewmembers. The captain went topside and discovered a man was removing the small outboard from the rail mount. A scuffle ensued, an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.533333300237985, 15.850000000363252] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-121", + "dateofocc": "2017-04-06", + "subreg": "28", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "HONDURAS:On 06 April, a yacht with 2 persons onboard anchored off Graham's Place, in vicinity16-28N 085-50W. They met a man who identified himself by name and then asked several questions about their planned stay, and number of persons on board. Later th", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-85.833333300240611, 16.466666699560392] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-122", + "dateofocc": "2017-04-22", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "SOMALIA:On 22 April, six armed persons in a skiff chased and fired upon the underway tanker COSTINA near position 05-42N 048-53E, 30 nm northeast of Hobyo. Master raised the alarm and sent distress message, to which a warship responded. The skiff chased", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [48.883333299601418, 5.700000000439729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-123", + "dateofocc": "2017-04-23", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "PHILIPPINES:On 23 April, suspected illegal fishermen managed to elude arrest by ramming their fishing vessel into the small boat being used by policemen inside a fish sanctuary in Barangay Sulangan, Bantayan Island, in vicinity 11-10N 123-43E. The police", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [123.716666699656344, 11.166666700198391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-124", + "dateofocc": "2017-04-22", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 22 April, an unknown number of robbers boarded an LPG tanker at berth, near position 13-40N 121-03E, Batangas. They stole ship¿s properties and escaped. The theft was discovered by the crew during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.04999999962854, 13.666666699829534] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-125", + "dateofocc": "2017-04-19", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 19 April, three robbers boarded an anchored bulk carrier near position00-15S 117-34E, Samarinda Anchorage. Alarm raised and crew mustered. Seeing the crew¿s alertness, the robbers escaped without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-126", + "dateofocc": "2017-04-18", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 18 April, armed men tried to commandeer a cargo vessel off the waters of Zamboanga del Norte, in vicinity 08-10N 122-31E, police said. A police spokesman said armed men on two motorized boats fired at M/V DOÑA ANABELLE while it was sailin", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [122.516666700157089, 8.166666700101359] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-127", + "dateofocc": "2017-04-20", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 20 April in 00-15.7S 117-34.5E, Samarinda anchorage, three robbers boarded an anchored bulk carrier. The alarm was raised and crew mustered. Seeing the crew alertness, the robbers escaped without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.583333299934566, -0.266666699784764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-130", + "dateofocc": "2017-04-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 29 April, armed pirates in a speedboat boarded a general cargo vessel underway near position 03-41N 006-46E, 47 nm southwest of Bonny Island. Alarm raised, SSAS activated and all crew retreated into the citadel. Ship owner notified the IMB Pir", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 3.683333299578578] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-131", + "dateofocc": "2017-04-28", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 28 April at 1850Z, a vessel was attacked in 03-49N 007-04E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.066666700335588, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-132", + "dateofocc": "2017-04-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 29 April at 1820Z, a vessel was attacked in 03-33N 006-42E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.699999999572753, 3.549999999875581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-133", + "dateofocc": "2017-05-01", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 01 May at 1300Z, a M/V was approached in 12-08N 044-16E. Five skiffs with five persons on board approached the vessel. Skiffs approached to .2NM before armed security team aboard vessel fired warning shots. All five skiffs turned away aft", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [44.266666700099677, 12.133333300436391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-259", + "dateofocc": "2016-10-25", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 25 October, a product tanker underway near position 06-15N 003-21E, 15.7 nm south of Lagos was approached by two suspicious speed boats. The vessel raised an alarm, and the crew mustered in the safe area. A Nigerian Navy patrol boat responded", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.35000000040867, 6.249999999872955] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-260", + "dateofocc": "2016-10-24", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Trawler", + "descriptio": "MALAYSIA:On 24 October, six armed pirates boarded a fishing trawler in the open sea, vicinity06-46.0N 117-30.8E, near Jambongan, Malaysia. They took one ton of fish, 500 liters of fuel and GPS units from the crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.516666699995426, 6.76666670023593] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-261", + "dateofocc": "2016-11-01", + "subreg": "95", + "hostility_": "Coast Guard", + "victim_d": "Fishing Trawler", + "descriptio": "SOUTH KOREA:On 01 November, South Korea¿s Coast Guard fired live rounds at Chinese trawlers fishing illegally in Korean-controlled waters for the first time. During the early evening hours, three coast guard patrol boats fired M60 machine gun rounds at", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [126.500000000389377, 37.433333300445213] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-274", + "dateofocc": "2017-10-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 20 October, a vessel was attacked in position 03-55N 006-39E, 50 nm south of Port Harcourt. A black speedboat travelling at 25 to 27 knots approached the vessel and fired shots, Navy team on-board returned fire. The boat followed for 25 minute", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.64999999970604, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-275", + "dateofocc": "2017-10-20", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 20 October at 0900Z a vessel was attacked in 03-35N 007-00E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 3.583333299845151] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-276", + "dateofocc": "2017-10-21", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 21 October a vessel was attacked by pirates in 03-52.3N 007-06.6E. Six crew members were reported missing. Vessel and remaining crew are safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.116666700202302, 3.866666699872383] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-331", + "dateofocc": "2017-12-02", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "GHANA:On 02 December, a merchant vessel near position 04-54N 001-42W, Takoradi Anchorage, was boarded by one person with five others waiting in two nearby boats. A fire hose, computer and monitor reported missing. A navy patrol boat was dispatched to the", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-1.699999999619706, 4.89999999987424] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-162", + "dateofocc": "2017-05-24", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "VENEZUELA:On 24 May, six robbers boarded an anchored general cargo ship, near position10-17N 064-42W, near Isla Boraccha, Pozuelos Bay Anchorage, and broke into the forecastle store room. Alert duty crewman noticed the robbers and informed the duty offic", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.699999999858449, 10.2833332999719] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-163", + "dateofocc": "2017-06-01", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "GULF OF OMAN:On 01 June, armed persons attacked the Marshall Islands-flagged tanker NAVIG8 PROVIDENCE near position 23-32N 060-26E, 100 nm east-southeast of Muscat, Oman.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [60.433333300289689, 23.533333299725882] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-164", + "dateofocc": "2017-05-31", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "TAnker", + "descriptio": "GULF OF ADEN:On 31 May, three assailants in a skiff armed with an RPG chased and fired upon a laden Marshall Islands-flagged tanker MUSKIE near position 12-35N 043-25E, near the Bab el Mandeb Strait. Alarm raised and non-essential crew members mustered i", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.41666669966753, 12.583333300136189] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-165", + "dateofocc": "2017-05-27", + "subreg": "63", + "hostility_": "Suspicous Approach", + "victim_d": "Fishing Vessel", + "descriptio": "INDIAN OCEAN:On 27 May, a South Korean fishing boat reported a suspicious approach by an unknown boat approximately 1,440 kilometers southeast of Salalah, Oman, in vicinity05-06N 059-12E. Contact was subsequently lost with the fishing vessel, leading aut", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [59.199999999921602, 5.10000000024047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-166", + "dateofocc": "2017-05-24", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 24 May, two robbers armed with a machete boarded an anchored product tanker near position 01-43N 101-25E, Dumai Anchorage. Alarm raised and crew mustered. The robbers escaped with stolen ship's properties.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [101.416666699744553, 1.716666700207497] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-42", + "dateofocc": "2017-02-19", + "subreg": "92", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "PHILIPPINES:On 19 February, pirates believed to be affiliated with Abu Sayyaf, boarded the Vietnam-flagged cargo ship GIANG HAI, near position 06-09N 119-34E, approximately 35 nm northwest of Doc Can Island. The pirates abducted six crew members and kill", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.649999999763168, 6.150000000139528] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-43", + "dateofocc": "2017-02-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 19 February, armed pirates in a speedboat boarded an underway asphalt tanker near position 05-12N 004-48E, 33 nm west-southwest of Forcados. Alarm was raised, SSAS activated and all crew retreated to the citadel. Incident reported to the IMB P", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.800000000140813, 5.199999999973898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-87", + "dateofocc": "2017-03-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Product Tanker", + "descriptio": "NIGERIA:On 29 March at 1233Z in vicinity 04-00N 004-40E, an underway product tanker was attacked by pirates.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.666666700437816, 3.99999999957538] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-88", + "dateofocc": "2017-03-29", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 29 March at 1305Z a vessel was attacked in 04-09.58N 004-37.18E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.616666699671782, 4.166666699971984] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-89", + "dateofocc": "2017-03-30", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 30 March at 0800Z a bulk carrier was attacked in 04-01N 006-48E. Four persons in a small boat boarded the vessel as it approached the pilot station. Five crew members escaped after being kidnapped by the pirates.UPDATE:On 25 April, five Filipi", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.8000000002055, 4.016666700371843] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-137", + "dateofocc": "2017-05-02", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VENEZUELA:On 02 May, three robbers armed with knives boarded a cement carrier berthed near position 10-14N 064-33W, Berth No.5, Portugalete. Alarm raised and crew mustered. Seeing the crew's alertness, the robbers escaped without stealing anything.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.550000000258308, 10.233333300105187] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-139", + "dateofocc": "2017-04-27", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 27 April, a yacht was tied to a mooring in Luperon Bay, in vicinity 13-09N 061-14W, while the owner went ashore. Vandals released the yacht, removing all lines from it and the mooring. The yacht was seen adrift, an eme", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.233333300164531, 13.150000000365878] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-140", + "dateofocc": "2017-04-08", + "subreg": "25", + "hostility_": "Robber", + "victim_d": "Vessel", + "descriptio": "PUERTO RICO:On 08 April, a robber boarded a yacht moored in Isabel Segunda, in vicinity 18-09N 065-26W, and stole an outboard motor.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.433333299760761, 18.149999999628278] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-141", + "dateofocc": "2017-05-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 03 May at 1706Z, an underway tanker was boarded by robbers in 01-16.6N 103-17.6E. The second engineer noticed five robbers in the engine room. The alarm was raised and the robbers escaped after seeing alerted crew.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.30000000017867, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-142", + "dateofocc": "2017-05-02", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "GULF OF ADEN:On 02 May, a merchant vessel reported a suspicious group of three to four skiffs, green and white hulls with four to five persons in each skiff, in position 12-26N 043-50E, 12 nm off Yemeni coast, near the entrance to Bab el Mandeb Strait.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.833333299572985, 12.433333299636729] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-143", + "dateofocc": "2017-04-25", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SAUDI ARABIA:On 25 April, Saudi Arabia confirmed that Yemen based Houthi rebel forces tried to attack an Armco fuel distribution terminal in Jazan province, in vicinity 17-08N 042-20E, with a remotely controlled boat, filled with explosives. The state ne", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.333333299974129, 17.133333299698791] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-144", + "dateofocc": "2017-05-02", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "BANGLADESH:On 02 May, two robbers boarded a product tanker anchored near position22-13N 091-44E, Chittagong Anchorage. Duty crewman spotted the robbers on the poop deck and informed the duty officer, who raised the alarm. PA announcement made and crew wa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.216666700420831] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-145", + "dateofocc": "2017-05-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 02 May, three robbers boarded a bulk carrier anchored near position 05-57S 106-55E, Tanjung Priok Anchorage, Jakarta. The robbers entered into the engine room, stole ship's engine spares and escaped. Duty crewman noticed the robbers escaping", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [106.916666700372105, -5.949999999981969] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-288", + "dateofocc": "2017-11-03", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "GHANA:On 03 November at 0054Z a vessel was possibly hijacked in 05-59N 001-14E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.233333299814092, 5.983333299742867] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-289", + "dateofocc": "2017-10-29", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "COLOMBIA:On 29 October, duty officers onboard an anchored LPG tanker noticed a small boat near the anchor chain, near position 10-19N 075-31W, Cartagena Inner Anchorage. Alarm was raised. Seeing the crew alertness, the robbers fled with stolen ship's pro", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.516666699745144, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-290", + "dateofocc": "2017-11-01", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 01 November, a merchant vessel was attacked near position 04-03N 007-03E, the vicinity of Port Harcourt. Two pirates boarded the merchant vessel, then left in two speedboats and headed off on a northerly course.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.050000000438445, 4.050000000341413] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-291", + "dateofocc": "2017-10-27", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "SAO TOME AND PRINCIPE:On 27 October, five skiffs approached an underway LPG Tanker near position 00-41N 006-03E, 35 nm northwest of Sao Tome & Principe. Each boat had two persons onboard, wearing green clothing. Alarm was raised, crew was mustered, Maste", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.050000000406101, 0.683333300380866] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-306", + "dateofocc": "2017-11-13", + "subreg": "51", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "CAPE VERDE:On 13 November, three robbers armed with knives, boarded a sailing yacht anchored at Porto da Praia Bay, Ihla de Santiago, in vicinity 38-44N 027-04W and threatened to cut the throats of the crew and owner of the yacht if they did not get all", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-27.066388899716856, 38.733333299677838] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-307", + "dateofocc": "2017-11-10", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 10 November, five to six armed personnel in a blue hulled boat, five to six meters in length, attempted to board a vessel in position 04-15N 005-36E, the vicinity of Pennington Terminal.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [5.599999999806982, 4.249999999808267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-332", + "dateofocc": "2017-12-01", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 01 December, pirates boarded a merchant vessel near 03-24N 006-50E, 57nmsouthwest of Bonny. Nigerian Navy responded.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.83333330017507, 3.40000000027544] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-308", + "dateofocc": "2017-11-10", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 10 November, crewman on routine rounds onboard an LPG Tanker anchored near position 01-28N 104-38E, 14 nm north-northeast of Tanjung Berakit, Pulau Bintan, noticed three unauthorized persons on the poop deck. Alarm raised and crew mustered.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, 1.46666669997461] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-193", + "dateofocc": "2017-07-13", + "subreg": "57", + "hostility_": "Vessel", + "victim_d": "Pirates", + "descriptio": "NIGERIA:On 13 July, six persons in a skiff boarded the underway general cargo ship UAL HOUSTON near position 04-07N 007-00E, 16 nm south-southwest of Bonny. Alarm raised, SSAS activated and all crew retreated to the citadel. Nigerian Navy boarded the ves", + "hostilityt": 4, + "hostilit_D": "Kidnapping", + "victim_l": 13, + "victim_l_D": "Other", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-292", + "dateofocc": "2017-10-29", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 29 October, five robbers with knives in a skiff boarded a tanker underway near position 01-16.7N 104-13.8E, 4 nm south-southeast of the Kampung Sungai Buntu Coast, and entered the engine room. They threatened the duty oiler with a knife and t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.2333333004471, 1.283333299680805] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-293", + "dateofocc": "2017-10-27", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 27 October, a duty crewman watch on board a tanker anchored near position07-51S 109-04E, Cilacap Anchorage, spotted a robber near the emergency generator room. Alarm was raised and crew was mustered. Hearing the alarm, the robber, along with", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [109.066666700036933, -7.85000000031323] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-294", + "dateofocc": "2017-10-27", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 27 October, five robbers armed with knives boarded an anchored product tanker near position 01-27N 104-38E, around 13 nm north-northeast of Tanjung Berakit, Pulau Bintan. Duty crewman on routine rounds spotted the robbers and informed the br", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.633333300280185, 1.450000000077466] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-295", + "dateofocc": "2017-09-30", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 30 September, while approaching an anchored container ship near position14-35N 120-57E, Manila South Port Anchorage, a port authority service boat noticed a small boat with four persons near the bow. As the service boat approached the bow,", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.949999999895113, 14.583333300200877] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-95", + "dateofocc": "2017-04-01", + "subreg": "61", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "SOMALIA:Indian cargo dhow Al KAUSAR with 11 crew enroute form Dubai to Bosaso was hijacked in vicinity 07-58N 049-51E on 01 April. The pirates took the vessel to the Eyl coast of Somalia where they are awaiting ransom payment.UPDATE:The kidnappers took t", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [49.849999999664192, 7.966666699735129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-96", + "dateofocc": "2017-04-03", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 03 April at 0530Z in 13-10N 043-03E, a M/V reported being approached by six light blue skiffs with five persons on each skiff. Ladders and hooks were observed on the skiffs. Vessel raised the alarm and armed guards took positions on the bridge w", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.049999999804015, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-117", + "dateofocc": "2017-04-19", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "NIGERIA:On 19 April at 0934Z, an offshore tug was attacked and boarded by armed pirates in04-06.43N 006-15.34E. Pirates kidnapped eight crew members and escaped. Nigerian Navy has been notified and rescue operations are in progress. One crew member was r", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.249999999872955, 4.100000000208126] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-212", + "dateofocc": "2017-08-13", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 13 August at 2155Z, two robbers attempted to board a moored tanker in05-48.3N 118-04.6E. The robbers failed and port authorities were informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.083333300400341, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-213", + "dateofocc": "2017-08-15", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 15 August at 2050Z, duty crew aboard an anchored container ship in14-33.9N 120-55.6E, noticed two unauthorized persons trying to gain access to the vessel via the hawse pipe. Crew raised the alarm. Robbers escaped in a waiting boat along w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.933333299997912, 14.566666700128451] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-1", + "dateofocc": "2017-01-15", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "LPG Tanker", + "descriptio": "VENEZUELA:On 15 January, two robbers boarded an LPG tanker anchored near position10-12N 064-47W, Jose Anchorage. The robbers took hostage a duty crewman on the forecastle, tied him up and threatened him with a knife. They then removed the hawse pipe cove", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.783333299694732, 10.200000000135617] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-2", + "dateofocc": "2017-01-06", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "DOMINICAN REPUBLIC:On 06 January, a dinghy and a 30 hp outboard motor were stolen from a sailing yacht anchored in Luperon. After a brief search, the dinghy, minus the motor, was found near a nearby beach. Report made to local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-70.950000000285399, 19.900000000359341] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-3", + "dateofocc": "2017-01-16", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "BANGLADESH:On 16 January, robbers, armed with knives boarded an anchored container ship near position 22-06N 091-44E, Chittagong Anchorage. The duty crewman on security watch noticed the robbers and notified the duty officer who raised the alarm, made a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.733333299593198, 22.099999999890883] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-4", + "dateofocc": "2017-01-16", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Product Tanker", + "descriptio": "MALAYSIA:On 16 January, a crewman onboard an anchored product tanker conducting cargo operations near position 05-47N 118-01E, Mowtas Oil Terminal, Sandakan Port, Sabah, observed a robber on the forecastle. Seeing the alert crewman approaching the foreca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.016666699561938, 5.783333300276013] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-248", + "dateofocc": "2017-09-26", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 26 September a tanker was attacked by pirates in 03-48.73N 006-35.96E. The pirates disabled all communication equipment on board. Some crew members reported missing. Nigerian Navy escorted vessel to anchorage.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.599999999839326, 3.816666700005669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-249", + "dateofocc": "2017-08-29", + "subreg": "53", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "LIBYA:On 29 August at 2303Z in 36-02N 013-14E, a tanker was boarded by individuals posing as the Libyan Coast Guard. They detained the tanker and forced the crew to sail to Tripoli. The crew were taken ashore and detained in jail.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "III" + }, + "geometry": { + "type": "Point", + "coordinates": [13.233333300202162, 36.033333299680464] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-250", + "dateofocc": "2017-08-29", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "PANAMA:On 29 August, a thief stole a dinghy and outboard motor from a yacht anchored in Bocas del Toro, in vicinity 09-30N 082-23W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-82.38333330044378, 9.500000000202874] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-251", + "dateofocc": "2017-09-18", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 18 September, a vessel reported it was attacked and boarded near position04-47N 008-18E, vicinity of Parrot Island, Calabar. Four speed boats attacked the vessel and five crew were reportedly abducted. No further details were provided.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [8.299999999804356, 4.783333300243669] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-252", + "dateofocc": "2017-09-14", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 14 September, a supply vessel reported that its security team fired warning shots at a suspicious speedboat as it headed towards their vessel near position 04-16N 007-02E, 9 nm southwest of Bonny Island. The speedboat had hidden behind a trawl", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.033333299641924, 4.266666699705411] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-253", + "dateofocc": "2017-09-19", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 19 September, robbers boarded an anchored bulk carrier during cargo operations near position 20-54N 107-16E, Campha Inner Anchorage. Duty crewman on routine rounds noticed the paint storeroom padlock broken and raised the alarm. Incident repor", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.266666700338419, 20.900000000391685] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-254", + "dateofocc": "2017-09-22", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VENEZUELA:On 22 September, the duty officer onboard a bulk carrier anchored near position10-09N 064-47W, Puerto La Cruz Anchorage, raised the alarm when the duty crewman did not respond to a call on the radio. Crew was mustered and they carried out a sea", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.783333299694732, 10.150000000268903] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-255", + "dateofocc": "2017-09-20", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 20 September, a robber boarded an anchored tanker near position 06-19N 003-22E, Lagos Anchorage. Duty crew noticed the robber and raised the alarm, resulting in the robber escaping empty-handed. Incident reported to the local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.316666699636812] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-256", + "dateofocc": "2017-09-28", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "GULF OF OMAN:On 28 September, a merchant tanker was attacked near position 15-53N 052-20E, 20 nm south of al Gaydah, Yemen. Six persons were reportedly in the boat and they fired on the tanker. Ship and crew are safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.333333300297511, 15.883333300332822] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-333", + "dateofocc": "2017-11-30", + "subreg": "62", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "CAPE VERDE:On 30 November, a Netherlands-flagged sailing yacht anchored in Ihla de Santiago, Porto da Praia Bay, in vicinity 14-54.3N 023-30.3E, was boarded by two men armed with knives and a metal pipe. They spent two hours on the yacht, thoroughly rans", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": null + }, + "geometry": { + "type": "Point", + "coordinates": [23.499999999756312, 14.900000000197679] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-74", + "dateofocc": "2017-03-18", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 18 March, a catamaran anchored at Canouan Charlestown Bay, in vicinity12-42N 061-20E, was boarded at approximately 3 a.m. The Captain awoke and yelled at the individual, who jumped overboard and swam away. Incident rep", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.333333299897959, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-75", + "dateofocc": "2017-03-17", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MARTINIQUE:On 17 March, a sailing yacht anchored in St Anne, in vicinity 14-26N 060-53W, had a tiller extension handle stolen from their dinghy at the main dinghy dock. Incident reported to local police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.88333330019816, 14.433333299701417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-76", + "dateofocc": "2017-03-17", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MARTINIQUE:On 17 March, a sailing yacht anchored at St Anne, in vicinity 14-26N 060-53W, reported that the outboard motor on the dinghy had been stolen from the main dinghy dock. Incident reported to local police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.88333330019816, 14.433333299701417] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-77", + "dateofocc": "2017-03-15", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Sailing Vessel", + "descriptio": "COLOMBIA:On 15 March, a sailing yacht anchored at Isla Baru, in vicinity 10-10N 075-40W, was boarded by four men armed with a gun and a machete. They assaulted the Captain, hitting him with an oar, the machete and the gun. They ransacked the yacht, steal", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.666666700244662, 10.166666700166047] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-334", + "dateofocc": "2017-12-03", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Cargo Vessel", + "descriptio": "PHILIPPINES:On 03 December, during routine security rounds, crewman onboard an anchored container ship near position 14-33N 120-55E, Manila Quarantine Anchorage, noticed the securing cables for the forward lifesaving appliances cut and the life rafts and", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-335", + "dateofocc": "2017-10-25", + "subreg": "71", + "hostility_": "Suspicious Approach", + "victim_d": "Cargo Vessel", + "descriptio": "INDONESIA:On 25 October, an alert crewman onboard a general cargo ship underway near01-03N 103-41E, 1.8 nm northwest of Pulau Cula, noticed four persons onboard a small wooden craft closing in on the stern of the ship. Alarm raised and crew mustered. See", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.683333300114555, 1.050000000244381] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-40", + "dateofocc": "2017-02-12", + "subreg": "62", + "hostility_": "Suspicous Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 12 February, a skiff with six armed persons on board approached a merchant vessel 37 nm south of the town of Haswayn, off Yemen's east coast. The captain of the vessel reported automatic weapons and rocket-propelled grenades on board the skiff.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.099999999961767, 14.999999999931106] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-41", + "dateofocc": "2017-02-14", + "subreg": "94", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "CHINA:On 14 February, four robbers boarded an anchored bulk carrier near position38-52N 119-10E, Jingtang Anchorage, and tried to open the port side Marine Diesel Oil manhole. Duty officer raised the alarm and SSAS Alert was activated. Seeing the crew al", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.166666700093742, 38.866666700104929] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-279", + "dateofocc": "2016-11-16", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "PERU:On 16 November at 1940 LT in 12-02.5S 077-08.9W, two robbers armed with knives boarded a berthed bulk carrier. The robbers threatened the duty crew with the knives. the alarm was raised and crew alerted. The robbers escaped with stolen ship property", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XVI" + }, + "geometry": { + "type": "Point", + "coordinates": [-77.149999999946317, -12.033333300012316] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-280", + "dateofocc": "2016-11-19", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 19 November at 0240 LT vicinity 00-16N 117-37E, at Muara Berau anchorage, robbers with knives were seen stealing ship's stores. Duty crew aboard the anchored bulk carrier noticed the forecastle store door open with padlock broken. The alarm", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.616666699728853, -0.266666699784764] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-281", + "dateofocc": "2016-11-16", + "subreg": "72", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "PHILIPPINES:On 16 November at 1100 LT in 04-23N 119-37E, five persons wearing masks in a white speed boat approached an underway vessel from astern. Master raised alarm and tried alerting other ships in area. Seeing the alerted crew, the boat moved away", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.616666699793541, 4.383333300410584] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-282", + "dateofocc": "2016-11-19", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "MALAYSIA:On 19 November at 1930 LT in 04-49N 118-46E, five armed persons wearing masks boarded a fishing vessel. They stole personal belongings and an outboard engine. Before escaping, they kidnapped two crew members. Malaysian authorities are investigat", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.766666700260657, 4.816666700037956] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-283", + "dateofocc": "2016-11-20", + "subreg": "92", + "hostility_": "Suspicious Approach", + "victim_d": "Bulk Carrier", + "descriptio": "PHILIPPINES:On 20 November at 0720 LT in 05-34.8N 119-47.9E, persons armed with guns approached an underway bulk carrier from the stern. Master raised the alarm, started evasive maneuvers, alerted ships in the area and opened communications with Philippi", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [119.800000000262571, 5.583333299909839] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-284", + "dateofocc": "2016-11-23", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "VIETNAM:On 23 November at 0150 LT in 10-15.6N 107-00.2E, at Vung Tau anchorage, duty crew noticed a fishing boat slowly approaching the vessel. The boat circled and then stopped near the bow. Another boat had come alongside near accommodation ladder. Two", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.000000000208388, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-312", + "dateofocc": "2016-12-13", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Offshore Supply Vessel", + "descriptio": "NIGERIA:On 13 December, bandits attacked the offshore supply vessel CHILOSCO near position 03-45N 006-10E, 29 nm south of Brass.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.166666700036672, 3.750000000241755] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-313", + "dateofocc": "2016-12-10", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 10 December, the product tanker SOCHIMA was attacked by pirates in Gulf of Guinea, 40 nautical miles south of Brass, Nigeria. The vessel was approached by speedboat with armed men, who tried to board the vessel and take control. The Nigeria Na", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.249999999872955, 3.733333300344611] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-314", + "dateofocc": "2016-12-08", + "subreg": "72", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "MALAYSIA:On 08 December, security forces shot and killed three gunmen in a firefight during a kidnapping attempt in Darvel Bay, vicinity 04-48N 118-39E. A police spokesman confirmed that there was a shootout between security forces and the armed group, a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.649999999730767, 4.800000000140813] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-315", + "dateofocc": "2016-12-05", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "PHILIPPINES:On 05 December, three Indonesian fishermen were kidnapped near the Philippine island of Labuan, in vicinity 05-16.8N 115-12.7E. All three fishermen were reportedly released unhurt the following day, and it is believed that the owner of the Sa", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [115.21666669983108, 5.283333299810181] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-105", + "dateofocc": "2017-04-09", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 09 April at 0315Z in 14-20N 053-11E, a vessel reported a suspicious approach. The vessel approached to a distance of 1NM from the bow with an additional four skiffs on the starboard beam at a distance of 0.5NM. Four persons were spotted on each", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [53.183333299830394, 14.333333299967933] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-136", + "dateofocc": "2017-05-03", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 03 May in 13-10N 049-18E, a group of nine skiffs with black and white hulls approached a vessel. After the skiffs surrounded the vessel at 0.6NM, the vessel fired two warning shots and the skiffs moved away.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [49.300000000230966, 13.166666700263022] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-93", + "dateofocc": "2017-03-22", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "MOZAMBIQUE:On 22 March, duty crew on routine rounds onboard a bulk carrier anchored near position 19-48S 034-50E, Berth No 6, Port of Beira, noticed two robbers armed with knives on the poop deck. Chief Officer informed via radio. Crew mustered and then", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "VII" + }, + "geometry": { + "type": "Point", + "coordinates": [34.833333300181266, -19.799999999935267] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-296", + "dateofocc": "2017-11-11", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 11 November, armed pirates boarded the drifting bulk carrier VENUS BAY near position 04-07N 006-59E, 17nm south-southwest of Bonny Island. They entered the bridge and fired their weapons damaging the bridge windows. The pirates stole ship's pr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.983333299775211, 4.11666670010527] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-199", + "dateofocc": "2017-07-25", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 25 July at 1230Z, a vessel was approached by nine white skiffs with ten persons in each skiff, in 14-53N 042-27E. The skiffs closed to two cables and ladders were sighted. The armed security presence deterred the skiffs. The vessel is currently", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.449999999604756, 14.883333300300478] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2016-235", + "dateofocc": "2016-10-01", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT LUCIA:On 1 October, a dinghy was stolen overnight from a sailing yacht anchored in Rodney Bay, vicinity 14-05.9N 060-57.8W. After the owner posted a reward for safe return of the vessel, the dinghy was returned without the fuel tank and a pair of f", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.966666699859161, 14.083333299735045] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-298", + "dateofocc": "2017-10-25", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "SAINT LUCIA:On 25 October, a chartered catamaran was boarded by 4 men in Soufriere, in vicinity13-51N 061-03W. Two of the men were armed with guns, and one with a knife, all had their faces concealed. The men made many threats and a short struggle ensued", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.049999999695444, 13.850000000298621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-299", + "dateofocc": "2017-11-08", + "subreg": "62", + "hostility_": "Suspicous Approach", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 08 November, a merchant vessel reported a suspicious approach by two skiffs near position 12-30N 043-37E, near Mayyun Island. Seven persons were sighted in each skiff, both of which closed to within 100 meters of the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.616666700033704, 12.500000000299906] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-300", + "dateofocc": "2017-11-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 07 November, robbers armed with knives boarded a bulk carrier underway near position 02-53N 105-17E, 21 nm southwest of Pulau Mangkai, Kepulauan Anambas. They threatened the crew with the knives, stole ship's properties, cash and crew person", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [105.283333300346158, 2.883333299912408] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-301", + "dateofocc": "2017-11-03", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "INDONESIA:On 03 November, two robbers armed with knives and sticks boarded a bulk carrier anchored near position 00-15S 117-34E, Muara Berau Anchorage, Samarinda, during cargo operations. They threatened a duty crewman and duty officer with knives, stole", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [117.566666699862139, -0.249999999887564] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-302", + "dateofocc": "2017-11-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "INDONESIA:On 03 November, three robbers armed with knives in a small wooden boat boarded an anchored offshore supply ship near position 01-11N 103-59E, Batu Ampar Anchorage, Batam. Duty crewman on routine rounds noticed the robbers and shouted at them re", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.983333300214213, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-303", + "dateofocc": "2017-11-03", + "subreg": "63", + "hostility_": "Robbers", + "victim_d": "Barge", + "descriptio": "BANGLADESH:On 03 November, a robber armed with a knife boarded a barge under tow near position 22-02N 091-48E, Kutubdia Anchorage. The master switched on the search light and directed it towards the barge and notified port control and the Coast Guard. Se", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 2, + "victim_l_D": "Barge", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [91.800000000256432, 22.033333300127026] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-90", + "dateofocc": "2017-03-28", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "COLOMBIA:On 28 March at 0845Z in 10-19.3N 075-32.1W, an anchored tanker was boarded by pirates. The alarm was raised and crew mustered. Seeing the alerted crew, the robbers escaped with stolen ship's property.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.533333299817571, 10.316666699766188] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-91", + "dateofocc": "2017-03-25", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MARTINIQUE:On 25 March, one robber boarded a catamaran anchored in the Le Marin Marina. The robber went into the cockpit area of the yacht, saw the astonished and concerned crew looking at him, whereupon the robber sat down and stared back at the crew fo", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.866666700125734, 14.466666700395024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-92", + "dateofocc": "2017-03-18", + "subreg": "28", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "GUATEMALA:On 18 March, an unknown number of robbers boarded a sailing yacht anchored in Shell Bay Anchorage, Rio Dulce, in vicinity 15-55N 088-43W. They were able to steal electric tools, anchor line and electronics and escape. Incident announced on loca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-88.716666699632469, 15.916666700127166] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-94", + "dateofocc": "2017-03-26", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 26 March, duty crew onboard a tanker anchored near position 13-43N 121-02E, Batangas Anchorage, noticed a robber on the forecastle as he approached during routine rounds. The robber threatened the crewman with a knife, resulting in the dut", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.033333299731339, 13.716666699696304] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-134", + "dateofocc": "2017-04-28", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Offshore Support Vessel", + "descriptio": "GUYANA:On 28 April at 0620Z, robbers were discovered on a seismic support vessel, in06-49.4N 058-10.2W, Georgetown anchorage. Duty officer on rounds noticed a boat alongside the vessel and raised the alarm. Seeing the alerted crew, the robbers were seen", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 6, + "victim_l_D": "Offshore Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-58.16666670012836, 6.816666700102644] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-135", + "dateofocc": "2017-04-29", + "subreg": "57", + "hostility_": "Mothership Activity", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 29 April in 03-15N 007-00E, a suspected pirate mother vessel was observed in the Gulf of Guinea. Vessel was reported as being a supply vessel type around 60-80 meters in length with a white hull.", + "hostilityt": 6, + "hostilit_D": "Other", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 3.249999999775923] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-173", + "dateofocc": "2017-05-28", + "subreg": "62", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 14 June, suspected Shiite Huthi rebels fired a missile at a Saudi-led coalition warship off Mocha, Yemen, in vicinity 13-19N 043-15E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.250000000170189, 13.316666699863219] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-174", + "dateofocc": "2017-06-14", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "PHILIPPINES:On 14 June, a robber boarded an anchored tanker via the hawse pipe near position13-44N 121-01E, Batangas Inner Anchorage. The robber stole ship's properties and escaped unnoticed. The theft was discovered by duty crew during routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [121.016666699658913, 13.733333299768674] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-175", + "dateofocc": "2017-06-13", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Research Vessel", + "descriptio": "INDONESIA:On 13 June, robbers boarded a research vessel anchored near position 00-45N 104-08E, Galang Layup Anchorage, stole ship's equipment and escaped unnoticed. The theft was noticed in the morning during routine rounds. Incident reported to the loca", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.133333299814353, 0.750000000144723] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-176", + "dateofocc": "2017-06-07", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 07 June, two robbers boarded a tanker, at anchor, near position 01-21N 104-36E,8 nm north of Tg Berakit, Bintan Island. They threatened the duty crewman with a knife, took his radio and held him hostage. They then entered the engine room thr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.600000000310615, 1.350000000344039] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-177", + "dateofocc": "2017-06-03", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "INDONESIA:On 03 June, eight robbers boarded M/V HARVESTER while at anchor near buoy no. 2, Belawan Port. The robbers tied up members of the crew and stole seven 25 liter cans of paint. The following day, members of the Western Fleet Quick Response (WFQR)", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [98.683333299952892, 3.783333300211325] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-225", + "dateofocc": "2017-08-10", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 10 August, a merchant vessel sighted seven skiffs in the vicinity of 13-12N 042-58E, 16 nm southeast of Mocha Port. Two of the skiffs closed to 1 cable then withdrew. Vessel and crew are reported to be safe.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.966666699967732, 13.200000000232592] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-226", + "dateofocc": "2017-08-15", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "PHILIPPINES:On 15 August, an alert duty crewman on security rounds onboard a container ship anchored near position 14-33N 120-55E, Manila South Harbor Anchorage, noticed two persons inside the starboard hawse pipe trying to open the cover and gain access", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.550000000231307] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-227", + "dateofocc": "2017-08-13", + "subreg": "72", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "MALAYSIA:On 13 August, two robbers attempted to board a berthed tanker near position05-48N 118-04E, Sandakan Port, but failed in their attempt. Port authorities informed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [118.066666700328028, 5.800000000173156] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-60", + "dateofocc": "2017-03-10", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:Vessel attacked in 03-03N 006-57E on 10 March at 0630Z.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.949999999805641, 3.050000000309069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-61", + "dateofocc": "2017-03-09", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "YEMEN:Vessel reported being approached in 13-52N 050-20E on 09 March at 0845Z. Two mother vessels deployed four skiffs that approached the vessel. The vessel showed weapons and the skiffs retreated. Vessel reported safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.33333330023288, 13.866666700195765] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-146", + "dateofocc": "2017-05-07", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "IRAN:On 07 May at 1440Z, a vessel was attacked in 25-32N 057-33E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [57.549999999823285, 25.53333329979057] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-73", + "dateofocc": "2017-03-10", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "YEMEN:On 10 March, a Yemen Coast Guard vessel struck a mine in waters of the southern Red Sea, in vicinity 13-46N 042-13E, killing eight sailors and wounding eight others, including the vessel's captain.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [42.216666700168275, 13.766666699563018] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-257", + "dateofocc": "2017-10-12", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "MALAYSIA:On October 12 at 0020Z, five persons in two wooden boats boarded an unmanned rig that was being towed in vicinity 01-11.1N 103-33.6E. Tug master raised the alarm and notified local authorities. Vessel and crew reported safe.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [103.566666700308701, 1.183333299947378] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-258", + "dateofocc": "2017-10-06", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "SOMALIA:On 06 October at 0700Z, two white skiffs with ladders approached a vessel in13-13N 050-30E. They approached to within 1.2NM and turned away. Crew and vessel are safe.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [50.499999999730164, 13.216666700129792] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-259", + "dateofocc": "2017-10-02", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 02 October at 1815Z, a vessel was attacked in 04-17.4N 007-04.0E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.066666700335588, 4.283333299777837] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-260", + "dateofocc": "2017-09-29", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "VENEZUELA:On 29 September, duty crewman onboard a tanker anchored near position10-16N 064-42W, Puerto La Cruz Anchorage, spotted two robbers armed with knives on the poop deck and immediately informed the duty officer. Alarm was raised, PA announcement w", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-64.699999999858449, 10.266666699899474] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-261", + "dateofocc": "2017-09-26", + "subreg": "26", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "HAITI:On 26 September, three robbers attempted to board an anchored tanker via the hawse pipe near position 18-34N 072-24W, Port Au Prince Anchorage. Duty crewman saw the robbers and raised the alarm, resulting in the robbers escaping empty-handed.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-72.400000000017542, 18.566666700257827] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-262", + "dateofocc": "2017-09-16", + "subreg": "24", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "CURACAO:On 16 September, an in the water dinghy with outboard motor was stolen from a yacht anchored in Spanish Water, in vicinity 12-08N 069-02W.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-69.033333300057052, 12.133333300436391] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-263", + "dateofocc": "2017-10-02", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 02 October, gunmen abducted three crew members and stole personal belongings after boarding a Panama-flagged tanker 34 nm southeast of Brass, in vicinity03-55N 006-36E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.599999999839326, 3.916666699739096] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-264", + "dateofocc": "2017-09-28", + "subreg": "61", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "TANZANIA:On 28 September, five armed robbers boarded a vessel near position 06-46S 039-21E, Dar es Salaam Anchorage, tied up a crew member before stealing a VHF radio and various items of cargo.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "VIII" + }, + "geometry": { + "type": "Point", + "coordinates": [39.349999999774298, -6.766666700444603] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-265", + "dateofocc": "2017-09-30", + "subreg": "71", + "hostility_": "Pirates", + "victim_d": "Tug", + "descriptio": "INDONESIA:On 30 September, the Indonesian Navy's Western Fleet Quick Response Unit arrested 15 suspected pirates in the Singapore Strait following a tip-off by Singapore authorities. The alleged pirates were in six wooden boats when they were arrested. A", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 10, + "victim_l_D": "Tugboat", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.883333299613753, 0.51666669980898] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-228", + "dateofocc": "2017-08-09", + "subreg": "91", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "PHILIPPINES:On 09 August, robbers boarded a container ship anchored near position 14-32N 120-55E, Manila Anchorage. The robbers entered the forecastle store room. Security guard on routine rounds noticed the robbers and raised the alarm. Seeing the alert", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [120.916666699925486, 14.533333300334164] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-229", + "dateofocc": "2017-08-27", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "GRENADA:On 27 August, an unoccupied catamaran was boarded while anchored in Mt. Hartman Bay, in vicinity 12-00N 061-45W. The break-in was discovered the next morning by the care taker. The thieves broke the door lock and thoroughly ransacked the interior", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.749999999628187, 11.999999999834074] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-230", + "dateofocc": "2017-08-22", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "MARTINIQUE:On 22 August, a thief stole a dinghy and outboard motor from a yacht anchored in Le Marin, in vicinity 14-28N 060-53W. Incident reported to the marina and on the local VHF.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-60.88333330019816, 14.466666700395024] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-231", + "dateofocc": "2017-08-07", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Fishing Vessel", + "descriptio": "GUYANA:During the week of 07 August, pirates attacked four fishing vessels in the Waini River, in vicinity 08-25N 059-50W. The masked gunmen also stole one of the vessels named ¿PRIYA 2¿ after dumping its workers onto another vessel that was in the are", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 4, + "victim_l_D": "Fishing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-59.833333300299103, 8.416666700334247] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-232", + "dateofocc": "2017-08-28", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 28 August, unknown gunmen, suspected to be militants, attacked a Navy boat and killed four soldiers and a civilian in Bayelsa State, in vicinity 04-13N 006-08E. The suspects were said to have laid an ambush for the soldiers along the waterways", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.133333300242384, 4.216666699838697] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-233", + "dateofocc": "2017-08-28", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "RED SEA:On 28 August in position 13-00N 043-10E a merchant vessel reported sighting four skiffs with five to six persons in each boat. Vessel reported seeing one ladder onboard two of the skiffs, no weapons were sighted. The skiffs did not approach any c", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [43.166666700333906, 12.999999999866418] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-203", + "dateofocc": "2017-07-31", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 31 July at 1750Z, a tanker was attacked by pirates in 04-07.5N 007-00.0E. The pirates stole personal belongings and three crew members were reported missing.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.999999999672355, 4.133333300177696] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-208", + "dateofocc": "2017-08-05", + "subreg": "22", + "hostility_": "Robbers", + "victim_d": "Container Vessel", + "descriptio": "ECUADOR:On 05 August, robbers, unnoticed by the crew, boarded a berthed container ship near position 01-00N 079-39W, Esmeraldas Port. The thieves stole brass sounding pipe covers and escaped. The theft was noticed by duty crew on routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "XII" + }, + "geometry": { + "type": "Point", + "coordinates": [-79.649999999577517, 1.000000000377668] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-209", + "dateofocc": "2017-08-07", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 07 August, a duty crewman onboard a tanker berthed near position 06-27N 003-22E, Folawiyo Terminal, Apapa, Lagos, noticed two robbers trying to insert a flexible hose into a cargo tank. He immediately informed the duty officer who raised the a", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [3.366666700305871, 6.450000000239129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-210", + "dateofocc": "2017-08-03", + "subreg": "51", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "MAURITANIA:On 03 August, a merchant vessel was approached near position 16-48N 016-51W, approximately 30 nm from Mauritania, by a small vessel claiming to be Mauritanian Navy which requested the MV to stop or they would open fire. Evasive maneuvering com", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [-16.849999999704949, 16.799999999629563] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-211", + "dateofocc": "2017-08-02", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 02 August, an unnoticed robber boarded a tanker anchored near position01-24N 104-33E, 10 nm north of Tanjung Berakit, Pulau Bintan, stole ship's properties and escaped. The theft was noticed by the deck crew the following day.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.550000000443902, 1.400000000210753] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-279", + "dateofocc": "2017-10-25", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 25 October, armed pirates from a speed boat boarded an underway crude oil tanker near 03-35N 006-49E, 51 nm south-southwest of Bonny Island. The 23 crew transferred control to, and retreated into the citadel and contacted the owners for help.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.816666700102644, 3.599999999742295] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-280", + "dateofocc": "2017-11-01", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 01 November at 0925Z a vessel was attacked in 04-05N 007-04E.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [7.066666700335588, 4.083333300310983] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-313", + "dateofocc": "2017-11-28", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Vessel", + "descriptio": "NIGERIA:On 28 November at 0445Z a vessel was approached in 06-02N 001-18E.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [1.299999999577949, 6.033333299609581] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-314", + "dateofocc": "2017-11-26", + "subreg": "71", + "hostility_": "Robbers", + "victim_d": "Tanker", + "descriptio": "INDONESIA:On 26 November an anchored product tanker noticed two damaged padlocks during routine rounds. Crew mustered and search was carried out with nothing being found stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [104.683333300146899, 1.416666700107896] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-11", + "dateofocc": "2017-12-28", + "subreg": "24", + "hostility_": "Pirates", + "victim_d": "Sailing Vessel", + "descriptio": "VENEZUELA:On 28 December, a monohull sailing yacht with 2 persons onboard departed Puerto La Cruz, Venezuela for Grenada. During the mid-morning hours, 2 miles off the Paria Peninsula in vicinity 10-42N 062-30W, and approximately 10 miles east of Cabo Tr", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-62.500000000326907, 10.699999999702129] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-106", + "dateofocc": "2017-04-05", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MARTINIQUE:On 05 April, robbers boarded a sailing yacht berthed at the long main dock in Port de France, vicinity 14-36N 061-05W. An outboard motor fuel tank was reported stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.083333299665014, 14.600000000098021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-107", + "dateofocc": "2017-04-02", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "MARTINIQUE:On 02 April, robbers boarded a sailing yacht berthed at the long main dock in Port de France, vicinity 14-36N 061-05W. An outboard motor fuel tank was reported stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.083333299665014, 14.600000000098021] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-108", + "dateofocc": "2017-04-01", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 01 April, a robber boarded a sailing yacht anchored in Charlestown Bay, vicinity12-42N 061-20W. All yacht entrances were locked and equipment stowed inside, nothing was stolen.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.333333299897959, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-109", + "dateofocc": "2017-03-28", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "SAINT VINCENT AND THE GRENADINES:On 28 March, two robbers boarded a sailing yacht anchored in Charlestown Bay, vicinity12-42N 061-20W. The yacht owner succeeded in scaring away the robbers and nothing was stolen. Report made to local authorities.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.333333299897959, 12.69999999976676] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-110", + "dateofocc": "2017-04-07", + "subreg": "57", + "hostility_": "Robbers", + "victim_d": "Bulk Carrier", + "descriptio": "ANGOLA:On 07 April, duty crewman on routine rounds onboard a bulk carrier anchored near position 05-52S 013-02E, Congo River, noticed six robbers on the forecastle and informed the duty officer on the bridge. Alarm was raised and ships whistle sounded. S", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [13.033333299835988, -5.866666700145686] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-111", + "dateofocc": "2017-04-08", + "subreg": "62", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "GULF OF ADEN:On 08 April, a suspicious skiff with three persons on board approached an underway tanker near position 14-09N 051-37E, approximately 140 nm northwest of Socotra Island. Alarm was raised, crew alerted and onboard security guard showed weapon", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [51.616666700292399, 14.150000000398222] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-112", + "dateofocc": "2017-04-14", + "subreg": "62", + "hostility_": "Pirates", + "victim_d": "Vessel", + "descriptio": "ARABIAN SEA:On 14 April at 0652Z a vessel was approached by pirates in 15-55.5N 052-20.7E. The small vessel had six to seven persons on board who fired shots and attempted to board the vessel several times but failed. The small boat deaparted the area an", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IX" + }, + "geometry": { + "type": "Point", + "coordinates": [52.350000000194711, 15.933333300199536] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2018-31", + "dateofocc": "2018-01-01", + "subreg": "93", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "VIETNAM:On 01 January, a robber boarded an anchored vessel during cargo operations in vicinity20-57N 107-19E, Cam Pha Loading Anchorage, and escape with stolen ship properties. The theft was noticed by crew on routine rounds.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "XI" + }, + "geometry": { + "type": "Point", + "coordinates": [107.316666700205133, 20.950000000258399] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-69", + "dateofocc": "2017-03-13", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Sailing Vessel", + "descriptio": "PUERTO RICO:On 13 March, a dinghy and outboard motor were stolen from a sailing yacht anchored in Vieques, vicinity 18-07N 065-25W. The outboard was removed and the dinghy set adrift. Dinghy ended up beating against the rocks and was found unsalvageable", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 8, + "victim_l_D": "Sailing Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-65.416666699688335, 18.116666699658708] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-70", + "dateofocc": "2017-03-12", + "subreg": "25", + "hostility_": "Robbers", + "victim_d": "Vessel", + "descriptio": "ST LUCIA:On 12 March, thieves boarded an unlocked yacht anchored in Soufriere, vicinity13-51N 061-03W, while crew was ashore for the evening. Cash, cellphones and computers were taken. A report was made to the police.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 11, + "victim_l_D": "Vessel", + "navarea": "IV" + }, + "geometry": { + "type": "Point", + "coordinates": [-61.049999999695444, 13.850000000298621] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-71", + "dateofocc": "2017-03-10", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "LNG Tanker", + "descriptio": "NIGERIA:On 10 March a speed boat carrying armed men attacked and attempted to board LNG tanker LA MANCHA KNUTSEN near position 03-03N 006-57E, approximately 90 nm south of Port Harcourt. When the attack started, vessel activated its security alert system", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.949999999805641, 3.050000000309069] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-72", + "dateofocc": "2017-03-08", + "subreg": "57", + "hostility_": "Pirates", + "victim_d": "Bulk Carrier", + "descriptio": "NIGERIA:On 08 March, the bulk carrier SOFIA was near position 03-20N 004-29E 120 nm southwest of Brass, Bayelsa State while en route from Lagos to Owendo Anchorage, Libreville, Gabon when seven armed persons in a skiff approached and fired upon the ship.", + "hostilityt": 1, + "hostilit_D": "Pirate Assault", + "victim_l": 3, + "victim_l_D": "Cargo Ship", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [4.483333300144011, 3.333333299612207] + } + }, + { + "type": "Feature", + "properties": { + "reference": "2017-312", + "dateofocc": "2017-11-16", + "subreg": "57", + "hostility_": "Suspicious Approach", + "victim_d": "Tanker", + "descriptio": "NIGERIA:On 16 November at 0945Z a tanker was approached by a speed boat with seven persons on board in 03-30.6N 006-45.9E. As the boat closed to 300 meters, the tanker performed evasive maneuvers to escape the vessel.", + "hostilityt": 3, + "hostilit_D": "Suspicious Approach", + "victim_l": 9, + "victim_l_D": "Tanker", + "navarea": "II" + }, + "geometry": { + "type": "Point", + "coordinates": [6.76666670023593, 3.516666699906011] + } + } + ] +} diff --git a/examples/time_test.jGIS b/examples/time_test.jGIS new file mode 100644 index 000000000..034c4fac1 --- /dev/null +++ b/examples/time_test.jGIS @@ -0,0 +1,99 @@ +{ + "layerTree": [ + "8de7c2c0-6024-4716-b542-031a89fb87f9", + "3e21d680-406f-4099-bd9e-3a4edb9a2c8b", + "00d18d9e-fe3d-4fd2-8bbd-fa50cb4e87d8" + ], + "layers": { + "00d18d9e-fe3d-4fd2-8bbd-fa50cb4e87d8": { + "filters": { + "appliedFilters": [], + "logicalOp": "all" + }, + "name": "pirates", + "parameters": { + "opacity": 1.0, + "source": "3a2d852f-8fd3-4acb-90e7-154e9f53558c", + "type": "circle" + }, + "type": "VectorLayer", + "visible": false + }, + "3e21d680-406f-4099-bd9e-3a4edb9a2c8b": { + "filters": { + "appliedFilters": [], + "logicalOp": "all" + }, + "name": "earthquakes", + "parameters": { + "color": { + "circle-fill-color": "#3584e4", + "circle-radius": 5.0, + "circle-stroke-color": "#62a0ea", + "circle-stroke-line-cap": "round", + "circle-stroke-line-join": "round", + "circle-stroke-width": 1.25 + }, + "opacity": 1.0, + "source": "348d85fa-3a71-447f-8a64-e283ec47cc7c", + "symbologyState": { + "renderType": "Single Symbol" + }, + "type": "circle" + }, + "type": "VectorLayer", + "visible": true + }, + "8de7c2c0-6024-4716-b542-031a89fb87f9": { + "name": "OpenStreetMap.Mapnik Layer", + "parameters": { + "source": "b2ea427a-a51b-43ad-ae72-02cd900736d5" + }, + "type": "RasterLayer", + "visible": true + } + }, + "metadata": {}, + "options": { + "bearing": 0.0, + "extent": [ + 4411741.095920008, + -7226144.228711288, + 20843337.516080517, + 16086786.11300372 + ], + "latitude": 36.93694189913924, + "longitude": 113.4351155940005, + "pitch": 0.0, + "projection": "EPSG:3857", + "zoom": 2.28340994912359 + }, + "sources": { + "348d85fa-3a71-447f-8a64-e283ec47cc7c": { + "name": "Custom GeoJSON Layer Source", + "parameters": { + "path": "../../examples/eq.json" + }, + "type": "GeoJSONSource" + }, + "3a2d852f-8fd3-4acb-90e7-154e9f53558c": { + "name": "Custom GeoJSON Layer Source", + "parameters": { + "path": "../../examples/pirates.geojson" + }, + "type": "GeoJSONSource" + }, + "b2ea427a-a51b-43ad-ae72-02cd900736d5": { + "name": "OpenStreetMap.Mapnik", + "parameters": { + "attribution": "(C) OpenStreetMap contributors", + "maxZoom": 19.0, + "minZoom": 0.0, + "provider": "OpenStreetMap", + "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "urlParameters": {} + }, + "type": "RasterSource" + } + } +} diff --git a/packages/base/package.json b/packages/base/package.json index ca4e11101..bdf28bab2 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -68,6 +68,7 @@ "ajv": "^8.14.0", "colormap": "^2.3.2", "d3-color": "^3.1.0", + "date-fns": "^4.1.0", "gdal3.js": "^2.8.1", "geojson-vt": "^4.0.2", "geotiff": "^2.1.3", diff --git a/yarn.lock b/yarn.lock index 3740c67e0..c27a426a2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -767,6 +767,7 @@ __metadata: ajv: ^8.14.0 colormap: ^2.3.2 d3-color: ^3.1.0 + date-fns: ^4.1.0 gdal3.js: ^2.8.1 geojson-vt: ^4.0.2 geotiff: ^2.1.3 @@ -4563,6 +4564,13 @@ __metadata: languageName: node linkType: hard +"date-fns@npm:^4.1.0": + version: 4.1.0 + resolution: "date-fns@npm:4.1.0" + checksum: fb681b242cccabed45494468f64282a7d375ea970e0adbcc5dcc92dcb7aba49b2081c2c9739d41bf71ce89ed68dd73bebfe06ca35129490704775d091895710b + languageName: node + linkType: hard + "dateformat@npm:^3.0.3": version: 3.0.3 resolution: "dateformat@npm:3.0.3" From afe6f13bbfd856e32b28786cfc749b69df498034 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 28 Jan 2025 16:21:08 +0100 Subject: [PATCH 09/59] wip --- packages/base/src/mainview/TemporalSlider.tsx | 104 ++++++++++++++++-- packages/base/src/mainview/mainView.tsx | 1 + 2 files changed, 93 insertions(+), 12 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index e029c885d..38fc20a2e 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,5 +1,6 @@ import { Slider } from '@jupyter/react-components'; import { IJupyterGISModel } from '@jupytergis/schema'; +import { format, isValid, parse } from 'date-fns'; import React, { useEffect, useState } from 'react'; import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; @@ -7,12 +8,30 @@ interface ITemporalSliderProps { model: IJupyterGISModel; } +// List of common date formats to try +const commonDateFormats = [ + 'yyyy-MM-dd', // ISO format (e.g., 2023-10-05) + 'dd/MM/yyyy', // European format (e.g., 05/10/2023) + 'MM/dd/yyyy', // US format (e.g., 10/05/2023) + 'yyyyMMdd', // Compact format (e.g., 20231005) + 'dd-MM-yyyy', // European format with hyphens (e.g., 05-10-2023) + 'MM-dd-yyyy', // US format with hyphens (e.g., 10-05-2023) + 'yyyy/MM/dd', // ISO format with slashes (e.g., 2023/10/05) + 'dd.MM.yyyy', // European format with dots (e.g., 05.10.2023) + 'MM.dd.yyyy' // US format with dots (e.g., 10.05.2023) +]; + const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); // const [selectedLayer, setSelectedLayer] = useState(''); const [selectedFeature, setSelectedFeature] = useState(''); const [range, setRange] = useState({ start: 0, end: 1 }); const [validFeatures, setValidFeatures] = useState([]); + + // False is values are already numbers, true if values are strings + const [converted, setConverted] = useState(false); + const [inferredDateFormat, setInferredDateFormat] = useState(''); + const { featureProps } = useGetProperties({ layerId, model }); useEffect(() => { @@ -29,16 +48,12 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }); useEffect(() => { - console.log('layerId', layerId); - console.log('featureProps', featureProps); const featuresForSelect = []; // We only want to show features that could be time values for (const [key, set] of Object.entries(featureProps)) { const checkValue = set.values().next().value; - console.log('checkValue', checkValue, typeof checkValue); - const [cv2] = set; - console.log('cv2', cv2, typeof cv2); + // const [cv2] = set; if (checkValue && isValidDate(checkValue)) { featuresForSelect.push(key); @@ -49,16 +64,44 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }, [layerId, featureProps]); useEffect(() => { - console.log('selectedFeature', selectedFeature); if (!selectedFeature) { return; } - const values: number[] = Array.from(featureProps[selectedFeature]); - console.log('values', values); - const min = Math.min(...values); - const max = Math.max(...values); + + // Get the values from the selected feature + const values: any[] = Array.from(featureProps[selectedFeature]); + + // Check the type of the first element + const firstValue = values[0]; + const isString = typeof firstValue === 'string'; + let convertedValues; + + if (isString) { + const inferred = inferDateFormat(values[0]); + if (!inferred) { + console.log('broke'); + return; + } + + convertedValues = values.map(value => Date.parse(value)); // Convert all strings to milliseconds + setConverted(true); + console.log('inferred', inferred); + setInferredDateFormat(inferred); + } else { + convertedValues = values; // Keep numbers as they are + } + + // Convert all values to milliseconds if the values are strings + // const convertedValues = isString + // ? values.map(value => Date.parse(value)) // Convert all strings to milliseconds + // : values; // Keep numbers as they are + + // Calculate min and max + const min = Math.min(...convertedValues); + const max = Math.max(...convertedValues); + + // Update the range state setRange({ start: min, end: max }); - console.log('min, max', min, max); }, [selectedFeature]); const isValidDate = (val: any) => { @@ -67,6 +110,35 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return !isNaN(date.getTime()); }; + // Infer the date format from a date string + const inferDateFormat = (dateString: string): string | null => { + for (const format of commonDateFormats) { + const parsedDate = parse(dateString, format, new Date()); + if (isValid(parsedDate)) { + return format; // Return the format if the date is valid + } + } + return null; // Return null if no format matches + }; + + // Convert a date string to milliseconds + const dateStringToMilliseconds = ( + dateString: string, + dateFormat: string + ): number => { + const date = parse(dateString, dateFormat, new Date()); // Parse the date string + return date.getTime(); // Convert to milliseconds + }; + + // Convert milliseconds back to the original date string format + const millisecondsToDateString = ( + milliseconds: number, + dateFormat: string + ): string => { + const date = new Date(milliseconds); // Create a Date object from milliseconds + return format(date, dateFormat); // Format back to the original string format + }; + const handleChange = (e: any) => { console.log('change', e.target.value); @@ -83,10 +155,18 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const oldFilters = layer.filters?.appliedFilters; const newFilters = oldFilters ? [...oldFilters] : []; + // If values have been converted, convert them back + let val: string | number = +e.target.value; + if (converted) { + const date = new Date(+e.target.value); + val = millisecondsToDateString(+e.target.value, inferredDateFormat); + console.log('we', val); + } + const nf = { feature: selectedFeature, operator: '>=' as const, - value: +e.target.value + value: val }; // if no filters then add this one diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index a81d88cad..6090706aa 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1033,6 +1033,7 @@ export class MainView extends React.Component { }); } + console.log('filterExpr', filterExpr); layerStyle.filter = filterExpr; } From 548bc9bdff19dbccc66aa3a0117634453d83ab99 Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 30 Jan 2025 16:56:16 +0100 Subject: [PATCH 10/59] Saving --- packages/base/src/mainview/TemporalSlider.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 38fc20a2e..cefdf1074 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -166,7 +166,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const nf = { feature: selectedFeature, operator: '>=' as const, - value: val + value: +e.target.value }; // if no filters then add this one @@ -179,7 +179,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; - model?.sharedModel.updateLayer(layerId, layer); + // model?.sharedModel.updateLayer(layerId, layer); + model.addFeatureTimeThins(layerId, nf); }; const setFeature = (e: any) => { From b18005822f3bdb33a2770f48f7016dfed143497a Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 30 Jan 2025 17:29:04 +0100 Subject: [PATCH 11/59] I think it works --- packages/base/src/mainview/TemporalSlider.tsx | 43 ++--------------- packages/base/src/mainview/mainView.tsx | 46 +++++++++++++++++++ packages/schema/src/interfaces.ts | 9 +++- packages/schema/src/model.ts | 25 ++++++++-- 4 files changed, 78 insertions(+), 45 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index cefdf1074..a9d7ffdb9 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -91,11 +91,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { convertedValues = values; // Keep numbers as they are } - // Convert all values to milliseconds if the values are strings - // const convertedValues = isString - // ? values.map(value => Date.parse(value)) // Convert all strings to milliseconds - // : values; // Keep numbers as they are - // Calculate min and max const min = Math.min(...convertedValues); const max = Math.max(...convertedValues); @@ -142,45 +137,13 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const handleChange = (e: any) => { console.log('change', e.target.value); - const layer = model?.getLayer(layerId); - if (!layer) { - return; - } - - // I think i want to replace filters? - // or save old ones and reapply them when turning temporal off? - // Really i want this filter to work with existing filters - // I want to replace the one being added instead of adding a new one - // add a type or source or something to the filter item?? - const oldFilters = layer.filters?.appliedFilters; - const newFilters = oldFilters ? [...oldFilters] : []; - - // If values have been converted, convert them back - let val: string | number = +e.target.value; - if (converted) { - const date = new Date(+e.target.value); - val = millisecondsToDateString(+e.target.value, inferredDateFormat); - console.log('we', val); - } - - const nf = { - feature: selectedFeature, + const newFilter = { + feature: `converted${selectedFeature}`, operator: '>=' as const, value: +e.target.value }; - // if no filters then add this one - // if there are filters we want to replace time one - // assume that is the last entry for now - if (newFilters.length === 0) { - newFilters.push(nf); - } else { - newFilters.splice(newFilters.length - 1, 1, nf); - } - - layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; - // model?.sharedModel.updateLayer(layerId, layer); - model.addFeatureTimeThins(layerId, nf); + model.addFeatureTimeThins(layerId, selectedFeature, newFilter); }; const setFeature = (e: any) => { diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 6090706aa..36d3de9ac 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -144,6 +144,51 @@ export class MainView extends React.Component { loadingErrors: [] }; + this._model.addFeaturesSignal.connect((_, args) => { + const json = JSON.parse(args); + console.log('json', json); + const { id: layerId, selectedFeature, newFilter } = json; + console.log('id', layerId); + console.log('nf', newFilter); + console.log('weee adduing stugg weeowoewoe', layerId); + const olLayer = this.getLayer(layerId); + const source = olLayer.getSource() as VectorSource; + + console.log('selectedFeature', selectedFeature); + + source.forEachFeature(feature => { + // will also need to send selectedFeature from temporal slider + const time = feature.get(selectedFeature); + const t = Date.parse(time); + feature.set(`converted${selectedFeature}`, t); + }); + + const layer = this._model.getLayer(layerId); + if (!layer) { + return; + } + + // I think i want to replace filters? + // or save old ones and reapply them when turning temporal off? + // Really i want this filter to work with existing filters + // I want to replace the one being added instead of adding a new one + // add a type or source or something to the filter item?? + const oldFilters = layer.filters?.appliedFilters; + const newFilters = oldFilters ? [...oldFilters] : []; + + // if no filters then add this one + // if there are filters we want to replace time one + // assume that is the last entry for now + if (newFilters.length === 0) { + newFilters.push(newFilter); + } else { + newFilters.splice(newFilters.length - 1, 1, newFilter); + } + + layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; + this._model.sharedModel.updateLayer(layerId, layer); + }); + this._sources = []; this._loadingLayers = new Set(); this._commands = new CommandRegistry(); @@ -545,6 +590,7 @@ export class MainView extends React.Component { newSource = new VectorSource({ features: featureCollection }); + console.log('finish'); break; } diff --git a/packages/schema/src/interfaces.ts b/packages/schema/src/interfaces.ts index 270e072fa..282ba36f9 100644 --- a/packages/schema/src/interfaces.ts +++ b/packages/schema/src/interfaces.ts @@ -16,6 +16,7 @@ import { SplitPanel } from '@lumino/widgets'; import { IJGISContent, + IJGISFilterItem, IJGISLayer, IJGISLayerGroup, IJGISLayerItem, @@ -167,10 +168,16 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { sharedSourcesChanged: ISignal; sharedMetadataChanged: ISignal; zoomToPositionSignal: ISignal; - + addFeaturesSignal: ISignal; contentsManager: Contents.IManager | undefined; filePath: string; + addFeatureTimeThins( + id: string, + selectedFeature: string, + newFilter: IJGISFilterItem + ): void; + getContent(): IJGISContent; getLayers(): IJGISLayers; getLayer(id: string): IJGISLayer | undefined; diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index 1fa475b05..cc09edd5a 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -5,8 +5,10 @@ import { PartialJSONObject } from '@lumino/coreutils'; import { ISignal, Signal } from '@lumino/signaling'; import Ajv from 'ajv'; +import { Contents } from '@jupyterlab/services'; import { IJGISContent, + IJGISFilterItem, IJGISLayer, IJGISLayerGroup, IJGISLayerItem, @@ -18,9 +20,8 @@ import { } from './_interface/jgis'; import { JupyterGISDoc } from './doc'; import { - IViewPortState, - Pointer, IAnnotationModel, + IDict, IJGISLayerDocChange, IJGISLayerTreeDocChange, IJGISSourceDocChange, @@ -29,10 +30,10 @@ import { IJupyterGISModel, ISelection, IUserData, - IDict + IViewPortState, + Pointer } from './interfaces'; import jgisSchema from './schema/jgis.json'; -import { Contents } from '@jupyterlab/services'; export class JupyterGISModel implements IJupyterGISModel { constructor(options: JupyterGISModel.IOptions) { @@ -680,6 +681,20 @@ export class JupyterGISModel implements IJupyterGISModel { } }; + addFeatureTimeThins = ( + id: string, + selectedFeature: string, + newFilter: IJGISFilterItem + ) => { + this.addFeaturesSignal.emit( + JSON.stringify({ id, selectedFeature, newFilter }) + ); + }; + + get addFeaturesSignal() { + return this._addFeaturesSignal; + } + readonly defaultKernelName: string = ''; readonly defaultKernelLanguage: string = ''; readonly annotationModel?: IAnnotationModel; @@ -705,6 +720,8 @@ export class JupyterGISModel implements IJupyterGISModel { private _sharedMetadataChanged = new Signal(this); private _zoomToPositionSignal = new Signal(this); + private _addFeaturesSignal = new Signal(this); + private _isIdentifying = false; private _isTemporal = false; From 042413220bb68613eae767d068d03f04e504eda9 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 13:27:16 +0100 Subject: [PATCH 12/59] wip --- packages/base/src/mainview/TemporalSlider.tsx | 123 +++++++++++++++--- 1 file changed, 105 insertions(+), 18 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index a9d7ffdb9..73e9bf3ee 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,6 +1,6 @@ import { Slider } from '@jupyter/react-components'; import { IJupyterGISModel } from '@jupytergis/schema'; -import { format, isValid, parse } from 'date-fns'; +import { format, isValid, parse, toDate } from 'date-fns'; import React, { useEffect, useState } from 'react'; import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; @@ -21,6 +21,15 @@ const commonDateFormats = [ 'MM.dd.yyyy' // US format with dots (e.g., 10.05.2023) ]; +// Time steps in milliseconds +const stepMap = { + hour: 3600000, + day: 86400000, + week: 604800000, + month: 2592000000, // 30 days + year: 31536000000 // 365 days +}; + const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); // const [selectedLayer, setSelectedLayer] = useState(''); @@ -30,8 +39,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // False is values are already numbers, true if values are strings const [converted, setConverted] = useState(false); - const [inferredDateFormat, setInferredDateFormat] = useState(''); - + const [inferredDateFormat, setInferredDateFormat] = useState('yyyy-MM-dd'); + const [step, setStep] = useState(stepMap.day); const { featureProps } = useGetProperties({ layerId, model }); useEffect(() => { @@ -52,10 +61,54 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // We only want to show features that could be time values for (const [key, set] of Object.entries(featureProps)) { + let checkIfDateIsValid = false; const checkValue = set.values().next().value; - // const [cv2] = set; + console.log('checking ', key, checkValue); + + // We only want to look at strings and whole numbers + // ? Is there a better way to check if number values are valid timestamps? + const isString = typeof checkValue === 'string'; + const isNumber = + typeof checkValue === 'number' && Number.isInteger(checkValue); + if (!isString && !isNumber) { + console.log('not string or number'); + continue; + } + + // ! QGIS doesn't actually support number values for their time thing + if (isNumber) { + // Check if number returns a valid date + const date = toDate(checkValue); + console.log('date', date); + + checkIfDateIsValid = isValid(toDate(checkValue)); + + if (!checkIfDateIsValid) { + console.log('key invalid', key); + continue; + } + } + + if (isString) { + const date = toDate(checkValue); + console.log('date', date); + // const inferredFormat = inferDateFormat(checkValue); + // if (!inferredFormat) { + // console.log('date not inferred from', key); + // continue; + // } + + // checkIfDateIsValid = !!inferredFormat; + checkIfDateIsValid = isValid(toDate(checkValue)); + // setConverted(true); + // setInferredDateFormat(inferredFormat); + if (!checkIfDateIsValid) { + console.log('key invalid', key); + continue; + } + } - if (checkValue && isValidDate(checkValue)) { + if (checkValue && checkIfDateIsValid) { featuresForSelect.push(key); } } @@ -72,22 +125,27 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const values: any[] = Array.from(featureProps[selectedFeature]); // Check the type of the first element - const firstValue = values[0]; - const isString = typeof firstValue === 'string'; + // const firstValue = values[0]; + const isString = typeof values[0] === 'string'; let convertedValues; if (isString) { - const inferred = inferDateFormat(values[0]); - if (!inferred) { + console.log('string'); + const inferredFormat = inferDateFormat(values[0]); + if (!inferredFormat) { console.log('broke'); return; } + setInferredDateFormat(inferredFormat); + convertedValues = values.map(value => Date.parse(value)); // Convert all strings to milliseconds - setConverted(true); - console.log('inferred', inferred); - setInferredDateFormat(inferred); + + // setConverted(true); + // console.log('inferred', inferred); + setInferredDateFormat(inferredFormat); } else { + console.log('not string'); convertedValues = values; // Keep numbers as they are } @@ -108,7 +166,9 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // Infer the date format from a date string const inferDateFormat = (dateString: string): string | null => { for (const format of commonDateFormats) { + console.log('inferring', dateString, format); const parsedDate = parse(dateString, format, new Date()); + console.log('parsedDate', parsedDate); if (isValid(parsedDate)) { return format; // Return the format if the date is valid } @@ -122,7 +182,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { dateFormat: string ): number => { const date = parse(dateString, dateFormat, new Date()); // Parse the date string - return date.getTime(); // Convert to milliseconds + return date.getUTCMilliseconds(); // Convert to milliseconds }; // Convert milliseconds back to the original date string format @@ -137,6 +197,9 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const handleChange = (e: any) => { console.log('change', e.target.value); + const sd = millisecondsToDateString(+e.target.value, inferredDateFormat); + console.log('sd', sd); + const newFilter = { feature: `converted${selectedFeature}`, operator: '>=' as const, @@ -157,22 +220,46 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { <>
-
{new Date(range.start).toUTCString()}
+
+ {inferredDateFormat && + millisecondsToDateString(range.start, inferredDateFormat)} +
-
{new Date(range.end).toUTCString()}
+
+ {inferredDateFormat && + millisecondsToDateString(range.end, inferredDateFormat)} +
-
step
+
+ +
) : (
Select a layer
From 15e8bebb17462ef3ed498cb6b86efc4589f917ea Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 13:45:08 +0100 Subject: [PATCH 13/59] Still works --- packages/base/src/mainview/TemporalSlider.tsx | 18 +++++++++++++----- packages/base/src/mainview/mainView.tsx | 5 ++--- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 73e9bf3ee..baef680fd 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,6 +1,14 @@ import { Slider } from '@jupyter/react-components'; import { IJupyterGISModel } from '@jupytergis/schema'; import { format, isValid, parse, toDate } from 'date-fns'; +import { + daysInYear, + millisecondsInDay, + millisecondsInHour, + millisecondsInMinute, + millisecondsInWeek, + minutesInMonth +} from 'date-fns/constants'; import React, { useEffect, useState } from 'react'; import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; @@ -23,11 +31,11 @@ const commonDateFormats = [ // Time steps in milliseconds const stepMap = { - hour: 3600000, - day: 86400000, - week: 604800000, - month: 2592000000, // 30 days - year: 31536000000 // 365 days + hour: millisecondsInHour, + day: millisecondsInDay, + week: millisecondsInWeek, + month: minutesInMonth * millisecondsInMinute, + year: millisecondsInDay * daysInYear }; const TemporalSlider = ({ model }: ITemporalSliderProps) => { diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 36d3de9ac..80ca70696 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -157,10 +157,9 @@ export class MainView extends React.Component { console.log('selectedFeature', selectedFeature); source.forEachFeature(feature => { - // will also need to send selectedFeature from temporal slider const time = feature.get(selectedFeature); - const t = Date.parse(time); - feature.set(`converted${selectedFeature}`, t); + const parsedTime = typeof time === 'string' ? Date.parse(time) : time; + feature.set(`converted${selectedFeature}`, parsedTime); }); const layer = this._model.getLayer(layerId); From 97811379c36c39d6e166f49ea453bf0033cdd201 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 14:16:50 +0100 Subject: [PATCH 14/59] Clean up slider --- packages/base/src/mainview/TemporalSlider.tsx | 164 +++++++----------- 1 file changed, 65 insertions(+), 99 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index baef680fd..2d5c0b5ff 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -40,16 +40,14 @@ const stepMap = { const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); - // const [selectedLayer, setSelectedLayer] = useState(''); const [selectedFeature, setSelectedFeature] = useState(''); const [range, setRange] = useState({ start: 0, end: 1 }); const [validFeatures, setValidFeatures] = useState([]); - // False is values are already numbers, true if values are strings - const [converted, setConverted] = useState(false); const [inferredDateFormat, setInferredDateFormat] = useState('yyyy-MM-dd'); const [step, setStep] = useState(stepMap.day); const { featureProps } = useGetProperties({ layerId, model }); + const [currentValue, setCurrentValue] = useState(''); useEffect(() => { const localState = model.sharedModel.awareness.getLocalState(); @@ -75,45 +73,18 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // We only want to look at strings and whole numbers // ? Is there a better way to check if number values are valid timestamps? + // ! QGIS doesn't actually support number values for their time thing const isString = typeof checkValue === 'string'; const isNumber = typeof checkValue === 'number' && Number.isInteger(checkValue); if (!isString && !isNumber) { - console.log('not string or number'); + console.log('Invalid value type'); continue; } - // ! QGIS doesn't actually support number values for their time thing - if (isNumber) { - // Check if number returns a valid date - const date = toDate(checkValue); - console.log('date', date); - - checkIfDateIsValid = isValid(toDate(checkValue)); - - if (!checkIfDateIsValid) { - console.log('key invalid', key); - continue; - } - } - - if (isString) { - const date = toDate(checkValue); - console.log('date', date); - // const inferredFormat = inferDateFormat(checkValue); - // if (!inferredFormat) { - // console.log('date not inferred from', key); - // continue; - // } - - // checkIfDateIsValid = !!inferredFormat; - checkIfDateIsValid = isValid(toDate(checkValue)); - // setConverted(true); - // setInferredDateFormat(inferredFormat); - if (!checkIfDateIsValid) { - console.log('key invalid', key); - continue; - } + checkIfDateIsValid = isValid(toDate(checkValue)); + if (!checkIfDateIsValid) { + continue; } if (checkValue && checkIfDateIsValid) { @@ -133,24 +104,19 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const values: any[] = Array.from(featureProps[selectedFeature]); // Check the type of the first element - // const firstValue = values[0]; const isString = typeof values[0] === 'string'; let convertedValues; if (isString) { - console.log('string'); const inferredFormat = inferDateFormat(values[0]); if (!inferredFormat) { - console.log('broke'); + console.log('Datestring has an unsupported format'); return; } setInferredDateFormat(inferredFormat); convertedValues = values.map(value => Date.parse(value)); // Convert all strings to milliseconds - - // setConverted(true); - // console.log('inferred', inferred); setInferredDateFormat(inferredFormat); } else { console.log('not string'); @@ -165,12 +131,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { setRange({ start: min, end: max }); }, [selectedFeature]); - const isValidDate = (val: any) => { - const date = new Date(val); - - return !isNaN(date.getTime()); - }; - // Infer the date format from a date string const inferDateFormat = (dateString: string): string | null => { for (const format of commonDateFormats) { @@ -185,15 +145,16 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; // Convert a date string to milliseconds - const dateStringToMilliseconds = ( - dateString: string, - dateFormat: string - ): number => { - const date = parse(dateString, dateFormat, new Date()); // Parse the date string - return date.getUTCMilliseconds(); // Convert to milliseconds - }; + // const dateStringToMilliseconds = ( + // dateString: string, + // dateFormat: string + // ): number => { + // const date = parse(dateString, dateFormat, new Date()); // Parse the date string + // return date.getUTCMilliseconds(); // Convert to milliseconds + // }; // Convert milliseconds back to the original date string format + // TODO I'm pretty sure this ends up in local time, not UTC time const millisecondsToDateString = ( milliseconds: number, dateFormat: string @@ -203,10 +164,10 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; const handleChange = (e: any) => { - console.log('change', e.target.value); - - const sd = millisecondsToDateString(+e.target.value, inferredDateFormat); - console.log('sd', sd); + const currentValueString = millisecondsToDateString( + +e.target.value, + inferredDateFormat + ); const newFilter = { feature: `converted${selectedFeature}`, @@ -214,11 +175,11 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { value: +e.target.value }; + setCurrentValue(currentValueString); model.addFeatureTimeThins(layerId, selectedFeature, newFilter); }; const setFeature = (e: any) => { - console.log('e.target.value', e.target.value); setSelectedFeature(e.target.value); }; @@ -226,47 +187,52 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
{layerId ? ( <> -
- -
-
- {inferredDateFormat && - millisecondsToDateString(range.start, inferredDateFormat)} +
+
+ +
+
+ {inferredDateFormat && + millisecondsToDateString(range.start, inferredDateFormat)} +
+ +
+ {inferredDateFormat && + millisecondsToDateString(range.end, inferredDateFormat)} +
+ +
+ +
- -
- {inferredDateFormat && - millisecondsToDateString(range.end, inferredDateFormat)} -
- -
- +
+ Current Value: {currentValue}
) : ( From d4ada572e7ace1c11040b2b74d36480e150c64db Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 14:17:07 +0100 Subject: [PATCH 15/59] Add CSS class --- packages/base/style/temporalSlider.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/base/style/temporalSlider.css b/packages/base/style/temporalSlider.css index f27ac22d8..b98163910 100644 --- a/packages/base/style/temporalSlider.css +++ b/packages/base/style/temporalSlider.css @@ -1,6 +1,13 @@ .jp-gis-temporal-slider-container { + display: flex; + flex-direction: column; + gap: 0.2rem; +} + +.jp-gis-temporal-slider-row { display: flex; gap: 0.25rem; + justify-content: space-around; } .jp-gis-temporal-slider { From b4dad2a18819979e2fa1b0e1b9a78c0ecd3168bd Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 14:29:53 +0100 Subject: [PATCH 16/59] Emit signal on feature select --- packages/base/src/mainview/TemporalSlider.tsx | 31 +++++++++++++++++-- packages/base/src/mainview/mainView.tsx | 25 --------------- packages/schema/src/interfaces.ts | 9 ++---- packages/schema/src/model.ts | 11 ++----- 4 files changed, 32 insertions(+), 44 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 2d5c0b5ff..e350bec26 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -110,7 +110,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { if (isString) { const inferredFormat = inferDateFormat(values[0]); if (!inferredFormat) { - console.log('Datestring has an unsupported format'); + console.log('Date string has an unsupported format'); return; } @@ -119,7 +119,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { convertedValues = values.map(value => Date.parse(value)); // Convert all strings to milliseconds setInferredDateFormat(inferredFormat); } else { - console.log('not string'); convertedValues = values; // Keep numbers as they are } @@ -129,6 +128,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // Update the range state setRange({ start: min, end: max }); + model.addTimeFeature(layerId, selectedFeature); }, [selectedFeature]); // Infer the date format from a date string @@ -176,7 +176,32 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; setCurrentValue(currentValueString); - model.addFeatureTimeThins(layerId, selectedFeature, newFilter); + + const layer = model.getLayer(layerId); + if (!layer) { + return; + } + + // I think i want to replace filters? + // or save old ones and reapply them when turning temporal off? + // Really i want this filter to work with existing filters + // I want to replace the one being added instead of adding a new one + // add a type or source or something to the filter item?? + const oldFilters = layer.filters?.appliedFilters; + const newFilters = oldFilters ? [...oldFilters] : []; + + // if no filters then add this one + // if there are filters we want to replace time one + // assume that is the last entry for now + if (newFilters.length === 0) { + newFilters.push(newFilter); + } else { + newFilters.splice(newFilters.length - 1, 1, newFilter); + } + + layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; + model.sharedModel.updateLayer(layerId, layer); + // model.addFeatureTimeThins(layerId, selectedFeature, newFilter); }; const setFeature = (e: any) => { diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 80ca70696..afaec21c3 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -161,31 +161,6 @@ export class MainView extends React.Component { const parsedTime = typeof time === 'string' ? Date.parse(time) : time; feature.set(`converted${selectedFeature}`, parsedTime); }); - - const layer = this._model.getLayer(layerId); - if (!layer) { - return; - } - - // I think i want to replace filters? - // or save old ones and reapply them when turning temporal off? - // Really i want this filter to work with existing filters - // I want to replace the one being added instead of adding a new one - // add a type or source or something to the filter item?? - const oldFilters = layer.filters?.appliedFilters; - const newFilters = oldFilters ? [...oldFilters] : []; - - // if no filters then add this one - // if there are filters we want to replace time one - // assume that is the last entry for now - if (newFilters.length === 0) { - newFilters.push(newFilter); - } else { - newFilters.splice(newFilters.length - 1, 1, newFilter); - } - - layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; - this._model.sharedModel.updateLayer(layerId, layer); }); this._sources = []; diff --git a/packages/schema/src/interfaces.ts b/packages/schema/src/interfaces.ts index 282ba36f9..9cfe3f759 100644 --- a/packages/schema/src/interfaces.ts +++ b/packages/schema/src/interfaces.ts @@ -16,7 +16,6 @@ import { SplitPanel } from '@lumino/widgets'; import { IJGISContent, - IJGISFilterItem, IJGISLayer, IJGISLayerGroup, IJGISLayerItem, @@ -172,12 +171,6 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { contentsManager: Contents.IManager | undefined; filePath: string; - addFeatureTimeThins( - id: string, - selectedFeature: string, - newFilter: IJGISFilterItem - ): void; - getContent(): IJGISContent; getLayers(): IJGISLayers; getLayer(id: string): IJGISLayer | undefined; @@ -219,8 +212,10 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { toggleIdentify(): void; isIdentifying: boolean; + isTemporal: boolean; toggleTemporal(): void; + addTimeFeature(id: string, selectedFeature: string): void; disposed: ISignal; } diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index cc09edd5a..45658fc4e 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -8,7 +8,6 @@ import Ajv from 'ajv'; import { Contents } from '@jupyterlab/services'; import { IJGISContent, - IJGISFilterItem, IJGISLayer, IJGISLayerGroup, IJGISLayerItem, @@ -681,14 +680,8 @@ export class JupyterGISModel implements IJupyterGISModel { } }; - addFeatureTimeThins = ( - id: string, - selectedFeature: string, - newFilter: IJGISFilterItem - ) => { - this.addFeaturesSignal.emit( - JSON.stringify({ id, selectedFeature, newFilter }) - ); + addTimeFeature = (id: string, selectedFeature: string) => { + this.addFeaturesSignal.emit(JSON.stringify({ id, selectedFeature })); }; get addFeaturesSignal() { From 4b8f65883208be42a3251d91213554dedf4a3406 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 16:39:25 +0100 Subject: [PATCH 17/59] Examples --- examples/earthquakes.jGIS | 133 ++++++++++++-------------------------- examples/pirates.jGIS | 83 ++++++++++++++++++++++++ 2 files changed, 124 insertions(+), 92 deletions(-) create mode 100644 examples/pirates.jGIS diff --git a/examples/earthquakes.jGIS b/examples/earthquakes.jGIS index 226ec5a4a..46d10fefa 100644 --- a/examples/earthquakes.jGIS +++ b/examples/earthquakes.jGIS @@ -1,117 +1,73 @@ { "layerTree": [ - "0959c04f-a841-4fa2-8b44-d262e89e4c9a", - "b116b76f-e040-4908-9098-a6fbea7ca5bc" + "8de7c2c0-6024-4716-b542-031a89fb87f9", + "3e21d680-406f-4099-bd9e-3a4edb9a2c8b" ], "layers": { - "0959c04f-a841-4fa2-8b44-d262e89e4c9a": { - "name": "OpenStreetMap.Mapnik Layer", - "parameters": { - "source": "a7ed9785-8797-4d6d-a6a9-062ce78ba7ba" + "3e21d680-406f-4099-bd9e-3a4edb9a2c8b": { + "filters": { + "appliedFilters": [ + { + "feature": "convertedtime", + "operator": ">=", + "value": 1506561891990.0 + } + ], + "logicalOp": "all" }, - "type": "RasterLayer", - "visible": true - }, - "b116b76f-e040-4908-9098-a6fbea7ca5bc": { - "name": "earthquakes", + "name": "Custom GeoJSON Layer", "parameters": { "color": { - "circle-fill-color": [ - "case", - [ - "==", - [ - "get", - "tsunami" - ], - 0.0 - ], - [ - 125.0, - 0.0, - 179.0, - 1.0 - ], - [ - "==", - [ - "get", - "tsunami" - ], - 1.0 - ], - [ - 147.0, - 255.0, - 0.0, - 1.0 - ], - [ - 0.0, - 0.0, - 0.0, - 0.0 - ] - ], - "circle-radius": [ - "interpolate", - [ - "linear" - ], - [ - "get", - "mag" - ], - 1.0, - 1.0, - 2.0, - 2.0, - 3.0, - 3.0, - 4.0, - 4.0, - 5.0, - 5.0, - 6.0, - 6.0 - ], - "circle-stroke-color": "#3399CC", + "circle-fill-color": "#f66151", + "circle-radius": 5.0, + "circle-stroke-color": "#62a0ea", "circle-stroke-line-cap": "round", "circle-stroke-line-join": "round", "circle-stroke-width": 1.25 }, "opacity": 1.0, - "source": "dc048820-75cd-4b8d-a1fb-91642901cd82", + "source": "348d85fa-3a71-447f-8a64-e283ec47cc7c", "symbologyState": { - "colorRamp": "cool", - "mode": "", - "nClasses": "", - "renderType": "Categorized", - "value": "tsunami" + "renderType": "Single Symbol" }, "type": "circle" }, "type": "VectorLayer", "visible": true + }, + "8de7c2c0-6024-4716-b542-031a89fb87f9": { + "name": "OpenStreetMap.Mapnik Layer", + "parameters": { + "source": "b2ea427a-a51b-43ad-ae72-02cd900736d5" + }, + "type": "RasterLayer", + "visible": true } }, "metadata": {}, "options": { "bearing": 0.0, "extent": [ - -14291047.530673811, - -3536164.7121253638, - -9426274.876637986, - 9088825.15152122 + -8743782.33482077, + -9086918.06770886, + 3974641.244421752, + 19283053.908469707 ], - "latitude": 24.187972965810673, - "longitude": -106.52816608439294, + "latitude": 41.57863106624126, + "longitude": -21.420961668139388, "pitch": 0.0, "projection": "EPSG:3857", - "zoom": 3.8783091860507373 + "zoom": 2.6670105136699993 }, "sources": { - "a7ed9785-8797-4d6d-a6a9-062ce78ba7ba": { + "348d85fa-3a71-447f-8a64-e283ec47cc7c": { + "name": "Custom GeoJSON Layer Source", + "parameters": { + "path": "../../examples/eq.json" + }, + "type": "GeoJSONSource" + }, + "b2ea427a-a51b-43ad-ae72-02cd900736d5": { "name": "OpenStreetMap.Mapnik", "parameters": { "attribution": "(C) OpenStreetMap contributors", @@ -122,13 +78,6 @@ "urlParameters": {} }, "type": "RasterSource" - }, - "dc048820-75cd-4b8d-a1fb-91642901cd82": { - "name": "Custom GeoJSON Layer Source", - "parameters": { - "path": "eq.json" - }, - "type": "GeoJSONSource" } } } diff --git a/examples/pirates.jGIS b/examples/pirates.jGIS new file mode 100644 index 000000000..45bfaeb2a --- /dev/null +++ b/examples/pirates.jGIS @@ -0,0 +1,83 @@ +{ + "layerTree": [ + "d793fed9-f3f8-4e2f-bfca-b01d7f5a91eb", + "e7127387-d529-4f1a-9187-dda676b69b78" + ], + "layers": { + "d793fed9-f3f8-4e2f-bfca-b01d7f5a91eb": { + "name": "OpenStreetMap.Mapnik Layer", + "parameters": { + "source": "9cb7ef3b-e831-4dec-9baa-5a000ff3bb98" + }, + "type": "RasterLayer", + "visible": true + }, + "e7127387-d529-4f1a-9187-dda676b69b78": { + "filters": { + "appliedFilters": [ + { + "feature": "convertedsubreg", + "operator": ">=", + "value": 1356825600000.0 + } + ], + "logicalOp": "all" + }, + "name": "Custom GeoJSON Layer", + "parameters": { + "color": { + "circle-fill-color": "#f66151", + "circle-radius": 5.0, + "circle-stroke-color": "#3399CC", + "circle-stroke-line-cap": "round", + "circle-stroke-line-join": "round", + "circle-stroke-width": 1.25 + }, + "opacity": 1.0, + "source": "f5967740-f35c-4a9f-a721-67b798496398", + "symbologyState": { + "renderType": "Single Symbol" + }, + "type": "circle" + }, + "type": "VectorLayer", + "visible": true + } + }, + "metadata": {}, + "options": { + "bearing": 0.0, + "extent": [ + -19118720.268355727, + -12812863.718760101, + -1222492.139435364, + 12812863.718760109 + ], + "latitude": 4.263256414560601e-14, + "longitude": -91.36411001720195, + "pitch": 0.0, + "projection": "EPSG:3857", + "zoom": 2.1686721181322306 + }, + "sources": { + "9cb7ef3b-e831-4dec-9baa-5a000ff3bb98": { + "name": "OpenStreetMap.Mapnik", + "parameters": { + "attribution": "(C) OpenStreetMap contributors", + "maxZoom": 19.0, + "minZoom": 0.0, + "provider": "OpenStreetMap", + "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "urlParameters": {} + }, + "type": "RasterSource" + }, + "f5967740-f35c-4a9f-a721-67b798496398": { + "name": "Custom GeoJSON Layer Source", + "parameters": { + "path": "../../examples/pirates.geojson" + }, + "type": "GeoJSONSource" + } + } +} From 3a2963b9289834cc64c1965b2160a39acffb374a Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 16:41:26 +0100 Subject: [PATCH 18/59] Use awareness to hold time boolean --- packages/base/src/commands.ts | 3 +-- packages/base/src/mainview/mainView.tsx | 20 +++++++++++--------- packages/schema/src/interfaces.ts | 3 ++- packages/schema/src/model.ts | 9 +++++++-- 4 files changed, 21 insertions(+), 14 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 4f8f9185d..04fd8ca1f 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -178,12 +178,11 @@ export function addCommands( : false; }, execute: args => { - console.log('TIME'); const current = tracker.currentWidget; if (!current) { return; } - current.context.model.toggleTemporal(); + current.context.model.toggleTemporal(CommandIDs.temporal); commands.notifyCommandChanged(CommandIDs.identify); }, ...icons.get(CommandIDs.temporal) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index afaec21c3..1e2b15d7e 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -101,6 +101,7 @@ interface IStates { loadingLayer: boolean; scale: number; loadingErrors: Array<{ id: string; error: any; index: number }>; + displayTimeBar: boolean; } export class MainView extends React.Component { @@ -141,21 +142,16 @@ export class MainView extends React.Component { viewProjection: { code: '', units: '' }, loadingLayer: false, scale: 0, - loadingErrors: [] + loadingErrors: [], + displayTimeBar: false }; this._model.addFeaturesSignal.connect((_, args) => { const json = JSON.parse(args); - console.log('json', json); - const { id: layerId, selectedFeature, newFilter } = json; - console.log('id', layerId); - console.log('nf', newFilter); - console.log('weee adduing stugg weeowoewoe', layerId); + const { id: layerId, selectedFeature } = json; const olLayer = this.getLayer(layerId); const source = olLayer.getSource() as VectorSource; - console.log('selectedFeature', selectedFeature); - source.forEachFeature(feature => { const time = feature.get(selectedFeature); const parsedTime = typeof time === 'string' ? Date.parse(time) : time; @@ -1053,7 +1049,6 @@ export class MainView extends React.Component { }); } - console.log('filterExpr', filterExpr); layerStyle.filter = filterExpr; } @@ -1341,6 +1336,13 @@ export class MainView extends React.Component { this.setState(old => ({ ...old, clientPointers: clientPointers })); }); + + // Time stuff + // TODO: Temporary? + const isTemporal = this._model.localState?.isTemporal; + if (isTemporal) { + this.setState(old => ({ ...old, displayTimeBar: isTemporal })); + } }; private _onSharedOptionsChanged(): void { diff --git a/packages/schema/src/interfaces.ts b/packages/schema/src/interfaces.ts index 9cfe3f759..297e7f051 100644 --- a/packages/schema/src/interfaces.ts +++ b/packages/schema/src/interfaces.ts @@ -78,6 +78,7 @@ export interface IJupyterGISClientState { user: User.IIdentity; remoteUser?: number; toolbarForm?: IDict; + isTemporal: boolean; } export interface IJupyterGISDoc extends YDocument { @@ -214,7 +215,7 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { isIdentifying: boolean; isTemporal: boolean; - toggleTemporal(): void; + toggleTemporal(emitter: string): void; addTimeFeature(id: string, selectedFeature: string): void; disposed: ISignal; diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index 45658fc4e..ce840d438 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -628,8 +628,13 @@ export class JupyterGISModel implements IJupyterGISModel { this._isIdentifying = !this._isIdentifying; } - toggleTemporal() { - this.isTemporal = !this.isTemporal; + toggleTemporal(emitter: string) { + this._isTemporal = !this._isTemporal; + + this.sharedModel.awareness.setLocalStateField('isTemporal', { + value: this._isTemporal, + emitter + }); } private _getLayerTreeInfo(groupName: string): From c7f75069b174c5760fe262b41f49d6f5b84653c7 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 31 Jan 2025 16:41:38 +0100 Subject: [PATCH 19/59] UI tweak --- packages/base/src/mainview/TemporalSlider.tsx | 45 ++++++++----------- 1 file changed, 19 insertions(+), 26 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index e350bec26..d41f1183a 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -134,9 +134,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // Infer the date format from a date string const inferDateFormat = (dateString: string): string | null => { for (const format of commonDateFormats) { - console.log('inferring', dateString, format); const parsedDate = parse(dateString, format, new Date()); - console.log('parsedDate', parsedDate); if (isValid(parsedDate)) { return format; // Return the format if the date is valid } @@ -182,17 +180,15 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return; } - // I think i want to replace filters? - // or save old ones and reapply them when turning temporal off? - // Really i want this filter to work with existing filters - // I want to replace the one being added instead of adding a new one - // add a type or source or something to the filter item?? const oldFilters = layer.filters?.appliedFilters; const newFilters = oldFilters ? [...oldFilters] : []; // if no filters then add this one // if there are filters we want to replace time one // assume that is the last entry for now + // TODO Need a better way to distinguish time slider filter from other filers + // ? Could have a source attribute on the filter item object or something + // ? Could even do this in memory without writing to jgis file? if (newFilters.length === 0) { newFilters.push(newFilter); } else { @@ -201,7 +197,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; model.sharedModel.updateLayer(layerId, layer); - // model.addFeatureTimeThins(layerId, selectedFeature, newFilter); }; const setFeature = (e: any) => { @@ -214,7 +209,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { <>
- {validFeatures.map(feature => { return ( @@ -229,23 +225,9 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
- {inferredDateFormat && - millisecondsToDateString(range.start, inferredDateFormat)} -
- -
- {inferredDateFormat && - millisecondsToDateString(range.end, inferredDateFormat)} -
- -
+ @@ -224,6 +236,38 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { })}
+ {/* Current frame */} +
+ Current Frame:{' '} + {millisecondsToDateString(range.start, inferredDateFormat)} ≤ t ≤{' '} + {millisecondsToDateString(range.end, inferredDateFormat)} +
+
+
+ {/* controls */} +
+ +
+ {/* slider */} +
+ +
+
+
+ {/* range */} +
+ Animation Range:{' '} + {millisecondsToDateString(minMax.min, inferredDateFormat)} to{' '} + {millisecondsToDateString(minMax.max, inferredDateFormat)} +
+ {/* step */}
-
-
{inferredDateFormat && currentValue}
- -
- {inferredDateFormat && - millisecondsToDateString(range.end, inferredDateFormat)} -
-
) : (
Select a layer
diff --git a/packages/base/style/temporalSlider.css b/packages/base/style/temporalSlider.css index b98163910..b471a4d4f 100644 --- a/packages/base/style/temporalSlider.css +++ b/packages/base/style/temporalSlider.css @@ -12,4 +12,5 @@ .jp-gis-temporal-slider { flex: 1 0 40%; + min-width: 300px; } From 08890e9ab749e66083399b2974a6c8c5d32e6f4c Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 4 Feb 2025 12:44:09 +0100 Subject: [PATCH 21/59] Refactor filters logic --- packages/base/src/mainview/TemporalSlider.tsx | 14 +++++-- packages/base/src/mainview/mainView.tsx | 37 ++++++++----------- packages/schema/src/schema/jgis.json | 8 +++- 3 files changed, 33 insertions(+), 26 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index b8b9aad77..1bd42616e 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -178,12 +178,20 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { console.log('currentValueString', currentValueString); setRange({ start: +e.target.value, end: +e.target.value + step }); + // const newFilter = { + // feature: `converted${selectedFeature}`, + // operator: '>=' as const, + // value: +e.target.value + // }; + + // Between returns true if value is between value2 and value3 (inclusive) const newFilter = { feature: `converted${selectedFeature}`, - operator: '>=' as const, - value: +e.target.value + operator: 'between' as const, + value: +e.target.value, + betweenMin: +e.target.value, + betweenMax: +e.target.value + step }; - // setCurrentValue(currentValueString); const layer = model.getLayer(layerId); diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 1e2b15d7e..ec37ed65c 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -7,6 +7,7 @@ import { IHillshadeLayer, IImageLayer, IImageSource, + IJGISFilterItem, IJGISLayer, IJGISLayerDocChange, IJGISLayerTreeDocChange, @@ -1019,34 +1020,26 @@ export class MainView extends React.Component { const layerStyle = { ...defaultRules }; - if ( - layer.filters && - layer.filters.logicalOp && - layer.filters.appliedFilters.length !== 0 - ) { - const filterExpr: any[] = []; + if (layer.filters?.logicalOp && layer.filters.appliedFilters?.length > 0) { + const buildCondition = (filter: IJGISFilterItem): any[] => { + const base = [filter.operator, ['get', filter.feature]]; + return filter.operator === 'between' + ? [...base, filter.betweenMin, filter.betweenMax] + : [...base, filter.value]; + }; + + let filterExpr: any[]; // 'Any' and 'All' operators require more than one argument // So if there's only one filter, skip that part to avoid error if (layer.filters.appliedFilters.length === 1) { - layer.filters.appliedFilters.forEach(filter => { - filterExpr.push( - filter.operator, - ['get', filter.feature], - filter.value - ); - }); + filterExpr = buildCondition(layer.filters.appliedFilters[0]); } else { - filterExpr.push(layer.filters.logicalOp); - // Arguments for "Any" and 'All' need to be wrapped in brackets - layer.filters.appliedFilters.forEach(filter => { - filterExpr.push([ - filter.operator, - ['get', filter.feature], - filter.value - ]); - }); + filterExpr = [ + layer.filters.logicalOp, + ...layer.filters.appliedFilters.map(buildCondition) + ]; } layerStyle.filter = filterExpr; diff --git a/packages/schema/src/schema/jgis.json b/packages/schema/src/schema/jgis.json index 50813af40..54dc3dde1 100644 --- a/packages/schema/src/schema/jgis.json +++ b/packages/schema/src/schema/jgis.json @@ -206,7 +206,7 @@ "properties": { "operator": { "type": "string", - "enum": ["==", "!=", ">", "<", ">=", "<="], + "enum": ["==", "!=", ">", "<", ">=", "<=", "between"], "default": "==" }, "feature": { @@ -215,6 +215,12 @@ }, "value": { "type": ["string", "number"] + }, + "betweenMin": { + "type": ["string", "number"] + }, + "betweenMax": { + "type": ["string", "number"] } } }, From 072f27d108771619c5287eb72c63613aa6d00126 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 4 Feb 2025 13:55:28 +0100 Subject: [PATCH 22/59] Make the icon toggleable --- packages/base/src/commands.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 04fd8ca1f..446745eec 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -172,6 +172,9 @@ export function addCommands( commands.addCommand(CommandIDs.temporal, { label: trans.__('Temporal'), + isToggled: () => { + return tracker.currentWidget?.context.model.isTemporal || false; + }, isEnabled: () => { return tracker.currentWidget ? tracker.currentWidget.context.model.sharedModel.editable @@ -182,8 +185,9 @@ export function addCommands( if (!current) { return; } + current.context.model.toggleTemporal(CommandIDs.temporal); - commands.notifyCommandChanged(CommandIDs.identify); + commands.notifyCommandChanged(CommandIDs.temporal); }, ...icons.get(CommandIDs.temporal) }); From ca26e3de4f7f7d7f5a57a6b945e34229d3788887 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 4 Feb 2025 13:56:04 +0100 Subject: [PATCH 23/59] Refactor adding filter in slider component --- packages/base/src/mainview/TemporalSlider.tsx | 42 +++++++++---------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 1bd42616e..1e0dd4517 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -75,7 +75,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { for (const [key, set] of Object.entries(featureProps)) { let checkIfDateIsValid = false; const checkValue = set.values().next().value; - console.log('checking ', key, checkValue); + // console.log('checking ', key, checkValue); // We only want to look at strings and whole numbers // ? Is there a better way to check if number values are valid timestamps? @@ -174,17 +174,10 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { +e.target.value, inferredDateFormat ); - console.log('currentValueString', currentValueString); setRange({ start: +e.target.value, end: +e.target.value + step }); - // const newFilter = { - // feature: `converted${selectedFeature}`, - // operator: '>=' as const, - // value: +e.target.value - // }; - // Between returns true if value is between value2 and value3 (inclusive) const newFilter = { feature: `converted${selectedFeature}`, operator: 'between' as const, @@ -192,29 +185,34 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { betweenMin: +e.target.value, betweenMax: +e.target.value + step }; - // setCurrentValue(currentValueString); const layer = model.getLayer(layerId); if (!layer) { return; } - const oldFilters = layer.filters?.appliedFilters; - const newFilters = oldFilters ? [...oldFilters] : []; - - // if no filters then add this one - // if there are filters we want to replace time one - // assume that is the last entry for now - // TODO Need a better way to distinguish time slider filter from other filers - // ? Could have a source attribute on the filter item object or something - // ? Could even do this in memory without writing to jgis file? - if (newFilters.length === 0) { - newFilters.push(newFilter); + const appliedFilters = layer.filters?.appliedFilters || []; + + // This is the only way to add a 'between' filter so + // find the index of the existing 'between' filter + const betweenFilterIndex = appliedFilters.findIndex( + filter => filter.operator === 'between' + ); + + // console.log('betweenFilterIndex', betweenFilterIndex); + + if (betweenFilterIndex !== -1) { + // If found, replace the existing filter + appliedFilters[betweenFilterIndex] = { + ...newFilter + }; } else { - newFilters.splice(newFilters.length - 1, 1, newFilter); + // If not found, add the new filter + appliedFilters.push(newFilter); } - layer.filters = { logicalOp: 'all', appliedFilters: newFilters }; + // Apply the updated filters to the layer + layer.filters = { logicalOp: 'all', appliedFilters }; model.sharedModel.updateLayer(layerId, layer); }; From 632f4c321f454b16595548148baa43735369643a Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 4 Feb 2025 15:03:03 +0100 Subject: [PATCH 24/59] Do time filtering in memory --- packages/base/src/mainview/TemporalSlider.tsx | 3 ++- packages/base/src/mainview/mainView.tsx | 24 +++++++++++++++---- packages/schema/src/interfaces.ts | 3 +++ packages/schema/src/model.ts | 11 ++++++++- 4 files changed, 35 insertions(+), 6 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 1e0dd4517..80325677b 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -213,7 +213,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // Apply the updated filters to the layer layer.filters = { logicalOp: 'all', appliedFilters }; - model.sharedModel.updateLayer(layerId, layer); + // model.sharedModel.updateLayer(layerId, layer); + model.updateLayersOnCommand(layerId, layer); }; const setFeature = (e: any) => { diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index ec37ed65c..f7b4e3a21 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -133,6 +133,22 @@ export class MainView extends React.Component { ); this._model.zoomToPositionSignal.connect(this._onZoomToPosition, this); + this._model.updateLayersSignal.connect((_, args) => { + // ? could send just the filters object and modify that instead of emitting whole layer + const json = JSON.parse(args); + console.log('json', json); + const { layerId, layer: jgisLayer } = json; + console.log('id', layerId); + const olLayer = this.getLayer(layerId); + + if (!jgisLayer) { + console.log('Layer not found'); + return; + } + + this.updateLayer(layerId, jgisLayer, olLayer); + }); + this.state = { id: this._mainViewModel.id, lightTheme: isLightTheme(), @@ -1116,8 +1132,8 @@ export class MainView extends React.Component { async updateLayer( id: string, layer: IJGISLayer, - oldLayer: IDict, - mapLayer: Layer + mapLayer: Layer, + oldLayer?: IDict ): Promise { const sourceId = layer.parameters?.source; const source = this._model.sharedModel.getLayerSource(sourceId); @@ -1179,7 +1195,7 @@ export class MainView extends React.Component { const layerParams = layer.parameters as IHeatmapLayer; const heatmap = mapLayer as HeatmapLayer; - if (oldLayer.feature !== layerParams.feature) { + if (oldLayer?.feature !== layerParams.feature) { // No way to change 'weight' attribute (feature used for heatmap stuff) so need to replace layer this.replaceLayer(id, layer); return; @@ -1502,7 +1518,7 @@ export class MainView extends React.Component { } if (layerTree.includes(id)) { - this.updateLayer(id, newLayer, oldLayer, mapLayer); + this.updateLayer(id, newLayer, mapLayer, oldLayer); } else { this.updateLayers(layerTree); } diff --git a/packages/schema/src/interfaces.ts b/packages/schema/src/interfaces.ts index 297e7f051..47348c47b 100644 --- a/packages/schema/src/interfaces.ts +++ b/packages/schema/src/interfaces.ts @@ -169,6 +169,8 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { sharedMetadataChanged: ISignal; zoomToPositionSignal: ISignal; addFeaturesSignal: ISignal; + updateLayersSignal: ISignal; + contentsManager: Contents.IManager | undefined; filePath: string; @@ -217,6 +219,7 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { isTemporal: boolean; toggleTemporal(emitter: string): void; addTimeFeature(id: string, selectedFeature: string): void; + updateLayersOnCommand(layerId: string, layer: IJGISLayer): void; disposed: ISignal; } diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index ce840d438..9c4a14e7b 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -4,7 +4,6 @@ import { DocumentRegistry } from '@jupyterlab/docregistry'; import { PartialJSONObject } from '@lumino/coreutils'; import { ISignal, Signal } from '@lumino/signaling'; import Ajv from 'ajv'; - import { Contents } from '@jupyterlab/services'; import { IJGISContent, @@ -693,6 +692,14 @@ export class JupyterGISModel implements IJupyterGISModel { return this._addFeaturesSignal; } + get updateLayersSignal() { + return this._updateLayersSignal; + } + + updateLayersOnCommand = (layerId: string, layer: IJGISLayer) => { + this.updateLayersSignal.emit(JSON.stringify({ layerId, layer })); + }; + readonly defaultKernelName: string = ''; readonly defaultKernelLanguage: string = ''; readonly annotationModel?: IAnnotationModel; @@ -720,6 +727,8 @@ export class JupyterGISModel implements IJupyterGISModel { private _addFeaturesSignal = new Signal(this); + private _updateLayersSignal = new Signal(this); + private _isIdentifying = false; private _isTemporal = false; From f3dde9cc365aefa4ceb98fa7a52b2801e6a06033 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 5 Feb 2025 11:57:39 +0100 Subject: [PATCH 25/59] Save --- packages/base/src/mainview/TemporalSlider.tsx | 79 +++++++++++++++++-- 1 file changed, 71 insertions(+), 8 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 80325677b..210f15f4e 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,6 +1,6 @@ import { faPlay } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { Slider } from '@jupyter/react-components'; +import { Button, Slider } from '@jupyter/react-components'; import { IJupyterGISModel } from '@jupytergis/schema'; import { format, isValid, parse, toDate } from 'date-fns'; import { @@ -11,7 +11,7 @@ import { millisecondsInWeek, minutesInMonth } from 'date-fns/constants'; -import React, { useEffect, useState } from 'react'; +import React, { useEffect, useRef, useState } from 'react'; import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; interface ITemporalSliderProps { @@ -53,6 +53,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [step, setStep] = useState(stepMap.year); const [currentValue, setCurrentValue] = useState(0); + const intervalRef = useRef(null); + const { featureProps } = useGetProperties({ layerId, model }); useEffect(() => { @@ -66,7 +68,13 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const selectedLayerId = Object.keys(selectedLayer)[0]; setLayerId(selectedLayerId); - }); + + return () => { + if (intervalRef.current) { + clearInterval(intervalRef.current); + } + }; + }, []); useEffect(() => { const featuresForSelect = []; @@ -176,14 +184,19 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { ); console.log('currentValueString', currentValueString); + setCurrentValue(+e.target.value); setRange({ start: +e.target.value, end: +e.target.value + step }); + // applyFilter(+e.target.value); + }; + + const applyFilter = (value: number) => { const newFilter = { feature: `converted${selectedFeature}`, operator: 'between' as const, - value: +e.target.value, - betweenMin: +e.target.value, - betweenMax: +e.target.value + step + value: value, + betweenMin: value, + betweenMax: value + step }; const layer = model.getLayer(layerId); @@ -221,6 +234,50 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { setSelectedFeature(e.target.value); }; + useEffect(() => { + console.log( + 'currentValue', + millisecondsToDateString(currentValue, inferredDateFormat) + ); + applyFilter(currentValue); + }, [currentValue]); + + const handleAnimation = () => { + // Clear any existing interval first + if (intervalRef.current) { + clearInterval(intervalRef.current); + } + + const incrementValue = () => { + setCurrentValue(prev => { + // Stop condition check + if (prev >= minMax.max) { + console.log('shouldnt happen'); + if (intervalRef.current) { + clearInterval(intervalRef.current); + } + return prev; + } + + // Calculate next value with safety bounds + const nextValue = Math.min(prev + step, minMax.max); + + // Clear interval if we've reached the max + if (nextValue === minMax.max && intervalRef.current) { + clearInterval(intervalRef.current); + return minMax.max - step; + } + + return nextValue; + }); + }; + + // Start animation only if needed + intervalRef.current = setInterval(incrementValue, 1000); + // if (currentValue < minMax.max) { + // } + }; + return (
{layerId ? ( @@ -253,14 +310,20 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
{/* controls */}
- +
{/* slider */}
Date: Wed, 5 Feb 2025 14:02:35 +0100 Subject: [PATCH 26/59] CSS --- packages/base/src/mainview/TemporalSlider.tsx | 66 +++++++++++++------ packages/base/style/temporalSlider.css | 15 ++++- 2 files changed, 59 insertions(+), 22 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 210f15f4e..be991dabc 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,4 +1,4 @@ -import { faPlay } from '@fortawesome/free-solid-svg-icons'; +import { faPause, faPlay } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Button, Slider } from '@jupyter/react-components'; import { IJupyterGISModel } from '@jupytergis/schema'; @@ -141,6 +141,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const max = Math.max(...convertedValues); // Update the range and minMax state + console.log('check'); setCurrentValue(min); setMinMax({ min, max }); setRange({ start: min, end: min + step }); @@ -178,16 +179,18 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; const handleChange = (e: any) => { - const currentValueString = millisecondsToDateString( - +e.target.value, - inferredDateFormat - ); - console.log('currentValueString', currentValueString); + // const currentValueStringTarget = millisecondsToDateString( + // +e.target.value, + // inferredDateFormat + // ); + // console.log('currentValueString target', currentValueStringTarget); + + console.log('+e.target.value', +e.target.value); setCurrentValue(+e.target.value); setRange({ start: +e.target.value, end: +e.target.value + step }); - // applyFilter(+e.target.value); + applyFilter(+e.target.value); }; const applyFilter = (value: number) => { @@ -235,14 +238,20 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; useEffect(() => { - console.log( - 'currentValue', - millisecondsToDateString(currentValue, inferredDateFormat) + // console.log( + // 'currentValue', + // millisecondsToDateString(currentValue, inferredDateFormat) + // ); + // applyFilter(currentValue); + + const currentValueStringCurrent = millisecondsToDateString( + currentValue, + inferredDateFormat ); - applyFilter(currentValue); + console.log('currentValueString current', currentValueStringCurrent); }, [currentValue]); - const handleAnimation = () => { + const playAnimation = () => { // Clear any existing interval first if (intervalRef.current) { clearInterval(intervalRef.current); @@ -260,12 +269,12 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } // Calculate next value with safety bounds - const nextValue = Math.min(prev + step, minMax.max); + const nextValue = prev + step; // Clear interval if we've reached the max - if (nextValue === minMax.max && intervalRef.current) { + if (nextValue >= minMax.max - step && intervalRef.current) { clearInterval(intervalRef.current); - return minMax.max - step; + return minMax.max - step; // Ensure it reaches the exact max value } return nextValue; @@ -278,6 +287,12 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // } }; + const pauseAnimation = () => { + if (intervalRef.current) { + clearInterval(intervalRef.current); + } + }; + return (
{layerId ? ( @@ -302,18 +317,26 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
{/* Current frame */}
- Current Frame:{' '} - {millisecondsToDateString(range.start, inferredDateFormat)} ≤ t ≤{' '} + Current Frame:{' '} + {millisecondsToDateString(range.start, inferredDateFormat)} ≤{' '} + t ≤{' '} {millisecondsToDateString(range.end, inferredDateFormat)}
{/* controls */} -
+
+ @@ -333,8 +356,9 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
{/* range */}
- Animation Range:{' '} - {millisecondsToDateString(minMax.min, inferredDateFormat)} to{' '} + Range: + {millisecondsToDateString(minMax.min, inferredDateFormat)}{' '} + to {millisecondsToDateString(minMax.max, inferredDateFormat)}
{/* step */} diff --git a/packages/base/style/temporalSlider.css b/packages/base/style/temporalSlider.css index b471a4d4f..f85a63f96 100644 --- a/packages/base/style/temporalSlider.css +++ b/packages/base/style/temporalSlider.css @@ -2,12 +2,25 @@ display: flex; flex-direction: column; gap: 0.2rem; + padding: 0.5rem; + background-color: var(--jp-layout-color1); +} + +.jp-gis-temporal-slider-container span, +.jp-gis-temporal-slider-container label { + font-weight: bold; } .jp-gis-temporal-slider-row { display: flex; gap: 0.25rem; - justify-content: space-around; + justify-content: space-between; + align-items: center; +} + +.jp-gis-temporal-slider-row select, +.jp-gis-temporal-slider-row option { + text-transform: capitalize; } .jp-gis-temporal-slider { From 4b01226d5f1e54a214a07af48496007ff88a7f75 Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 6 Feb 2025 11:03:48 +0100 Subject: [PATCH 27/59] Clean up --- packages/base/src/commands.ts | 16 ++-- packages/base/src/constants.ts | 4 +- .../symbology/hooks/useGetProperties.ts | 9 +- .../vector_layer/types/Categorized.tsx | 12 +-- .../vector_layer/types/Graduated.tsx | 13 ++- packages/base/src/mainview/TemporalSlider.tsx | 88 +++++-------------- packages/base/src/mainview/mainView.tsx | 87 ++++++++++-------- packages/base/src/toolbar/widget.tsx | 4 +- packages/base/src/tools.ts | 8 +- packages/base/style/temporalSlider.css | 4 +- packages/schema/src/interfaces.ts | 14 +-- packages/schema/src/model.ts | 47 +++++----- packages/schema/src/schema/jgis.json | 4 +- 13 files changed, 137 insertions(+), 173 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 446745eec..6ec6aea34 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -170,10 +170,12 @@ export function addCommands( ...icons.get(CommandIDs.identify) }); - commands.addCommand(CommandIDs.temporal, { - label: trans.__('Temporal'), + commands.addCommand(CommandIDs.temporalController, { + label: trans.__('Temporal Controller'), isToggled: () => { - return tracker.currentWidget?.context.model.isTemporal || false; + return ( + tracker.currentWidget?.context.model.isTemporalControllerActive || false + ); }, isEnabled: () => { return tracker.currentWidget @@ -186,10 +188,12 @@ export function addCommands( return; } - current.context.model.toggleTemporal(CommandIDs.temporal); - commands.notifyCommandChanged(CommandIDs.temporal); + current.context.model.toggleTemporalController( + CommandIDs.temporalController + ); + commands.notifyCommandChanged(CommandIDs.temporalController); }, - ...icons.get(CommandIDs.temporal) + ...icons.get(CommandIDs.temporalController) }); /** diff --git a/packages/base/src/constants.ts b/packages/base/src/constants.ts index ced61d109..d87009d0a 100644 --- a/packages/base/src/constants.ts +++ b/packages/base/src/constants.ts @@ -10,7 +10,7 @@ export namespace CommandIDs { export const undo = 'jupytergis:undo'; export const symbology = 'jupytergis:symbology'; export const identify = 'jupytergis:identify'; - export const temporal = 'jupytergis:temporal'; + export const temporalController = 'jupytergis:temporalController'; // Layers and sources creation commands export const openLayerBrowser = 'jupytergis:openLayerBrowser'; @@ -101,7 +101,7 @@ const iconObject = { [CommandIDs.newGeoTiffEntry]: { iconClass: 'fa fa-image' }, [CommandIDs.symbology]: { iconClass: 'fa fa-brush' }, [CommandIDs.identify]: { iconClass: 'fa fa-info' }, - [CommandIDs.temporal]: { iconClass: 'fa fa-clock' } + [CommandIDs.temporalController]: { iconClass: 'fa fa-clock' } }; /** diff --git a/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts b/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts index 59a28ce3e..a7ea81e59 100644 --- a/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts +++ b/packages/base/src/dialogs/symbology/hooks/useGetProperties.ts @@ -10,7 +10,7 @@ interface IUseGetPropertiesProps { } interface IUseGetPropertiesResult { - featureProps: Record>; + featureProperties: Record>; isLoading: boolean; error?: Error; } @@ -19,7 +19,7 @@ export const useGetProperties = ({ layerId, model }: IUseGetPropertiesProps): IUseGetPropertiesResult => { - const [featureProps, setFeatureProps] = useState({}); + const [featureProperties, setFeatureProperties] = useState({}); const [isLoading, setIsLoading] = useState(true); const [error, setError] = useState(undefined); @@ -59,8 +59,7 @@ export const useGetProperties = ({ } }); - setFeatureProps(result); - console.log('result', result); + setFeatureProperties(result); setIsLoading(false); } catch (err) { setError(err as Error); @@ -72,5 +71,5 @@ export const useGetProperties = ({ getProperties(); }, [model, layerId]); - return { featureProps, isLoading, error }; + return { featureProperties, isLoading, error }; }; diff --git a/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx b/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx index a2d451f94..fa2ad38e0 100644 --- a/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx +++ b/packages/base/src/dialogs/symbology/vector_layer/types/Categorized.tsx @@ -2,7 +2,7 @@ import { IVectorLayer } from '@jupytergis/schema'; import { ReadonlyJSONObject } from '@lumino/coreutils'; import { ExpressionValue } from 'ol/expr/expression'; import React, { useEffect, useRef, useState } from 'react'; -import { filterFeatureProperties } from '../../../../tools'; +import { getNumericFeatures } from '../../../../tools'; import ColorRamp from '../../components/color_ramp/ColorRamp'; import StopContainer from '../../components/color_stops/StopContainer'; import { useGetProperties } from '../../hooks/useGetProperties'; @@ -35,7 +35,7 @@ const Categorized = ({ if (!layer?.parameters) { return; } - const { featureProps } = useGetProperties({ + const { featureProperties } = useGetProperties({ layerId, model: model }); @@ -58,16 +58,16 @@ const Categorized = ({ useEffect(() => { // We only want number values here - const filteredRecord = filterFeatureProperties(featureProps); + const numericFeatures = getNumericFeatures(featureProperties); - setFeatures(filteredRecord); + setFeatures(numericFeatures); const layerParams = layer.parameters as IVectorLayer; const value = - layerParams.symbologyState?.value ?? Object.keys(filteredRecord)[0]; + layerParams.symbologyState?.value ?? Object.keys(numericFeatures)[0]; setSelectedValue(value); - }, [featureProps]); + }, [featureProperties]); useEffect(() => { selectedValueRef.current = selectedValue; diff --git a/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx b/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx index c04cd8c29..f28047a1c 100644 --- a/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx +++ b/packages/base/src/dialogs/symbology/vector_layer/types/Graduated.tsx @@ -1,7 +1,7 @@ import { IVectorLayer } from '@jupytergis/schema'; import { ExpressionValue } from 'ol/expr/expression'; import React, { useEffect, useRef, useState } from 'react'; -import { filterFeatureProperties } from '../../../../tools'; +import { getNumericFeatures } from '../../../../tools'; import { VectorClassifications } from '../../classificationModes'; import ColorRamp, { ColorRampOptions @@ -49,7 +49,7 @@ const Graduated = ({ return; } - const { featureProps } = useGetProperties({ + const { featureProperties } = useGetProperties({ layerId, model: model }); @@ -94,20 +94,19 @@ const Graduated = ({ setMethodOptions(options); } - console.log('featureProps', featureProps); // We only want number values here - const filteredRecord = filterFeatureProperties(featureProps); + const numericFeatures = getNumericFeatures(featureProperties); - setFeatures(filteredRecord); + setFeatures(numericFeatures); const layerParams = layer.parameters as IVectorLayer; const value = - layerParams.symbologyState?.value ?? Object.keys(filteredRecord)[0]; + layerParams.symbologyState?.value ?? Object.keys(numericFeatures)[0]; const method = layerParams.symbologyState?.method ?? 'color'; setSelectedValue(value); setSelectedMethod(method); - }, [featureProps]); + }, [featureProperties]); const handleOk = () => { if (!layer.parameters) { diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index be991dabc..7e983d79e 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -43,19 +43,16 @@ const stepMap = { const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); const [selectedFeature, setSelectedFeature] = useState(''); - // min/max of current range being displayed - const [range, setRange] = useState({ start: 0, end: 1 }); - // min/max of data - const [minMax, setMinMax] = useState({ min: 0, max: 1 }); + const [range, setRange] = useState({ start: 0, end: 1 }); // min/max of current range being displayed + const [minMax, setMinMax] = useState({ min: 0, max: 1 }); // min/max of data values const [validFeatures, setValidFeatures] = useState([]); - const [inferredDateFormat, setInferredDateFormat] = useState('yyyy-MM-dd'); const [step, setStep] = useState(stepMap.year); const [currentValue, setCurrentValue] = useState(0); const intervalRef = useRef(null); - const { featureProps } = useGetProperties({ layerId, model }); + const { featureProperties } = useGetProperties({ layerId, model }); useEffect(() => { const localState = model.sharedModel.awareness.getLocalState(); @@ -80,10 +77,9 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const featuresForSelect = []; // We only want to show features that could be time values - for (const [key, set] of Object.entries(featureProps)) { + for (const [key, set] of Object.entries(featureProperties)) { let checkIfDateIsValid = false; const checkValue = set.values().next().value; - // console.log('checking ', key, checkValue); // We only want to look at strings and whole numbers // ? Is there a better way to check if number values are valid timestamps? @@ -107,7 +103,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } setValidFeatures(featuresForSelect); - }, [layerId, featureProps]); + }, [featureProperties]); useEffect(() => { if (!selectedFeature) { @@ -115,7 +111,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } // Get the values from the selected feature - const values: any[] = Array.from(featureProps[selectedFeature]); + const values: any[] = Array.from(featureProperties[selectedFeature]); // Check the type of the first element const isString = typeof values[0] === 'string'; @@ -141,11 +137,10 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const max = Math.max(...convertedValues); // Update the range and minMax state - console.log('check'); setCurrentValue(min); setMinMax({ min, max }); setRange({ start: min, end: min + step }); - model.addTimeFeature(layerId, selectedFeature); + model.addFeatureAsMs(layerId, selectedFeature); }, [selectedFeature]); // Infer the date format from a date string @@ -159,15 +154,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return null; // Return null if no format matches }; - // Convert a date string to milliseconds - // const dateStringToMilliseconds = ( - // dateString: string, - // dateFormat: string - // ): number => { - // const date = parse(dateString, dateFormat, new Date()); // Parse the date string - // return date.getUTCMilliseconds(); // Convert to milliseconds - // }; - // Convert milliseconds back to the original date string format // TODO I'm pretty sure this ends up in local time, not UTC time const millisecondsToDateString = ( @@ -179,23 +165,14 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; const handleChange = (e: any) => { - // const currentValueStringTarget = millisecondsToDateString( - // +e.target.value, - // inferredDateFormat - // ); - - // console.log('currentValueString target', currentValueStringTarget); - - console.log('+e.target.value', +e.target.value); setCurrentValue(+e.target.value); setRange({ start: +e.target.value, end: +e.target.value + step }); - applyFilter(+e.target.value); }; const applyFilter = (value: number) => { const newFilter = { - feature: `converted${selectedFeature}`, + feature: `${selectedFeature}ms`, operator: 'between' as const, value: value, betweenMin: value, @@ -208,6 +185,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } const appliedFilters = layer.filters?.appliedFilters || []; + const logicalOp = layer.filters?.logicalOp || 'all'; // This is the only way to add a 'between' filter so // find the index of the existing 'between' filter @@ -215,8 +193,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { filter => filter.operator === 'between' ); - // console.log('betweenFilterIndex', betweenFilterIndex); - if (betweenFilterIndex !== -1) { // If found, replace the existing filter appliedFilters[betweenFilterIndex] = { @@ -228,29 +204,10 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } // Apply the updated filters to the layer - layer.filters = { logicalOp: 'all', appliedFilters }; - // model.sharedModel.updateLayer(layerId, layer); - model.updateLayersOnCommand(layerId, layer); - }; - - const setFeature = (e: any) => { - setSelectedFeature(e.target.value); + layer.filters = { logicalOp, appliedFilters }; + model.triggerLayerUpdate(layerId, layer); }; - useEffect(() => { - // console.log( - // 'currentValue', - // millisecondsToDateString(currentValue, inferredDateFormat) - // ); - // applyFilter(currentValue); - - const currentValueStringCurrent = millisecondsToDateString( - currentValue, - inferredDateFormat - ); - console.log('currentValueString current', currentValueStringCurrent); - }, [currentValue]); - const playAnimation = () => { // Clear any existing interval first if (intervalRef.current) { @@ -259,32 +216,22 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const incrementValue = () => { setCurrentValue(prev => { - // Stop condition check - if (prev >= minMax.max) { - console.log('shouldnt happen'); - if (intervalRef.current) { - clearInterval(intervalRef.current); - } - return prev; - } - // Calculate next value with safety bounds const nextValue = prev + step; // Clear interval if we've reached the max + // step is subtracted to keep range values correct if (nextValue >= minMax.max - step && intervalRef.current) { clearInterval(intervalRef.current); - return minMax.max - step; // Ensure it reaches the exact max value + return minMax.max - step; } return nextValue; }); }; - // Start animation only if needed + // Start animation intervalRef.current = setInterval(incrementValue, 1000); - // if (currentValue < minMax.max) { - // } }; const pauseAnimation = () => { @@ -301,7 +248,12 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { {/* Feature select */}
- { + setSelectedFeature(e.target.value); + }} + > {validFeatures.map(feature => { return ( diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index f7b4e3a21..4ff17105a 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -28,6 +28,7 @@ import { IWebGlLayer, JupyterGISModel } from '@jupytergis/schema'; +import { showErrorMessage } from '@jupyterlab/apputils'; import { IObservableMap, ObservableMap } from '@jupyterlab/observables'; import { User } from '@jupyterlab/services'; import { CommandRegistry } from '@lumino/commands'; @@ -83,7 +84,6 @@ import { FollowIndicator } from './FollowIndicator'; import TemporalSlider from './TemporalSlider'; import { MainViewModel } from './mainviewmodel'; import { Spinner } from './spinner'; -import { showErrorMessage } from '@jupyterlab/apputils'; interface IProps { viewModel: MainViewModel; @@ -102,7 +102,7 @@ interface IStates { loadingLayer: boolean; scale: number; loadingErrors: Array<{ id: string; error: any; index: number }>; - displayTimeBar: boolean; + displayTemporalController: boolean; } export class MainView extends React.Component { @@ -127,27 +127,13 @@ export class MainView extends React.Component { this._model.sharedLayerTreeChanged.connect(this._onLayerTreeChange, this); this._model.sharedSourcesChanged.connect(this._onSourcesChange, this); this._model.sharedModel.changed.connect(this._onSharedModelStateChange); - this._mainViewModel.jGISModel.sharedMetadataChanged.connect( + this._model.sharedMetadataChanged.connect( this._onSharedMetadataChanged, this ); this._model.zoomToPositionSignal.connect(this._onZoomToPosition, this); - - this._model.updateLayersSignal.connect((_, args) => { - // ? could send just the filters object and modify that instead of emitting whole layer - const json = JSON.parse(args); - console.log('json', json); - const { layerId, layer: jgisLayer } = json; - console.log('id', layerId); - const olLayer = this.getLayer(layerId); - - if (!jgisLayer) { - console.log('Layer not found'); - return; - } - - this.updateLayer(layerId, jgisLayer, olLayer); - }); + this._model.updateLayerSignal.connect(this._triggerLayerUpdate, this); + this._model.addFeatureAsMsSignal.connect(this._convertFeatureToMs, this); this.state = { id: this._mainViewModel.id, @@ -160,22 +146,9 @@ export class MainView extends React.Component { loadingLayer: false, scale: 0, loadingErrors: [], - displayTimeBar: false + displayTemporalController: false }; - this._model.addFeaturesSignal.connect((_, args) => { - const json = JSON.parse(args); - const { id: layerId, selectedFeature } = json; - const olLayer = this.getLayer(layerId); - const source = olLayer.getSource() as VectorSource; - - source.forEachFeature(feature => { - const time = feature.get(selectedFeature); - const parsedTime = typeof time === 'string' ? Date.parse(time) : time; - feature.set(`converted${selectedFeature}`, parsedTime); - }); - }); - this._sources = []; this._loadingLayers = new Set(); this._commands = new CommandRegistry(); @@ -1346,11 +1319,17 @@ export class MainView extends React.Component { this.setState(old => ({ ...old, clientPointers: clientPointers })); }); - // Time stuff - // TODO: Temporary? - const isTemporal = this._model.localState?.isTemporal; - if (isTemporal) { - this.setState(old => ({ ...old, displayTimeBar: isTemporal })); + // Temporal controller bit + // ? There's probably a better way to get changes in the model to trigger react rerenders + const isTemporalControllerActive = + this._model.localState?.isTemporalControllerActive; + + if (isTemporalControllerActive) { + console.log('isTemporalControllerActive', isTemporalControllerActive); + this.setState(old => ({ + ...old, + displayTemporalController: isTemporalControllerActive + })); } }; @@ -1559,6 +1538,7 @@ export class MainView extends React.Component { _: any, change: IJupyterGISDocChange ) => { + console.log('change', change); const changedState = change.stateChange?.map(value => value.name); if (!changedState?.includes('path')) { return; @@ -1747,6 +1727,33 @@ export class MainView extends React.Component { } } + private _triggerLayerUpdate(_: IJupyterGISModel, args: string) { + // ? could send just the filters object and modify that instead of emitting whole layer + const json = JSON.parse(args); + const { layerId, layer: jgisLayer } = json; + const olLayer = this.getLayer(layerId); + + if (!jgisLayer) { + console.log('Layer not found'); + return; + } + + this.updateLayer(layerId, jgisLayer, olLayer); + } + + private _convertFeatureToMs(_: IJupyterGISModel, args: string) { + const json = JSON.parse(args); + const { id: layerId, selectedFeature } = json; + const olLayer = this.getLayer(layerId); + const source = olLayer.getSource() as VectorSource; + + source.forEachFeature(feature => { + const time = feature.get(selectedFeature); + const parsedTime = typeof time === 'string' ? Date.parse(time) : time; + feature.set(`${selectedFeature}ms`, parsedTime); + }); + } + private _handleThemeChange = (): void => { const lightTheme = isLightTheme(); @@ -1788,7 +1795,9 @@ export class MainView extends React.Component { ); })} - {this._model.isTemporal && } + {this._model.isTemporalControllerActive && ( + + )}
> +export const getNumericFeatures = ( + featureProperties: Record> ) => { // We only want number values here const filteredRecord: Record> = {}; - for (const [key, set] of Object.entries(featureProps)) { - // Get the first value in the Set + for (const [key, set] of Object.entries(featureProperties)) { const firstValue = set.values().next().value; // Check if the first value is a string that cannot be parsed as a number const isInvalidString = typeof firstValue === 'string' && isNaN(Number(firstValue)); - // If the first value is not an invalid string, add the Set to the filtered record if (!isInvalidString) { filteredRecord[key] = set; } diff --git a/packages/base/style/temporalSlider.css b/packages/base/style/temporalSlider.css index f85a63f96..42425b988 100644 --- a/packages/base/style/temporalSlider.css +++ b/packages/base/style/temporalSlider.css @@ -18,8 +18,8 @@ align-items: center; } -.jp-gis-temporal-slider-row select, -.jp-gis-temporal-slider-row option { +select, +select option { text-transform: capitalize; } diff --git a/packages/schema/src/interfaces.ts b/packages/schema/src/interfaces.ts index 47348c47b..318fedd3b 100644 --- a/packages/schema/src/interfaces.ts +++ b/packages/schema/src/interfaces.ts @@ -78,7 +78,7 @@ export interface IJupyterGISClientState { user: User.IIdentity; remoteUser?: number; toolbarForm?: IDict; - isTemporal: boolean; + isTemporalControllerActive: boolean; } export interface IJupyterGISDoc extends YDocument { @@ -168,8 +168,8 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { sharedSourcesChanged: ISignal; sharedMetadataChanged: ISignal; zoomToPositionSignal: ISignal; - addFeaturesSignal: ISignal; - updateLayersSignal: ISignal; + addFeatureAsMsSignal: ISignal; + updateLayerSignal: ISignal; contentsManager: Contents.IManager | undefined; filePath: string; @@ -216,10 +216,10 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { toggleIdentify(): void; isIdentifying: boolean; - isTemporal: boolean; - toggleTemporal(emitter: string): void; - addTimeFeature(id: string, selectedFeature: string): void; - updateLayersOnCommand(layerId: string, layer: IJGISLayer): void; + isTemporalControllerActive: boolean; + toggleTemporalController(emitter: string): void; + addFeatureAsMs(id: string, selectedFeature: string): void; + triggerLayerUpdate(layerId: string, layer: IJGISLayer): void; disposed: ISignal; } diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index 9c4a14e7b..1dda9094b 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -1,10 +1,10 @@ import { MapChange } from '@jupyter/ydoc'; import { IChangedArgs } from '@jupyterlab/coreutils'; import { DocumentRegistry } from '@jupyterlab/docregistry'; +import { Contents } from '@jupyterlab/services'; import { PartialJSONObject } from '@lumino/coreutils'; import { ISignal, Signal } from '@lumino/signaling'; import Ajv from 'ajv'; -import { Contents } from '@jupyterlab/services'; import { IJGISContent, IJGISLayer, @@ -165,12 +165,12 @@ export class JupyterGISModel implements IJupyterGISModel { return this._isIdentifying; } - set isTemporal(isTemporal: boolean) { - this._isTemporal = isTemporal; + set isTemporalControllerActive(isActive: boolean) { + this._isTemporalControllerActive = isActive; } - get isTemporal(): boolean { - return this._isTemporal; + get isTemporalControllerActive(): boolean { + return this._isTemporalControllerActive; } centerOnPosition(id: string) { @@ -627,13 +627,16 @@ export class JupyterGISModel implements IJupyterGISModel { this._isIdentifying = !this._isIdentifying; } - toggleTemporal(emitter: string) { - this._isTemporal = !this._isTemporal; + toggleTemporalController(emitter: string) { + this._isTemporalControllerActive = !this._isTemporalControllerActive; - this.sharedModel.awareness.setLocalStateField('isTemporal', { - value: this._isTemporal, - emitter - }); + this.sharedModel.awareness.setLocalStateField( + 'isTemporalControllerActive', + { + value: this._isTemporalControllerActive, + emitter + } + ); } private _getLayerTreeInfo(groupName: string): @@ -684,20 +687,20 @@ export class JupyterGISModel implements IJupyterGISModel { } }; - addTimeFeature = (id: string, selectedFeature: string) => { - this.addFeaturesSignal.emit(JSON.stringify({ id, selectedFeature })); + addFeatureAsMs = (id: string, selectedFeature: string) => { + this.addFeatureAsMsSignal.emit(JSON.stringify({ id, selectedFeature })); }; - get addFeaturesSignal() { - return this._addFeaturesSignal; + get addFeatureAsMsSignal() { + return this._addFeatureAsMsSignal; } - get updateLayersSignal() { - return this._updateLayersSignal; + get updateLayerSignal() { + return this._updateLayerSignal; } - updateLayersOnCommand = (layerId: string, layer: IJGISLayer) => { - this.updateLayersSignal.emit(JSON.stringify({ layerId, layer })); + triggerLayerUpdate = (layerId: string, layer: IJGISLayer) => { + this.updateLayerSignal.emit(JSON.stringify({ layerId, layer })); }; readonly defaultKernelName: string = ''; @@ -725,12 +728,12 @@ export class JupyterGISModel implements IJupyterGISModel { private _sharedMetadataChanged = new Signal(this); private _zoomToPositionSignal = new Signal(this); - private _addFeaturesSignal = new Signal(this); + private _addFeatureAsMsSignal = new Signal(this); - private _updateLayersSignal = new Signal(this); + private _updateLayerSignal = new Signal(this); private _isIdentifying = false; - private _isTemporal = false; + private _isTemporalControllerActive = false; static worker: Worker; } diff --git a/packages/schema/src/schema/jgis.json b/packages/schema/src/schema/jgis.json index 54dc3dde1..43fd3bbbf 100644 --- a/packages/schema/src/schema/jgis.json +++ b/packages/schema/src/schema/jgis.json @@ -217,10 +217,10 @@ "type": ["string", "number"] }, "betweenMin": { - "type": ["string", "number"] + "type": ["number"] }, "betweenMax": { - "type": ["string", "number"] + "type": ["number"] } } }, From 5f9fc47764e4c6f0c46760cc639cd6e1cbb57e40 Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 6 Feb 2025 11:52:27 +0100 Subject: [PATCH 28/59] Fix state check --- packages/base/src/mainview/mainView.tsx | 16 +++++++++------- packages/schema/src/model.ts | 5 +---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 4ff17105a..6b45cd3c7 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1243,7 +1243,12 @@ export class MainView extends React.Component { sender: IJupyterGISModel, clients: Map ): void => { - const remoteUser = this._model.localState?.remoteUser; + const localState = this._model.localState; + if (!localState) { + return; + } + + const remoteUser = localState.remoteUser; // If we are in following mode, we update our position and selection if (remoteUser) { const remoteState = clients.get(remoteUser); @@ -1267,7 +1272,7 @@ export class MainView extends React.Component { // If we are unfollowing a remote user, we reset our center and zoom to their previous values if (this.state.remoteUser !== null) { this.setState(old => ({ ...old, remoteUser: null })); - const viewportState = this._model.localState?.viewportState?.value; + const viewportState = localState.viewportState?.value; if (viewportState) { this._moveToPosition(viewportState.coordinates, viewportState.zoom); @@ -1321,11 +1326,9 @@ export class MainView extends React.Component { // Temporal controller bit // ? There's probably a better way to get changes in the model to trigger react rerenders - const isTemporalControllerActive = - this._model.localState?.isTemporalControllerActive; + const isTemporalControllerActive = localState.isTemporalControllerActive; - if (isTemporalControllerActive) { - console.log('isTemporalControllerActive', isTemporalControllerActive); + if (isTemporalControllerActive !== this.state.displayTemporalController) { this.setState(old => ({ ...old, displayTemporalController: isTemporalControllerActive @@ -1538,7 +1541,6 @@ export class MainView extends React.Component { _: any, change: IJupyterGISDocChange ) => { - console.log('change', change); const changedState = change.stateChange?.map(value => value.name); if (!changedState?.includes('path')) { return; diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index 1dda9094b..4abffb084 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -632,10 +632,7 @@ export class JupyterGISModel implements IJupyterGISModel { this.sharedModel.awareness.setLocalStateField( 'isTemporalControllerActive', - { - value: this._isTemporalControllerActive, - emitter - } + this._isTemporalControllerActive ); } From da917846f3a7665ce57da7088f7a38c64a53c046 Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 6 Feb 2025 14:35:33 +0100 Subject: [PATCH 29/59] Add FPS control --- packages/base/src/mainview/TemporalSlider.tsx | 45 ++++++++++++------- packages/base/style/temporalSlider.css | 17 +++++++ 2 files changed, 47 insertions(+), 15 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 7e983d79e..6d520a5f5 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -49,6 +49,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [inferredDateFormat, setInferredDateFormat] = useState('yyyy-MM-dd'); const [step, setStep] = useState(stepMap.year); const [currentValue, setCurrentValue] = useState(0); + const [fps, setFps] = useState(1); const intervalRef = useRef(null); @@ -231,7 +232,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; // Start animation - intervalRef.current = setInterval(incrementValue, 1000); + intervalRef.current = setInterval(incrementValue, 1000 / fps); }; const pauseAnimation = () => { @@ -277,21 +278,35 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
{/* controls */} -
- + +
+
- - - + + setFps(+e.target.value)} + /> +
{/* slider */}
diff --git a/packages/base/style/temporalSlider.css b/packages/base/style/temporalSlider.css index 42425b988..ffd689404 100644 --- a/packages/base/style/temporalSlider.css +++ b/packages/base/style/temporalSlider.css @@ -18,6 +18,23 @@ align-items: center; } +.jp-gis-temporal-slider-controls { + display: flex; + flex-grow: 1; + justify-content: space-around; +} + +.jp-gis-temporal-slider-sub-controls { + display: flex; + justify-content: center; + align-items: center; + gap: 0.25rem; +} + +.jp-gis-temporal-slider-sub-controls > input { + width: 35px; +} + select, select option { text-transform: capitalize; From cdbe69b987d91f84d21c4370295de71e8bd344fa Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 6 Feb 2025 15:31:06 +0100 Subject: [PATCH 30/59] Update commands --- packages/base/src/commands.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 6ec6aea34..2b357b71e 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -173,13 +173,11 @@ export function addCommands( commands.addCommand(CommandIDs.temporalController, { label: trans.__('Temporal Controller'), isToggled: () => { - return ( - tracker.currentWidget?.context.model.isTemporalControllerActive || false - ); + return tracker.currentWidget?.model.isTemporalControllerActive || false; }, isEnabled: () => { return tracker.currentWidget - ? tracker.currentWidget.context.model.sharedModel.editable + ? tracker.currentWidget.model.sharedModel.editable : false; }, execute: args => { @@ -188,9 +186,7 @@ export function addCommands( return; } - current.context.model.toggleTemporalController( - CommandIDs.temporalController - ); + current.model.toggleTemporalController(CommandIDs.temporalController); commands.notifyCommandChanged(CommandIDs.temporalController); }, ...icons.get(CommandIDs.temporalController) From edd983e91848e2fe45397032968e4b84a1cbb93a Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 6 Feb 2025 18:05:58 +0100 Subject: [PATCH 31/59] yarrr --- examples/earthquakesv2.jGIS | 83 - examples/pirates.geojson | 130330 --------------------------------- examples/pirates.jGIS | 83 - examples/time_test.jGIS | 99 - 4 files changed, 130595 deletions(-) delete mode 100644 examples/earthquakesv2.jGIS delete mode 100644 examples/pirates.geojson delete mode 100644 examples/pirates.jGIS delete mode 100644 examples/time_test.jGIS diff --git a/examples/earthquakesv2.jGIS b/examples/earthquakesv2.jGIS deleted file mode 100644 index b9144b5a3..000000000 --- a/examples/earthquakesv2.jGIS +++ /dev/null @@ -1,83 +0,0 @@ -{ - "layerTree": [ - "8de7c2c0-6024-4716-b542-031a89fb87f9", - "3e21d680-406f-4099-bd9e-3a4edb9a2c8b" - ], - "layers": { - "3e21d680-406f-4099-bd9e-3a4edb9a2c8b": { - "filters": { - "appliedFilters": [ - { - "feature": "time", - "operator": ">=", - "value": 1506612291990.0 - } - ], - "logicalOp": "all" - }, - "name": "Custom GeoJSON Layer", - "parameters": { - "color": { - "circle-fill-color": "#3584e4", - "circle-radius": 5.0, - "circle-stroke-color": "#62a0ea", - "circle-stroke-line-cap": "round", - "circle-stroke-line-join": "round", - "circle-stroke-width": 1.25 - }, - "opacity": 1.0, - "source": "348d85fa-3a71-447f-8a64-e283ec47cc7c", - "symbologyState": { - "renderType": "Single Symbol" - }, - "type": "circle" - }, - "type": "VectorLayer", - "visible": true - }, - "8de7c2c0-6024-4716-b542-031a89fb87f9": { - "name": "OpenStreetMap.Mapnik Layer", - "parameters": { - "source": "b2ea427a-a51b-43ad-ae72-02cd900736d5" - }, - "type": "RasterLayer", - "visible": true - } - }, - "metadata": {}, - "options": { - "bearing": 0.0, - "extent": [ - -21054033.93842902, - -12436489.089978427, - 19020982.747149467, - 12436489.08997842 - ], - "latitude": -2.842170943040401e-14, - "longitude": -9.131604792619116, - "pitch": 0.0, - "projection": "EPSG:3857", - "zoom": 2.2057932493971575 - }, - "sources": { - "348d85fa-3a71-447f-8a64-e283ec47cc7c": { - "name": "Custom GeoJSON Layer Source", - "parameters": { - "path": "../../examples/eq.json" - }, - "type": "GeoJSONSource" - }, - "b2ea427a-a51b-43ad-ae72-02cd900736d5": { - "name": "OpenStreetMap.Mapnik", - "parameters": { - "attribution": "(C) OpenStreetMap contributors", - "maxZoom": 19.0, - "minZoom": 0.0, - "provider": "OpenStreetMap", - "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", - "urlParameters": {} - }, - "type": "RasterSource" - } - } -} diff --git a/examples/pirates.geojson b/examples/pirates.geojson deleted file mode 100644 index ee498ed9a..000000000 --- a/examples/pirates.geojson +++ /dev/null @@ -1,130330 +0,0 @@ -{ - "type": "FeatureCollection", - "name": "ASAM_events", - "crs": { - "type": "name", - "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } - }, - "features": [ - { - "type": "Feature", - "properties": { - "reference": "2013-63", - "dateofocc": "2013-03-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA:On 05 March, an LPG tanker was boarded at 06-27N 003-23E, in the vicinity of Lagos, and robbed by pirates.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-170", - "dateofocc": "2015-07-31", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Ship", - "descriptio": "VIETNAM:On 31 July near position 16-30N 112-00E, the Vietnam-flagged fishing ship QNg 96507 TS reported that a group of pirates from three Chinese ships boarded the fishing ship, attacked the crewmen and ransacked the ship in an area of the western Parac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.000000000370051, 16.500000000429281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-171", - "dateofocc": "2015-07-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 24 July, at 0445 local time, a duty watchman informed the duty officer on the bridge that two robbers had boarded an anchored product tanker via the forecastle near position 23-01N 070-13E, Kandla Port Anchorage. The alarm was raised and the cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.016666700086944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-172", - "dateofocc": "2015-07-23", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 23 July, at 2345 local time, a duty officer on board an anchored product tanker noticed two robbers had boarded the ship using a ladder in a small boat near position23-01N 070-13E, Kandla Port Anchorage. Ship's Master raised the general alarm fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.016666700086944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-173", - "dateofocc": "2015-08-08", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:Malaysian authorities have located the tanker MT Joaquim on 9 August near position 02-03N 101-59E in the Malacca Straits. The tanker was hijacked on 08 August and the oil cargo was stolen. Two crew members were injured during the incident and ar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.983333300149525, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-174", - "dateofocc": "2015-08-09", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 9 August near position 01-06N 103-34E, six robbers with long knives in a small fast boat boarded the stern of a bulk carrier underway. They entered the engine room and stole ship's spares. The duty crew sighted the robbers as the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-30", - "dateofocc": "2000-04-12", - "subreg": "63", - "hostility_": "SUICIDE ATTACKER", - "victim_d": "NAVAL VESSEL", - "descriptio": "SRI LANKA:One sailor was killed and a Sri Lankan navy patrol boat sunk in a suicide attack 12 Apr in the northwestern port of Kalpitiya.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.770833300229299, 8.23750000019578] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-278", - "dateofocc": "2000-02-22", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier preparing for cargo operations at Pulau Laut coal anchorage was boarded at 1545 UTC, 22 Feb by intruders who broke into the forward stores and stole stores and safety equipment before escaping unsighted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.983611100019061, 4.692500000022676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-332", - "dateofocc": "2001-12-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: An unidentified general cargo ship was boarded and robbed 8 Dec at 0315 local time at Libreville Roads, Gabon. The Master raised the alarm, fired signal rockets, and sent a distress signal to counter the attack. The thieves stole cargo from conta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.450000000336161, 0.383333300281265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-330", - "dateofocc": "2001-12-02", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: An unidentified bulk carrier reported suspicious approach 2 Dec at 0410 local time in position 09-50N 017-10W. The vessel was underway off Conakry, Guinea when two unlit speedboats approached. Duty Officer altered course, raised the alarm, dir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.16666669970175, 9.833333300272102] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-331", - "dateofocc": "2001-12-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON:An unidentified general cargo ship was boarded and robbed 6 Dec at 0330 local time in Douala port, Cameroon. The four thieves were armed with knives and stole ship's stores. When the alarm was raised, they jumped into the water and escaped in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-29", - "dateofocc": "2000-04-29", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Thieves stole ship's stores from an unidentified cargo ship berthed at the port of Kakinada (17-00N 082-19E), boarding at 0324 UTC armed with knives.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.316666700295968, 16.999999999995794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-333", - "dateofocc": "2001-12-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified chemical tanker was boarded and robbed 10 Dec at 0515 local time at Kakinada anchorage, India. The intruders stole two mooring ropes from the forecastle. Later that morning, at 0855 local time, the thieves boarded again, this ti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.249999999632792, 16.93333330023188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-334", - "dateofocc": "2001-12-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 6 Dec at 0300 local time while at Chennai anchorage, India. Intruders with long knives boarded the ship from a small boat.When the Duty A/B raised the alarm, the crew mustered, an the intruders fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.283333300436993, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-335", - "dateofocc": "2001-12-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: An unidentified bulk carrier was boarded 10 Dec at 2110 local time in position 01-14.51N 104-03.82E while underway in Singapore Straits. When the crew raised the alarm and switched on the deck lights, the intruders fled empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.063333299821068, 1.241666700124711] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-336", - "dateofocc": "2001-12-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 6 Dec at 0445 local time while at Jakarta anchorage and ship's stores were stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-337", - "dateofocc": "2001-12-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Dec between 0230 and 0300 local time by between 9 and 10 persons armed with a gun and long knives while ship was at Jakarta anchorage. Ship's stores and equipment stolen form engine room.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-338", - "dateofocc": "2001-12-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:An unidentified tanker was boarded 5 Dec at 1210 local time while anchored at Sandakan, Sabah. The thieves, armed with rifles, broke into paint store while holding crew member at gunpoint, before escaping in speedboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.833333300142726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-339", - "dateofocc": "2001-12-07", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 7 Dec from 0155 to 0220 local time while anchored at Vung Tau. Thieves stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-340", - "dateofocc": "2001-12-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: The container ship (CSAV SINGAPORE) was boarded 19 Dec at 0230 local time while anchored at Rio Grande outer roads awaiting berth. Duty officer noted boat at vessel's starboard bow and raised alarm. Five persons were seen fleeing in two boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.083333300273296, -32.049999999656961] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-341", - "dateofocc": "2001-12-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified cargo ship was subject to an attempted boarding 14 Dec at 0300 local time by six persons in a small, unlit motor boat. Anti-piracy watch raised alarm and foiled attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.999999999607724, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-342", - "dateofocc": "2001-12-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST:An unidentified bulk carrier was boarded 15 Dec at 0300 local time while at Abidjan outer anchorage. Three persons armed with knives assaulted at watchman, bound and gaggedhim and broke into ship's stores. Another watch man spotted the intr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-343", - "dateofocc": "2001-12-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 14 Dec at 0315 local time by persons armed with long knives while a Chittagong anchorage. In thieves cut three mooring lines and lowered them into the water. They fled in their boats with the lines", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-344", - "dateofocc": "2001-12-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MAYANMAR: An unidentified bulk carrier reports being closely followed 15 Dec at 2340 local time while underway in position 19-47.5N 92-00.0E off the Myanamar coast. A grey-paintedspeedboat bearing the number 421, ordered the captain to stop via VHF and u", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.999999999723286, 19.79166670014007] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-28", - "dateofocc": "2000-04-19", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:Thieves in a wooden boat, armed with knives, cut the mooring line of an unidentified tanker tied to a mooring buoy 19 Apr in Vishakhapatnam. The attack occurred at 2000 UTC. Dutycrew sounded the alarm and the thieves fled with the line.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.366666700195026, 17.69999999992848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-31", - "dateofocc": "2000-05-07", - "subreg": "62", - "hostility_": "FISHING BOAT", - "victim_d": "YACHT", - "descriptio": "SOMALIA:An unidentified yacht reported being followed, at a range of 1.5 miles, by a fishing boat at 1956 local time, in the Gulf of Aden off Somalia. Persons in the boat fired gunshots at the yacht. The yacht took evasive action and the pursuit was brok", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.616666700195424, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-32", - "dateofocc": "2000-04-08", - "subreg": "63", - "hostility_": "LTTE ARTILLERY", - "victim_d": "NAVAL VESSEL", - "descriptio": "SRI LANKA:The Sri Lankan navy reportedly lost two Dvora-class gunboats and suffered 20 casualties in attacks by LTTE artillery in fighting around the Elephant Pass 8 Apr.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.770000000128164, 8.030000000344216] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-33", - "dateofocc": "2000-04-24", - "subreg": "72", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. BORNEO:An unidentified bulk carrier was boarded via the anchor chain by six intruders at 1220 UTC 24 Apr while anchored at Bontang. When challenged by a crew member, one of the attackers stabbed him in the stomach. Another crew member sounde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.490833299686528, 0.111666699719422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-34", - "dateofocc": "2000-05-07", - "subreg": "63", - "hostility_": "NAVY VESSEL", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAY OF BENGAL:An unidentified container ship reports being followed by an unidentified naval ship, north of the Andaman Islands. When the naval vessel drew close it was asked to identify itself via VHF Ch. 16, whereupon it slowly withdrew maintaining rad", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [93.751111100231071, 14.185555599745953] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-35", - "dateofocc": "2000-04-24", - "subreg": "72", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship at anchor at Tanjung Priok was boarded from a small fishing boat 0400 local time 24 Apr. The attackers stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.929999999671509, 2.910000000322498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-36", - "dateofocc": "2000-04-19", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:An unidentified bulk carrier was boarded 19 Apr at 1645 UTC under cover of heavy rain while at anchor at Sebuku Island. Three assailants armed with long knives were chased by a watchman who sounded the alarm. The attackers then fled", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.552499999705162, -5.88750000037345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-37", - "dateofocc": "2000-05-01", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded at 0430 local time by approximately six armed thieves, while at anchor in the Pusur River (21-46N 089-30E), Zone a14, Mongla. The intruders held a watchman hostage but crew were alerted by another watc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.500000000092086, 21.766666699821712] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-38", - "dateofocc": "2000-04-19", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:An unidentified LPG carrier moored at Pusri terminal, Palembang, was boarded 0335 local time 19 Apr by thieves who attempted to steal a liferaft. The duty officer was alerted by the loud noise made when the liferaft fell after its li", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.755833300268421, -2.997499999623471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-39", - "dateofocc": "2000-05-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:An unidentified bulk carrier was approached by unlit boats, along both sides, as it entered the port of Sandakan, Sabah (05-49N 118-08E) at 0500 local time. Persons in one boat attempted to board, using a grappling hook, but aborted the attack w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.133333300267054, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-40", - "dateofocc": "2000-04-17", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:An unidentified general cargo ship was boarded over the bow at 0248 local time 17 Apr at Belawan anchorage by three intruders armed with axes. The duty seaman alerted the duty officer and crew whereupon the attackers jumped overboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.686111099756602, 3.787222199791813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-41", - "dateofocc": "2000-04-22", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "KAPITAN IVANCHUK", - "descriptio": "BANGLADESH: The 19,683-ton, Maltese-flag bulk carrier ,Kapitan Ivanchuk, was boarded by armed thieves at 0945 local time while at anchor Jayman Reach anchorage, Mongla (22-28N 089-35E). Thieves boarded simultaneously from barges alongside to port and s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 22.466666699754398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-42", - "dateofocc": "2000-04-13", - "subreg": "71", - "hostility_": "SMALL CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. INDIAN OCEAN:An unidentified chemical tanker reported attempted boarding from a small vessel while underway 13 Apr in 02-49.6S, 095-40.8E. Small craft reportedly approached from port and starboard sides, apparently during hours of darkness, a", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [95.679999999626432, -2.826666699795567] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-254", - "dateofocc": "2000-09-07", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified tanker at anchor Chittagong Roads, was boarded 7 Sep at 0315 local time by five person armed with long knives. The duty officer raised the alarm and the thieves escaped with four mooring lines to a boat in which five accomplic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-255", - "dateofocc": "2000-09-03", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified ship was attacked 3 and 4 Sep at Chittagong Port by a gang of 20-25 persons armed with long knives and operating from six boats. The group attempted to cut the ship's stern line 3 Sep and fled when the crew was alerted. On 4", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-256", - "dateofocc": "2000-09-05", - "subreg": "62", - "hostility_": "BOAT", - "victim_d": "YACHT", - "descriptio": "RED SEA:An unidentified yacht reported 5 Sep that it was being followed by a boat in a \"suspicious\" manner at 0730 local time in the vicinity of Jabal al Tair Island in the lower Red Sea. At 0930 the suspicious boat moved away and no further incidents w", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.734722200158728, 13.839722200110145] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-257", - "dateofocc": "2000-09-01", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "VESSEL", - "descriptio": "RED SEA:An unidentified ship reported being approached 1 Sep at 0820 local time while underway in position 12-36N 046-23E. Two high-speed boats approached at bow and stern but sped away when alarm was sounded and searchlight turned on them.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.383333299970218, 12.600000000033333] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-258", - "dateofocc": "2000-09-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker was boarded 9 Sep at 0015 local time while underway in the Banka Strait in position 02-34.8S 105-46.3E. Pirates armed with long knives held the duty officer and A/B hostage after which they proceeded to the Master and Ch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.771666700096716, -2.579999999792051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-259", - "dateofocc": "2000-09-08", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 8 Sep 0140 local time at Tanjung Priok anchorage by four persons from among 20 in a boat which approached the stern. Ship raised alarm and the intruders fled without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-260", - "dateofocc": "2000-09-11", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:A bulk carrier at Bintulu Anchorage was boarded 11 Sep at 0328 local time by five persons armed with long knives and guns. The intruders broke open the forecastle store and stole ships stores as well as food rations and other equipment from a l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.36944439992152, 5.437777800140509] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-261", - "dateofocc": "2000-09-10", - "subreg": "92", - "hostility_": "REBELS", - "victim_d": "MEN", - "descriptio": "MALAYSIA-PHILIPPINES:Three men were abducted 10 Sep from a Malaysian resort on Pandanan Island and taken by boat to the Philippine rebel stronghold of Jolo.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.445277799780001, 12.074722200408303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-262", - "dateofocc": "2000-01-30", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED HEAVY-LIFT VESSEL IN TRANSIT OF THE ESCRAVOS RIVER IN NIGERIA WAS REPORTEDLY APPROACHED BY A SPEED BOAT CONTAINING THREE PERSONS IN MILITARY UNIFORM WHO DEMANDED THE VESSEL STOP 30 JAN (REPORTED 8 FEB). WHEN THE ORDER WAS REFUSED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-263", - "dateofocc": "2000-02-05", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "ASEAN SUCCESS", - "descriptio": "INDIA:THE 15,943-TON, SINGAPORE-FLAG BULK CARRIER (ASEAN SUCCESS) WAS BOARDED 5 FEB AT 2100 UTC WHILE ANCHORED IN OUTER ANCHORAGE AT KANDLA, INDIA. SHIP WAS BOARDED BY 12 INTRUDERS WHO STOLE A LARGE QUANTITY OF SHIP'S STORES BEFORE BEING CHASED BY SHIP'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.207499999762717, 22.898888899780388] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-264", - "dateofocc": "2000-02-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "APJ ANAND", - "descriptio": "BANGLADESH:THE 10,588-TON, INDIAN-FLAG BULK CARRIER (APJ ANAND) WAS BOARDED 2 FEB AT MONGLA PORT INNER ANCHORAGE, AT 0115 UTC. AN UNKNOWN NUMBER OF BOARDERS, ARMED WITH AXES AND KNIVES, WERE INVOLVED. SHIP'S CREW TRIED TO REPEL THE ATTACK BY SHOUTING A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.594166700367225, 22.45611109989045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-265", - "dateofocc": "2000-02-07", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "KAPITAN IVANCHUK", - "descriptio": "BANGLADESH:THE 19,683-TON, MALTESE-FLAG BULK CARRIER (KAPITAN IVANCHUK) WAS BOARDED 7 FEB AT 0030 LOCAL BY 6 INTRUDERS ARMED WITH LONG KNIVES, WHILE AT ANCHOR AT MONGLA ROADS. THE INTRUDERS STOLE SHIP'S STORES FROM FORWARD AND FLED WHEN THE CREW SOUNDED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.594444400217981, 22.45583330021492] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-266", - "dateofocc": "2000-01-31", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:ATTEMPTED BOARDING WAS MADE ON UNIDENTIFIED BULK CARRIER 31 JAN (REPORTED 8 FEB) WHILE AT ANCHOR AT ADANG BAY. BOARDING WAS ATTEMPTED BY FOUR INDIVIDUALS WHO FLED WHEN THEY WERE SPOTTED BY ALERT CREW ON ANTI-PIRACY WATCH.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.703888900362131, 4.134166700103606] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-267", - "dateofocc": "2000-02-11", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "DUBAI PRIDE", - "descriptio": "NIGERIA:The 9,094-ton, Bahamian-flag chemical tanker (DUBAI PRIDE) was boarded 11 Feb 0430 UTC at Lagos Anchorage by ten attackers armed with long knives. The attackers threatened the duty seaman and raided the ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.500000000008868, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-268", - "dateofocc": "2000-02-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MIYUKI", - "descriptio": "INDONESIA:The 2,025-ton, Singaporean-flag chemical tanker (MIYUKI) was boarded 0240 local time 13 Feb at anchor Merak, Indonesia by three men armed with knives. An engineer was held hostage in the engine room while the attackers stole engine stores and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.449999999875843, -5.96666669987917] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-93", - "dateofocc": "2001-03-07", - "subreg": "91", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:An unidentified container ship was subject to an attempted boarding 7 mar at 0512 local time while underway in manila bay. Persons in a speedboat attempted to come alongside and returned at 0550, but both times alert crew prevented the boardi", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.894999999771926, 14.611666699738691] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-94", - "dateofocc": "2001-03-14", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 14 MAR AT 0350 LOCAL TIME AT LAGOS ANCHORAGE BY THREE MEN ARMED WITH JUNGLE BOLOS. CREW LOCKED THEMSELVES IN THE ACCOMMODATION AND INFORMED PORT CONTROL. AFTER 15 MINUTES THE THIEVES LEFT WITH THREE MOOR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.466666700039298, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-95", - "dateofocc": "2001-03-18", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 18 MAR AT 0300 LOCAL TIME WHILE ANCHORED AT POSITION 04-49S 011-39E, 1.2 NM FROM POINTE-NOIRES. TWO PERSONS, AT LEAST ONE OF WHOM WAS ARMED WITH A KNIFE, LOWERED MOORING LINES INTO A WAITING BOAT. WHEN SPOTT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.649999999867703, -4.816666700246628] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-96", - "dateofocc": "2001-03-17", - "subreg": "72", - "hostility_": "MERCHANT VESSEL", - "victim_d": "THIEVES", - "descriptio": "Indonesia-Borneo:An unidentified lpg carrier was boarded 17 Mar at 0345 local time while at Bontang anchorage. Three persons armed with long knives stole four mooring lines and other ship's stores. Master states belief that thieves monitored vhf channe", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.516666699995426, 0.083333300181607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-97", - "dateofocc": "2001-03-15", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED ROLL-ON, ROLL-OFF SHIP WAS BOARDED 15 MAR AT 2200 LOCAL TIME WHILE BERTHED AT WHARF 305, TANJUNG PRIOK. PERSONS ARMED WITH KNIVES AND GUNS STOLE CASH AND CREW BELONGINGS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-98", - "dateofocc": "2001-03-15", - "subreg": "71", - "hostility_": "HIJACKERS", - "victim_d": "INABUKWA", - "descriptio": "INDONESIA:THE 649-TON, INDONESIAN-FLAG CARGO SHIP (INABUKWA) WAS HIJACKED 15 MAR AT 1155 UTC WHILE SAILING FROM PANGKALBALAM, BANGKA ISLAND, INDONESIA IN ABOUT 00-37S 105-25E, ON A VOYAGE TO SINGAPORE WITH A CARGO OF TIN PLATES, CONCENTRATE, AND PEPPER W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.416666699873929, -0.616666699751079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-99", - "dateofocc": "2001-03-15", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED TANKER WAS BOARDED 15 MAR AT 0230 UTC WHILE ANCHORED AT SEMANGKA PORT. TWO PERSONS ARMED WITH LONG KNIVES WERE SPOTTED AND JUMPED OVERBOARD WITHOUT ANY REPORTED LOSS TO THE SHIP.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, -5.550000000148941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-100", - "dateofocc": "2001-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 14 MAR AT 0100 LOCAL TIME WHILE UNDERWAY IN POSITION 00-58.5N 101-11.6E. EIGHT PERSONS ARMED WITH KNIVES AND GUNS BOARDED FROM A SPEEDBOAT AND ROBBED SHIP'S CASH BEFORE LEAVING IN THEIR SPEEDBOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.193333300096981, 0.974999999994623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-101", - "dateofocc": "2001-03-20", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "LORNA", - "descriptio": "VENEZUELA:Yacht (lorna), nationality unknown, was attacked by four persons in a pirogue 20 Mar 3 miles off the venezuelan coast (reported 28 mar) the pirogue approached the yacht and its occupants asked for cigarettes. When the owner turned away he was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.999999999861075, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-102", - "dateofocc": "2001-03-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MATSUMI MARU NO. 7", - "descriptio": "STRAIT OF MALACCA:THE 2,814-TON, SINGAPORE-FLAG TANKER (MATSUMI MARU NO. 7) LATE ON 18 MAR WHILE UNDERWAY BETWEEN SINGAPORE AND PORT KELANG WITH A PETROLEUM CARGO. A GANG OF FROM 5 TO 7 PERSONS BOARDED FROM A SPEEDBOAT AND HELD THE CREW HOSTAGE WHILE TA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.000000000046668, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-103", - "dateofocc": "2001-03-26", - "subreg": "71", - "hostility_": "FISHING BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO AN ATTEMPTED BOARDING 26 MAR AT 2240 LOCAL TIME WHILE UNDERWAY IN POSITION 00-14N 108-10E. DUTY OFFICER SPOTTED A FISHING BOAT ON RADAR AND RAISED ALARM, FOLLOWING WHICH BOAT WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.166666699738016, 0.233333299781748] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-104", - "dateofocc": "2001-03-21", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 21 MAR AT 0348 LOCAL TIME WHILE UNDERWAY IN THE DURIAN STRAIT IN POSITION 00-43N 108-10E. WATCHMAN NOTICED PERSON TRYING TO ENTER ACCOMMODATION BLOCK AND SOUNDED ALARM, WHEREUPON THE INTRUDERS JUMPED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.166666699738016, 0.71666670017521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-105", - "dateofocc": "2001-03-20", - "subreg": "71", - "hostility_": "FISHING BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS AN ATTEMPTED BOARDING 20 MAR AT 1950 UTC WHILE UNDERWAY IN POSITION 00-55N 105-51E. SHIP WAS APPROACHED BY A FISHING BOAT AND WHEN THE BOAT WAS NOTICED, SWITCHED ON ALL ITS DECK LIGHT AND SHINED ALDIS LA", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.849999999676527, 0.916666699642064] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-106", - "dateofocc": "2001-03-22", - "subreg": "91", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES-LUZON:An unidentified tanker was boarded 22 mar at 0050 local time while anchored at batangas. Duty ab raised alarm and the thieves fled with lifebuoys and escaped in their boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.016666699658913, 13.766666699563018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-107", - "dateofocc": "2001-03-26", - "subreg": "22", - "hostility_": "INTRUDERS", - "victim_d": "CAP DOMINGO", - "descriptio": "Ecuador:The 31,446-ton Malta-flag container ship (Cap Domingo) was boarded 26 Mar at 0330 by persons who gained access from a small boat in heavy rain as ship approached sea buoy. When master shined light on the intruders shots were fired whereupon crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.999999999576232, -1.999999999719364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-43", - "dateofocc": "2000-05-03", - "subreg": "92", - "hostility_": "MILF REBELS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:A Philippine-flag cargo vessel was slightly damaged by an explosion which occurred in the General Santos (06-07N 125-11E) port area, in what is variously described as the fishing port or a cargo pier. Rebels of the Moro Islamic Liberation Fro", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.183333300360232, 6.116666700169958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-44", - "dateofocc": "2000-05-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:The duty officer on an unidentified bulk carrier berthed at Belawan was attacked with iron bars by two of five intruders discovered on board at 2000 local time. The officer was able to escape and sound the ship's alarm, whereupon the intruders", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-45", - "dateofocc": "2000-04-29", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified cargo ship berthed at the port of Sandakan (05-49N 118-08E), Sabah, was boarded at 0200 local time by about six thieves who attempted to steal from the forecastle store. Crew spotted the intruders who left the vessel without ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.133333300267054, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-46", - "dateofocc": "2000-05-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. JAWA:An unidentified LPG tanker was approached while at anchor, at Anyer (06-03S 105-55E), at 0100 local time by persons in a small boat, who attempted to board using grappling hooks. Hired guards fired warning shots and the intruders fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.916666700339761, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-47", - "dateofocc": "2000-04-17", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:Unidentified chemical tanker boarded 0345 local time 17 Apr while at anchor at Belawan. Three intruders armed with long knives boarded over the starboard bow. Crew on watch sounded general alarm and the intruders fled by jumping over", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.686111099756602, 3.787222199791813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-48", - "dateofocc": "2000-04-15", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:Unidentified chemical tanker was boarded 0300 local time 15 Apr at anchor at Belawan. Seven intruders gained access over the bow and jumped over board and fled in two boats after stealing some ship's stores, when spotted by watchman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.687222200432643, 3.788611100143328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-49", - "dateofocc": "2000-05-03", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:An unidentified LPG tanker was boarded at anchor at Vung Tau (10-21N 107-04E)0120 local time. The duty seaman spotted two persons, in blue coveralls similar to crew-issue clothing, on the forecastle but realized they were armed with knives and we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-50", - "dateofocc": "2000-04-14", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA. SARAWAK:An unidentified timber carrier was boarded 0300 local time 14 Apr at Bintulu anchorage by robbers who attempted to enter the forecastle store room. Duty watchman alerted the crew and the intruders fled in their motor boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.844999999646461, 3.24500000041877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-51", - "dateofocc": "2000-04-13", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA. SARAWAK:An unidentified timber carrier was boarded 2230 local time 13 Apr at Bintulu anchorage by robbers who cut lock on the forecastle store room. Duty watchman raised the alarm and the robbers escaped in their motor boat. No information on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.844999999646461, 3.24500000041877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-52", - "dateofocc": "2000-04-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:An unidentified tanker was subject of an attempted boarding 0240 local time 12 Apr at Belawan anchorage. Five robbers attempted to gain access over the vessel's bow while two accomplices waited in a wooden boat at a distance of 2 to 3", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.717499999848314, 3.800833300209661] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-53", - "dateofocc": "2000-04-26", - "subreg": "73", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier repelled an attempted boarding while at anchor at Tanjung Marangaas (10-36S 121-33E) at 1750 local time. Five or six thieves using a grappling hook from a boat were detected and thwarted by alert crew on the bulk", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.550000000094315, -10.600000000177317] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-54", - "dateofocc": "2000-04-01", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:An unidentified bulk carrier was boarded 1 Apr at 0300 local time in Belawan anchorage by eight attackers armed with long knives. The boarding was noticed by the duty officer who alerted the crew via public address and the attackers f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.78000000035621, 3.929999999582094] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-55", - "dateofocc": "2000-04-06", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. JAVA:An unidentified bulk carrier was boarded 6 Apr at 0310 local time at Merak anchorage by three persons armed with long knives who gained access over the stern. The intruders tried to take the watchman hostage but he escaped by jumping ov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.44499999961937, -5.955000000238442] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-56", - "dateofocc": "2000-04-02", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:Seven masked pirates attempted to board an unidentified bulk carrier underway on 2 Apr at 1300 local time in position 02-27S, 117-00E passing Balabalagan Reef in the Makassar Strait. Boarding thwarted by unspecified crew action.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.99999999963245, -2.450000000318482] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-269", - "dateofocc": "2000-02-09", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship was boarded 1800 UTC 9 Feb at anchor Belawan, Indonesia by attackers armed with knives. Crew sounded alarm and attackers fled, apparently without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-270", - "dateofocc": "2000-02-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "FLORA", - "descriptio": "INDONESIA:The 6,935-ton, Bahamas-flag cargo ship (FLORA) was boarded 19 Feb while at anchor in 01-02S 117-17E off Samarinda by approximately 10 armed intruders at 0300, local. Theattackers held a crew member hostage and then escaped with his personal be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.283333299834908, -1.03333329965659] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-271", - "dateofocc": "2000-02-18", - "subreg": "71", - "hostility_": "THIEF", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 18 Feb at 0700 local at its berth at Jakarta. A crewmember was threatened with a knife and ship's stores stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -5.96666669987917] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-272", - "dateofocc": "2000-02-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified survey vessel was boarded 17 Feb while at anchor at Tanjung Priok by nine attackers armed with long knives. The attackers damaged ship's equipment and stole stores before fleeing when chased by the crew. The attacker's boat th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.799999999842157, -5.949999999981969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-273", - "dateofocc": "2000-02-20", - "subreg": "92", - "hostility_": "GUERRILLAS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:Probable separatist guerrillas attacked several sites in the southern Philippines on the island of Basilan 20 Feb. Among the attacks, unidentified men fired on a cargo ship loading at the Isabela Pier in an attack apparently coordinated with", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.05249999978912, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-274", - "dateofocc": "2000-02-24", - "subreg": "52", - "hostility_": "GUNBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH-CENTRAL MEDITERRANEAN-ALGERIA:An unidentified bulk carrier reports being followed by suspicious high-speed gunboat type vessel on 24 Feb in position 37-15.5N 007-50.6E off the coast of Algeria. The crew of the bulk carrier turned on lights and mus", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [7.84333329982104, 37.258333299562707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-275", - "dateofocc": "2000-02-24", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO:An unidentified bulk carrier alongside berth 9 unloading rice at Matadi, was boarded 1540 UTC on 24 Feb by 100 to 120 persons who rushed past the watchman. The mob stole loose items on deck and rice from the cargo until crew members raised the ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.500277799943092, -4.524166699632417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-276", - "dateofocc": "2000-02-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified chemical tanker was boarded 0510 UTC by 15 intruders armed with long knives and stones 22 Feb while alongside Jetty no. 2, Kandla Port. Pirates escaped with stores after fighting with the crew who sounded alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.536666699824764, 11.021111099704967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-277", - "dateofocc": "2000-02-23", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified cargo ship anchored 2.9 miles from the breakwater at Jakaarta's outer anchorage was boarded 2130 UTC 23 Feb by three intruders armed with knives. The three threatened the deck watch who escaped unharmed and alerted the duty off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.745833299949481, 1.99888889973397] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-279", - "dateofocc": "2000-02-22", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:An unidentified tanker at PTSC Terminal, Vungtau was boarded 2030 (local) on 22 Feb. A single intruder armed with a knife boarded over the bow while two accomplices remained in a boat nearby. After threatening a crew member the intruder stole s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.090000000328189, 10.389999999988845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-280", - "dateofocc": "2000-02-25", - "subreg": "93", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HONG KONG:An unidentified container ship at anchor in Western Anchorage no. 2 was boarded in the early morning of 25 Feb by an unknown number of person who broached 10 cargo containers. There is no report of any contents being stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.128333299881319, 22.336944400131586] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-281", - "dateofocc": "2000-03-02", - "subreg": "12", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "UNITED STATES:Two intruders armed with guns boarded an unidentified bulk carrier at 0230 (local) 2 Mar in Port Newark, New Jersey. After breaking into the Chief Mate's cabin and threatening him, they stole personal belongings and cash. The intruders al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.163888899942719, 40.738888900249378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-282", - "dateofocc": "2000-02-12", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "HERRENTOR", - "descriptio": "ECUADOR:The 5,025-ton Cyprus flag cargo ship (HERRENTOR) was reportedly boarded 12 Feb in port Guayaquil (reported 2 Mar). Ten armed robbers broke open a container and removed between 30 and 40 boxes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.030555600433729, -2.41111109984206] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-283", - "dateofocc": "2000-01-23", - "subreg": "24", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL:Four thieves boarded an unidentified ship at anchor in the Fazandinha Anchorage (Munguba Port) on the Amazon River 23 Jan (reported 3 Mar). The intruders were discovered in process of lowering tins of paint to a waiting boat and attacked the ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-33.921388899700219, -7.57305559981944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-108", - "dateofocc": "2001-03-28", - "subreg": "37", - "hostility_": "ROBBERS", - "victim_d": "SPAR EIGHT", - "descriptio": "BELGIUM:THE 22,300-TON, NIS-FLAG BULK CARRIER (SPAR EIGHT) WAS BOARDED 28 MAR AT 0240 LOCAL TIME BY TWO ARMED MEN WHO ENTERED THE MASTER'S CABIN, BOUND HIS HANDS AND FEET, AND RANSACKED THE CABIN, APPARENTLY IN SEARCH OF KEYS OR SAFE COMBINATION. THE TH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "I" - }, - "geometry": { - "type": "Point", - "coordinates": [3.000000000442355, 51.25000000042894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-109", - "dateofocc": "2001-03-27", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 27 MAR AT 0350 LOCAL TIME WHILE AT ANCHOR, CHITTAGONG. TWO PERSONS BOARDED WHILE TWO MORE REMAINED IN THEIR BOAT. DUTY OFFICER RAISED ALARM AND INTRUDERS JUMPED OVERBOARD WITHOUT TAKING ANYTHING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-110", - "dateofocc": "2001-03-30", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS APPROACHED 30 MAR AT 2339 LOCAL TIME WHILE UNDERWAY IN POSITION 02-47N 101-00E BY PERSONS IN TWO SPEEDBOATS. ALERT CREW IS STATED TO HAVE PREVENTED BOARDING.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.000000000014325, 2.783333300178981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-111", - "dateofocc": "2001-03-29", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED SUPPLY SHIP WAS BOARDED 29 MAR AT 0300 LOCAL TIME WHILE AT LABUAN ANCHORAGE. AN ENGINE WAS STOLEN FROM ONE LIFEBOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.233333299903506, 5.333333299676895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-112", - "dateofocc": "2001-04-02", - "subreg": "61", - "hostility_": "MOTOR BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:ABOUT 14 PERSONS IN TWO MOTOR BOATS CHASED AND FIRED SHOTS AT AN UNIDENTIFIED CARGO SHIP 2 APR AT 1230 UTC WHILE THE SHIP WAS UNDERWAY IN POSITION 06-52N 050-01E, 40 NM OFF THE SOMALI COAST. THE CARGO SHIP ALTERED COURSE AND THE PURSUIT WITH GUN", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.016666700060796, 6.866666699969358] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-113", - "dateofocc": "2001-04-04", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 4 APR AT 2045 LOCAL TIME WHILE BERTHED AT COCHIN CONTAINER TERMINAL BY SIX PERSONS OPERATING FORM A WOODEN BOAT. ONE CONTAINER WAS OPENED AND CARGO STOLEN BEFORE THE THIEVES JUMPED OVERBOARD AND ESCAPED W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-114", - "dateofocc": "2001-04-05", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP REPORTED THAT ON 5 APR AT 0130 LOCAL TIME THREE UNLIT BOATS WERE SIGHTED AHEAD OF THE SHIP WHICH WAS AT THE TIME UNDERWAY IN POSITION 01-36N 102-49E. ONE OF THE THREE BOATS APPROACHED THE SHIP AND ITS CREW AT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.816666699609982, 1.599999999677607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-115", - "dateofocc": "2001-04-04", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED 4 APR AT 2140 LOCAL TIME WHILE UNDERWAY IN POSITION 05-38N 096-32E. TWO SPEEDBOATS APPROACHED FROM THE STERN BUT WITHDREW WHEN CREW WAS ALERTED.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.533333300288007, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-288", - "dateofocc": "2000-03-02", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was target of attempted boarding on two occasions, 0100 and 0340 (local) 2 Mar at anchor at Tanjung Priok. Would-be boarders were in two motor boats and finally fled when duty watchman fired a shot from vessel's ri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-116", - "dateofocc": "2001-04-14", - "subreg": "26", - "hostility_": "ROBBERS", - "victim_d": "NUEVA ALCAMAR", - "descriptio": "PANAMA:ACCORDING TO A 14 APR PRESS REPORT, SIX THIEVES ROBBED PASSENGERS ABOARD THE (NUEVA ALCAMAR) (PROBABLE COASTAL FERRY) OF $8,300 WHILE THE SHIP WAS AT KUNA YALA. THE THIEVES REPORTEDLY PASSED THEMSELVES OFF AS AGENTS FROM THE NATIONAL POLICE INFOR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.75000000017792, 9.500000000202874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-117", - "dateofocc": "2001-04-10", - "subreg": "61", - "hostility_": "FISHING BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:AN UNIDENTIFIED CONTAINER SHIP WAS FIRED ON FROM THREE FISHING BOATS 10 APR AT 1400 LOCAL TIME WHILE UNDERWAY IN POSITION 00-08.8S 044-06.2E, NINETY NAUTICAL MILES EAST OF KISMAYU. FOUR SHOTS WERE FIRED AND BOARDING WAS REPORTEDLY ATTEMPTED BEFO", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.103333299932444, -0.146666699924765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-118", - "dateofocc": "2001-04-07", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "JOLLY OVORIO", - "descriptio": "GULF OF ADEN:THE CYPRIOT-FLAG CONTAINER SHIP (JOLLY AVORIO) REPORTED TWO ATTEMPTED PIRACIES 7 APR AT 1400 AND 1530 LOCAL TIME WHILE UNDERWAY ABOUT 33 NM SOUTH OF THE YEMENI COAST. THE FIRST INCIDENT INVOLVED FOURTEEN SMALL HIGH-SPEED BOATS IN POSITION 1", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.783333299900335, 14.166666700295366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-119", - "dateofocc": "2001-04-02", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN:AN UNIDENTIFIED FRENCH YACHT REPORTS BEING FOLLOWED FROM 2 TO 5 APRIL FROM POSITION 12-35N 047-47E TO POSITION 13-55N 052-12E. FOUR ATTEMPTS AT BOARDING WERE REPORTEDLY AVERTED WITH THE \"HELP\" OF A TANKER AND CARGO SHIP IN THE VICINITY.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.783333299835647, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-120", - "dateofocc": "2001-04-12", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP AVERTED AN ATTEMPTED BOARDING 12 APR AT 0440 LOCAL TIME AT CHENNAI ANCHORAGE WHEN ALERT CREW FORCED WITHDRAWAL OF A BOAT WITH SIX PERSONS, ONE OF WHOM HAD THROWN A GRAPPLING HOOK ONTO THE RAIL.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-121", - "dateofocc": "2001-04-13", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 13 APR AT 1445 UTC WHILE ANCHORED AT CHITTAGONG BY THREE MEN FROM AN UNLIGHTED BOAT WHO CAME OVER THE STERN AND ATTEMPTED TO STEAL SHIP'S STORES. ANTI PIRACY WATCH SPOTTED THE INTRUDERS AND RAISED THE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-57", - "dateofocc": "2000-04-05", - "subreg": "81", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WEST CENTRAL PACIFIC:An unidentified bulk carrier reported being followed for one hour and thirty minutes during the night of 5 Apr in position 16-20N, 133-43E. Suspicious craft described as having twin bows on 30 meter length and speed of about 18 knot", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [133.566666700379528, 16.333333300032621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-58", - "dateofocc": "2000-05-01", - "subreg": "22", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU:An unidentified 15,000-ton, Liberian-flag chemical tanker was boarded between 0130 and 0230 local time 1 May (reported 16 May) while berthed at Pisco. The thieves removed mooring line and towing equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.289999999900544, -13.729999999747974] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-59", - "dateofocc": "2000-05-10", - "subreg": "22", - "hostility_": "THIEVES", - "victim_d": "ARCTIC OCEAN", - "descriptio": "ECUADOR:The 10,829-ton, Bahamas-flag, refrigerated container ship (ARCTIC OCEAN) was boarded near buoy 22 while approaching the port of Gye at Guayaquil 10 May 2218 local time. A single container was entered and about ten percent of its cargo of compute", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.868611099718748, -2.181388900310537] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-60", - "dateofocc": "2000-04-28", - "subreg": "24", - "hostility_": "THIEVES", - "victim_d": "ALEXANDRA", - "descriptio": "VENEZUELA:The 7,361-ton, Antigua-flag container ship (ALEXANDRA) was discovered to have been boarded at anchor, Guanta, 28 Apr (reported 15 May) 1915 local time when heaving anchor to proceed to berth. Four persons were seen running along the deck to a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.837499999781471, 10.687499999960266] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-61", - "dateofocc": "2000-05-06", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "GEFION", - "descriptio": "BRAZIL:The 7,170-ton, Philippine-flag bulk carrier (GEFION) was boarded at daybreak 6 May (reported 16 May) while anchored in Santos Outer Roads. The robbers, said to number between five and eight stole approx. $2,000 from the ship's safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-33.938333300347495, -7.556388899922297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-62", - "dateofocc": "2000-05-01", - "subreg": "24", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL:An unidentified 9,760-ton container ship was boarded about 2320 local time 1 May (reported 16 May) while anchored in Santos Roads. Duty watchman spotted two men searching between containers and shortly afterward more persons attempted to board f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-33.904444400127545, -7.589444400216337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-63", - "dateofocc": "2000-05-11", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "FISHING VESSELS", - "descriptio": "NIGERIA:Nigerian fishermen have been attacked on the Bakassi Peninsula and while fishing in territorial waters between 11 and 13 May. The attackers reportedly came from Cameroon and stole valuables, boats and fishing gear at gun point.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-64", - "dateofocc": "2000-05-10", - "subreg": "57", - "hostility_": "MILITANT YOUTHS", - "victim_d": "MILLARD BAY 74", - "descriptio": "NIGERIA:About 30 Ijaw militants stormed the Chevron operated drill rig (MILLARD BAY 74) 10 May in the Dibi area of Delta State. The youths assaulted company personnel, seized four workboats and threatened to blowup the facility if drilling operations we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-65", - "dateofocc": "2000-05-11", - "subreg": "57", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:An 11 May report states that a vessel at Lagos was boarded at anchor from the launch (BAHIM SANI ABACHI) by six men, three of them uniformed, who attempted to extract payments of $5,000 for services not rendered. The Captain's attempt to obtain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.079166700012763, 5.322222200286603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-66", - "dateofocc": "2000-05-10", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:Ship's stores were stolen 1230 local time from an unidentified bulk carrier anchored at Chennai, Madras 10 May. Duty watchman noticed one thief who boarded over the stern who jumped into the water and fled in a waiting boat with six other persons a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-67", - "dateofocc": "2000-05-13", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified bulk carrier berthed at Chittagong was approached by a small boat containing four persons armed with crowbars at 0600 local time 13 May. One person dove into the water alongside the ship, possibly to remove zinc anodes but all", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.813888900349809, 22.315277799802743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-68", - "dateofocc": "2000-05-10", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified cargo ship was boarded at 2350 10 May while at anchor Chittagong. Four armed intruders stole ship's stores and escaped by jumping into the water.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814722199551625, 22.315000000127213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-69", - "dateofocc": "2000-05-06", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified 9,000-ton, Panamanian-flag LPG tanker was subjected to three attacks while at anchor at Chittagong 6 May (reported 16 May). At 0200 6 May several small boats were spotted approaching the ship. The deck watch was alerted and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.797222199553346, 22.298611099905543] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-284", - "dateofocc": "2000-01-21", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "ARKTIS MARINER", - "descriptio": "IVORY COAST:An unidentified vessel, possibly 6,285-ton Danish-flag (ARKTIS MARINER), was attacked at anchor 21 Jan in Abidjan inner anchorage (reported 3 Mar). Robbers stole personal belongings from seaman on watch and tried unsuccessfully to enter the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.955000000206098, 4.44611109969469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-285", - "dateofocc": "2000-02-29", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA:Unidentified ship boarded from boat at bow at 0200 29 Feb in anchorage 8 miles off Luanda by five attackers armed with knives. Robbers succeeded in stealing life raft after the general alarm was sounded. Repeated requests for assistance to the p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.209166699745083, -8.809444399842107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-286", - "dateofocc": "2000-01-31", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified 18,812-ton Liberian flag chemical tanker was approached at 2305 on 31 Jan by a suspicious fishing boat proceeding without navigation lights with a speedboat in tow. Approach was first detected as a weak radar return. A", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.720000000008895, 4.117222199631613] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-287", - "dateofocc": "2000-03-05", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified ship was boarded 1915 UTC 5 Mar at Samarinda Anchorage by robbers who broke into forward deck store and stole a large amount of supplies.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.720555599942031, -0.085833299619196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-289", - "dateofocc": "2000-02-24", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:Crew of unidentified 34,000-ton Panamanian flag bulk carrier successfully repelled an attack by thieves at Belawan anchorage 24 Feb, 0200 (local). Vessel was approached by small boat with seven persons on board who ignored watchman's shouts an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.041111099597515, 4.936111099647576] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-290", - "dateofocc": "2000-03-12", - "subreg": "63", - "hostility_": "SMALL CRAFT", - "victim_d": "WORLD KUDOS", - "descriptio": "ARABIAN SEA:The 49,827-ton, Greek-flag tanker (WORLD KUDOS) was attacked (NFI) by a small craft 12 Mar while 40 miles NE of Socotra Island. Ship evaded the attackers and proceeded on voyage to Singapore.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [97.661944400341781, 12.318888900283582] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-291", - "dateofocc": "2000-03-12", - "subreg": "62", - "hostility_": "BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA:An unidentified ship reports approach with apparent attempt to board 12 Mar by 25-meter brown-painted boat with large number of antennas at 1420 UTC in position 12-57N 055-00E. This report is believed additional to case 12 Mar cited by M/V W", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.000000000325372, 12.949999999999704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-292", - "dateofocc": "2000-03-10", - "subreg": "62", - "hostility_": "MERCHANT VESSEL", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA:An unidentified ship responded via VHF to a distress signal 10 Mar in position 13-06.0N 053-06.8E but reports signaling vessel acted suspiciously when queried.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.113333299837109, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-293", - "dateofocc": "2000-03-10", - "subreg": "62", - "hostility_": "BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA-GULF OF ADEN:An unidentified vessel reports approach in 14-53.9N 051-01.8E at 1500 UTC 10 Mar by boat with four persons. When anti-piracy measures deployed, the craft immediately left the area.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.029999999936194, 14.898333300170577] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-294", - "dateofocc": "2000-02-24", - "subreg": "63", - "hostility_": "HIJACKERS", - "victim_d": "GLOBAL MARS", - "descriptio": "INDIAN OCEAN-ANDAMAN SEA:The 17-member crew of the 3,729-ton Panamanian-flag chemical tanker (GLOBAL MARS) was recovered 10 Mar from an island near Phuket, Thailand. They report their ship was hijacked 24 Feb at 2230 by a group of about 20 armed pirates", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [98.046944400304767, 7.926388899806511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-295", - "dateofocc": "2000-03-20", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified bulkcarrier anchored at Chennai (Madras) outer anchorage was subject of attempted boarding 20 Mar at 0600 local. Alert duty seaman spotted five persons armed with long knives who attempted to board over vessel's stern. When spotte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.28611110024076, 13.040000000119505] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-303", - "dateofocc": "2000-09-12", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED AND ROBBED 12 SEP AT 0315 LOCAL TIME WHILE AT EVERTON WHARF, NEW AMSTERDAM, GUYANA. FIVE PERSONS ARMED WITH GUNS AND KNIVES BROKE INTO THE PAINT LOCKER AND STOLE SHIP'S STORES BEFORE ESCAPING IN A BOAT. A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.0250000000824, 6.794999999949027] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-297", - "dateofocc": "2000-03-26", - "subreg": "57", - "hostility_": "MILITANT YOUTHS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:Militant youths in the Niger Delta attacked a commercial boat 26 Mar as it entered the Benin River. Ten passengers and 6 military escorts were injured in the gunfire from armed personnel in three speedboats..", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.533333299946094, 6.158333299726053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-298", - "dateofocc": "2000-03-26", - "subreg": "61", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:An unidentified tanker reports being approached 26 Mar while at anchor at Dar Es Salaam by five persons in an unlit boat. The boat was detected near the vessel's stern and a searchlight shone on it from the bridge after which it moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.287222199590872, -6.823611100445646] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-122", - "dateofocc": "2001-04-16", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER REPORTS SUSPICIOUS MANEUVERS BY A HIGH-SPEED BOAT 16 APR AT 0145 LOCAL TIME WHILE UNDERWAY IN POSITION 02-03S 108-48E. THE SHIP'S CREW ALTERED COURSE AND FIRED FLARES WHEREUPON THE BOAT WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.799999999906845, -2.049999999586078] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-123", - "dateofocc": "2001-04-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DAISY DUCK", - "descriptio": "GULF OF ADEN:THREE PIRATES IN A WOODEN BOAT REPORTEDLY APPROACHED A YACHT 12 APR AT 0440 UTC (REPORTED 24 APR) UNDERWAY IN POSITION 12-55N 048-20E, ORDERING IT TO STOP. WHEN THE YACHT INCREASED SPEED THE PIRATES SHOT AT THE YACHT USING A MACHINE GUN. Y", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.333333300168192, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-314", - "dateofocc": "2000-09-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship was boarded 24 Sep at 1810 UTC while underway in position 01-17.0N 104-57.8E. Six person armed with long knives boarded from the starboard side. One crew member was robbed of cash and personal effects before the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.963333300119984, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-124", - "dateofocc": "2001-04-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "JUBILEE", - "descriptio": "INDIA:PANAMANIAN-FLAG CARGO SHIP (JUBILEE) (NFI) REPORTED INTERCEPTED 26 APR BY TWO BOATS WHICH BLOCKED ITS MOVE ALONG NAVIGATION CHANNEL WHILE BEING PILOTED FROM HALDIA TO KOLKATA. PILOT AND MASTER WERE DRAGGED FORM SHIP BY MEMBERS OF A GANG OF 200 WHO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.066666700257088, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-125", - "dateofocc": "2001-04-20", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 20 APR AT 0335 LOCAL TIME AT CHENNAI ANCHORAGE. FIVE PERSONS FROM UNLIT BOAT BROKE OPEN FORE PEAK STORE AND STOLE SHIP'S STORES. WATCH RAISED ALARM AND INTRUDERS JUMPED OVERBOARD AND ESCAPED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-126", - "dateofocc": "2001-04-17", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 17 APR IN \"EARLY HOURS\" AT MOORING BUOY NO. 6, MONGLA. THIEVES BROKE OPEN MANHOLE COVER INTO STEERING GEAR FLAT AND STOLE SEVEN MOORING LINES, ENGINE SPARES AND STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 22.466666699754398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-127", - "dateofocc": "2001-04-18", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS BEING CHASED 18 APR AT 0445 LOCAL TIME IN POSITION 05-35S 096-49E BY TWO HIGH SPEED UNLIT BOATS WHICH WITHDREW WHEN ILLUMINATED BY SEARCHLIGHT.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.816666700315238, -5.583333300118511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-128", - "dateofocc": "2001-04-20", - "subreg": "94", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TAIWAN STRAIT:AN UNIDENTIFIED BULK CARRIER REPORTS APPROACH BY THREE MEN IN A FAST BOAT 20 APR AT 11 UTC WHILE UNDERWAY IN POSITION 25-51N 120-45E. ALERT CREW REPORTEDLY FOILED THE ATTEMPTED BOARDING VIA THE STERN.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.750000000428258, 25.849999999787372] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-129", - "dateofocc": "2001-04-16", - "subreg": "94", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EAST CHINA SEA:AN UNIDENTIFIED CARGO SHIP REPORTEDLY NOTICED APPROACH BY A SPEED BOAT 16 APR AT 1935 LOCAL TIME WHILE UNDERWAY IN POSITION 24-34N 119-04E. BOAT INCREASED SPEED AND CAME ALONGSIDE WHILE A PERSON ON BOARD THE BOAT THREW A GRAPPLING HOOK AN", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.066666700360315, 24.566666699552513] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-130", - "dateofocc": "2001-04-20", - "subreg": "25", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC:AN UNIDENTIFIED TANKER WAS BOARDED 20 APR AT 2200 LOCAL TIME WHILE BERTHED AT RIO HAINA. FOUR PERSONS ARMED WITH KNIVES TRIED TO DISMANTLE A LIFEBOAT ENGINE AND JUMPED OVERBOARD ESCAPING WITH SAFETY EQUIPMENT WHEN SPOTTED. MARINE POL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-131", - "dateofocc": "2001-04-24", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 24 APR AT 0145 LOCAL TIME WHILE ANCHORED IN TEMA OUTER ROADS. TWO CREW CHECKING THE ANCHOR CHAIN WERE ASSAULTED AND HELD HOSTAGE BY TWO PERSONS WHILE THREE OTHERS STOLE SHIP'S STORES AND CREW EFFECTS. NO INJ", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-132", - "dateofocc": "2001-01-26", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "KHERSONES", - "descriptio": "SINGAPORE STRAIT:A 2 MAY REPORT STATES THAT UKRAINE FLAG DREDGE (KHERSONES) WAS BOARDED 26 JAN IN SINGAPORE STRAIT BY 12 PERSONS WHO SLASHED THREE CREW MEMBERS WITH MACHETES AND FIRE AXES BEFORE ESCAPING. NO MOTIVE IS REPORTED FOR THE ATTACK AND NO ITEM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.000000000111356, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-133", - "dateofocc": "2001-04-22", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 22 APR AT 0405 LOCAL TIME WHILE AT ANCHOR AT SANDAKAN, SABAH. EIGHT PERSON BOARDED USING GRAPPLING HOOKS AND STOLE SHIP'S STORES BEFORE ESCAPING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-134", - "dateofocc": "2001-04-25", - "subreg": "73", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-BANDA SEA:AN UNIDENTIFIED BULK CARRIER REPORTS BEING APPROACHED 25 APR AT 0430 UTC BY SUSPICIOUS CRAFT WHILE UNDERWAY IN 07-58S 123-45E. CRAFT APPROACHED FROM PORT BOW AND TRIED TO COME ALONGSIDE. SHIP'S ALARM RAISED AND MATE MANEUVERED AWAY", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.749999999625857, -7.966666699943801] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-135", - "dateofocc": "2001-04-27", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:AN UNIDENTIFIED TANKER WAS BOARDED 27 APR AT BETWEEN 0200 AND 0400 LOCAL TIME WHILE AT HONGAY ANCHORAGE. SHIP'S STORES STOLEN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 20.983333300227969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-136", - "dateofocc": "2001-04-27", - "subreg": "93", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO ATTEMPTED BOARDING 27 APR AT 2115 LOCAL TIME WHILE UNDERWAY IN POSITION 14-52N 112-58E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.966666700432825, 14.866666700228109] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-70", - "dateofocc": "2000-05-09", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified LPG tanker was approached while underway at 0345 UTC 9 May from the port quarter by two speed boats. The crew activated fire hoses and the apparent attempted boarding was aborted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.719722200333365, 4.117500000206462] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-71", - "dateofocc": "2000-05-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:An unidentified tanker was boarded 2200 local time 9 May by four pirates armed with long knives while underway in 02-05N, 109-13E off Sarawak. The third officer was taken hostage while the crew's valuables and cash were stolen. The attackers l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.216666699637074, 2.083333300246295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-315", - "dateofocc": "2000-09-24", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 24 Sep at 0230 local time while at Samarinda, Muara Berau and robbed of a life raft.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.239444400033676, -1.021388900165107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-72", - "dateofocc": "2000-05-16", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:On May 16 a previously-unreported incident of attempted robbery occurred on an unidentified anchored ship at Belawan 4 Apr. Between three and five persons were seen at 0303 local time on the forecastle of the ship. When the alarm wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-73", - "dateofocc": "2000-05-14", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:An unidentified cargo ship was boarded 0205 local time 14 May at anchor at Belawan. Five robbers armed with long knives boarded via the starboard side, tied up the duty sailor and threatened to kill him. They broke into the forecastl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-74", - "dateofocc": "2000-04-30", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:An unidentified 24,000-ton, Liberian-flag bulk carrier was attacked about 2030 local time 30 Apr (reported 16 May) while anchored two miles outside the harbor limit at Kohsichang.Thieves were heard trying to force the metal hawse cover to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.699999999914724, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-75", - "dateofocc": "2000-05-16", - "subreg": "26", - "hostility_": "HIJACKERS", - "victim_d": "GONIVE ENFLECHE", - "descriptio": "HAITI:Ten Haitian police officers seeking political asylum in the U.S. hijacked the catamaran ferry (GONIVE ENFLECHE)16 May after it sailed from Port Au Prince. The ferry's master and mate had been tied up but none of the 121 passengers and crew was inj", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.499999999750969, 18.699999999960824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-76", - "dateofocc": "2000-04-23", - "subreg": "57", - "hostility_": "GANG MEMBERS", - "victim_d": "MERCHANT VESSELS", - "descriptio": "NIGERIA:Nigerian police on 23 Apr raided the hulk of a sunken merchant ship off Lagos which was being used by a gang as a base from which to raid nearby island communities and ships anchored offshore. Six persons were arrested and 12 others escaped. On", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.079166700012763, 5.322222200286603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-77", - "dateofocc": "2000-05-22", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified tanker was boarded 2200 local time 22 May as it was preparing to sail from Cochin port. Thieves boarded over the stern and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.536666699824764, 11.021111099704967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-78", - "dateofocc": "2000-05-25", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified bulk carrier was board 1425 local time 25 May while berthed at Chittagong. Three thieves tossed ship's stores to confederates ashore until duty officer spotted them and alerted the crew. One thief excaped by jumping overboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-79", - "dateofocc": "2000-05-15", - "subreg": "74", - "hostility_": "PURSUERS", - "victim_d": "SPIRIT OF JUNO", - "descriptio": "INDIAN OCEAN:The sailing yacht (SPIRIT OF JUNO) reports that at 1846 UTC 15 May it was approached in position 13-24S 114-45E by a lighted unidentified motor vessel described as 100 to 120 feet in length with red-painted bow. The motor vessel with 5 pers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [114.750000000234195, -13.399999999908175] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-80", - "dateofocc": "2000-05-28", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified VLCC was approached at 1445 UTC 28 May in position 01-47N 102-28E by ten persons in an unlit boat. Crew sounded alarm as craft came alongside and attempted boarding was aborted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.466666699643611, 1.783333300146637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-81", - "dateofocc": "2000-05-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified tanker was boarded by five pirates armed with long knives at 0300 local time 28 May in position 02-00.0N 102-14.8E. The intruders entered the accommodation through the engine room skylight. When the intruders tried to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.246666700050184, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-82", - "dateofocc": "2000-05-15", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:Five masked men in two wooden speed boats approached and attempted to board an underway unidentified tanker. The incident occurred 2200 UTC 15 May in position 05-50.3N 115-37.3E off Sabah. Crew sounded ship's whistle and manned fire hoses where", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.621666699920638, 5.838333300399199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-83", - "dateofocc": "2000-05-20", - "subreg": "92", - "hostility_": "REBELS", - "victim_d": "NAVAL VESSEL", - "descriptio": "PHILIPPINES:Philippine rebels hurled hand grenades at an unidentified Philippine naval vessel docked Cotabato city in Mindanao 20 May. The naval vessel was reportedly riddled with holes but no injuries were reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.445277799780001, 12.074722200408303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-299", - "dateofocc": "2000-03-26", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:An unidentified cargo ship was boarded 26 Mar while at anchor, Bintulu, Malaysia. Three attackers armed with long knives boarded via the hawse pipe. They broke into the forecastle paint locker and stole ship's stores. When detected the thiev", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.07000000039568, 3.770000000368327] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-300", - "dateofocc": "2000-03-31", - "subreg": "22", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR:An unidentified container ship was boarded 31 Mar at 2306 local time while heaving anchor eight nautical miles off the sea buoy at Guayaquil. Two persons boarded the ship using long poles,leaving two accomplices in their speedboat. The assailan", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.880833299785024, -2.220833300313245] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-304", - "dateofocc": "2000-09-18", - "subreg": "22", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Ecuador:An unidentified ship was reportedly boarded by thieves 18 Sep at 2240 local time while approaching Guayaquil. They were discovered by a watchman and fired at him when he approached. The thieves then fled to a boat tied alongside with one of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.877499999555653, -2.20083330018673] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-302", - "dateofocc": "2000-03-27", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 27 Mar at 0330 local time while at Berlian Wharf 402, Surabaya by robbers who stole engine spares from the engine room.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.002499999631368, -7.257499999599361] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-305", - "dateofocc": "2000-09-14", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 14 SEP AT 0500 WHILE ANCHORED AT LAGOS ROADS. THREE PERSONS STOLE SHIP'S STORES AND SAFETY EQUIPMENT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.401944400153297, 6.435277800044616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-306", - "dateofocc": "2000-09-03", - "subreg": "63", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NORTH ARABIAN SEA:AN UNIDENTIFIED TANKER REPORTEDLY WAS APPROACHED 3 SEP AT 2115 LOCAL TIME IN POSITION 21-53N 064-24E BY SIX BOATS WHICH CHARGED THE SHIP'S SIDE AT HIGH SPEED. ALARM WAS SOUNDED AND ANTI-PIRACY CREW MUSTERED WITH FIRE HOSES AS DECK LIGH", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.400000000449495, 21.883333299627566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-307", - "dateofocc": "2000-09-15", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED AND ROBBED OF STORES 15 SEP AT 0225 LOCAL TIME WHILE AT CHENNAI ANCHORAGE. FOUR PERSONS FROM AN UNLIT BOAT JUMPED OVERBOARD AND ESCAPED WHEN DUTY CREW RAISED THE ALARM.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.440277799996238, 13.051666699760233] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-308", - "dateofocc": "2000-09-14", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 14 SEP AT 0710 LOCAL TIME AT CHITTAGONG ANCHORAGE AS THE CREW WERE OPENING HATCHES FOR DISCHARGE. THE THIEVES ENTERED THE FORECASTLE AND FLED WITH SOME SHIP'S STORES WHEN THE ALARM WAS RAISED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.524722199964913, 22.219444400399823] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-309", - "dateofocc": "2000-09-16", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER REPORTS APPROACH BY TWO SPEEDBOATS WITH APPARENT INTENT TO BOARD 16 SEP AT 1808 LOCAL TIME. SHIP'S ALARM WAS SOUNDED AND EVASIVE STEERING BEGUN AND THE BOATS BROKE OFF THEIR ATTEMPT.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.951944399993124, 3.563333299718579] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-310", - "dateofocc": "2000-09-15", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPELLED A BOARDING ATTEMPT 15 SEP AT 0153 LOCAL TIME AT LAWI-LAWI ANCHORAGE, BALIKPAPAN, EAST KALIMANTAN. NINE PERSONS FROM A BOAT ATTEMPTED TO BOARD THE SHIP VIA THE STERN BUT FLED WHEN THE ANTI-PIRACY PATROL SOUNDED T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.612222199607004, -2.97916670042332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-311", - "dateofocc": "2000-09-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified tanker was boarded 22 Sep at 0130 local time while underway in position 01-51N 102-20E. Five persons armed with long knives took hostage two members of the anti-piracy watch but were unable to gain access to the accommo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.333333300115896, 1.849999999910551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-312", - "dateofocc": "2000-09-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified chemical tanker was boarded 21 Sep at 2305 local time in position 02-00N 102-11E by persons armed with long knives and shot guns. The thieves entered the master and other officer's cabins and robbed personal items befor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.183333299616379, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-313", - "dateofocc": "2000-09-25", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship underway in position 01-05.4N 105-03.4E at 0125 local time on 25 Sep was approached from astern by an unlit boat first noticed by the duty officer on the ship's radar. The ship commenced evasive maneuvers, sounde", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.056666700293931, 1.089999999598149] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-137", - "dateofocc": "2001-04-30", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:ON OR ABOUT 30 APR AN OIL TANKER OWNED BY THE STATE OIL MONOPOLY PERTAMINA WAS REPORTEDLY THE TARGET OF A ROCKET-PROPELLED GRENADE ATTACK WHILE AT ITS BERTH AT LHOKSEUMAWE. THE ATTACK WAS ALLEGEDLY LAUNCHED BY REBELS OF THE FREE ACEH MOVEMENT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.16666670028161, 5.166666700004328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-138", - "dateofocc": "2001-04-18", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS BEING CHASED 18 APR AT 0445 LOCAL TIME IN POSITION 05-35N 096-49E BY TWO HIGH SPEED UNLIT BOATS WHICH WITHDREW WHEN ILLUMINATED BY SEARCHLIGHT.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.816666700315238, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-139", - "dateofocc": "2001-05-05", - "subreg": "93", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:AN UNIDENTIFIED BULK CARRIER WAS REPORTEDLY SURROUNDED 5 MAY AT 2315 LOCAL TIME BY FIVE SPEEDBOATS WHOSE OCCUPANTS ATTEMPTED TO BOARD WHILE THE BULK CARRIER WAS UNDERWAY IN POSITION 16-02N 113-42E. CREW MUSTERED AND ACTIVATED FIRE HOSES", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.700000000335081, 16.03333329993302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-140", - "dateofocc": "2001-05-08", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL:An unidentified bulk carrier was boarded 8 May at 0155 local time while berthed at sugar terminal, by ten persons armed with pistols and machine guns. Crew members were taken hostage or tied up while robbers broke into cabins and stole cash, store", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.883333300256652, -8.099999999646855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-141", - "dateofocc": "2001-05-14", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "USNS LITTLEHALES", - "descriptio": "SENEGAL:THE U.S. FLAG SURVEY SHIP (USNS LITTLEHALES) WAS BOARDED AND ROBBED OF SIX MOORING LINES 14 MAY ABOUT 0530 LOCAL TIME WHILE UNDERWAY FIVE MILES SOUTH OF DAKAR PORT. ROVING DECK WATCH NOTICED SMALL UNLIT BOAT ASTERN CONTAINING EIGHT PERSONS WHICH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.499999999770978, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-142", - "dateofocc": "2001-05-11", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 11 MAY AT 0155 UTC AT LAGOS ANCHORAGE AND ONE CREW MEMBER TAKEN HOSTAGE AND THEN THROWN OVERBOARD CATCHING HIMSELF ON A RAIL. ALARM RAISED AND THIEVES ESCAPED WITH SHIP'S STORES. LAGOS PORT CONTROL REPOR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-143", - "dateofocc": "2001-05-14", - "subreg": "63", - "hostility_": "THIEF", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 14 MAY AT 2100 LOCAL TIME AT CHITTAGONG ANCHORAGE BY A SINGLE PERSON ARMED WITH A KNIFE. WHEN SPOTTED BY WATCH PERSON JUMPED OVERBOARD AND ESCAPED IN UNLIT MOTORBOAT WITH A MOORING LINE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-144", - "dateofocc": "2001-05-16", - "subreg": "62", - "hostility_": "YEMENI GOVERNMENT", - "victim_d": "DELOS CARRIER", - "descriptio": "YEMEN:THE 4,878-TON, ST. VINCENT-FLAG VEHICLE CARRIER (DELOS CARRIER) WAS ABANDONED ABOUT 16 MAY BY ITS OFFICERS AND CREW AFTER THE SALVOR CONTRACTED TO FREE THE VESSEL AGROUND OFF YEMEN NEAR HODEIDAH LEFT THE SCENE FOLLOWING DEMANDS FOR PAYMENTS AND IND", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.200000000303476, 14.799999999564875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-145", - "dateofocc": "2001-05-09", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 MAY AT 0345 LOCAL TIME WHILE ANCHORED AT PENANG INNER ANCHORAGE BY FIVE PERSONS ARMED WITH LONG KNIVES AND CROWBARS. ALARM WAS SOUNDED AND THIEVES JUMPED OVERBOARD AFTER WHICH CREW DISCOVERED NINE CO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.333333300051208, 5.416666700237272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-146", - "dateofocc": "2001-05-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 12 MAY AT BELAWAN ANCHORAGE AT 0430 LOCAL TIME BY FOUR ARMED PERSONS FROM A SPEEDBOAT. DUTY SEAMAN HELD AT KNIFEPOINT AND SHIP'S STORES STOLEN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-147", - "dateofocc": "2001-05-12", - "subreg": "73", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-BANDA SEA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 12 MAY AT 0100 LOCAL TIME WHILE UNDERWAY IN POSITION 06-07S 125-28E. WATCH SPOTTED ONE PERSON BOARD FROM STARBOARD QUARTER AND ALERTED OTHER CREW. INTRUDER JUMPED OVERBOARD AND ESCAPED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.466666700387464, -6.11666670037863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-148", - "dateofocc": "2001-05-09", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Java:An unidentified bulk carrier was twice boarded 9 May at 0330 and 1030 local time while at Semarang anchorage. A mast house locker was broken into and ship's stores and equipment stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.316666700302164, -6.883333300250456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-149", - "dateofocc": "2001-05-05", - "subreg": "93", - "hostility_": "ATTACKERS", - "victim_d": "FISHING VESSEL", - "descriptio": "THAILAND:AN UNIDENTIFIED MALAYSIAN FISHING BOAT WAS ATTACKED 5 MAY (REPORTED 15 MAY) AT ABOUT 1700 LOCAL TIME WHILE FISHING ABOUT 12 MILES OFF TAKBAI, THAILAND. A SECOND BOAT APPROACHED THE FIRST AND OPENED FIRE KILLING OR WOUNDING THE MASTER WHO FELL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.000000000046668, 6.200000000006241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-150", - "dateofocc": "2001-05-11", - "subreg": "22", - "hostility_": "FISHING BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Ecuador:An unidentified container ship was approached 11 may at 1940 local time by two boats disguised as fishing boats. The container ship was about 20 miles off the coast about 98 miles from Guayaquil on a voyage from Buenaventura. After executing ev", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.999999999576232, -0.500000000120508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-84", - "dateofocc": "2000-05-23", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. BORNEO:An unidentified bulk carrier was boarded 0005 local time 23 May at the pilot anchorage, Samarinda. Two persons armed with long knives boarded at the forecastle but jumped into the sea when spotted by a seaman who sounded the alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.720555599942031, -0.085833299619196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-85", - "dateofocc": "2000-05-22", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. JAVA:An unidentified tanker was boarded over the stern while berthed at Anyar 0230 local time 22 May. The four intruders, armed with long knives, were spotted by the duty watchman and fled in their boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.499999999839588, -8.500000000379202] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-86", - "dateofocc": "2000-05-17", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:Five men boarded an unidentified tanker 0420 local time 17 May as it heaved anchor at Belawan anchorage. Crew sounded the alarm and the intruders jumped overboard.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.681666699750565, 3.91333329968495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-87", - "dateofocc": "2000-05-15", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "ERYA 3", - "descriptio": "INDONESIA. SUMATERA:An unknown ship reporting its name as (ERYA3) was heard in VHF Channel 16 2308 local time 15 May informing Batam Radio it was being boarded by ten men using grappling hooks. Ship reported position as 01-11N 103-58E or just off the bre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-90", - "dateofocc": "2000-01-02", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "SINAR JAVA", - "descriptio": "SRI LANKA:The 10,756-ton, Singapore-flag container ship (SINAR JAVA) was raided during the night of 2 Jan while berthed at Colombo. Navy and harbor police alerted by ship's crew who detected the raiders' approach and police were able to arrest four of t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.000000000234536, 9.649999999803072] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-93", - "dateofocc": "2000-05-30", - "subreg": "28", - "hostility_": "HIJACKERS", - "victim_d": "MARIA ESTELA", - "descriptio": "GUATEMALA. BELIZE:Three gunmen hijacked the commuter ferry (MARIA ESTELA) 30 May on a routine voyage across the Gulf of Honduras from Puerto Barrios, Guatemala to Punta Gorda, Belize. Five passengers and crew were shot and their bodies later recovered f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.916666699998643, 15.900000000230023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-94", - "dateofocc": "2000-06-03", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST:Stores were stolen and a crew member injured and hospitalized following an attack 2 Jun at 0125 UTC on an unidentified tanker anchored at Abidjan, Ivory Coast.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.955000000206098, 4.44611109969469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-325", - "dateofocc": "2000-10-01", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED GENERAL CARGO SHIP REPORTED FOILING ATTEMPTED BOARDING BY FIVE PERSONS IN A SPEEDBOAT1 OCT AT 0140LOCAL TIME WHILE UNDERWAY IN POSITION 01-55.2N 102-22.5E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.375000000396028, 1.91999999990378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-95", - "dateofocc": "2000-05-17", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA:The 8,922-ton St. Vincent-flag bulk carrier was boarded 17 May (reported 1 Jun) at Luanda anchorage. A gang, said to number 8 or 9, armed with long knives, swords and iron rods pursued the crew and tied and beat two men, on of whom was left uncon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.209166699745083, -8.809444399842107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-96", - "dateofocc": "2000-06-03", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:Ten persons in two unlit boats attempted to board an unidentified cargo ship 3 Jun at 0250 local time at Chennai anchorage. Watchman alerted bridge and intruders fled when they saw the alerted crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-97", - "dateofocc": "2000-06-03", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "ASIA HARMONY", - "descriptio": "BANGLADESH:Persons from three wooden boats made three attempts to board the 4,724-ton, Singapore-flag cargo ship (ASIA HARMONY) 3 Jun at 1515 UTC at Chittagong anchorage. Crew and watchmen prevented attempts.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-98", - "dateofocc": "2000-06-01", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified cargo ship was attacked, reportedly for the second time, 1 Jun at 1945 local time, at anchorage area 14, Pussur River, Mongla, by thieves armed with long knives. Losses not reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.594444400217981, 22.45583330021492] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-316", - "dateofocc": "2000-09-23", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:And unidentified LPG carrier reports being approached and illuminated by an unidentified boat which emerged from a large group of fishing boats 23 Sep at 0045 local time while underway Northwest of Kalimantan. After switching on its searchlig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.101666700324586, -1.53944440015556] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-317", - "dateofocc": "2000-09-24", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:An unidentified bulk carrier was boarded 24 Sep at 0300 local time while loading at Sandakan. Two persons were observed by the duty patrol attempting to open the paint locker while twelve others waited in two boats tied to the anchor chain. Du", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.254444399903832, 5.919722200357626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-318", - "dateofocc": "2000-09-25", - "subreg": "91", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:An unidentified container ship was boarded 25 Sep at 0130 local time while at anchor at Manila Bay. The duty seaman sounded ship's alarm and the thieves leapt overboard and escaped with some equipment form the ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.700833299731016, 14.844444399824113] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-319", - "dateofocc": "2000-09-28", - "subreg": "57", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA:AN UNIDENTIFIED CONTAINER SHIP REPORTED ATTEMPT TO BOARD 28 SEP AT 1158 UTC WHILE RAISING ANCHOR TEMA ANCHORAGE 05-40N 000-01W. ANTI-PIRACY WATCH SPOTTED SMALL WOODEN BOAT WHICH WAS DRIVEN AWAY. LATER ONE PERSON ATTEMPTED TO BOARD VIA THE ANCHOR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.01666669955182, 5.66666669957084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-320", - "dateofocc": "2000-09-28", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA. MADRAS:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 28 SEP AT 0030 LOCAL TIME AT CHENNAI ANCHORAGE. THREE PERSON ARMED WITH KNIVES WERE SPOTTED BY DUTY WATCH, ALARM WAS SOUNDED AND INTRUDERSJUMPED OVERBOARD. POLICE BOAT ATTENDED TO INVESTIGATE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.354999999558004, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-321", - "dateofocc": "2000-10-02", - "subreg": "63", - "hostility_": "LTTE REBELS", - "victim_d": "NAVY BOAT", - "descriptio": "SRI LANKA:THE DEFENCE MINISTRY REPORTED 2 OCT THAT AN OFFICER AND A SAILOR WERE KILLED WHEN THEIR BOAT WAS DISABLED BY LTTE REBELS NEAR THE WESTERN COASTAL TOWN OF PUTTALAM.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.833333299837875, 8.033333299674268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-322", - "dateofocc": "2000-10-01", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MYANMAR:UNIDENTIFIED CONTAINER SHIP AT NEW EXPLOSIVE ANCHORAGE, YANGON RIVER SUBJECTED TO ATTEMPTED BOARDING BY THREE PERSONS FORM SMALL BOAT 1 OCT AT 0210 LOCAL TIME. WATCH RAISED ALARM AND INTRUDERS FLED TOWARD NEW CONTAINER TERMINAL.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [96.259999999699176, 16.646666699800051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-323", - "dateofocc": "2000-10-02", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:ALERT CREW FOILED ATTEMPTED BOARDING OF UNIDENTIFIED CONTAINER SHIP 2 OCT AT 2330 LOCAL TIME WHILE UNDERWAY IN POSITION 02-21.6N 101-41.0E, 10 NM FROM TANJUNG TUAN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.683333300049867, 2.359999999989952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-324", - "dateofocc": "2000-10-01", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 1 OCT AT 0250 LOCAL TIME WHILE UNDERWAY IN POSITION 01-57.5N 102-15E. CHIEF OFFICER WAS TAKEN HOSTAGE BY FOUR PERSONS ARMED WITH GUNS AND LONG KNIVES AND HIS KEYS USED TO OPEN CABINS OF MASTER", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.250000000279613, 1.958333300129823] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-326", - "dateofocc": "2000-09-29", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP REPORTED ATTEMPTED BOARDING 29 SEP AT 0420 LOCAL TIME WHILE UNDERWAY IN POSITION 01-54.7N 102-13.4E. MASTER TOOK EVASIVE ACTION ALTERING COURSE AFTER WHICH PURSUIT AND BOARDING ATTEMPTS CONTINUED FOR TEN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.223333299869523, 1.911666700317255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-327", - "dateofocc": "2000-10-01", - "subreg": "71", - "hostility_": "HIJACKERS", - "victim_d": "HAZEL 1", - "descriptio": "SINGAPORE:BULK CARRIER (HAZEL 1)(NFI) REPORTS BOARDING 1 OCT BY 21 PERSONS ARMED WITH PISTOLS AND KNIVES WHILE ANCHORED AT SINGAPORE WESTERN OPL ANCHORAGE. INTRUDERS BOARDED AT 0030 LOCAL TIME, TIED AND GAGGED THE SLEEPING CREW AND RANSACKED THE SHIP FO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.573333299868182, 1.219999999971094] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-328", - "dateofocc": "2000-10-01", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. SUMATERA:AN UNIDENTIFIED TANKER WAS BOARDED 1 OCT AT 0200 LOCAL TIME WHILE AT ANCHOR, DUMAI PORT BY FOUR PERSONS ARMED WITH KNIVES OPERATING FORM A SMALL MOTOR BOAT. WATCH RAISED ALARM AND INTRUDERS FLED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.65000000044364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-151", - "dateofocc": "2001-05-06", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Ecuador:An unidentified container ship was boarded 6 May at 2230 local time while anchored at Guayaquil (reported 18 May). Ten persons boarded from a boat alongside and shots were fired when crew tried to stop boarding. General alarm sounded and pilot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.899999999810461, -2.216666699982682] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-152", - "dateofocc": "2001-05-16", - "subreg": "51", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MOROCCO:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 16 MAY AT 0300 LOCAL TIME AT AGADIR BY EIGHT PERSONS ARMED WITH KNIVES AND STICKS. THE INTRUDERS THREATENED THE WATCHMEN BUT CREW ARRIVED AND CAPTURED FOUR PERSONS, DETAINING THEM UNTIL POLICE ARRIVED WITHI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.666666699908887, 30.49999999998272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-153", - "dateofocc": "2001-05-16", - "subreg": "62", - "hostility_": "ROBBERS", - "victim_d": "GULF STAR", - "descriptio": "YEMEN:THE 22,572-TON, BAHAMAS FLAG CONTAINER SHIP (GULF STAR) WAS BOARDED AND ROBBED 16 MAY BETWEEN 0030 AND 0600 LOCAL TIME BY PERSONS WHO ENTERED RADIO ROOM AND STOLE A LAPTOP COMPUTER, TWO PRINTERS AND A FAX MACHINE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-154", - "dateofocc": "2001-05-14", - "subreg": "63", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:A SINGLE PERSON ARMED WITH A KNIFE BOARDED AN UNIDENTIFIED CARGO SHIP AT CHITTAGONG ANCHORAGE 14 MAY AT 2100 LOCAL TIME USING A GRAPPLING HOOK AT THE FORECASTLE. WHEN SPOTTED BY ANTI-PIRACY WATCH THE MAN JUMPED OVERBOARD AND ESCAPED IN AN UNL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-155", - "dateofocc": "2001-05-17", - "subreg": "71", - "hostility_": "STALKER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA SEA:AN UNIDENTIFIED GAS CARRIER REPORTS BEING INTERCEPTED 17 MAY AT 0200 LOCAL TIME WHILE UNDERWAY IN THE NORTH JAVA SEA IN POSITION 01-09S 107-33E BETWEEN SUMATRA AND KALIMANTAN. SHIP ALTERED COURSE BUT BOAT MATCHED MOVEMENTS UNTIL ILLUM", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.549999999641614, -1.150000000186481] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-156", - "dateofocc": "2001-05-22", - "subreg": "57", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 22 MAY AT 0130 WHILE AT LAGOS ANCHORAGE. FOUR ARMED PERSONS ATTEMPTED TO BREAK INTO THE ROPE STORE BUT FLED WHEN THEY WERE SPOTTED AND ALARMS WAS RAISED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-157", - "dateofocc": "2001-05-26", - "subreg": "56", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EGYPT:An unidentified container ship was boarded 26 may at 1625 local time while at outer anchorage, suez. Unauthorized person found at forward stores while a second attempted to board from a launch. Two other persons found in accommodation. alarm raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.833333300019547, 32.566666699811265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-158", - "dateofocc": "2001-05-22", - "subreg": "62", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAN:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 22 MAY AT BANDAR KHOMEINI INNER ANCHORAGE VIA HAWSE PIPE, AND SHIP'S STORES STOLEN. DESPITE PROBABLE OCCURRENCE OF MANY SUCH EVENTS, THIS IS RARE EXAMPLE OF ONE ACTUALLY BEING REPORTED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.099999999864735, 30.433333300218806] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-159", - "dateofocc": "2001-05-29", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 29 MAY AT 0600 LOCAL TIME AT TANJUNG PRIOK ANCHORAGE. THE THREE INTRUDERS JUMPED OVERBOARD AND ESCAPED WHEN ALARM RAISED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-354", - "dateofocc": "2000-10-18", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER REPORTED A BOARDING ATTEMPT 18 OCT AT 2030 LOCAL TIME AT CHENNAI. ANTI-PIRACY WATCH FOILED THE ATTEMPT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.354999999558004, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-160", - "dateofocc": "2001-05-26", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED ROLL-ON, ROLL-OFF SHIP WAS BOARDED 26 MAY AT 0530 LOCAL TIME WHILE ANCHORED AT TANJUNG PRIOK. FIVE PERSONS BOARDED VIA THE STERN AND WHEN CHALLENGED STRUCK ONE CREW MEMBER OVER THE HEAD, CAUSING HIM TO BLEED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-161", - "dateofocc": "2001-05-23", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 23 MAY AT 0345 LOCAL TIME AT BELAWAN ANCHORAGE. FIVE PERSONS BOARDED VIA THE FORECASTLE AND JUMPED OVERBOARD AND ESCAPED WITH A BREATHING APPARATUS WHEN THE ALARM WAS SOUNDED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, -3.783333300419997] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-162", - "dateofocc": "2001-05-22", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Balikpapan:An unidentified bulk carrier was boarded 22 May at Lawi Lawi anchorage, Balikpapan. A life raft and three mooring lines were stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.466666700183282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-163", - "dateofocc": "2001-05-27", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:AN UNIDENTIFIED TANKER WAS BOARDED 27 MAY AT 1705 LOCAL TIME AT VUNG TAU ANCHORAGE. ANTI-PIRACY WATCH SPOTTED TWO PERSONS LOWERING MOORING LINE INTO A SPEEDBOAT. ALARM RAISED AND THIEVES ESCAPED IN THE BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-164", - "dateofocc": "2001-05-23", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 23 MAY AT 2030 LOCAL TIME OVER THE BOW WHILE ANCHORED AT VUNG TAU. THE THIEVES BROKE OPEN THE FORECASTLE STORE STOLE SHIP'S STORES. ALARM RAISED AND THIEVES ESCAPED IN UNLIT MOTORBOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-165", - "dateofocc": "2001-05-24", - "subreg": "94", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EAST CHINA SEA:AN UNIDENTIFIED TANKER WAS REPORTEDLY CIRCLED 24 MAY AT 1400 UTC BY FOUR HIGH-SPEED BOATS WHILE UNDERWAY IN POSITION 25-38N 122-39E. CREW MUSTERED, TURNED ON DECK LIGHTS AND ACTIVATED FIRE HOSES, THE BOATS WITHDREW AND REGROUPED AT STERN.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.649999999860142, 25.633333300423317] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-166", - "dateofocc": "2001-05-31", - "subreg": "51", - "hostility_": "THIEVES", - "victim_d": "SEA REGENT", - "descriptio": "SENEGAL:THE FORMER CRUISE SHIP (SEA REGENT) (POSSIBLY (REGENT SEA) UNDER TOW TO INDIA WHERE IT WAS TO BE USED AS A HOTEL OR ACCOMMODATION SHIP, WAS RANSACKED BY LOCAL INHABITANTS WHILE OFF DAKAR ACCORDING TO A 31 MAY PRESS REPORT. THE THIEVES, OPERATING", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.499999999770978, 14.500000000364594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-99", - "dateofocc": "2000-06-01", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:Six persons in a wooden boat attempted to remove zinc anodes from the stern of an unidentified container ship anchored at Chittagong 1 Jun at 0430 local time. Ship's watch had been doubled and six local watchmen hired. Port Control notified", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-100", - "dateofocc": "2000-06-05", - "subreg": "63", - "hostility_": "LTTE REBEL FORCES", - "victim_d": "NAVAL VESSEL", - "descriptio": "SRI LANKA:Sri Lankan forces reportedly lost two Super Dvora patrol boats 5 Jun in attacks south of Jaffna. One boat was sunk by rebel forces while the second was reported hit by Air Force planes by mistake. Fifteen sailors were reported killed. As the", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.000000000234536, 9.649999999803072] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-101", - "dateofocc": "2000-06-03", - "subreg": "62", - "hostility_": "ETHIOPIA", - "victim_d": "ERITREA", - "descriptio": "ERITREA-ETHIOPIA:Ethiopian aircraft reportedly conducted bombing raids around the port of Massawa 19 May and on 3 and 4 Jun fighting was reported near Assab port. Among Ethiopia's unstated war aims, access to the sea and control of a port must figure st", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.816666700367591, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-102", - "dateofocc": "2000-06-01", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified tanker was boarded 1 Jun at 0256 local time in position 01-48.7N 102-26.6E by seven persons armed with long knives. Intruders tied up the captain, stole $1,483 in ship's cash, crew effects and equipment. The intruders", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.442500000261077, 1.811111100333449] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-103", - "dateofocc": "2000-05-31", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier was approached under the stern 31 May at 1405 UTC by an unlit fast speedboat in position 01-47.0N 102-28.1E. Crew sounded alarm and switched on lights whereupon boarding attempt was aborted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.468333299845938, 1.783333300146637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-104", - "dateofocc": "2000-06-01", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier reported that 1 Jun at 2300 local time a boat with six persons armed with knives tied up to its anchor chain at Panjang anchorage in position 05-30S 105-17E. Watchman alerted the bridge and ship's alarm was sounded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-105", - "dateofocc": "2000-06-03", - "subreg": "91", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:An unidentified general cargo ship reports attempted boarding 3 Jun at 0250 UTC while underway in 18-52N 118-44E. Attacking craft is described as radar equipped, modern high-speed craft showing no name. Nature of boarding attempt is uns", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.733333299567107, 18.866666700357428] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-106", - "dateofocc": "2000-06-07", - "subreg": "82", - "hostility_": "RIVAL GANG", - "victim_d": "POLICE BOAT", - "descriptio": "SOLOMON ISLANDS:One of the rival gangs fighting for control of the Solomons seized a police patrol boat in the capital, Honiara, and used it to shell opposing militia causing a reported 100 casualties 7 Jun.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [159.950000000256978, -9.416666699675943] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-107", - "dateofocc": "2000-06-21", - "subreg": "63", - "hostility_": "HIJACKERS", - "victim_d": "MED STAR", - "descriptio": "INDIAN OCEAN:The crew of 10,576-ton, St. Vincent-flag cargo ship (MED STAR) reported hijacked 9 Jun by 14 stowawayswho boarded the ship at Bandar Abbas, Iran, cooperated in smuggling the men aboard for a reported payment of $250 per person. The 14 were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.866666700111125, 5.10000000024047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-108", - "dateofocc": "2000-06-06", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified heavy-lift vessel was approached 4 miles from the breakwater at Chennai by six persons in a speed boat at 0215 local time 6 Jun. Three of the boat occupantsboarded the ship and tried to gain access to the accommodation block but we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-109", - "dateofocc": "2000-06-09", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified cargo ship was boarded in Chittagong Roads at 2200 local time 9 Jun. Two persons armed with long knives gained access over the stern and lowered two mooring lines into the water where they were towed away by a small wooden boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 22.300000000257114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-110", - "dateofocc": "2000-06-10", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship was boarded 10 Jun at 1215 local time at Tanjung Priok anchorage by eight persons armed with steel pipes who gained access over the stern. The intruders fled immediately when they were noticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.450000000199225, -2.533333300154766] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-111", - "dateofocc": "2000-06-05", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker was boarded 5 Jun at 0300 local time at Belawan anchorage by two persons armed with long knives who gained access via the anchor chain from a smallwooden boat. Duty AB spotted the intruders and sounded the alarm whereupo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-329", - "dateofocc": "2000-09-28", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED SHIP REPORTS BEING APPROACHED 28 SEP AT 1045 LOCAL TIME WHILE UNDERWAY IN POSITION 05-23.4S 106-57.2E WEST OF KALIMANTAN. SHIP WAS APPROACHED AT 21 KNOTS BY SMALL SPEEDBOAT FROM PORT QUARTER. ALARM WAS RAISED AND ANTI-PIRACY C", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.953333299671726, -5.390000000035855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-330", - "dateofocc": "2000-09-27", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPORTS ATTEMPTED BOARDING 27 SEP AT 1800 LOCAL TIME WHILE UNDERWAY IN 00-30N 108-07E. TEN PERSONS IN A /WHITE-HULLED HIGH SPEED BOAT APPROACHED THE STERN AT 22 KNOTS. ALARM WAS RAISED AND BOAT DISAPPEARED IN DIRECTION", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.116666699871303, 0.499999999911836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-331", - "dateofocc": "2000-09-26", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: AN UNIDENTIFIED TANKER REPORTED AN ATTEMPTED BOARDING 26 SEP AT 0405 LOCAL TIME WHILE UNDERWAY IN POSITION 01-15.6N 104-54.5E. TEN TO FIFTEEN PERSONS IN A SPEEDBOAT APPROACHED THE STARBOARD QUARTER BUT ABORTED THE ATTEMPT WHEN SEARCHLIGHT WAS", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.908333299996798, 1.260000000224181] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-332", - "dateofocc": "2000-09-25", - "subreg": "71", - "hostility_": "HIJACKERS", - "victim_d": "PETCHEM", - "descriptio": "INDONESIA-NATUNA ISLAND:THE 2,378-TON CHEMICAL TANKER (PETCHEM) WAS HIJACKED 25 SEP AT 0230 LOCAL TIME IN POSITION 01-40N 106-18E NEAR THE NATUNA ISLANDS WHILE ON VOYAGE PORT DICKSON, TO KUCHING, SARAWAK, MALAYSIA WITH A CARGO OF GAS OIL. CREW WERE OVER", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.300000000275645, 1.666666700340784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-333", - "dateofocc": "2000-09-19", - "subreg": "24", - "hostility_": "BOARDERS", - "victim_d": "CSAV CHARLESTON", - "descriptio": "COLOMBIA:THE 14,865-TON CYPRUS-FLAG CONTAINER SHIP (CSAV CHARLESTON) WAS APPROACHED 19 SEP (REPORTED 3 OCT) WHILE UNDERWAY OFF CARTAGENA WITH THE PILOT STILL ON BOARD. FOUR ARMED MEN IN A MOTORBOAT ATTEMPTED TO SECURE A LINE TO THE SHIP BUT ABORTED THEI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.666666700244662, 10.500000000235218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-334", - "dateofocc": "2000-10-04", - "subreg": "21", - "hostility_": "KIDNAPPERS", - "victim_d": "SPORT FISHING BOATS", - "descriptio": "GUATEMALA:Kidnapping for ransom, long a problem in Guatemala, has reportedly moved to sport fishing boats in the pacific 40miles southwest of port quetzal according to a 4 Oct report of an august incident. The kidnappers wore army fatigues and operated", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-92.50000000039779, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-335", - "dateofocc": "2000-10-12", - "subreg": "62", - "hostility_": "SUICIDE BOAT ATTACK", - "victim_d": "USS COLE", - "descriptio": "YEMEN:THE U.S. FLAG DESTROYER USS COLE WAS SEVERELY DAMAGED 12 OCT BY AN EXPLOSION CAUSED BY AN APPARENT SUICIDE BOAT ATTACK WHILE MOORING AT THE PORT OF ADEN FOR REFUELING. THE REPORTED CASUALTY TOLL IS 17 DEAD AND NUMEROUS INJURIES. THE U.S. DEPARTMEN", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.049999999868703, 12.783333299603044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-336", - "dateofocc": "2000-10-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED OFFSHORE SUPPLY SHIP WAS BOARDED AND ROBBED 6 OCT AT 0057 WHILE AT ANCHOR CHITTAGONG. TWO BOATS WITH SIX PERSONS EACH APPROACHED AND, WHEN CREW ON DECK TRIED TO PREVENT BOARDING, OPENED FIRE WITH GUNS INJURING THE 2ND OFFICER.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-337", - "dateofocc": "2000-10-03", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED AND ROBBED 3 OCT DURING THE NIGHT, WHILE ANCHORED AT CHITTAGONG ANCHORAGE C. THE SAME PERSONS HAD TRIED TWICE EARLIER TO BOARD. SHIP'S STORES WERE STOLEN BEFORE A BANGLADESHI NAVAL UNIT ANCHORED NEARB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.238333299850353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-338", - "dateofocc": "2000-10-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:ABOUT 40 PIRATES IN FIVE BOATS REPORTEDLY ATTEMPTED TO BOARD AN UNIDENTIFIED TANKER 7 OCT AT 1330 LOCAL TIME IN THE SOUTHERN RED SEA IN POSITION 14-38.64N 042-03.93E. A PASSING SHIP REPORTEDLY CAME TO THE ASSISTANCE OF THE TANKER AND THE BOARDIN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.06555559989215, 14.644166699607126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-339", - "dateofocc": "2000-10-06", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP REPORTED BEING APPROACHED 6 OCT AT 0030 LOCAL TIME WHILE UNDERWAY IN POSITION 01-45N 102-31E. A WOODEN SPEEDBOAT, SIX METERS IN LENGTH AND WITH A LIGHT BLUE HULL CAME CLOSE TO THE STERN BUT LEFT WHEN ANTI", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.516666700409644, 1.750000000177067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-167", - "dateofocc": "2001-05-31", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 31 MAY AT 0400 LOCAL TIME WHILE AT CHENNAI PORT. FIVE PERSONS WERE OBSERVED ON DECK ARMED WITH KNIVES ATTEMPTING TO REMOVE A MOORING LINE. ALARM WAS RAISED AND THE INTRUDERS JUMPED OVERBOARD TO ESCAPE IN T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.354999999558004, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-168", - "dateofocc": "2001-05-31", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CEMENT CARRIER WAS BOARDED 31 MAY AT 2000 LOCAL TIME WHILE AT JETTY 5, MONGLA. WATCHMAN OBSERVED TEN MEN ARMED WITH KNIVES LOWERING MOORING LINE INTO A SMALL BOAT. HE WAS ASSAULTED WHEN HE CONFRONTED THE THIEVES WHEREUPON HE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.533333300061656, 22.583333299560252] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-169", - "dateofocc": "2001-06-01", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED PRODUCT TANKER WAS BOARDED 1 JUN AT 1920 LOCAL TIME WHILE MOORED AT BELAWAN. THIEVES BROKE INTO THE FORECASTLE STORE AND STOLE SHIP'S STORES BEFORE ESCAPING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-170", - "dateofocc": "2001-06-04", - "subreg": "61", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:AN UNIDENTIFIED CARGO SHIP REPORTS ATTEMPTED BOARDING 4 JUN AT 0100 LOCAL TIME BY A GROUP OF 20 TO 30 PERSONS OPERATING FROM EACH OF TWO BOATS SPOTTED AT THE VESSEL'S ANCHOR CHAIN WHILE AT ANCHOR DAR ES SALAAM. ALARM SOUNDED AND CREW MUSTERED W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.749999999648139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-353", - "dateofocc": "2000-10-18", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED 18 OCT AT 0500 LOCAL TIME WHILE BERTHED AT KANDLA. A STOREROOM AT THE STERN WAS BROKEN INTO AND STORES AND EQUIPMENT STOLEN. POLICE RECOVERED ONE TOOLBOX.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.183333300380184, 23.050000000056514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-171", - "dateofocc": "2001-06-10", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "MOHYEDDIN-M", - "descriptio": "INDIAN OCEAN-YEMEN:THE SYRIAN-FLAG LIVESTOCK CARRIER (MOHYEDDIN-M) WAS REPORTED BOARDED PRIOR TO 10 JUN WHILE IN YEMENI WATERS NEAR OMANI BOARDER BY PERSONS WHO DEMANDED MONEY TO ALLOW CONTINUED PASSAGE OF THE VESSEL. SHIP CALLED AT OMAN ENROUTE MUMBAI,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.000000000260684, 15.99999999996345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-172", - "dateofocc": "2001-06-10", - "subreg": "63", - "hostility_": "BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:An unidentified tanker reported being followed 10 jun at 0443 utc for a period of about 55 minutes while underway in position 01-08N 085-09E. boat with 6 or 7 persons aboard, light green in color and 12 to 15 meters in length was not challe", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [85.149999999996396, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-173", - "dateofocc": "2001-06-06", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP ANCHORED IN THE PUSSUR RIVER, MONGLA WAS ROBBED OF FOUR ZINC ANODES FROM THE RUDDER POST 6 JUN DURING THE EARLY MORNING HOURS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 22.466666699754398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-174", - "dateofocc": "2001-06-11", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:AN UNIDENTIFIED BULK CARRIER REPORTS APPROACH BY THREE SPEEDBOATS WITH ABOUT 10 PERSONS EACH 11 JUN AT 1130 UTC WHILE UNDERWAY IN ABU ALI CHANNEL, 14-14.8N 042-43.3E. MASTER TOOK EVASIVE ACTION AND THERE WAS NO BOARDING.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.72166669999126, 14.246666699902278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-175", - "dateofocc": "2001-06-07", - "subreg": "61", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED LPG CARRIER REPORTS APPROACH BY DARK GRAY SPEEDBOAT OPERATING AT 25 KNOTS 7 JUN AT 1215 UTC WHILE UNDERWAY IN POSITION 01-08S 085-25E. BOAT \"HOVERED\" AROUND SHIP FOR FIFTEEN MINUTES AND LEFT WHEN SHIP FLASHED SEARCHLIGH", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [85.416666700126427, -1.133333300289337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-176", - "dateofocc": "2001-06-07", - "subreg": "92", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Philippines:An unidentified cargo ship reports attempt to board 7 Jun at 0243 utc while underway in Celebes sea in position 05-35.3n 123-04.7e. The boat with armed persons aboard followed the ship for 30 minutes before breaking off contact. There is co", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.078333300305644, 5.588333300166255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-177", - "dateofocc": "2001-03-20", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "LORNA", - "descriptio": "VENEZUELA:SAILING YACHT (LORNA) WAS ATTACKED BY GUNMEN 20 MARCH (REPORTED 20 JUN) AT 0030 LOCAL TIME WHILE UNDERWAY IN POSITION 10-44.6N 062-22.1W BETWEEN ISLA MARGARITA AND TRINIDAD. THE YACHT'S OWNER WAS SHOT AND THE YACHT RANSACKED BY FOUR MEN ARMED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.368333299926917, 10.743333300184588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-178", - "dateofocc": "2001-06-12", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 12 JUN AT 0220 LOCAL TIME WHILE ANCHORED AT DAR ES SALAAM, BY ABOUT 20 PERSONS ARMED WITH KNIVES. PIRACY WATCH SPOTTED THEM LOWERING MOORING LINE TO A WAITING BOAT AND RAISED THE ALARM. RESPONDING CREW", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.749999999648139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-179", - "dateofocc": "2001-06-12", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 12 JUN AT 0330 LOCAL TIME IN THE OUTER ROADS, CHENNAI VIA THE STERN SIX PERSONS ARMED WITH LONG KNIVES. THE INTRUDERS THREATENED THE WATCHMAN AND STOLE SHIP'S STORES BEFORE JUMPING OVERBOARD TO ESCAPE IN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-180", - "dateofocc": "2001-06-17", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 17 JUN AT 2120 LOCAL TIME BY EIGHT PERSONS ARMED WITH KNIVES, WHILE THE SHIP WAS ANCHORED AT CHITTAGONG. WHEN THE ALARM WAS SOUNDED AND CREW MUSTERED, THE THIEVES JUMPED OVERBOARD AN ESCAPED WITH MOORING LIN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-181", - "dateofocc": "2001-06-14", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 14 JUN AT 2320 LOCAL TIME BY PERSONS ARMED WITH KNIVES WHILE ANCHORED AT CHITTAGONG. SHIP'S WATCHMAN WAS THREATENED BUT RAISED THE ALARM WHEREUPON THE THIEVES ESCAPED WITH SHIP'S EQUIPMENT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-112", - "dateofocc": "2000-05-27", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "TEMASEK", - "descriptio": "STRAIT OF MALACCA:The 11,755-ton Singapore-flag tanker (TEMASEK) was boarded 0300 local time 27 May (reported 21 Jun) in position 01-59.5N 102-12.7E by seven persons who stole $330 from the Chief Enginee and an unreported sum of cash, a mobile phone and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.21166670005357, 1.992500000025302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-352", - "dateofocc": "2000-10-16", - "subreg": "71", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 16 OCT AT 0100 UTC WHILE UNDERWAY IN POSITION 05-45.8N 096-28.3E OFF SUMATRA. BOATS, EACH OF WHICH CONTAINED TWO MEN AND WERE BLUE WITH RED AND WHITE HORIZONTAL STRIPES, APPROACHED TO WITHIN 30", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.471666699706077, 5.763333300149441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-113", - "dateofocc": "2000-04-30", - "subreg": "82", - "hostility_": "THIEVES", - "victim_d": "WORLD DISCOVERER", - "descriptio": "SOLOMON ISLANDS:The 3,153-ton, Liberian-flag passenger ship (WORLD DISCOVERER), wrecked 30 Apr in Sandy Passage, 25 miles north of Honiara, and abandoned by passengers and crew, has been ransacked by local natives. The ship had reportedly been dewatered", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [159.816666699654661, -9.983333300080915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-114", - "dateofocc": "2000-06-07", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "SEA LION", - "descriptio": "GUATEMALA:The owner of the yacht (SEA LION) was found dead aboard 7 Jun after apparently being shot several times about 3 Jun, and the vessel had been ransacked. At the time of incident yacht was anchored on the Rio Dulce. Assaults on and robbery of y", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.872222199914688, 15.747499999602269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-115", - "dateofocc": "2000-06-02", - "subreg": "22", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR:An unidentified Liberian-flag general cargo ship was approached 2 Jun 0030 local time (reported 29 Jun) as it approached port at Guayaquil in the vicinity of buoy 48. Twelvepersons in a motor launch approached from vessel's stern and were judged", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.999999999576232, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-116", - "dateofocc": "2000-06-23", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "SCAN EAGLE", - "descriptio": "CAMEROUN:The 1,964-ton Danish-flag cargo ship (SCAN EAGLE) was boarded 23 Jun at 0015 local time while berthed at Douala, Cameroun. Several men, reportedly heavily armed (NFI) retrained three crew while they removed drums of paint from the ship's store.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.500000000202874, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-117", - "dateofocc": "2000-06-20", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified bulk carrier at Chittagong was boarded 20 Jun at 0245 local time by six thieves armed with knives. After threatening the duty seaman the intruders broke open the rope store and stole ship's stores. Duty seaman raised the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-118", - "dateofocc": "2000-06-26", - "subreg": "63", - "hostility_": "LTTE SEA TIGERS", - "victim_d": "MERCS UHANA", - "descriptio": "SRI LANKA:The 1,834-ton Sri Lanka-flag cargo ship (MERCS UHANA) was attacked 26 Jun early in the day as it came to anchor off Point Pedro, by boats of the LTTE Sea Tigers. A suicide boat, reportedly carrying six LTTE cadres rammed the ship setting it af", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.000000000234536, 9.649999999803072] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-119", - "dateofocc": "2000-06-26", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker was boarded 26 Jun at 0110 local time during a rain storm while at Tanjung Santan anchorage. The thieves reportedly boarded via an anchor chain, stole a life raft and stores, and escaped without being noticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-120", - "dateofocc": "2000-06-05", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified 16,000-ton cargo ship was boarded 5 Jun (reported 29 Jun) at Panjang anchorage off Sumatra. Duty oiler reportedly discovered four men, one of whom was armed with a knife, hiding in the ship's funnel at 0115. Ship's alarm was s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.720555599942031, -5.150000000315856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-121", - "dateofocc": "2000-06-29", - "subreg": "25", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC:An unidentified bulk carrier was boarded 29 Jun at 0330 local time while berthed at Rio Haina. The intruders entered the bridge through a window and stole communications gear and signal flares. Two navy security guards were on board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.000000000119826, 19.916666700256485] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-122", - "dateofocc": "2000-07-03", - "subreg": "24", - "hostility_": "THIEVES", - "victim_d": "ATL ENDURANCE", - "descriptio": "VENEZUELA:The 4,455-ton, Panama-flag (ATL ENDURANCE) was boarded 3 Jul at 0130 local time while at berth 5, Guanta. Six intruders boarded from the seaward side armed with knives and bolt cutters. Holding a crew member at knifepoint, they opened three 4", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.999999999958106, 10.333333299838614] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-123", - "dateofocc": "2000-07-03", - "subreg": "22", - "hostility_": "BOARDERS", - "victim_d": "MINNESOTA", - "descriptio": "ECUADOR:The 6,794-ton Malta-flag refrigerated cargo ship (MINNESOTA) was boarded 3 Jul at 1930 local time while at Puerto Bolivar anchorage. During the incident one crew member was shot and wounded. Other ships in the area reportedly left the anchorage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.249999999776776, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-124", - "dateofocc": "2000-07-02", - "subreg": "51", - "hostility_": "THIEVES", - "victim_d": "VENEZIA", - "descriptio": "GUINEA:An unidentified cargo ship, assessed to be 11,536-ton, Malta-flag cargo ship (VENEZIA) was attacked by gun fire 2 Jul at 2100 local at its berth, Conakry. Ship had been experiencing pilferage of cargo of bagged rice during stay and, on 2 Jul, Mas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.000000000107434, 8.999999999737042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-340", - "dateofocc": "2000-10-01", - "subreg": "93", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:AN UNIDENTIFIED CONTAINER SHIP REPORTS APPROACH BU HIGH-SPEED CRAFT 1 OCT AT 1400 LOCAL TIME IN POSITION 19-29N 113-42E. CRAFT DESCRIBED AS DARK HULL, LOW FREEBOARD, ROUND PORTS, RADAR AND WITH 12 OIL DRUMS ON DECK, WITHOUT MARKINGS OR F", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.700000000335081, 19.483333299729793] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-341", - "dateofocc": "2000-10-09", - "subreg": "71", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:FIVE PERSONS IN A SPEEDBOAT ATTEMPTED TO BOARD A CARGO SHIP 9 OCT AT 0350 LOCAL TIME UNDERWAY IN 03-09.3N 105-30.5E. BOAT LEFT THE SCENE WHEN ALARM SOUNDED AND CREW MUSTERED.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.508333300196057, 3.155000000298969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-342", - "dateofocc": "2000-10-05", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 5 OCT AT 1230 LOCAL TIME AT ANCHOR, JAKARTA. SIX PERSONS ARMED WITH LONG KNIVES BOARDED VIA THE PORT SIDE AND STOLE SHIP'S STORES BEFORE FLEEING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.896666700245532, -6.051666699742498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-343", - "dateofocc": "2000-10-05", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:AN UNIDENTIFIED TANKER WAS BOARDED 5 OCT AT 2000 UTC WHILE AT ANCHOR SANDAKAN. FOUR PERSONS ARMED WITH KNIVES BOARDED BUT FLED WHEN DUTY OFFICER RAISED ALARM.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.111666699938269, 5.820000000299729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-344", - "dateofocc": "2000-10-09", - "subreg": "91", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:Eight persons boarded an unidentified container ship 9 Oct at 0135 at anchor manila bay from an unlit boat. Stores were stolen from forward store and the thieves fled when spotted and ship's alarm sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.894999999771926, 14.611666699738691] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-345", - "dateofocc": "2000-09-29", - "subreg": "92", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:AN UNIDENTIFIED DUTCH REFRIGERATED CARGO SHIP WAS PURSUED FOR 45 MINUTES 29 SEP (REPORTED 6 OCT) WHILE UNDERWAY IN 08-02.0N 127-18.5E ABOUT 50 MILES OFF MINDANAO ENROUTE DAVAO. PURSUIT BEGAN AT 2130 LOCAL TIME WHEN UNLIT BOAT APPROACHED AT S", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [127.308333299642072, 8.033333299674268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-346", - "dateofocc": "2000-10-12", - "subreg": "83", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT SHIP CREWS", - "descriptio": "FIJI:Local authorities report extortion and robbery aimed at foreign merchant ship crews at Lautoka according to 12 OCT report. Armed men wearing military uniforms have boarded vessels at Kings wharf demanding cash and food.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [177.46666670027048, -17.600000000403725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-347", - "dateofocc": "2000-10-12", - "subreg": "22", - "hostility_": "SPEED BOATS", - "victim_d": "CIELO DE CHILE", - "descriptio": "Ecuador:The 14,366-ton Cyprus flag container ship (Cielo de Chile) was approached \"early\" 12 Oct at Guayaquil while underway near the data sea buoy by two boats each containing about seven armed persons. Boats attempted to come alongside. Alarm was sou", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.899999999810461, -2.216666699982682] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-348", - "dateofocc": "2000-10-14", - "subreg": "63", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT OF ATTEMPTED BOARDING 14 OCT AT 1930 UTC WHILE ANCHORED AT CHENNAI. FOUR PERSONS IN A SPEEDBOAT ATTEMPTED TO GAIN ACCESS VIA THE ANCHOR CHAIN BUT FLED WHEN SPOTTED BY SHIP'S WATCH.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.354999999558004, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-349", - "dateofocc": "2000-10-12", - "subreg": "63", - "hostility_": "FISHING BOAT", - "victim_d": "BOWDITCH", - "descriptio": "INDIAN OCEAN-SRI LANKA:A U.S. FLAG SURVEY VESSEL (USNS BOWDITCH) WAS APPROACHED 12 OCT, 260 MILES EAST OF SRI LANKA IN POSITION 05-46.6N 086-6.2E BY A 40 FT. SAIL-MOTOR FISHING BOAT. FOUR CREW OF THE FISHING BOAT, TWO OF WHOM APPEARED TO BE CONCEALING W", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [86.103333300391398, 5.776666699817213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-350", - "dateofocc": "2000-10-12", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:FIVE HIGH SPEED BOATS, EACH CONTAINING 6 TO 7 PERSONS ATTEMPTED TO BOARD AN UNIDENTIFIED TANKER 12 OCT BETWEEN 1050 AND 1140 LOCAL TIME IN POSITION 12-36.0N 043-01.3E. DUTY OFFICER NOTICED THE BOATS AND RAISED THE ALARM. CREW ACTIVATED FIRE HOS", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.021666700090918, 12.600000000033333] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-351", - "dateofocc": "2000-10-12", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:AN UNIDENTIFIED SHIP DETECTED APPROACH OF TWO UNLIT HIGH SPEED BOATS ON RADAR 12 OCT AT 2350 LOCAL TIME WHILE UNDERWAY IN POSITION 14-08.0N 042-27.3E. THREE SIGNAL ROCKETS WERE FIRED AND BOATS WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.454999999861229, 14.133333299601759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-182", - "dateofocc": "2001-06-18", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED SHIP REPORTS APPROACH WITH INTENT TO BOARD 18 JUN AT 0200 LOCAL TIME WHILE UNDERWAY IN POSITION 01-10.5N 101-42.5E. SHIP WAS APPROACHED BY AN UNLIT BOAT WITH RED HULL WHICH WITHDREW WHEN ILLUMINATED BY SEARCHLIGHT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.708333300432912, 1.175000000360853] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-183", - "dateofocc": "2001-06-16", - "subreg": "71", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO ATTEMPTED BOARDING 16 JUN AT 0445 WHILE ANCHORED AT PENANG ANCHORAGE, BUTTERWORTH. WATCH OBSERVED ONE PERSON FROM AN UNLIT BOAT ATTEMPT TO BOARD VIA THE ANCHOR CHAIN WHO FLED WHEN THE ALARM WAS RAISED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.333333300051208, 5.416666700237272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-184", - "dateofocc": "2001-06-17", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:DUTY CREW OF AN UNIDENTIFIED SHIP DISCOVERED THREE UNAUTHORIZED PERSONS IN SHIP'S ENGINE ROOM 17 JUN AT 0320 LOCAL TIME WHILE SHIP WAS BERTHED AT JETTY A, TRIPOLYA, ANYER. ALARM WAS SOUNDED AND INTRUDERS ESCAPED BY JUMPING INTO WATER.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.000000000176044, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-185", - "dateofocc": "2001-06-13", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MIRI ENERGY", - "descriptio": "INDONESIA:THE MALAYSIAN-FLAG TANKER (MIRI ENERGY) WAS BOARDED 13 JUN AT 0500 LOCAL TIME BY ABOUT TEN PERSONS WHILE UNDERWAY IN POSITION 01-27N 106-16E OFF PULAU PENGIBU ON A BALLAST VOYAGE SANDAKAN TO PORT DICKSON. SHIP WAS BOARDED VIA THE STERN AND ONE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.266666700306075, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-186", - "dateofocc": "2001-06-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA:AN UNIDENTIFIED TANKER WAS BOARDED 23 JUN AT 0435 LOCAL TIME WHILE ANCHORED AT CONAKRY. PERSONS ARMED WITH GUNS AND KNIVES ASSAULTED THREE OFFICER WHO RECEIVED INJURIES. SHIP'S STORES, CASH FROM SAFE AND CREW VALUABLES WERE TAKEN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-187", - "dateofocc": "2001-06-22", - "subreg": "51", - "hostility_": "BOARDERS", - "victim_d": "ESA TRUST", - "descriptio": "SIERRA LEONE:THE 997 TON, PANAMANIAN FLAG TANKER (ESA TRUST) REPORTED BEING BOARDED 22 JUN AT 0428 UTC WHILE UNDERWAY IN POSITION 08-59.7N 013-51.5W. THREE CREW REPORTED BRUISED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.858333300093818, 8.995000000379889] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-188", - "dateofocc": "2001-06-24", - "subreg": "61", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH AFRICA:AN UNIDENTIFIED CONTAINER SHIP REPORTS SUSPICIOUS APPROACH WITH APPARENT INTENT TO BOARD 24 JUN AT 1128 LOCAL TIME WHILE UNDERWAY IN POSITION 31 13.3S, 030 09.3E. CREW MUSTERED ON DECK AND SHIP ALTERED COURSE WHEREUPON BOAT BROKE OFF CONTAC", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [30.155000000272821, -31.221666700277694] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-189", - "dateofocc": "2001-06-23", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "BANGLADESH:TWO UNIDENTIFIED BULK CARRIERS WERE ROBBED OF ZINC ANODES ATTACHED TO RUDDER POST 23 JUN, THE FIRST AT 0730 AND THE SECOND AT 0745 LOCAL TIME, WHILE ANCHORED AT CHITTAGONG OUTER ROADS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-190", - "dateofocc": "2001-06-20", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH-SANDAKAN:AN UNIDENTIFIED SHIP REPORTED THAT ON 20 JUN AT 0700 LOCAL TIME WATCHMAN SPOTTED FIVE PERSONS OPENING A CONTAINER. WHEN CHALLENGED THE FIVE ESCAPED IN A SMALL BOAT WITH SOME CARGO.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-191", - "dateofocc": "2001-06-20", - "subreg": "71", - "hostility_": "HIJACKERS", - "victim_d": "TIRTA NIAGA IV", - "descriptio": "INDONESIA:THE 2,863-TON, MALAYSIAN FLAG TANKER (TIRTA NIAGA IV) WAS HIJACKED 20 JUN AS IT LAY AT ANCHOR OFF ACEH, INDONESIA. THE CAPTAIN AND SECOND ENGINEER WERE TAKEN HOSTAGE BUT THE ENGINEER WAS LATER RETURNED TO THE SHIP WHICH SAILED INTO MALAYSIAN W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.999999999917293, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-192", - "dateofocc": "2001-06-20", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 20 JUN AT 0100 LOCAL TIME AT TANJUNG PRIOK ANCHORAGE. THE THIEVES ENTERED THE ENGINE ROOM AND STOLE ENGINE SPARES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-193", - "dateofocc": "2001-06-19", - "subreg": "71", - "hostility_": "HIJACKERS", - "victim_d": "SELAYANG", - "descriptio": "INDONESIA:THE 1,877 TON MALAYSIAN-FLAG TANKER (SELAYANG) WAS HIJACKED 19 JUN SHORTLY AFTER SAILING FROM PORT DICKSON, MALAYSIA WITH A CARGO OF GAS OIL. ITS CREW OF 17 WERE REPORTED HELD HOSTAGE. THE SHIP WAS TRACKED TO A POINT OFF KALIMANTAN AND WAS ST", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.799999999680495, 2.516666699873667] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-194", - "dateofocc": "2001-07-02", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED TANKER WAS BOARDED 2 JUL AT 0400 LOCAL TIME WHILE ANCHORED FIVE MILES FROM BREAKWATER, LAGOS. THREE PERSONS ARMED WITH KNIVES BOARDED VIA THE PORT QUARTER AND, WHEN CHALLENGED BY ANTI-PIRACY WATCH, THREATENED HIM STEALING HIS WAL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.500000000008868, 6.416666700269616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-195", - "dateofocc": "2001-06-24", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "NEDLLOYD EVEREST", - "descriptio": "MADAGASGAR:ANTIGUAN FLAG CONTAINER SHIP (P & O NEDLLOYD EVEREST) WAS BOARDED 24 JUN AT ITS BERTH TOAMASINA AND NINE CONTAINERS WERE BROACHED AND SOME CARGO STOLEN DESPITE FOUR PERSONS HAVING BEEN ON WATCH DURING NIGHT TIME CARGO OPERATIONS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.38333330006725, -18.166666699734094] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-196", - "dateofocc": "2001-06-27", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED BY THREE PERSONS DRESSED AS DOCK LABOR 27 JUN AT 0530 WHILE BERTHED AT DAR ES SALAAM. THE THREE STOLE SHIP'S STORES AND, WHEN CHALLENGED, JUMPED OVERBOARD AND ESCAPED BY BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.299999999907584, -6.850000000280886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-125", - "dateofocc": "2000-06-04", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "FLYING OFFICER NIRMAL JIT SINGH SEKHON P", - "descriptio": "INDIA:The 28,704-ton, Indian flag tanker (FLYING OFFICER NIRMAL JIT SINGH SEKHON PVC) spilled diesel oil at its Berth 4 Jun (reported 30 Jun) due to apparent tampering with discharge valve by thieves seeking to steal the oil.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.536666699824764, 11.021111099704967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-126", - "dateofocc": "2000-06-03", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified heavy-lift vessel was boarded3 Jun at 0215 local time while anchored 4 miles off the breakwater at Chennai. Three of six persons in a speedboat boarded the ship and attempted to enter the accommodation. The intruders fled when spo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.502777799604814, 12.054999999957261] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-127", - "dateofocc": "2000-06-27", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified container ship reports theft of more than 600 container twist locks and other lashing gear 27 Jun while at Chittagong port.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-128", - "dateofocc": "2000-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "HUMEN BRIDGE", - "descriptio": "STRAIT OF MALACCA:The 37,549-ton, German-flag container ship (HUMEN BRIDGE) was boarded 28 Jun at 2220 local time whle ship was underway between Singapore and Port Klang. Seven persons armed with knives and broad swords boarded from a speedboat, overpow", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.720000000008895, 4.117222199631613] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-129", - "dateofocc": "2000-07-02", - "subreg": "93", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:An unidentified container ship was boarded 2 Jul at 0330 local time while at Penang terminal. Two intruders fled when spotted by duty seaman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.36944439992152, 5.437777800140509] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-130", - "dateofocc": "2000-06-21", - "subreg": "93", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:An unidentified container ship was boarded 21 Jun at 2359 local time while anchored at Laem Chabang. The intruders boarded via the anchor chain and fled when alarm was raised by watchman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.893888900247759, 13.067499999731467] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-131", - "dateofocc": "2000-06-26", - "subreg": "92", - "hostility_": "SABOTEURS", - "victim_d": "MAKISIG", - "descriptio": "PHILIPPINES:The 3,302-ton, Philippine-flag tanker (MAKISIG) suffered a severed cargo oil line while discharging 26 Jun at Illana Bay, Mindanao. Police are stated to believe Muslin rebels sabotaged the tanker's operation to force the oil company to pay p", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.445277799780001, 12.074722200408303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-132", - "dateofocc": "2000-07-04", - "subreg": "95", - "hostility_": "GREENPEACE ACTIVISTS", - "victim_d": "BYISK", - "descriptio": "JAPAN:The 2,360-ton, Russian-flag timber carrier (BYISK) was boarded 4 Jul at Toyama port by 6 Greenpeace anti-logging activists who chained themselves to its cargo of wood. The activists left the ship 5 Jun. The Greenpeace ship (RAINBOW WARRIOR) had p", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [137.366666700142787, 37.333333299812466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-133", - "dateofocc": "2000-07-10", - "subreg": "51", - "hostility_": "GREENPEACE ACTIVISTS", - "victim_d": "AEGIS", - "descriptio": "PORTUGAL:The 13,123-ton Cyprus-flag cargo ship (AEGIS) was boarded 10 Jul by four Greenpeace activists who chained themselves to the mast as the ship entered Leixoes to protest illegal logging in Cameroon where the cargo was loaded. As of 12 Jul the pro", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.250000000178659, 39.500000000273758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-134", - "dateofocc": "2000-07-06", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified cargo ship was boarded 6 Jul at 2000 local time over the stern while at Chittagong Roads anchorage by four thieves in two unlit boats. Duty officer raised alarm and the intruders fled by jumping overboard.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-135", - "dateofocc": "2000-07-04", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified bulk carrier was boarded 4 Jul at 0700 UTC while at Mongla anchorage by three thieves armed with knives and cutting tools who gained access via chain cable attached to mooring buoy. Those on board ship stole supplies while two", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.594444400217981, 22.45583330021492] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-136", - "dateofocc": "2000-07-11", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified cargo ship was boarded 10 Jul at 0258 local time by four thieves armed with knives while at anchor, Samarinda River Roads. The intruders boarded over the stern and stole a life raft before being spotted by duty officer. When a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.720555599942031, -5.150000000315856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-364", - "dateofocc": "2000-10-25", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:AN UNIDENTIFIED CHEMICAL TANKER WAS SURROUNDED 25 OCT BY \"SEVERAL\" SPEEDBOATS FROM TWO OF WHICH A BOARDING WAS ATTEMPTED. CREW MUSTERED AND ACTIVATED FIRE HOSES AND BOATS WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.283333300139759, 12.716666699663961] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-137", - "dateofocc": "2000-07-07", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship was boarded 7 Jul at 0515 local time while underway in the Durian Strait in position 00-49.0N 103-35.5E. The thieves entered the second officer's cabin, tied him with plastic cord and stole his money, jewelry and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.591666699792427, 0.816666699908637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-138", - "dateofocc": "2000-07-04", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 4 Jul at 2020 local time while at Belawan Port. The three intruders used poles and grappling hooks to board but, when challenged by the duty seaman, jumped overboard and fled in a waiting boat. Ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-139", - "dateofocc": "2000-07-10", - "subreg": "61", - "hostility_": "ATTACKERS", - "victim_d": "NET EXPRESS", - "descriptio": "SOMALIA:The French-flag cargo ship (NET EXPRESS), not further identified, was reportedly attacked 10 Jul off Bargal in Northern Somalia. The ship, which had broken down and had been drifting for two days, was boarded by about 20 persons operating from s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.091388899768049, -11.27416669962588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-355", - "dateofocc": "2000-10-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 23 OCT AT 1000 LOCAL TIME WHILE OFF KHULNA IN POSITION 22-26.55N 089-35.5E. ABOUT TWELVE PERSONS ARMED WITH LONG KNIVES HAD BOARDED THE SHIP WHEN PORT POLICE ONBOARD FIRED WARNING SHOTS. THE INTRUDERS E", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.591666700238989, 22.442500000371865] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-356", - "dateofocc": "2000-10-22", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED ROLL-ON, ROLL-OFF CARGO SHIP WAS APPROACHED 22 OCT AT 2330 LOCAL TIME WHILE AT CHITTAGONG ANCHORAGE BY TWO UNPAINTED WOODEN BOATS CONTAINING TEN PERSONS. DUTY OFFICER RAISED ALARM AND CREW MUSTERED, WHEREUPON THE BOATS WITHDRE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.238333299850353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-357", - "dateofocc": "2000-10-23", - "subreg": "62", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 23 OCT AT 1245 LOCAL TIME IN POSITION 13-20N 042-58E, 17 MILES FROM RAS FATUNA, ERITREA BY FOUR PERSONS IN A BLUE-STRIPED SPEEDBOAT TRACKED AT ABOUT 25 KNOTS. BOAT'S OCCUPANTS WERE ARMED WITH SWORDS \"AND", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.966666699967732, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-358", - "dateofocc": "2000-10-21", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "FISHING VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED FISHING VESSEL WAS ATTACKED 21 OCT AT NIGHT WHILE ANCHORED BETWEEN SINGAPORE AND INDONESIA. EIGHT ARMED ATTACKERS, REPORTED TO BE INDONESIAN, BOARDED THE BOAT, INJURING THE CAPTAIN WHO WAS HOSPITALIZED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.000000000079012, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-359", - "dateofocc": "2000-10-21", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified cargo ship was boarded 21 Oct at 0450 local time while anchored at Bontang. Duty seaman was locked inside crane housing but chief officer raised the alarm and the intruders fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.516666699995426, 0.083333300181607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-360", - "dateofocc": "2000-10-18", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED TANKER WAS BOARDED 18 OCT AT BERTH, SANDAKAN ATTEMPTING TO STEAL STORES. CREW WAS ALERTED AND ATTACK ABORTED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.111666699938269, 5.820000000299729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-361", - "dateofocc": "2000-10-22", - "subreg": "92", - "hostility_": "GUNMEN", - "victim_d": "ARIES FOREST", - "descriptio": "PHILIPPINES-MINDANAO:THE 19,925-TON PANAMANIAN-FLAG BULK CARRIER (ARIES FOREST) WAS ATTACKED 22 OCT BY GUNMEN WHO FIRED A ROCKET PROPELLED GRENADE (RPG) AT THE SHIP AS IT DISCHARGED A CARGO OF LOGS AT DAVAO PORT. THERE WERE NO PERSONNEL CASUALTIES BUT A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.633333300060031, 7.083333300407958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-362", - "dateofocc": "2000-10-25", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS ROBBED OF ZINC ANODES 25 OCT WHILE DISCHARGING CHEMICALS AT CHITTAGONG.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.238333299850353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-363", - "dateofocc": "2000-10-24", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 24 OCT AT ANCHOR CHITTAGONG, BY ABOUT 25 PERSONS ARMED WITH LONG KNIVES. CREW RESISTED BUT WAS UNABLE TO PREVENT THEFT OF STORES. PORT CONTROL WAS NOTIFIED BUT COAST GUARD ASSISTANCE ONLY ARRIVED AFTER 90 M", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.238333299850353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-365", - "dateofocc": "2000-10-26", - "subreg": "72", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 26 OCT AT 0510 LOCAL TIME WHILE UNDERWAY IN POSITION 01-43.0N 117-34.8E BY PERSONS IN A SPEEDBOAT WHO ATTEMPTED TO BOARD, PREVENTED BY CREW ALERTNESS.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.579999999705137, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-366", - "dateofocc": "2000-10-26", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED 26 OCT AT 0510 LOCAL TIME BY A SPEEDBOAT WHILE UNDERWAY IN POSITION 01-27N 103-11E. CREW ALERTNESS PREVENTED BOARDING.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.183333299648723, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-367", - "dateofocc": "2000-10-25", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED SHIP AT ANCHOR IN POSITION 00-44.8N 103-42.2E WAS BOARDED 25 OCT BY 60 TO 80 PERSONS. TWO CREWMEMBERS WERE SLIGHTLY INJURED BEFORE SHIP CUT ANCHOR CHAIN AND PROCEEDED TO SINGAPORE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.703333300241127, 0.746666699915352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-368", - "dateofocc": "2000-10-29", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 29 OCT AT 2030 UTC WHILE AT TARAHAN ANCHORAGE. INTRUDERS ENTERED ENGINE ROOM AND STOLE A LARGE QUANTITY OF SPARE PARTS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, -5.516666700179371] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-369", - "dateofocc": "2000-10-29", - "subreg": "71", - "hostility_": "INTRUDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED TANKER WAS BOARDED 29 OCT AT 0220 UTC WHILE ANCHORED AT TELUK SEMANGKA BY A SINGLE PERSON WHO WAS CAUGHT BY ANTI-PIRACY WATCH AND TRANSFERRED TO POLICE BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, -5.550000000148941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-370", - "dateofocc": "2000-10-29", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified bulk carrier was boarded via the stern 29 Oct at 1900 local time by seven persons armed with long knives who stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.23333329999042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-371", - "dateofocc": "2000-10-24", - "subreg": "93", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 24 OCT AT 2315 LOCAL TIME IN PORT HAIPHONG BY TWO PERSONS WHO ATTEMPTED TO OPEN THE FORECASTLE STORE. ALARM WAS RAISED AND INTRUDERS CLIMBED DOWN A ROPE TO THEIR BOAT AND FLED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.683333300211586, 20.833333299728508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-197", - "dateofocc": "2001-07-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:AN UNIDENTIFIED BULK CARRIER REPORTS BEING APPROACHED SUSPICIOUSLY 2 JUL AT 0335 UTC BY TWO BOATS CONTAINING THREE PERSONS EACH WHILE UNDERWAY IN POSITION 13-25.7N 043-02.4E, NEAR PORT AL MUKHA. BOATS TURNED AWAY WHEN CREW WENT ON ALERT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.040000000190389, 13.42833330031192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-198", - "dateofocc": "2001-06-29", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:AN UNIDENTIFIED CARGO SHIP REPORTS ATTEMPTED BOARDING 29 JUN AT 0445 LOCAL TIME WHILE UNDER WAY IN POSITION 13-42.5N 043-24.6E. TWO VERY FAST UNLIT BOATS APPROACHED BUT TURNED AWAY WHEN CONFRONTED WITH CHARGED FIRE HOSES AND SEARCHLIGHTS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.410000000283276, 13.708333300285005] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-199", - "dateofocc": "2001-06-28", - "subreg": "62", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERSIAN GULF-IRAQ:AN UNIDENTIFIED SHIP WAS BOARDED 28 JUN WHILE AT ANCHOR IN POSITION 29-38.7N 48-45.2E NEAR UMM QASR. THIEVES BROKE INTO FORECASTLE STORE AND STOLE FIRE FIGHTING GEAR.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.753333300127792, 29.645000000193363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-200", - "dateofocc": "2001-07-02", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTS THAT 20 PERSONS ARMED WITH GUNS AND LONG KNIVES ATTEMPTED TO BOARD VIA THE STERN OF THE SHIP 2 JUL AT 0100 LOCAL TIME WHILE UNDERWAY IN POSITION 01 05N, 104 55E. DUTY OFFICER MANEUVERED THE SHIP AND ATTEM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.916666700307417, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-201", - "dateofocc": "2001-07-01", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 1 JUL AT 0125 LOCAL TIME BY SIX PERSONS ARMED WITH LONG KNIVES WHILE SHIP WAS UNDERWAY IN POSITION 01-03N 104-57E. CREW WAS MUSTERED AND ALARM SOUNDED AND INTRUDERS ESCAPED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.950000000276987, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-202", - "dateofocc": "2001-06-30", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED OIL TANKER WAS BOARDED 30 JUN AT 0230 LOCAL TIME AT PULAU MAPOR ISLAND. ALARM WAS SOUNDED AND CREW MUSTERED AS INTRUDERS ESCAPED. MASTER ALERTED OTHER SHIPS IN AREA VIA VHF.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.749999999910756, 0.966666700408098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-203", - "dateofocc": "2001-06-30", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP REPORTED AN ATTEMPT TO BOARD 30 JUN AT 0100 WHILE UNDERWAY IN POSITION 01-05N 104-55E. ABOUT TWENTY PERSONS ARMED WITH GUNS AND KNIVES CAME UP ASTERN IN A FAST BOAT BUT ABORTED THE BOARDING WHEN ILLUMINATED BY SE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.916666700307417, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-204", - "dateofocc": "2001-06-27", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 27 JUN AT 0500 LOCAL TIME WHILE AT BELAWAN ANCHORAGE. FIVE PERSONS ARMED WITH A SHOTGUN AND KNIVES BOARDED VIA THE FORECASTLE AND THREATENED A WATCHMAN. THE THIEVES FLED WITH STORES AND CREW VA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-205", - "dateofocc": "2001-06-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 27 JUN AT 0445 LOCAL TIME WHILE UNDERWAY IN POSITION 01-11.6N 103-24.6E OFF PULAU IYU KECIL. FIVE MASKED MEN ARMED WITH LONG KNIVES ROBBED THE MASTER OF $4,000 AND PERSONAL BELONGINGS. THEY THEN ESCAPE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.410000000425043, 1.193333299561004] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-206", - "dateofocc": "2001-07-09", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 JUL AT 0224 LOCAL TIME AT LAGOS ANCHORAGE. DUTY SEAMAN WAS TIED UP AND SHIP'S STORES STOLEN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.316666700439157, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-207", - "dateofocc": "2001-07-06", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 6 JUL AT 0345 LOCAL TIME WHILE ANCHORED FOUR MILES FROM THE FAIRWAY BUOY, LAGOS ROADS. THREE PERSONS ARMED WITH LONG KNIVES BOARDED VIA THE STARBOARD QUARTER. DUTY SEAMAN WAS STRUCK AND HIS WALKIE-TALKIE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.316666700439157, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-208", - "dateofocc": "2001-07-03", - "subreg": "57", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA BISSAU:An unidentified cargo ship was boarded 3 jul at 1940 local time while underway in position 10-38S 003-05E. about ten armed persons gained access but retreated to their boat when alarm sounded. boat then shadowed the vessel for about one h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [3.083333300278639, -10.633333300146887] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-209", - "dateofocc": "2001-07-08", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED AT CHENNAI ANCHORAGE 8 JUL AT 0345 LOCAL TIME. ANTI-PIRACY WATCH SPOTTED TWO PERSONS ON THE MAIN DECK AND SOUNDED ALARM, WHEREUPON THE TWO JUMPED OVERBOARD.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-210", - "dateofocc": "2001-07-03", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 3 JUL AT 2000 UTC WHILE AT CHITTAGONG ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES STOLE SHIP'S STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-211", - "dateofocc": "2001-07-05", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 5 JUL AT 0730 LOCAL TIME WHILE AT TANJUNG PRIOK ANCHORAGE. FOUR PERSONS WERE SPOTTED BY ANTI-PIRACY WATCH AND ESCAPED WHEN ALARM WAS SOUNDED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-212", - "dateofocc": "2001-07-12", - "subreg": "57", - "hostility_": "BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA:AN UNIDENTIFIED CHEMICAL TANKER REPORTS BEING APPROACHED AND FOLLOWED 12 JUL AT 1125 UTC BY A BOAT CONTAINING 5 PERSONS WHILE UNDERWAY OFF GHANA IN POSITION 04-19N 001-14W, 45 MILES OFFSHORE. AFTER FOLLOWING ALTERATIONS OF THE VESSEL'S COURSE THE", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.233333300022764, 4.316666699572124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-213", - "dateofocc": "2001-07-12", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 12 JUL AT 1815 UTC WHILE AT CHENNAI ANCHORAGE. THREE PERSONS ARMED WITH KNIVES OF FIVE TOTAL IN A GREEN BOAT WHICH PULLED ALONGSIDE BOARDED IN HEAVY RAIN. SHIP'S ALARM SOUNDED AND THIEVES ESCAPED BY JUMP", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-140", - "dateofocc": "2000-07-24", - "subreg": "25", - "hostility_": "STOWAWAYS", - "victim_d": "COLUMBIA 1", - "descriptio": "DOMINICAN REPUBLIC:The 17,200-ton Cyprus-flag cargo ship (COLOMBIA 1) was threatened by 21 knife-armed stowaways after they were discovered on board 24 Jul enroute Miami. U. S. federal agents boarded the ship offshore and stowaways were taken into cust", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.749999999919226, 20.000000000092768] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-141", - "dateofocc": "2000-07-14", - "subreg": "22", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU:An unidentified German container ship was boarded 14 Jul at 0320 local time (reported 25 Jul) while awaiting bunkers at Callao Anchorage. The thieves, armed with knives, escaped when spotted by a watchman, after steaming a mooring line from the for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.000000000249145, -39.000000000016598] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-142", - "dateofocc": "2000-07-12", - "subreg": "22", - "hostility_": "INTRUDERS", - "victim_d": "CONCENSUS REEFER", - "descriptio": "ECUADOR:The 7,239-ton, Netherlands-flag refrigerated cargo ship (CONSENSUS REEFER) was boarded 12 Jul at 0415 local time (reported 25 Jul) while at Guayaquil outer anchorage. Watch was accosted by a man with a knife and spotted three intruders at the fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.666666700406324, -3.50000000021754] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-143", - "dateofocc": "2000-07-17", - "subreg": "51", - "hostility_": "PROTESTERS", - "victim_d": "RANGER 1", - "descriptio": "SPAIN:The 6,272-ton Maltese-flag cargo ship (RANGER 1) docked 17 Jul at Villagarcia with Greenpeace protesters chained to its mast and to shoreside cranes in protest of the import of allegedly illegal timber from Cameroon. Spanish authorities had earlie", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.166666700342375, 40.500000000306102] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-144", - "dateofocc": "2000-07-15", - "subreg": "51", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MAURITANIA:An unidentified container vessel was boarded 15 Jul at about 0001 local time while anchored in Nouadhibou Bay by thieves operating from small speed boats. The intruders fled with ship's stores and equipment when crew mustered on deck.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.250000000405009, 19.499999999626937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-145", - "dateofocc": "2000-07-21", - "subreg": "57", - "hostility_": "MILITANT YOUTHS", - "victim_d": "OIL FIELD SERVICE BOAT", - "descriptio": "NIGERIA:Militant youths attacked an oil field service boat carrying workers of China's National Petroleum Corporation 21 Jul in the Forcados River. Two Chinese workers were kidnapped. Nigerian naval authorities state that more than 40 persons have been", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-146", - "dateofocc": "2000-07-19", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:Five armed thieves boarded an unidentified tanker 19 Jul at 2350 UTC while the ship was anchored at Dar-es-Salaam. The five came aboard from an 8-meter white unlit motor boat manned by three accomplices and escaped with ship's stores despite du", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.289722199719108, -6.828611099802799] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-147", - "dateofocc": "2000-07-22", - "subreg": "63", - "hostility_": "INTRUDER", - "victim_d": "TANKER", - "descriptio": "INDIA:An unidentified tanker was boarded 22 Jul 0500 local time while at Chennai Anchorage. A single intruder boarded at the forecastle but jumped overboard to a waiting boat when the alarm was raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-148", - "dateofocc": "2000-07-18", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified tanker was boarded 18 Jul 0455 local time while at Chennai anchorage. Two thieves boarded via the forecastle but escaped without stealing anything in a boat with three accomplices when the alarm was raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-149", - "dateofocc": "2000-07-16", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified bulk carrier was boarded 16 Jul at 0100 local time at Chennai anchorage. Two thieves boarded from a motorboat using a grappling hook but fled when spotted by ship's watchman and escaped in their motorboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-150", - "dateofocc": "2000-07-15", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA-ADEN:An unidentified roll-on roll-off vessel was approached 15 Jul at 0330 local time by two small boats going \"over 23 knots\" while in position 13-38N 042-56E. The boats approached from the bow and retreated when illuminated by the ship's searc", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.933333300173388, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-151", - "dateofocc": "2000-07-12", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:An unidentified bulk carrier reports being approached 12 Jul at 2050 local time by two speed boats, each containing five persons. As the boats attempted to come alongside crew mustered and energized hoses and the boats moved away.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.734722200158728, 13.839722200110145] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-152", - "dateofocc": "2000-07-22", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier was approached 22 Jul at 2200 local time by six persons in a fast, white colored boat with silent engine while underway in the Strait of Malacca in mid- channel. The boat's occupants attempted to board usin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.720000000008895, 4.117222199631613] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-153", - "dateofocc": "2000-07-20", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified LPG carrier was boarded 20 Jul at 2245 local time while underway in the Strait of Malacca in position 01-50.2N 102-22.5E. Six persons tied up \"the crew\" and threatened to kill them. The attackers escaped with about $10", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.375000000396028, 1.836666700067497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-372", - "dateofocc": "2000-11-05", - "subreg": "51", - "hostility_": "THIEVES", - "victim_d": "TORM ALEXANDRA", - "descriptio": "GUINEA:THE 3,972-TON, MALTA-FLAG CARGO SHIP (TORM ALEXANDRA) WAS BOARDED IN CONAKRY ON 5 NOV AT 0300 UTC BY 8 TO 10 MACHINE-GUN ARMED PERSONS WHO STOLE ABOUT $3,000 AND SHIP'S EQUIPMENT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-373", - "dateofocc": "2000-11-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "HAJI MOHAMMAD JATT", - "descriptio": "PAKISTAN:FIVE PAKISTANI FISHING VESSELS, INCLUDING (HAJI MOHAMMAD JATT) REPORT BEING ROBBED OF THEIR CATCH 2 NOV BY 24 ARMED PERSONS IN A HIGH-SPEED CRAFT TEN MILES FROM TATTA IN SINDH PROVINCE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [66.999999999814122, 24.000000000222144] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-374", - "dateofocc": "2000-11-06", - "subreg": "63", - "hostility_": "SPEEDBOAT", - "victim_d": "SUPPLY BOAT", - "descriptio": "MYANMAR-ANDAMAN SEA:AN UNIDENTIFIED SUPPLY BOAT REPORTED APPROACH 6 NOV AT 0340 LOCAL TIME BY UNLIT SPEEDBOAT IN POSITION 10-34.7N 097-23.9E. THE BOAT LEFT WHEN ILLUMINATED BY SEARCHLIGHT.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [97.398333299690989, 10.578333299815029] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-375", - "dateofocc": "2000-11-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 6 NOV AT 0128 LOCAL TIME WHILE UNDERWAY IN POSITION 01-56.5N 102-19.0E. ABOUT 20 ARMED PERSONS TOOK THE CREW HOSTAGE AND ROBBED THEIR CASH AND VALUABLES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.31666670004347, 1.941666700057397] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-376", - "dateofocc": "2000-11-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 5 NOV AT 0125 LOCAL TIME WHILE UNDERWAY IN POSITION 01-49.5N 102-23.2E. CASH AND VALUABLES WERE TAKEN FROM THE CREW BEFORE THE BOARDERS LEFT ABOUT 0445.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.386666700036756, 1.825000000426826] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-377", - "dateofocc": "2000-11-04", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP REPORTS BOARDING 4 NOV AT 0510 LOCAL TIME FROM A TEN-METER RED BOAT SPOTTED ALONGSIDE WHILE UNDERWAY IN POSITION 01-45.9N 102-32.0E. DUTY OFFICER FIRED SHOT FROM SHOTGUN AND BOARDERS JUMPED OVERBOARD AND ESCA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.53333329958275, 1.765000000047166] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-378", - "dateofocc": "2000-11-04", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-BORNEO:AN UNIDENTIFIED CHEMICAL TANKER WAS APPROACHED AT ABOUT 20 KNOTS 4 NOV AT 0135 LOCAL TIME BY AN UNLIT BOAT WHILE UNDERWAY IN POSITION 03-17S 109-41E. SHIP INCREASED SPEED, ALTERED COURSE AND DIRECTED SEARCHLIGHTS AT THE BOAT WHICH BROKE", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.683333300308618, -3.283333299954165] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-379", - "dateofocc": "2000-11-03", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED 3 NOV AT 2335 LOCAL TIME WHILE UNDERWAY IN POSITION 04-04.0N 099-25.0E BY AN UNLIT BOAT FIRST SIGHTED AT A DISTANCE OF ABOUT 1.2 MILES FROM THE STARBOARD SIDE. SHIP SOUNDED WHISTLE AND DIRE", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.416666699679865, 4.066666700238557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-380", - "dateofocc": "2000-11-04", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 4 NOV BETWEEN 0200 AND 0400 LOCAL TIME WHILE ANCHORED AT TANJUNG PRIOK AND ROBBED OF TWO LIFE RAFTS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-381", - "dateofocc": "2000-10-30", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATERA:AN UNIDENTIFIED TANKER WAS APPROACHED 30 OCT AT 2300 LOCAL TIME WHILE AT ANCHOR INNER HARBOR KUALA ENOK. DUTY OFFICER RAISED ALARM, CREW MUSTERED AND FIRED THREE ROCKETS. AFTER THIRTY MINUTES BOAT DEPARTED.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.406666700195615, -0.516666700017652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-382", - "dateofocc": "2000-11-03", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 3 NOV AT 0325 LOCAL TIME WHILE ANCHORED IN SANDAKAN HARBOR INNER ROADS. THIEF BOARDED OVER BOW BY ROPE FROM A SPEEDBOAT CONTAINING SIX ACCOMPLICES BUT FLED WHEN ALARM WAS SOUNDED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.111666699938269, 5.820000000299729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-383", - "dateofocc": "2000-10-30", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CSAV TAIPEI", - "descriptio": "Ecuador:The 24,053-ton, German-flag container ship (csav Taipei) was attacked and boarded 30 Oct off Guayaquil at the data sea buoy as it approached the pilot station (reported 15 Nov). Four armed attackers boarded from a boat despite having been spotte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.899999999810461, -2.216666699982682] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-384", - "dateofocc": "2000-11-10", - "subreg": "56", - "hostility_": "STOWAWAYS", - "victim_d": "ANGLIA", - "descriptio": "LEBANON:TWO IRAQIS SHOVED ASIDE A WATCHKEEPER AND FORCED THEMSELVES ABOARD THE 4,927-TON, ANTIGUAN FLAGGED CARGO SHIP (ANGLIA) 10 NOV AS IT LAY ALONGSIDE AT BEIRUT. AFTER A SEARCH OF THE VESSEL THREE MEN WERE DISCOVERED IN ADDITION TO THE TWO INITIALLY", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [35.500000000144382, 33.86666669994321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-385", - "dateofocc": "2000-11-04", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "AZTLAN", - "descriptio": "GABON:THE 26,047-TON PANAMA-FLAG BULK CARRIER (AZTLAN) WAS BOARDED 4 NOV AT 0300 LOCAL TIME AT ANCHOR, OWENDO (REPORTED 15 NOV). SECOND OFFICER RAISED ALARM WHEN INTRUDERS WERE SPOTTED ON FORECASTLE ATTEMPTING TO STEAL MOORING LINES AND THE SIX PERSONS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.483333300305731, 0.350000000311695] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-386", - "dateofocc": "2000-11-09", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 9 NOV AT 0055 LOCAL TIME WHILE ANCHORED AT CHENNAI OUTER ANCHORAGE. SIX PERSONS WERE OBSERVED AND CHASED BY CREW BEFORE ESCAPING IN THEIR BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.354999999558004, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-387", - "dateofocc": "2000-11-13", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED INDONESIAN SHIP WAS REPORTED ATTACKED 13 NOV AT ANOWRA THANA AFTER LOCAL AGENT REFUSED TO PAY A \"TOLL\" AND SEVERAL CREW MEMBERS WERE HURT. POLICE ARRESTED THREE PERSONS. SAME SHIP WAS ATTACKED A DAY LATER AND GOODS LOOTED WHI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-214", - "dateofocc": "2001-07-10", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 10 JUL AT 0700 UTC WHILE AT CHENNAI ANCHORAGE. FOUR PERSONS OF SEVEN IN A BOAT WHICH PULLED ALONGSIDE GAINED ACCESS TO THE SHIP BUT FLED WHEN ALARM WAS SOUNDED. SHIP WAS BOARDED AGAIN 12 JUL.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-215", - "dateofocc": "2001-07-16", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED TANKER WAS BOARDED 16 JUL AT 1530 UTC WHILE ANCHORED AT CHITTAGONG. TWO PERSONS OPERATING FROM A SPEEDBOAT STOLE THREE MOORING LINES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-216", - "dateofocc": "2001-07-15", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "VIRGINIA", - "descriptio": "INDONESIA:THE GREEK FLAG BULK CARRIER (VIRGINIA) WAS BOARDED AND ROBBED 15 AND 16 JUL WHILE LOADING CEMENT AT TANJUNG PRIOK ANCHORAGE. ON 15 JUL FOUR PERSONS IN TWO BOATS ATTEMPTED TO BOARD BUT WERE REPELLED WHEN SPOTTED. MASTER INFORMED OTHER SHIPS IN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-217", - "dateofocc": "2001-07-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS REPORTEDLY BOARDED 14 JUL AT 1800 LOCAL TIME BY PERSONS OPERATING FROM AN INDONESIAN FISHING BOAT UNDERWAY IN POSITION 02-06N 109-31E, 10 NM FROM DATU LIGHTHOUSE. THE BOARDERS THREATENED TO HIJACK THE SHIP AND, A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.516666699736732, 2.100000000143439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-218", - "dateofocc": "2001-07-12", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED CHEMICAL TANKER WAS SUBJECT TO AN ATTEMPTED BOARDING 12 JUL AT 2145 LOCAL TIME WHILE ANCHORED AT BELAWAN. SIX PERSONS ARMED WITH LONG KNIVES WERE ATTEMPTING TO CLIMB THE ANCHOR CHAIN WHEN DISCOVERED. THE CREW THREW FLA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-219", - "dateofocc": "2001-07-11", - "subreg": "92", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SULU SEA-PHILIPPINES:AN UNIDENTIFIED BULK CARRIER WAS REPORTEDLY APPROACHED 11 JUL AT 1800 UTC BY THREE UNLIT SPEEDBOATS WHILE UNDERWAY IN POSITION 08-00N 120-00E. WATCH OFFICER TURNED LIGHTS ON BOATS AND THEY MOVED AWAY.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.999999999729425, 7.999999999704698] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-220", - "dateofocc": "2001-07-21", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 21 JUL AT 1815 LOCAL TIME AT ABIDJAN ANCHORAGE BY A SINGLE PERSON ARMED WITH A LONG KNIFE. THE INTRUDER THREATENED THE WATCHMAN AND WAS LATER JOINED BY FIVE OTHER WHO STOLE SAFETY EQUIPMENT AND ESC", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.016666700371843, 5.316666699604468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-221", - "dateofocc": "2001-07-04", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "ARTEMIS", - "descriptio": "BANGLADESH:THE 7,565-TON, PANAMANIAN FLAG CONTAINER SHIP (ARTEMIS) WAS BOARDED 4 JUL AT 0206 LOCAL TIME WHILE ANCHORED AT CHITTAGONG ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES STOLE TWO MOORING LINES AND A MEGAPHONE BEFORE ESCAPING WHEN CREW MUSTER", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-222", - "dateofocc": "2001-07-23", - "subreg": "71", - "hostility_": "SMALL CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED SHIP REPORTS SUSPICIOUS APPROACH 23 JUL AT 1255 UTC WHILE UNDERWAY IN POSITION 01-40N 102-45E. UNLIT SMALL CRAFT APPROACHED AS CLOSE AS FIVE METERS BUT PULLED AWAY WHEN CREW SWITCHED ON LIGHTS.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.749999999846125, 1.666666700340784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-223", - "dateofocc": "2001-07-24", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 24 JUL AT 0115 LOCAL TIME WHILE ANCHORED AT TANJUNG PRIOK. PERSONS ARMED WITH KNIVES ENTERED ENGINE ROOM AND TIED UP WATCHMAN, ESCAPING WITH A LARGE AMOUNT OF ENGINE SPARES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-224", - "dateofocc": "2001-07-19", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 19 JUL AT 1930 UTC AT PANJANG PORT. TWO PERSONS FROM A SMALL BOAT ENTERED THE ENGINE ROOM AND THREATENED THE MOTORMAN ON WATCH WITH A KNIFE AND TIED HIM UP. DECK WATCH NOTICED THE BOAT AND RAIS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-225", - "dateofocc": "2001-07-21", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 21 JUL AT 2300 LOCAL TIME WHILE AT OUTER ANCHORAGE, VUNG TAU. PERSONS FORMA SMALL UNLIT BOAT STOLE SHIP'S STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-226", - "dateofocc": "2001-07-18", - "subreg": "94", - "hostility_": "PATROL BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EAST CHINA SEA:AN UNIDENTIFIED SUPPLY VESSEL REPORTS APPROACH 18 JUL AT 2125 LOCAL TIME WHILE UNDERWAY IN POSITION 23-00N 119-51E. A CRAFT RESEMBLING A NAVAL PATROL BOAT ORDERED THE SUPPLY BOAT TO STOP. MASTER MUSTERED THE CREW AND REPLIED HE HAD CONTA", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.850000000129285, 23.0000000001898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-227", - "dateofocc": "2001-07-24", - "subreg": "57", - "hostility_": "BOARDERS", - "victim_d": "SUPPLY VESSEL", - "descriptio": "ANGOLA:AN UNIDENTIFIED SUPPLY VESSEL WAS BOARDED 24 JUL (POSS. 24 JUN) AT 1450 LOCAL TIME WHILE UNDERWAY NEAR PUNTA FINHAL, LUANDA. TWO PERSONS CAME ABOARD FROM A SPEEDBOAT AND ASSAULTED THE WATCHMAN BEFORE JUMPING OVERBOARD WHEN CREW RESPONDED. THE TW", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.250000000099305, -8.83333330044843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-228", - "dateofocc": "2001-07-26", - "subreg": "61", - "hostility_": "THIEF", - "victim_d": "MECHANT VESSEL", - "descriptio": "TANZANIA:AN UNIDENTIFIED TANKER WAS BOARDED 26 JUL AT 2245 LOCAL TIME WHILE ANCHORED AT DAR ES SALAAM. A SINGLE PERSON ARMED WITH A KNIFE BOARDED AT THE FORECASTLE USING A GRAPPLING HOOK AND LOWERED A MOORING LINE INTO A WAITING BOAT. DUTY OFFICER RAIS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.299999999907584, -6.850000000280886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-162", - "dateofocc": "2000-07-27", - "subreg": "71", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified container ship was boarded 27 Jul at 2145 local time in position 01-45.2N 102-32.5E. Eight persons armed with long knives took the electrician hostage and stole cash and personal items belonging to master and crew. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.541666699893369, 1.753333300406496] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-154", - "dateofocc": "2000-07-15", - "subreg": "71", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was approached from the stern by a speedboat carrying three persons 15 Jul at 0130 local time. Boarding was averted when watchman sounded alarm.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-155", - "dateofocc": "2000-07-26", - "subreg": "82", - "hostility_": "HIJACKERS", - "victim_d": "SOLOTAI NO. 68", - "descriptio": "SOLOMON SEA:The Japanese fishing vessel (SOLOTAI NO. 68) was hijacked 26 Jul while in the Solomon Sea by three men who demanded the vessel go to Guadalcanal. The vessel arrived at Honiara several hours after and local police took the three men into cust", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [159.950000000256978, -9.416666699675943] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-156", - "dateofocc": "2000-07-31", - "subreg": "53", - "hostility_": "ACTIVISTS", - "victim_d": "AQUITANIA", - "descriptio": "FRANCE:French commandos on 31 Jul arrested six Greenpeace activists who had occupied the 13,519-ton, Cypriot-flag cargo ship (AQUITANIA) for 27 hours to prevent offload of itscargo of timber allegedly harvested illegally in Cameroon. The activists had oc", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [4.332777800118265, 43.44277779982724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-157", - "dateofocc": "2000-07-26", - "subreg": "54", - "hostility_": "HIJACKER", - "victim_d": "ERATO", - "descriptio": "GREECE:A gunman who had commandeered a yacht chartered by a Swiss family was shot dead 26 Jul by Greek coastguard divers who had been trying to speak with the unidentified gunman. The yacht (ERATO), with is five passengers and captain had been hijacked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [23.175555600423365, 39.046666700344588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-158", - "dateofocc": "2000-07-31", - "subreg": "57", - "hostility_": "MILITANTS", - "victim_d": "OIL RIGS", - "descriptio": "NIGERIA:Ijaw militants in Nigeria's Bayelsa State seized two oil rigs operated by Royal Dutch Shell 31 Jul and held 165 employees hostage. 60 persons operating from boats stormed the rigs in mangrove swamps demanding jobs for local youths. On 3 Aug agr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-159", - "dateofocc": "2000-07-12", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MEDEMSAND", - "descriptio": "NIGERIA:The 2,028-ton, Panamanian-flag refrigerated cargo ship (MEDEMSAND) was boarded 12 Jul (reported 27 Jul) while discharging cargo at Lagos. Three uniformed men boarded the ship and went to the captain's cabin where they threatened him with knives", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.416666700237272, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-160", - "dateofocc": "2000-07-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MAD EXPRESS", - "descriptio": "SOMALIA:The ship hijacked 10 Jul off Bargaal, Northern Somalia has been identified as the 949-ton French-flag fishing vessel (MAD EXPRESS). Some of the gunmen who had been holding the ship and its crew were arrested 11 Jul after fleeing the ship. Assis", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.091388899768049, -11.27416669962588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-161", - "dateofocc": "2000-07-10", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified roll-on, roll-off container ship was boarded 10 Jul (reported 2 Aug) at Chittagong Anchorage. Two intruders threatened and robbed a cadet and then entered the accommodation. When the alarm was raised the intruders fled the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.81361109977496, 22.315000000127213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-163", - "dateofocc": "2000-07-24", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker was boarded 24 Jul at 2210 local time in position 00-35.7N 103-51.7E off Eastern Sumatra by ten persons armed with guns. The crew were held hostage until 0810 26 Jul when the thieves escaped in a fishing boat with crew b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.861666700151886, 0.59500000028811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-164", - "dateofocc": "2000-07-24", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship was boarded 24 Jul and 2005 local time via the bow while berthed at Belawan container terminal. Two persons boarded using a grappling hook, broke into the ship's store and stole items despite the alarm having be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-165", - "dateofocc": "2000-07-15", - "subreg": "93", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:An unidentified container ship was boarded 15 Jul at 0001 local time while at anchor Nouadhibou Bay. Intruders operated from small speedboats and stole ship's stores and equipment before the crew mustered and the intruders escaped in their boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.783333299751007, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-388", - "dateofocc": "2000-11-08", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 8 NOV AT 1730 UTC WHILE AT CHITTAGONG 'A' ANCHORAGE. TWO PERSONS BOARDED OVER THE STERN BUT ESCAPED BACK TO THEIR WAITING BOAT WHEN ALARM RAISED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-389", - "dateofocc": "2000-11-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 NOV AT 0340 LOCAL TIME WHILE UNDERWAY IN POSITION 01-46N 102-27E. FIFTEEN PIRATES FROM TWO SPEEDBOATS STOLE CASH, DOCUMENTS, SHIP'S PROPERTY AND CREW VALUABLES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.449999999746467, 1.766666700074268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-390", - "dateofocc": "2000-11-13", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED TANKER WAS BOARDED 13 NOV WHILE BERTHED AT C.I.B. NO. 2, CILACAP. THREE PERSONS ARMED WITH KNIVES WERE SPOTTED BY ANTI-PIRACY PATROL AND JUMPED OVERBOARD TO ESCAPE WHEN ALARM RAISED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.000000000273076, -7.733333299783339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-391", - "dateofocc": "2000-11-12", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED CHEMICAL TANKERS WAS BOARDED AND ROBBED 12 NOV AT 1220 LOCAL TIME AT TANJUNG PRIOK ANCHORAGE. FIVE PERSONS ARMED WITH LONG KNIVES STOLE ENGINE SPARES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-392", - "dateofocc": "2000-11-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "RYTAS", - "descriptio": "EQUATORIAL GUINEA:THE 5,783-TON LITHUANIAN-FLAG FISHING VESSEL (RYTAS) WAS INTERCEPTED AND BOARDED 15 NOV OFF MALABO BY \"DRUNKEN SAILORS\" WHO DESTROYED THE SHIP'S RADIO AND TRANSFERRED ITS CATCH TO THEIR OWN BOAT. ON ARRIVAL AT PORT THE CAPTAIN AND 7 OF", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.666666699667871, 3.35000000040867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-393", - "dateofocc": "2000-11-16", - "subreg": "61", - "hostility_": "PURSUING BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN-SOMALIA:AN UNIDENTIFIED CARGO SHIP REPORTS BEING PURSUED 16 NOV BETWEEN 0700 AND 0900 UTC BY A SUSPICIOUS SUPPLY BOAT-TRAWLER TYPE VESSEL IN POSITION 04-21N 049-49E ABOUT 80 MILES OFFSHORE. PURSUING BOAT, DESCRIBED AS GREY HULL AND WHITE UP", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.816666699694622, 4.350000000441014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-394", - "dateofocc": "2000-11-14", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "BARGE IN TOW", - "descriptio": "INDIA:A BARGE IN TOW OF AN UNIDENTIFIED TUG WAS BOARDED 14 NOV AT 1040 LOCAL TIME IN POSITION 08-05.8N 077-02.6E, OFF CAPE COMORIN BY FOUR PERSONS WHO STOLE EMERGENCY TOWING WIRE AND FLED AT 1105 WHEN DISCOVERED. SAME PERSONS TRIED TO REBOARD AT 1155 HO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [77.0433332997207, 8.096666700108074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-395", - "dateofocc": "2000-11-17", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 17 NOV AT CHITTAGONG BY ONE PERSON OF EIGHT IN A BOAT WHICH APPROACHED THE SHIP'S STERN. STORES WERE STOLEN AND THE BOARDER THREATENED THE CREW WHEN CONFRONTED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-396", - "dateofocc": "2000-11-15", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CHEMICAL TANKER WAS ROBBED OF ZINC ANODES FROM ITS RUDDER 15 NOV AT 1115 UTC WHILE BERTHED AT VOTT VEGETABLE OIL JETTY NO. 3, CHITTAGONG. DUTY ENGINEER HEARD KNOCKING SOUND AT STERN AND ALERTED CREW AND THIEVES FLED WHEN CREW", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-397", - "dateofocc": "2000-11-12", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED AT MONGLA ANCHORAGE 12 NOV BY PERSONS WHO TRIED TO BOARD FROM FOUR WOODEN BOATS, EACH CARRYING 5 TO 6 PEOPLE. CREW AND ANTI-PIRACY SHORE GUARDS PREVENTED BOARDING BUT ZINC ANODES WERE STOLEN FROM HULL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.599999999825513, 22.433333299960111] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-398", - "dateofocc": "2000-11-16", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP WAS CLOSELY APPROACHED 16 NOV AT 1400 UTC BY SEVERAL PERSONS IN FOUR FISHING BOATS WHO ATTEMPTED TO BOARD. ATTEMPT WAS BROKEN OFF WHEN ALERTED CREW MUSTERED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.149999999646809, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-399", - "dateofocc": "2000-11-18", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE:AN UNIDENTIFIED TANKER WAS APPROACHED 18 NOV BY AN UNLIT BOAT WHICH CAME ALONGSIDE AT 2156 LOCAL TIME IN POSITION 01-16N 104-07E. BOAT WITHDREW WHEN CREW SWITCHED ON ALDIS LAMP.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-400", - "dateofocc": "2000-11-18", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 18 NOV AT 0130 LOCAL TIME AT THE PANJANG PILOT STATION. EIGHT PERSONS FROM A SMALL BOAT BOARDED OVER THE FORECASTLE AND ENTERED THE ENGINE ROOM. THEY TIED UP THE DUTY OILER, STOLE ENGINE SPARES AND ESC", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-1", - "dateofocc": "2000-12-23", - "subreg": "21", - "hostility_": "Pirates or Narcotics Smugglers", - "victim_d": "Shrimp Fishing Boats", - "descriptio": "GUATEMALA (WEST COAST):This report is from a newspaper article in the Guatemalan news paper \"Prensa Libre (Free Press)\" date 29 December 2000. The article reports a series of assults on 16 shrimp fishing boats along the Pacific coast. The last reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-90.74999999966667, 13.749999999665818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-229", - "dateofocc": "2001-07-25", - "subreg": "62", - "hostility_": "HIJACKERS", - "victim_d": "BAHARI KENYA", - "descriptio": "SOMALIA:THE HIJACKED KENYAN TRAWLER (BAHARI KENYA) AND ITS CREW OF 22 WHO ARE BEING HELD HOSTAGE HAVE BEEN AT THE PORT OF EYL, 150 KM EAST OF GAROWE, NOMINAL CAPITAL OF PUNTLAND AS OF 1 SEP ARE EXPECTED TO BE \"FINED\" BETWEEN $100,000 AND $200,000 AND REL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.000000000163652, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-230", - "dateofocc": "2001-08-01", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP WAS SUBJECT TO ATTEMPTED BOARDING 1 AUG AT 0030 LOCAL TIME WHILE ANCHORED AT CHITTAGONG. ABOUT SIX PERSONS IN A MOTORBOAT CAME ALONGSIDE AT STERN BUT WITHDREW WHEN SEARCHLIGHTS WERE SHINED ON THEM.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.688333299982958, 22.206666699907885] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-231", - "dateofocc": "2001-08-03", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED TANKER WAS BOARDED 3 AUG AT 0050 LOCAL TIME WHILE AT BELAWAN ANCHORAGE. SIX PERSON ARMED WITH KNIVES ASSAULTED THE WATCHMAN AND TIED HIM UP, STOLE HIS VALUABLES AND STORES FROM THE FORECASTLE. WHEN CREW WAS ALERTED THI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-232", - "dateofocc": "2001-07-31", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "FISHERMEN", - "descriptio": "INDONESIA-SUMATRA:NINE FISHERMEN FROM NORTH SUMATRA WERE REPORTED KILLED 31 JUL IN A RAID BY UNKNOWN PERSONS ARMED WITH KNIVES WHO ATTACKED THEIR THREE SHRIMP TRAWLERS BETWEEN 0200 AND 0300 LOCAL TIME AT SEA BETWEEN KUALA PERUPUK BEACH AND TANJUNG TIRAM.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.999999999949637, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-233", - "dateofocc": "2001-08-02", - "subreg": "91", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:An unidentified cargo ship reports being circled by 7 to 9 speed boats 2 Aug between 1200 and 150 local time while underway off north east Luzon in position 14-55N 119-45E. Persons in the boats ordered the ship to stop and brandished what lo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.750000000395858, 14.916666700094822] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-234", - "dateofocc": "2001-08-07", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT SHIP", - "descriptio": "GHANA:AN UNIDENTIFIED SHIP WAS BOARDED 7 AUG BETWEEN 0150 AND 0230 LOCAL TIME WHILE AT TEMA ANCHORAGE. DUTY OILER ON WATCH ON FORECASTLE WAS THREATENED WITH GUNS AND KNIVES, ROBBED AND LEFT BOUND HAND AND FOOT. DUTY OFFICER SENT TEAM TO INVESTIGATE WHEN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-235", - "dateofocc": "2001-07-24", - "subreg": "63", - "hostility_": "LTTE REBELS", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SRI LANKA:LTTE REBELS ATTACKED SRI LANKA INTERNATIONAL AIRPORT IN THE EARLY HOURS OF 24 JUL DESTROYING OR DAMAGING MILITARY AND CIVILIAN AIRCRAFT. THE ATTACK OCCURED ON THE ANNIVERSARY OF THE START OF THE TAMIL WAR FOR A SEPARATE HOMELAND WITHIN SRI LANK", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.866666699632219, 6.966666699702841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-236", - "dateofocc": "2001-08-11", - "subreg": "62", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 11 AUG AT 1955 UTC WHILE AT UMM QASR PILOT STATION. THIEVES BOARDED FROM A WOODEN BOAT, BROKE INTO FORWARD LOCKER, AND ESCAPED WITH SHIP'S STORES. THIS IS THE SECOND INCIDENT REPORTED AT UMM QASR SINCE 28", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.733333300001277, 29.649999999550516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-237", - "dateofocc": "2001-08-10", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAITS:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 10 AUG AT 0622 LOCAL TIME WHILE UNDERWAY IN POSITION 01-24N 104-28E. SIX PERSONS ARMED WITH LONG KNIVES HELD THE SECOND AND THIRD OFFICER, AN ENGINEER AND DUTY SEAMEN HOSTAGE WHILE ROBBING THEIR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.466666699708298, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-238", - "dateofocc": "2001-08-10", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAITS:AN UNIDENTIFIED SHIP WAS APPROACHED 10 AUG AT 0010 LOCAL TIME WHILE UNDERWAY IN POSITION 01-28N 104-32E BY TWO SMALL WOODEN BOATS, EACH CONTAINING FOUR PERSONS. ONE BOAT EACH APPROACHED THE PORT SIDE AND STARBOARD QUARTER BUT REDUCED S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.533333299647438, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-239", - "dateofocc": "2001-08-14", - "subreg": "71", - "hostility_": "SEPARIST REBELS", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDONESIA-NORTHERN SUMATRA:THE NAVY ANNOUNCED 14 AUG THAT IT WOULD LAUNCH AN OPERATION TO CUT OFF SEABORNE SUPPLIES TO SEPARATIST REBELS IN ACEH PROVINCE. ADMIRAL INDROKO STATED THE NAVY BELIEVES REBELS ARE ENGAGED IN PIRACY IN THE STRAIT OF MALACCA BUT", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.999999999917293, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-166", - "dateofocc": "2000-08-10", - "subreg": "44", - "hostility_": "RIGHT-WING EXTREMISTS", - "victim_d": "NORWEGIAN DREAM", - "descriptio": "GERMANY:Extra police protection was provided to the 50,764-ton Bahamas flag cruise ship (NORWEGIAN DREAM) during its 10 Aug call at Rostock, Germany. A clash had occurred between the ship's multi-racial crew and right-wing extremists in Warnemunde in Ju", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "I" - }, - "geometry": { - "type": "Point", - "coordinates": [12.121111100370058, 54.093333299742937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-167", - "dateofocc": "2000-08-01", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified tanker was boarded 1 Aug at anchor, Cochin, by eight persons via the anchor chain. Watch spotted them and alarm sounded. The intruders escaped with a mooring line.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.536666699824764, 11.021111099704967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-168", - "dateofocc": "2000-08-02", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified container ship was boarded 2 Aug at anchor, Chittagong, by two men from a fishing boat. The two escaped when spotted by duty officer and no loss reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.81361109977496, 22.315000000127213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-169", - "dateofocc": "2000-07-29", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified cargo ship at anchor at Chittagong was the victim of three attempts by ten persons armed with knives to board over bow and stern 29 Jul beginning at 1645 UTC. The would-be boarders reportedly threw stones at the crew during th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.813888900349809, 22.315277799802743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-170", - "dateofocc": "2000-07-29", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:An unidentified bulk carrier was boarded 29 Jul at 0200 local time at Chittagong Alpha anchorage. About 20 persons armed with long knives overpowered and tied up two local watchmen and robbed ships stores. Duty officer raised alarm and robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814444399876095, 22.315833300228348] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-171", - "dateofocc": "2000-07-29", - "subreg": "63", - "hostility_": "GUNMEN", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAY OF BENGAL-MYANMAR:An unidentified cargo ship was reportedly chased and fired at by persons in a boat 29 Jul at 1342 UTC while underway from Singapore to Bangladesh in position 20-13N 092-22E. Pursuit reportedly lasted two hours. Calls to rescue cent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [92.366666699586801, 20.216666700356143] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-172", - "dateofocc": "2000-08-01", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:An unidentified tanker reported being chased 1 Aug at 0442 UTC in the Southern red Sea in position 13-44.2N 042-57.8E by speedboats. One boat, containing six persons, reportedly tried to block the tanker's passage but crew maneuvered past.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.96555560019101, 13.73666669982282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-173", - "dateofocc": "2000-07-29", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:An unidentified bulk carrier reported being approached by four unlit boats 29 Jul at 2250 UTC in the Southern Red Sea in position 13-11.5N 043-01.0E. The boats withdrew when illuminated by the ship's searchlight.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.016666699834445, 13.191666699746747] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-174", - "dateofocc": "2000-08-08", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "ALI EKINCI", - "descriptio": "STRAIT OF MALACCA:The 23,436-ton, Turkish-flag bulk carrier (ALI EKINCI) was boarded while underway by five persons armed with long knives in position 01-54N 102-21E at 0240 local time while on a voyage from Singapore to Italy. The thieves reportedly st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.35000000001304, 1.899999999777265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-175", - "dateofocc": "2000-08-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "SHUENN MAN NO. 12", - "descriptio": "STRAIT OF MALACCA:The master of the Taiwan-flag fishing vessel (SHUENN MAN NO. 12) was reported shot dead 8 Aug when his vessel was stormed by pirates at 1330 local time. The incident reportedly occurred 224 km north east of Singapore when a vessel \"dis", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.720000000008895, 4.117222199631613] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-176", - "dateofocc": "2000-07-31", - "subreg": "71", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier detected approach of a boat while underway on 31 Jul in position 02-01.4N 102-02.9E. When boat was .5 miles from the bulk carrier the third officer directed a searchlight toward it and the boat then withdre", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.048333299886337, 2.023333299866636] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-177", - "dateofocc": "2000-08-03", - "subreg": "71", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified container ship was approached by two speedboats from port bow and port beam 3 Aug at 0224 local time while underway in 00-11N 103-38E. Boats withdrew when alarm raised and crew alerted.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 0.183333299915034] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-178", - "dateofocc": "2000-08-04", - "subreg": "93", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:An unidentified bulk carrier was approached by two speed boats close along the starboard side 4 Aug at 1645 UTC while underway in position 10-45.8N 111-27.8E. Crew raised alarm, activated water jets, and alerted other vessels on VHF Chan", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.46333329988056, 10.76333330031116] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-179", - "dateofocc": "2000-07-31", - "subreg": "93", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:An unidentified roll-on, roll-off ship was approached by two high-speed boats, one to either side 31 Jul while underway in position 10-47.0N 109-56.4E. The ship fired signal rockets and activated high-pressure hoses and the boats withdre", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.93999999992576, 10.783333300437732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-2", - "dateofocc": "2000-11-25", - "subreg": "61", - "hostility_": "THIEF", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MOZAMBIQUE:CREW OF AN UNIDENTIFIED SHIP DISCHARGING CARGO 25 NOV AT 1400 UTC AT NACALA DISCOVERED A STEVEDORE ARMED WITH A KNIFE LOWERING SHIP'S STORES INTO THE SEA. HE WAS CAUGHT AND TURNED OVER TO POLICE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.666666699803386, -14.550000000439979] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-3", - "dateofocc": "2000-11-28", - "subreg": "63", - "hostility_": "KIDNAPPERS", - "victim_d": "FISHERMEN", - "descriptio": "INDIA-BAY OF BENGAL:65 INDIAN FISHERMEN WERE REPORTED KIDNAPPED 28 NOV AS THEY PUT TO SEA AT THE MOUTH OF THE THAKURANI RIVER IN THIRTEEN TRAWLERS. THE FISHERMEN WERE TAKEN TO AN ISOLATED ISLAND AND FIVE WERE SENT BACK WITH A RANSOM DEMAND OF $11,000 FO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.827222200128119, 21.161388899690451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-4", - "dateofocc": "2000-11-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BARGE UNDER TOW", - "descriptio": "INDIA:AN UNIDENTIFIED BARGE UNDER TOW WAS BOARDED 22 NOV AT 0230 UTC OFF SOUTHWEST INDIA IN POSITION 08-49N 076-13E. PERSONS FROM FIVE SPEEDBOATS STOLE SPARE PARTS AND RETURNED AN HOUR LATER WITHOUT STEALING ANYTHING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.216666700368535, 8.816666700167332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-5", - "dateofocc": "2000-11-26", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "SAILING YACHT", - "descriptio": "RED SEA:AN UNIDENTIFIED FRENCH SAILING YACHT AVERTED BOARDING 26 NOV AT 0530 UTC WHEN TWICE APPROACHED BY SEVEN PERSONS IN TWO SPEEDBOATS IN POSITION 12-17N 044-52E.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.866666700298936, 12.283333300036531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-6", - "dateofocc": "2000-11-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED 20 NOV AT 2335 LOCAL TIME WHILE UNDERWAY IN POSITION 01-47.2N 102-25.3E BY ABOUT FIFTEEN PERSONS WHO HELD THE MASTER, CHIEF ENGINEER, AND RADIO OFFICER HOSTAGE WHILE RANSACKING THE ACCOMMODATION AND ST", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.42166670003337, 1.786666700200783] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-7", - "dateofocc": "2000-11-23", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS PURSUED 23 NOV AT 0330 LOCAL TIME WHILE UNDERWAY IN POSITION 05-44N 095-17E, THREE MILES OFF PULAU WE AT THE NORTHERN TIP OF SUMATRA. THREE SPEEDBOATS WITH RED AND BLUE STRIPES CAME CLOSE TO THE VESSEL'S BOW ON E", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [95.283333300022775, 5.733333300409299] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-8", - "dateofocc": "2000-11-22", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOLOMON ISLANDS:THE TAIWAN-FLAG FISHING VESSEL (WIN FAR 616) WAS BOARDED 22 NOV AT HONIARA ANCHORAGE BY 8 ARMED MEN WHO FIRED WARNING SHOTS AND LOBBED TEAR GAS INTO THE VESSEL'S ACCOMMODATION. THE BRIDGE WAS STRIPPED OF REMOVABLE ITEMS AND CREW EFFECTS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [159.950000000256978, -9.466666700441976] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-9", - "dateofocc": "2000-12-02", - "subreg": "24", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL:WATCH ON AN UNIDENTIFIED BULK CARRIER AT ANCHOR SANTANA, SPOTTED PERSONS ARMED WITH KNIVES AND GUNS ON FORECASTLE 2 DEC AT 0410 LOCAL TIME. PORT CONTROL INFORMED, NO ACTION TAKEN. THIEVES ESCAPED WITH SHIPS STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.892499999769086, -5.401666699676525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-10", - "dateofocc": "2000-11-05", - "subreg": "24", - "hostility_": "THIEVES", - "victim_d": "STOLT KENT", - "descriptio": "BRAZIL:THE 12,141-TON, ISLE OF MAN FLAG CHEMICAL TANKER (STOLT KENT) WAS BOARDED ABOUT 5 NOV (REPORTED 4 DEC) WHILE AT COPESUL TERMINAL, RIO GRANDE. THE MASTER, OTHER OFFICERS AND CREW WERE THREATENED WITH GUNS WHILE THEIR CABINS WERE RANSACKED AND VAL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-52.133333300140009, -32.049999999656961] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-11", - "dateofocc": "2000-12-01", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON:UNIDENTIFIED SHIP BERTHED AT OWENDO PORT DISCOVERED PERSONS ON FORECASTLE 1 DEC AT 0130 LOCAL TIME. ALARM RAISED AND THIEVES JUMPED OVERBOARD WITH SHIP'S STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.483333300305731, 0.350000000311695] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-12", - "dateofocc": "2000-12-03", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN-GULF OF ADEN:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 3 DEC AT 0320 UTC IN POSITION 12-31.5N 045-00.0E BY FIVE BOATS, EACH CONTAINING TWO PERSONS. CREW MUSTERED AND BOATS WITHDREW TOWARD ADEN.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.00000000000199, 12.524999999783631] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-13", - "dateofocc": "2000-12-07", - "subreg": "62", - "hostility_": "KIDNAPPERS", - "victim_d": "FISHING BOAT", - "descriptio": "SOMALIA:A YEMENI FISHING BOAT WAS ATTACKED 7 DEC AND ITS CREW OF THREE TAKEN HOSTAGE OFF THE NORTHERN SOMALI VILLAGE OF HEIS. THE ATTACK WAS REPORTEDLY CARRIED OUT BY FIVE ARMED MEN WHO HAVE TAKEN THE HOSTAGES DEEP INTO THE INTERIOR OF THE BREAKAWAY REG", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.00000000006662, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-14", - "dateofocc": "2000-11-28", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "UAE:FOUR PERSONS IN A SMALL BOAT ATTEMPTED TO BOARD AN LPG CARRIER 28 NOV AT 1530 UTC WHILE THE SHIP WAS AT ANCHOR 5.8 NM FROM KALBA BREAKWATER. CREW MUSTERED ON DECK AND DIRECTED HIGH PRESSURE WATER JETS AT THE CRAFT, DESCRIBED AS 7-8 M LONG, 2M WIDE A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.333333300426887, 25.083333300090771] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-15", - "dateofocc": "2000-11-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Strait of Malacca:An unidentified tanker was boarded 30 Nov at 2118 utc while underway in position 01-42n 102-34e. The thieves stole cash and ship's stores before escaping in a small boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.566666700276357, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-16", - "dateofocc": "2000-11-05", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "THOR KIRSTEN", - "descriptio": "STRAIT OF MALACCA:THE 1,167 TON DANISH-FLAG CARGO SHIP (THOR KIRSTEN) WAS BOARDED 5 NOV AT 0510 LOCAL TIME (REPORTED 5 DEC) WHILE UNDERWAY ABOUT 20 NM SOUTH WEST OF SINGAPORE. GENERAL ALARM WAS SOUNDED AND A CREW MEMBER REPORTEDLY FIRED A WARNING BLAST", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-240", - "dateofocc": "2001-08-13", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 13 AUG AT 0030 LOCAL TIME WHILE AT TANJUNG PRIOK ANCHORAGE. FOUR PERSONS STOLE SHIP'S STORES AND JUMPED OVERBOARD TO ESCAPE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-241", - "dateofocc": "2001-08-09", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 9 AUG AT 0220 LOCAL TIME WHILE AT BELAWAN ANCHORAGE. EIGHT TO 10 PERSONS ARMED WITH LONG KNIVES ASSAULTED THE DUTY SEAMAN WHO ALERTED THE WATCH. DESPITE THE ALARM BEING RAISED STORES WERE BR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-242", - "dateofocc": "2001-08-04", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Kalimantan:An unidentified general cargo ship was subject to an attempted boarding 4 Aug at 0230 local time while anchored at Balikpapan inner roads. Hired police constables observed the attempt and one fired warning shots after which one of t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.866666699929397, -1.216666699950338] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-243", - "dateofocc": "2001-08-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MAURICE EWING", - "descriptio": "GULF OF ADEN:31 AUGUST 2001, 1410 GMT, U.S. RESEARCH VESSEL MAURICE EWING ATTACKEDBY 4-6 ARMED PERSONS OPERATING A SMALL CRAFT IN THE GULF OF ADEN.THE RV MAURICE EWING WAS CONDUCTING OCEANOGRAPHIC RESEARCH NEAR11-08N AND 043-53E, OFF-SHORE NORTHERN SOMAL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.883333300339018, 11.133333300404047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-244", - "dateofocc": "2001-08-12", - "subreg": "21", - "hostility_": "ATTACKERS", - "victim_d": "YACHT", - "descriptio": "MEXICO:A canadian yachtsman was assaulted and robbed 12 Aug while motoring 5 miles off shore near Santa Rosalia in Baja California. Two young men in a boat approached the yachtsman and asked for water. They then boarded the yacht demanding money and, whe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-112.333333299748631, 27.333333300388347] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-245", - "dateofocc": "2001-08-20", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 20 AUG AT 0510 LOCAL TIME WHILE DRIFTING 20 NM OFF LAGOS. SIX PERSONS ARMED WITH LONG KNIVES STOLE TWO MOORING LINES BEFORE ESCAPING. MASTER NOTIFIED PORT CONTROL AND OTHER SHIPS IN THE VICINITY.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.000000000442355, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-246", - "dateofocc": "2001-08-16", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:AN UNIDENTIFIED MULTI-PURPOSE CARGO SHIP WAS BOARDED 16 AUG AT 0200 LOCAL TIME WHILE AT DAR ES SALAAM OUTER ANCHORAGE. TWENTY PERSONS IN TWO BOATS STOLE SHIP'S STORES OVER A TWENTY-MINUTE PERIOD ALTHOUGH ANTI-PIRACY MEASURES WERE IN PLACE. INC", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.299999999907584, -6.850000000280886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-247", - "dateofocc": "2001-08-15", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT:AN UNIDENTIFIED TANKER WAS APPROACHED 15 AUG AT 1900 LOCAL TIME WHILE UNDERWAY IN POSITION 02-18N 101-38E BY AN UNLIT BOAT MAKING 12 KNOTS. SHIP ILLUMINATED BOAT WITH SEARCHLIGHTS AND IT WITHDREW.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.633333300183153, 2.299999999610293] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-248", - "dateofocc": "2001-08-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 18 AUG AT 0200 LOCAL TIME WHILE UNDERWAY IN POSITION 01-40N 104-30E, NEAR HORSBURGH LIGHT. TWELVE PERSONS ARMED WITH LONG KNIVES HELD THE MASTER AND FIVE CREW WHILE THEY ROBBED THE SHIP OF CRE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.499999999677868, 1.666666700340784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-249", - "dateofocc": "2001-08-13", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED BULK CARRIER WAS APPROACHED 13 AUG AT 2337 BY AN UNLIT BOAT WHILE UNDERWAY IN POSITION 09-01S 115-02E, SOUTH OF BALI. ANTI-PIRACY WATCH SIGHTED APPROXIMATELY 25-METER BOAT APPROACHING STERN RAILING. SEARCHLIGHTS WERE DIRECTED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.033333300436652, -9.016666699842858] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-250", - "dateofocc": "2001-08-17", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPORTS BEING FIRED ON FROM A BOAT WITH FIVE PERSONS WHO \"ASKED\" THE MASTER TO STOP HIS ENGINES 17 AUG AT 0810 UTC WHILE UNDERWAY IN POSITION 04-35N 095-05E. MASTER INCREASED SHIP'S SPEED AND BOAT WITHDREW AFTER FOLLOWIN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [95.083333299656601, 4.583333299877495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-251", - "dateofocc": "2001-08-09", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MAGNA ENERGY", - "descriptio": "THAILAND:THE PANAMANIAN FLAG BULK CARRIER (MAGNA ENERGY) WAS BOARDED 9 AUG AT 1600 LOCAL TIME WHILE BERTHED AT WHARF 21D, BANGKOK. THIEVES STOLE 2 GPS UNITS AND A PAIR OF BINOCULARS BEFORE BEING APPREHENDED BY THE CREW AND POLICE. THE THIEVES BROKE FRE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.500000000447812, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-252", - "dateofocc": "2001-08-15", - "subreg": "25", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC:AN UNIDENTIFIED TANKER WAS BOARDED 15 AUG AT 0110 LOCAL TIME WHILE MOORED AT RIO HAINA. TWO TEAMS OF THIEVES, ONE AT THE FORECASTLE AND ONE AT THE POOP USED GRAPLING HOOKS TO BOARD. CREW RESPONDED IMMEDIATELY AND THIEVES FLED AFTER S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-253", - "dateofocc": "2001-08-23", - "subreg": "51", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE:AN UNIDENTIFIED RO-RO SHIP WAS BOARDED 23 AUG AT 0500 LOCAL TIME WHILE BERTHED AT FREETOWN BY PERSONS ARMED WITH KNIVES WHO THREATENED THE DUTY SEAMAN. A CONTAINER WAS BROACHED AND PART OF ITS CARGO STOLEN BEFORE THE THIEVES ESCAPED WHEN SP", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.250000000307978, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-180", - "dateofocc": "2000-08-02", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship was boarded 2 Aug while underway in the Banka Strait by six persons. The Third Engineer informed the bridge and alarm was sounded. The intruders escaped in their boat and nothing was reported stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.802222199621951, -3.646111100237249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-181", - "dateofocc": "2000-07-28", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 28 Jul at 1700 UTC while anchored at Adang Bay. Three persons boarded via anchor chain and attempted to break into forecastle stores. Watch alerted the bridge and alarm was sounded whereupon the intrude", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.499999999839588, -8.500000000379202] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-182", - "dateofocc": "2000-08-09", - "subreg": "63", - "hostility_": "INTRUDERS", - "victim_d": "AMETHYST", - "descriptio": "BANGLADESH:The 1,200-ton Panamanian flag cargo ship (AMETHYST) was raided 9 Aug at 0100 local time at Chittagong outer anchorage by armed intruders who tried to gain access from small boat. While crew and hired guards were repelling the attack two crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-183", - "dateofocc": "2000-08-19", - "subreg": "54", - "hostility_": "YUGOSLAV MILITARY GUNBOAT", - "victim_d": "M/V DELAWARE BAY", - "descriptio": "The U.S.-flagged vessel, M/V Delaware Bay, was boarded and detained near the port of Bar, Montenegro (42-05N 019-05E) by a Yugoslav gunboat. The vessel, owned by First American Bulk Corporation (FABC) and on charter to Farrell Lines, was carrying USAID f", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [19.016666699957625, 42.099999999638385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-184", - "dateofocc": "2000-08-15", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA:On 15 Aug at 0400 local, nine persons armed with shotguns in a wooden boat attempted to board a bulk carrier at anchor 26 miles south of Conakry, Guinea in position 09-05N013-49W. The duty officer raised the alarm and sounded the whistle. The cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.816666699638404, 9.083333299573326] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-185", - "dateofocc": "2000-08-14", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified tanker was boarded 14 Aug at anchor, Cochin, by three persons who took the duty seaman hostage and threatened him with a knife. The duty officer on the bridge suspected something was wrong when he could not communicate with the sea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.536666699824764, 11.021111099704967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-186", - "dateofocc": "2000-08-21", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:Four persons in a small wooden boat attempted to steal zinc anodes welded to the rudderpost of a chemical tanker and anchor in Chittagong Bravo anchorage 21 Aug. The crew spotted them and the alarm was raised. The thieves fled and port autho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.233333299593937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-187", - "dateofocc": "2000-08-09", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:On 9 Aug, at 0130 in the outer anchorage of Chittagong, armed thieves attacked a general cargo ship. One crewmember and watchman were shot. The other crewmembers resistedand the thieves retreated. Other ships also came to help. Port author", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-188", - "dateofocc": "2000-08-11", - "subreg": "62", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:Four persons in a small boat attempted to block the passage of a bulk carrier on 11 Aug at 1450 local time in the Straits of Bab El Mandeb in position 12-13N 042-29E. The boat reportedly followed close to the ship with the intent to board until", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.483333299574269, 12.216666700097448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-189", - "dateofocc": "2000-08-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "GIA DIHN", - "descriptio": "INDONESIA:The 985-ton, Vietnamese flag cargo ship (GIA DIHN) enroute Indonesian waters was attacked 18 Aug by 15 heavily armed pirates from a speedboat flying a Malaysian flag. The crew was robbed of cash and personal possessions but were unharmed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.802222199621951, -3.646111100237249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-190", - "dateofocc": "2000-08-18", - "subreg": "71", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:On 18 Aug at 1115 local time, in position 01-48N 102-25E, a bulk carrier was approached by two unlit speedboats from the stern. The speedboats fled when the ship shined an Aldis lamp at the boats.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.416666699776897, 1.800000000043781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-191", - "dateofocc": "2000-08-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:On 15 Aug at 0950 local, in posit 05-35N 097-38E, four high-speed boats approached a tanker from both sides. The master raised the alarm and sounded the whistle. The crew charged the fire hose and notified ships in the vicinity. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.633333300053835, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-192", - "dateofocc": "2000-08-11", - "subreg": "93", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA:On 11 Aug at 1718 UTC, in position 11-00N 110-46E, a speedboat approached a general cargo ship on the starboard side to within 3 nm. The duty officer switched on all deck lights and the speedboat retreated.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.766666700001963, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-17", - "dateofocc": "2000-11-30", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-SUMATRA:AN UNIDENTIFIED TANKER WAS BOARDED 30 NOV AT 0245 LOCAL TIME AT PANJANG ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES WERE SPOTTED BY WATCH WHO RAISED ALARM. INTRUDERS THEN FLED IN SMALL BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-18", - "dateofocc": "2000-12-09", - "subreg": "61", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA:AN UNIDENTIFIED TANKER REPORTED A MAN CUT TWO LINES MOORING SHIP TO DOLPHIN 9 DEC AT 0125 LOCAL TIME, ATKIPEVU OIL TERMINAL, MOMBASSA. MOMBASSA PORT AUTHORITY INFORMED AND POLICE ARRIVED 0310.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.666666699771042, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-19", - "dateofocc": "2000-12-05", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED IN MOMBASSA 5 DEC AT 0545 LOCAL TIME BY A MAN ARMED WITH A KNIFE WHO ATTACKED THE SHIP'S WATCHMAN. DUTY OFFICER RESPONDED AND DISCOVERED SOME SHIP'S EQUIPMENT STOLEN. WATER POLICE CONTACTED BY VHF AND THI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.666666699771042, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-20", - "dateofocc": "2000-12-11", - "subreg": "62", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:A GENERAL CARGO SHIP UNDERWAY IN POSITION 12-51.1N 046-02.2E REPORTED SUSPICIOUS APPROACH BY SPEEDBOAT CONTAINING THREE MEN 11 DEC AT 0650 UTC. SHIP TOOK EVASIVE ACTION AND BOAT WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.036666700057992, 12.851666700293322] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-21", - "dateofocc": "2000-12-10", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:A REFRIGERATED CARGO SHIP REPORTED APPROACH BY TWO HIGH SPEED BOATS, EACH CONTAINING TWO MEN IN MILITARY UNIFORM 10 DEC AT 0742 LOCAL TIME. SHIP'S ANTI-PIRACY CREW MUSTERED ON DECK AND BOATS WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.066666699765847, 12.283333300036531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-22", - "dateofocc": "2000-12-10", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:UNIDENTIFIED TANKER BOARDED 10 DEC AT 2330 UTC VIA ANCHOR CHAIN WHILE ANCHORED AT COCHIN. SHIPS STORES STOLEN BY THIEVES WHO ESCAPED IN SMALL WOODEN BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-23", - "dateofocc": "2000-12-11", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED 11 DEC AT 1930 LOCAL TIME WHILE BERTHED AT CRUSE OIL JETTY, COCHIN. SIX PERSONS ARMED WITH CROWBARS, KNIVES AND OTHER WEAPONS (NFI) CUT AND STOLE FORWARD MOORING LINE AND ESCAPED. THE SAME SHIP WAS ATTACKED 10 D", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-24", - "dateofocc": "2000-12-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED AND ROBBED 12 DEC AT 2130 LOCAL TIME WHILE UNDERWAY IN EASTBOUND LANE OF TRAFFIC SEPARATION SCHEME. TWELVE PERSONS ARMED WITH KNIVES AND GUNS TOOK PART. THEY THREATENED THE CREW AND LOCKED THEM IN TH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.118333299944254, 1.252499999839472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-25", - "dateofocc": "2000-12-10", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED BY THIEVES 10 DEC AT 0125 LOCAL TIME WHILE ANCHORED IN POSITION 01-06.6N 103-28.8E. ALERT CREW FOILED ATTEMPT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.480000000418272, 1.109999999724721] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-26", - "dateofocc": "2000-12-09", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "JASMIN 1", - "descriptio": "STRAIT OF MALACCA:(JASMIN 1), A HONDURAN-FLAG CARGO SHIP WITH A $342,000 CARGO OF SUGAR IS MISSING SINCE ITS 29 NOV DEPARTURE FROM BATAM BOUND FOR PENANG. ON 9 DEC SHIP'S AGENT REPORTED IT MAY HAVE SUNK OR BEEN PIRATED, BUT COMMUNITY ESTIMATES ARE THAT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749166699615557, 4.943611100032285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-27", - "dateofocc": "2000-12-08", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CAR CARRIER WAS PURSUED 8 DEC AT 1507 LOCAL TIME WHILE IN POSITION 00-18.0N 108-15.0E BY ABOUT 8 PERSONS IN A SPEEDBOAT. MASTER TOOK EVASIVE ACTION AND SPEEDBOAT WITHDREW IN DIRECTION OF ISLAND OF PENGIKIK BESAR, INDONESIA.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.2499999995743, 0.300000000444982] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-28", - "dateofocc": "2000-12-07", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified tanker was boarded 7 Dec at 1515 utc while anchored at Santan, East Kalimantan. Intruders used the vessel's anchor chain but were spotted by watchman and fled when alarm sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.500000000098225, -0.01666669955182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-29", - "dateofocc": "2000-12-08", - "subreg": "73", - "hostility_": "CHRISTIANS", - "victim_d": "MUSLIM REFUGEES", - "descriptio": "INDONESIA-MOLUCCAS-HALMAHERA:AN UNKNOWN NUMBER OF MUSLIM REFUGEES WERE KILLED OR INJURED WHEN THEIR BOAT, CARRYING ABOUT 80 PERSONS, WAS ATTACKED BY A CHRISTIAN GROUP 8 DEC AT KAHATOLA ISLAND IN THE MOLUCCAS.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [127.483333299625201, 1.65000000044364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-30", - "dateofocc": "2000-12-11", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SARAWAK:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 11 DEC AT 0130 WHILE LOADING AT TANJONG MANIS ANCHORAGE, SARAWAK. WATCHMAN OBSERVED SIX INTRUDERS ON FORECASTLE AND SOUNDED ALARM WHEREUPON THE THIEVES JUMPED OVERBOARD WITH SHIP'S STORES. AUTHORI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.445833299914511, 3.045833300153731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-31", - "dateofocc": "2000-12-09", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "NIKOLAY KANTEMIR", - "descriptio": "IVORY COAST:THE 3,988-TON RUSSIAN-FLAG CARGO SHIP (NIKOLAY KANTEMIR) WAS BOARDED AND ROBBED 9 DEC AT 1755 LOCAL TIME WHILE BERTHED AT ABIDJAN. TEN ARMED PERSONS BOARDED FROM THE QUAY WHICH WAS LEVEL WITH THE SHIP'S DECK AND STOLE TWO OF THE SHIP'S CARGO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.016666700371843, 5.316666699604468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-202", - "dateofocc": "2000-08-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TIGER BRIDGE", - "descriptio": "STRAIT OF MALACCA:The 16,135 ton, Cyprus flag container cargo ship (TIGER BRIDGE) was attacked on 29 Aug. The master suffered deep cuts to his hand after six pirates boarded the ship at 0300 local. The pirates handcuffed the master and duty officer bef", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.466666700445899, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-32", - "dateofocc": "2000-12-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED CARGO WAS BOARDED 19 DEC AT LAGOS ANCHORAGE BY PERSONS ARMED WITH KNIVES. SHIP WEIGHED ANCHOR AND PROCEEDED TO THE OPEN SEA WITH TWO INTRUDERS STILL ON BOARD. THE TWO THREATENED THE MASTER WITH DEATH WHEN HIS SHIP ENTERS PORT AN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.466666700039298, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-254", - "dateofocc": "2001-08-20", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST:AN UNIDENTIFIED TANKER WAS BOARDED 20 AUG AT 0330 LOCAL TIME AT ABIDJAN ANCHORAGE. A CREWMEMBER WAS THREATENED AND HIS WALKIE TALKIE AND WRISTWATCH STOLEN. THE THIEVES ESCAPED AFTER TAKING SHIP'S STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.016666700371843, 5.316666699604468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-255", - "dateofocc": "2001-08-26", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CARGO SHIP BEING MOVED UNDER TOW WAS BOARDED 26 AUG AT 1400 UTC WHILE IN POSITION 20-22N 171-23E. PERSONS FROM TWO FISHING BOATS STOLE SHIP'S STORES AND ESCAPED DESPITE EFFORTS BY THE TUG'S CREW TO THWART THE ROBBERY. ON 28 AUG AT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.383333299879382, 20.366666699956284] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-256", - "dateofocc": "2001-08-26", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHERMEN", - "descriptio": "PHILIPPINES-MINDANAO:SIX FISHERMEN WERE KILLED AND THEIR BOATS STRIPPED OF ENGINES BY PIRATES ARMED WITH MACHINE GUNS, 26 AUG OFF ALICIA, ZAMBOANGA, MINDANAO.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.03333329976374, 6.966666699702841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-257", - "dateofocc": "2001-08-23", - "subreg": "22", - "hostility_": "BOARDERS", - "victim_d": "CSAV MANZANILLO", - "descriptio": "Ecuador:The Antigua-flag container ship (sav Manzanillo) was approached 23 Aug (reported 5 Sep) at 0350 local time by a boat with approximately 10 armed persons. Ship was about 10 miles off data sea buoy waiting for pilot to proceed into Guayaquil. Sec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.000000000443208, -2.249999999952252] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-258", - "dateofocc": "2001-08-29", - "subreg": "57", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST:AN UNIDENTIFIED CARGO SHIP WAS SUBJECT TO ATTEMPTED BOARDING 29 AUG AT 2315 LOCAL TIME WHILE AT BERTH 67, ABIDJAN. TWO PERSONS TRIED TO CLIMB ABOARD USING A HOOKED POLE BUT ESCAPED IN THEIR BOAT WHEN CREW RESPONDED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.316666699604468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-259", - "dateofocc": "2001-08-31", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA-GULF OF ADEN:AN UNIDENTIFIED CARGO SHIP WAS APPROACHED 31 AUG AT 0915 LOCAL TIME WHILE UNDERWAY IN POSITION 12-43N 043-19E, ABOUT 5 NM NW OF PERIM ISLAND. PERSONS IN FOUR FAST FIBERGLASS BOATS APPROACHED AS IF TO BOARD. SHIP RAISED ALARM, INCRE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.316666699934046, 12.716666699663961] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-260", - "dateofocc": "2001-09-02", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS SUBJECTED TO AN ATTEMPTED BOARDING 2 SEP AT 0142 LOCAL TIME WHILE ANCHORED TWO MILES NW OF COCHIN PORT. ANTI-PIRACY WATCH SPOTTED PERSONS IN TWO UNLIT BOATS ATTEMPTING TO CLIMB ABOARD, WHEREUPON THE ALARM WAS RAISED AND", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-261", - "dateofocc": "2001-09-03", - "subreg": "71", - "hostility_": "FREE ACEH MOVEMENT", - "victim_d": "ALL SHIPS", - "descriptio": "MALACCA STRAIT-INDONESIA:THE FREE ACEH MOVEMENT ANNOUNCED 3 SEP THAT ALL VESSELS PASSING BETWEEN SUMATRA AND MALAYSIA MUST GET THE MOVEMENT'S PERMISSION. INDONESIAN VESSELS ARE ALREADY INTENSIFYING PATROLS OF THE AREA TO PREVENT REBEL RESUPPLY AND IT IS", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.999999999917293, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-262", - "dateofocc": "2001-08-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 30 AUG AT 0230 LOCAL TIME WHILE UNDERWAY IN POSITION 01-24.2N 104-39.8E BY ABOUT 8 TO 10 PERSONS ARMED WITH KNIVES. MASTER AND CHIEF ENGINEER REPORTED INJURED AND PIRATES ROBBED CREW BELONGINGS A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.663333300020327, 1.403333300440124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-263", - "dateofocc": "2001-08-31", - "subreg": "73", - "hostility_": "GUNMEN", - "victim_d": "SPEEDBOAT", - "descriptio": "INDONESIA:A SOLDIER AND A POLICEMAN WERE KILLED 31 AUG AND EIGHT OTHERS INJURED WHEN GUNMEN OPENED FIRE ON A SPEEDBOAT OPERATING I CENTRAL MALUKU. THE BOAT WAS CARRYING SECURITY FORCES AND MUSLIMS TO LEIHITU DISTRICT, SERAM ISLAND.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [127.999999999988177, -2.999999999751708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-264", - "dateofocc": "2001-09-01", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED LPG CARRIER WAS PURSUED 1 SEP AT 0300 LOCAL TIME BY TWO SPEEDBOATS WHICH APPROACHED FROM THE PORT QUARTER WHILE THE VESSEL WAS UNDERWAY IN POSITION 03-00S 107-30E IN THE GELASA STRAITS. THE LPG CARRIER ALTERED COURSE BUT WAS FO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.4999999997749, -2.999999999751708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-265", - "dateofocc": "2001-08-29", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Kalimantan:An unidentified bulk carrier was boarded 29 Aug at 0430 local time while at Balikpapan inner anchorage. Watch noticed two long boats near ship's side and three persons on the poop lowering mooring line into the water. Crew chased t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.866666699929397, -1.216666699950338] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-266", - "dateofocc": "2001-08-25", - "subreg": "71", - "hostility_": "HIJACKERS", - "victim_d": "OCEAN SILVER", - "descriptio": "INDONESIA:THE HONDURAS-FLAG COAL CARRIER (OCEAN SILVER) WAS HIJACKED 25 AUG BY ARMED MEN OPERATING FROM A SPEEDBOAT WHO TOOK THE SHIP AND ITS CREW TO A SMALL PORT ON ACEH'S EAST COAST. SIX OF THE CREW WERE RELEASED WHILE ANOTHER SIX, ALL INDONESIAN, ARE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.999999999949637, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-267", - "dateofocc": "2001-09-05", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 5 SEP AT 0400 LOCAL TIME SOON AFTER DROPPNG ANCHOR AT LAGOS ROADS. AN UNKNOWN NUMBER OF PERSONS STOLE CREW PROPERTY AND STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-268", - "dateofocc": "2001-09-09", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON:AN UNIDENTIFIED CARGO SHIP DISCHARGING CARGO AT DOUALA WAS BOARDED 9 SEP AT 0510 LOCAL BY 8 TO 10 PERSONS ARMED WITH KNIVES WHO ARRIVED IMMEDIATELY AFTER STEVEDORES WENT ASHORE. THE INTRUDERS THREATENED DUTY OFFICER AND TWO CREW AND STOLE THEIR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-90", - "dateofocc": "2001-03-10", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 10 MAR AT 1130 LOCAL TIME IN CHITTAGONG WHILE AT AMMONIA BERTH AND ROBBED OF STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-193", - "dateofocc": "2000-08-18", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:On 18 Aug thieves boarded a container ship from the starboard side while it was at anchor at Tanjung Priok, Jakarta. The crew was attending to customs on the port side and the pirates broke padlocks and stole safety equipment and stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-194", - "dateofocc": "2000-08-17", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:While anchored in Belawan on 17 Aug at 0320, a tanker was boarded by thieves who stole ship's stores and injured a crewmember. The attack occurred while the ship was discharging its cargo.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-195", - "dateofocc": "2000-08-15", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:While anchored in Pulau Laut, position 03-12S 116-17E, on 15 Aug, a bulk carrier was boarded and robbed of a life raft and pump. The thieves were spotted by the duty seaman and managed to escape.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.283333299802621, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-196", - "dateofocc": "2000-08-13", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:On 13 Aug at Anyer anchorage, Indonesia, the duty oiler on a bulk carrier noticed three persons in the engine room. He notified the bridge duty officer who raised the alarm. The intruders fled, probably through an open gallery door used to gai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.499999999839588, -8.500000000379202] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-197", - "dateofocc": "2000-08-10", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:On 10 Aug, a container ship was boarded while at anchor at Laem Chabang anchorage. Thieves broke into a paint locker, but were discovered and fled when the alarm was raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.893888900247759, 13.067499999731467] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-198", - "dateofocc": "2000-08-19", - "subreg": "93", - "hostility_": "THIEF", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM:On 19 Aug at 2050 local, in position 10-14N 107-04E, the crew of a tanker anchored in Vung Tau spotted a single person attempting to lower a rope to a waiting boat. When they raised the alarm, the thief fled down the rope and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-199", - "dateofocc": "2000-08-07", - "subreg": "54", - "hostility_": "YUGOSLAV NAVY", - "victim_d": "DEA AND KABAN", - "descriptio": "MONTENEGRO:At least three ships have been stopped by elements of the Yugoslav navy while approaching the harbor at Bar, Montenegro. The three ships known to have been stopped are: (DEA), 1,798 tons, Croatian flag, 7 Aug; (DELAWARE BAY), 31,920 tons, U.S", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [19.087777799727576, 42.100555599888764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-200", - "dateofocc": "2000-08-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified bulk carrier was boarded 24 Aug at 2000 UTC in the outer anchorage at Kandla, India. Three pirates boarded the vessel via the forecastle. They fled when theduty officer raised the alarm and mustered the crew on deck.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-201", - "dateofocc": "2000-08-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:Five pirates boarded an unidentified bulk carrier while at anchor on 23 Aug at 2300 LT in Chittagong, Bangladesh. The crew and stevedores spotted the pirates chased them from the boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.333333300226684] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-203", - "dateofocc": "2000-08-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:On 26 Aug, in position 02-03N 102-08E at 1550 local, pirates boarded an unidentified container ship. The crew spotted the pirate's boat and directed fire hoses into it. The two pirates who boarded the vessel jumped overboard and escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.133333299749665, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-204", - "dateofocc": "2000-08-25", - "subreg": "71", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:On 25 Aug, in position 02-11S 108-57E, at 1430 UTC, two unlit speedboats approached a tanker at 27 knots. At 2 nm the speedboats split and one headed to the bow and one to the stern. The tanker then switched on its deck lights and alt", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.950000000406305, -2.183333300188394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-205", - "dateofocc": "2000-08-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:On 24 Aug, in position 01-45N 102-32E, at 0140 local, a pirate boat approached a tanker. The tanker directed search lights at the pirates who then fled. The pirates are believed to be the same pirates who attacked the M/V (ANTARA DUA)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.53333329958275, 1.750000000177067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-206", - "dateofocc": "2000-08-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "ANTARA DUA", - "descriptio": "STRAIT OF MALACCA:On 24 Aug, in position 01-46N 102-27E, at 0030 local, the 1,976 ton, Malaysian flagged Ro-Ro (ANTARA DUA) was boarded by nine armed pirates. The crew was captured and forced into a stateroom while the pirates stole cash and other valua", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.449999999746467, 1.766666700074268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-207", - "dateofocc": "2000-08-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:On 14 Aug, an unidentified 7,169 ton Cypriot container vessel berthed in Belawan was boarded and robbed. Despite the presence of a three man anti-piracy watch, pirates stole one breathing aparatus and eight drums of paint between 1912 and 2050", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.666666699880466, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-33", - "dateofocc": "2000-12-14", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS APPROACHED BY PERSONS IN A SPEEDBOAT WITH APPARENT INTENT TO BOARD 14 DEC AT 0520 LOCAL TIME IN POSITION 01-46N 102-28E. CREW DIRECTED SEARCHLIGHT AT BOAT WHICH WITHDREW.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.466666699643611, 1.766666700074268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-34", - "dateofocc": "2000-12-13", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 13 DEC AT 2310 LOCAL TIME BY FOUR PERSONS ARMED WITH LONG KNIVES. INTRUDERS FLED WHEN THEY SAW ALERTED CREW ON DECK.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.233333300382412, 1.966666700440442] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-35", - "dateofocc": "2000-12-20", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER WAS FOLLOWED WITH APPARENT INTENT TO BOARD 20 DEC AT 0435 LOCAL TIME IN POSITION 01-15.1N 103-19.3E BY AN UNLIT BOAT WITH FOUR PERSONS. BOAT APPROACHED WITHIN TEN METERS OF SHIP'S STERN BUT WITHDREW WHEN CREW SHINED SEAR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.321666700332287, 1.251666699738337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-36", - "dateofocc": "2000-12-19", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified bulk carrier was boarded 19 Dec at 1000 local time while at Kota Baru anchorage. Five persons armed with knives stole a life raft from the forecastle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.249999999832994, -3.249999999984595] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-37", - "dateofocc": "2000-12-18", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED TANKER WAS BOARDED 18 DEC WHILE BERTHED AT CILACAP BY AT LEAST THREE PERSONS ARMED WITH LONG KNIVES WHO TIED UP THE MECHANIC ON DUTY IN THE ENGINE ROOM AND ESCAPED WITH ENGINE SPARES. PORT CONTROL DID NOT RESPOND TO SHIP C", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.000000000273076, -7.733333299783339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-38", - "dateofocc": "2000-12-24", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 24 DEC AT 0210 AT KIPEVU OIL TERMINAL BY PERSONS WHO APPROACHED IN TWO CANOES CONTAINING SIX PERSONS EACH. SHIPS STORES WERE STOLEN BEFORE THE ANTI-PIRACY WATCH CHASED THEM AWAY.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.99999999984027, -3.999999999784052] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-39", - "dateofocc": "2000-12-24", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 24 DEC AT 0130 AT CHENNAI ANCHORAGE BY PERSONS WHO FLED WHEN SPOTTED BY DUTY OFFICER.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-40", - "dateofocc": "2000-12-31", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "SOUTH PACIFIC; PACIFICA 1", - "descriptio": "STRAIT OF MALACCA-MALAYSIA:THE SIERRA LEONE FLAG (SOUTH PACIFIC) AND PANAMA-FLAG (PACIFICA 1) (NOT LISTED IN SHIPPING SOURCES) WERE ATTACKED 31 DEC BY ABOUT 20 PERSONS ARMED WITH PISTOLS AND MACHETES. THE ATTACKERS ROBBED THE CREWS OF THE TWO SHIPS OF V", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.000000000014325, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-41", - "dateofocc": "2000-12-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER WAS BOARDED 30 DEC AT 0050 LOCAL TIME WHILE UNDERWAY IN POSITION 01-19N 103-18E. BY FOUR PERSONS ARMED WITH KNIVES WHO ENTERED THE BRIDGE AND ROBBED THE THIRD OFFICER OF CASH. THE FOUR ESCAPED WHEN SHIP'S ALARM W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.30000000017867, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-42", - "dateofocc": "2000-12-29", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP REPORTS AN ATTEMPTED BOARDING 29 DEC AT 2235 LOCAL TIME WHILE UNDERWAY IN POSITION 01-17.6N 103-22.2E. THE BOARDING WAS ATTEMPTED FROM A SMALL BOAT AT THE STARBOARD QUARTER BUT WAS ABORTED WHEN THE ANTI-P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.370000000171899, 1.293333300193751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-43", - "dateofocc": "2000-12-29", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECTED TO TWO ATTEMPTED BOARDINGS 29 DEC AT 2235 AND 2353 LOCAL TIME WHILE UNDERWAY IN POSITION 01-18.6N 104-16.3E. ALERT CREW CAUSED BOTH ATTEMPTS TO BE ABORTED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.271666699598597, 1.310000000090895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-44", - "dateofocc": "2000-12-25", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified tanker was subjected to attempted boarding 25 Dec at 0345 local time while at Balikpapan anchorage. Duty officer spotted the intruders and raised alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.833333300135109, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-45", - "dateofocc": "2000-12-24", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 24 DEC AT 0130 LOCAL TIME IN POSITION 01-18.2N 103-21.4E. DUTY OFFICER NOTICED EIGHT PERSONS ARMED WITH LONG KNIVES, RAISED THE ALARM AND MUSTERED THE CREW. THE INTRUDERS JUMPED OVERBOARD AND ESCAPED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.356666700328901, 1.303333299807377] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-46", - "dateofocc": "2000-12-24", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 24 DEC AT 0210 LOCAL TIME AT CIGADING. THE DUTY OILER WAS TIED UP IN THE ENGINE ROOM AND SHIP'S STORES STOLEN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.966666700206474, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-47", - "dateofocc": "2000-12-24", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP REPORTED AN ATTEMPT TO BOARD 24 DEC AT 0215 LOCAL TIME WHILE IN POSITION 01-15.3N 103-20.4E. ALERT CREW ILLUMINATED THE SHIP AND THE BOARDING WAS ABORTED. THERE IS NO INFORMATION IF SHIP WAS AT ANCHOR OR UNDERWAY.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.340000000431758, 1.254999999967708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-48", - "dateofocc": "2000-12-22", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED GAS TANKER WAS BOARDED 22 DEC AT 0230 LOCAL TIME VIA THE STERN WHILE MOORED IN POSITION 06-02.1S 105-55.8E. DUTY CREW AND SHORE GUARDS SPOTTED THE INTRUDERS AND THREE WERE ARRESTED BY THE GUARDS, WHILE TWO ACCOMPLICES IN A WAIT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.930000000182758, -6.034999999845354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-269", - "dateofocc": "2001-09-08", - "subreg": "62", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAB EL MANDEB:AN UNIDENTIFIED CARGO SHIP REPORTS THAT IT WAS SUBJECT TO AN ATTEMPTED BOARDING 8 SEP AT 0720 LOCAL TIME WHILE UNDERWAY IN POSITION 12-48N 043-15E. SEVERAL SPEED BOATS, EACH CONTAINING 5 TO 8 PERSONS APPROACHED BUT TOOK NO FURTHER ACTION A", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.250000000170189, 12.800000000399564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-270", - "dateofocc": "2001-09-08", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 8 SEP AT JAKARTA ANCHORAGE BY FOUR PERSONS WHO BROKE INTO SHIP'S STORE AND STOLE EQUIPMENT. WHEN CHALLENGED THEY ASSAULTED ONE CREW MEMBER AND ESCAPED OEVRBOARD.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-271", - "dateofocc": "2001-09-14", - "subreg": "51", - "hostility_": "SPEEDBOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA:Persons in two fast speedboats attempted to board an unidentified bulk carrier 14 Sep at 2200 local time in position 09-11.3N 014-31.3W off Conakry Guinea. Alarm and whistle sounded and flares fired at boats; boarding aborted.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.521666699827563, 9.188333299563226] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-272", - "dateofocc": "2001-09-11", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON:An unidentified cargo ship was boarded 11 Sep at 0115 local time while anchored at Pilot Station, Douala. Watch noticed three men armed with long knives lowering mooring line into water and was threatened when the men were challenged. Alarm ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-273", - "dateofocc": "2001-09-16", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "SAINT JUDE", - "descriptio": "INDIAN OCEAN:The yacht (SAINT JUDE) reported that an attempt was made to board 16 Sep at 1825 UTC while in position 07-53.4S 091-00.3E. Yacht contacted Darwin Radio and boarding attempt was broken off.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.004999999947415, -7.889999999666998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-274", - "dateofocc": "2001-09-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:An unidentified container ship was boarded 24 Sep at 0510 local time in Lagos by three persons armed with guns and knives operating from a speedboat that came alongside as the ship waited to berth. Duty watch raised the alarm and the thieves fle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-275", - "dateofocc": "2001-09-18", - "subreg": "51", - "hostility_": "BOARDERS", - "victim_d": "KASSOS", - "descriptio": "GUINEA:The 11,582 ton Cyprus flag log carrier, Kassos, was subject to attempted boarding 18 Sep while underway in position 09-11N 014-32W, off Conakry, by twelve persons in each of two fishing boats. Alert crew foiled the attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.533333299643516, 9.183333300206129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-276", - "dateofocc": "2001-09-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified cargo ship under tow in the Gulf of Cambay in position 20-32N 071-21E was boarded and robbed of stores 19 Sep at 0530 local time. Fifteen persons from eight fishing boats took part in the theft which is at least the second reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.349999999909812, 20.53333329962885] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-277", - "dateofocc": "2001-09-24", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:An unidentified container ship was reported 24 Sep to have been boarded at 1430 UTC while underway in position 14-15N 042-41E. According to the report five armed persons were involved. The master's requests for help were monitored by other ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.6833332999405, 14.250000000131649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-278", - "dateofocc": "2001-09-18", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was subject of attempted boarding 18 Sep at 1140 local time while at Bontang anchorage. Three persons attempted to board via the forecastle but were foiled by alert crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.516666699995426, 0.083333300181607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-279", - "dateofocc": "2001-09-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified cargo ship was boarded 27 Sep at 0730 local time wile under tow in the Gulf of Cambay in position 20-25N 071-21E. Twenty-six persons in six fishing boatsstole ship's stores. This is the second attack on a ship under tow in this a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.349999999909812, 20.416666699822997] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-280", - "dateofocc": "2001-09-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified chemical tanker was boarded 25 Sep at 0300 local time and robbed of stores while berthed at Deep Draft Southern Pier, Kakinada. Crew spotted thieves lowering supplies into water and sounded alarm whereupon the thieves jumped into", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.499999999865736, 16.500000000429281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-281", - "dateofocc": "2001-09-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MAYANG SARI", - "descriptio": "INDONESIA-NATUNAS ISLANDS: The Malaysian flag tug (MAYANG SARI) was hijacked 18 Sep at 2345 local time while underway off Pulau Subi Besar, Indonesia on a voyage from Kota Kinabalu. Between 12 and 17 pirates armed with guns and operating from a speedbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.000000000273076, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-282", - "dateofocc": "2001-09-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded and robbed 30 Sep at 2000 local time while loading cargo from barges alongside at Sebuku anchorage. The three intrudersstole a life raft and escaped down the anchor chain to their boat. Ship's c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.400000000332511, -3.616666699848111] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-283", - "dateofocc": "2001-09-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 30 Sep at 0120 local time while anchored at Senakin, Kota Baru. Thieves stole two life rafts before crew raised alarm and thieves escaped in a speedboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.19999999996628, -3.033333299721278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-208", - "dateofocc": "2000-08-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:On 28 Aug between 0200-0400 local, pirates boarded a general cargo ship in Sandakan, Malaysia and stole stores and equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.050000000430828, 5.866666699937014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-209", - "dateofocc": "2000-08-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:On 27 Aug, in position 05-25N 100-21E in Penang port, Malaysia, at 0430, three pirates were spotted on the forecastle by the duty A/B. The alarm was raised and the crew mustered on deck. The pirates then fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.349999999948352, 5.416666700237272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-210", - "dateofocc": "2000-08-27", - "subreg": "93", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: On 27 Aug at 2315 in Vung Tau anchorage, Vietnam, a single pirate boarded a bulk carrier via the anchor chain. The duty A/B spotted the pirate and raised the alarm causing the pirate to flee.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-211", - "dateofocc": "2000-09-08", - "subreg": "82", - "hostility_": "GUADALCANAL MILITANTS", - "victim_d": "GRANGER", - "descriptio": "SOLOMON ISLANDS:M/V Granger received small arms fire 08 Sep from militants on the island of Guadalcanal off Sally Point resulting in the death of one crewmember and the wounding of another. Vessels are advised to remain clear of the south coast of Guada", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [160.000000000123691, -9.999999999978058] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-212", - "dateofocc": "2000-01-17", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "NASIA", - "descriptio": "BRAZIL:The 4,909-ton, Cyprus-flag cargo ship (NASIA) was boarded 17 Jan at Sepetiba Anchorage by 5-6 men armed with knives and guns. The boarders stole money and crew valuables. Total of ship s money lost was $3,600 and total for crew losses still being", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-45.750000000010061, -25.500000000029672] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-213", - "dateofocc": "2000-01-12", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:A boarding attempt was reportedly made 12 Jan against an unidentified ship in 12-59N 100-46E shortly after it departed Ko Sichang, Thailand. Pirates from an unlit boat attempted to board but were repelled by crew using high pressure fire hoses.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.766666699678581, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-214", - "dateofocc": "2000-01-12", - "subreg": "71", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:Five attackers armed with guns and knives attempted to board an unidentified ship 12 Jan in position 01-46N 102-41E. Crew raised general alarm; attack averted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.683333300082211, 1.766666700074268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-215", - "dateofocc": "2000-01-16", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified ship was boarded 16 Jan in position 06-09N 093-42E between 0001 and 0600 local time. Ship's stores stolen. Although unstated in report, ship assessed to have been at anchor at time of boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [93.699999999688316, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-216", - "dateofocc": "2000-01-05", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:Unidentified ship boarded via after deck 5 Jan (reported 18 Jan) at Lawi-Lawi Anchorage. Watchman reported six men with long knives. Intruders escaped with ship's stores after alarm raised and crew mustered.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-217", - "dateofocc": "2000-01-04", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:Seven or eight men armed with long knives boarded an unidentified ship at Muara Karang, Jakarta 4 Jan (reported 18 Jan) and tied up duty engineer and oiler. When dutyengineer freed himself he discovered theft of spare engine parts.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.799999999842157, -6.11666670037863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-218", - "dateofocc": "2000-08-29", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA:AN UNIDENTIFIED BULK CARRIER BERTHED AT CONAKRY, GUINEA WAS SUBJECTED TO FIVE UNSUCCESSFUL BOARDING ATTEMPTS DURING THE NIGHT OF 29 AUG BEFORE A SIXTH ATTEMPT SUCCEEDED AT 0600 LOCAL TIME. THREE MASKED AND ARMED PERSONS BOARDED VIA STERN MOORING", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-219", - "dateofocc": "2000-08-29", - "subreg": "57", - "hostility_": "INTRUDERS", - "victim_d": "DAWN", - "descriptio": "GHANA:THE 8,909-TON, PANAMANIAN FLAG CARGO SHIP (DAWN) WAS SUBJECT OF ATTEMPTED BOARDING 29 AUG AT 2345 LOCAL TIME BY TEN PERSONS, TWO OF WHOM TRIED TO CLIMB THE ANCHOR CHAIN. WHEN CREW SOUNDED AN ALERT THE INTRUDERS LEFT THE AREA.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.99999999968702, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-220", - "dateofocc": "2000-08-28", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "NORDSTRENGTH", - "descriptio": "TOGO:THE 57,148-TON, CYPRUS-FLAG TANKER (NORDSTRENGTH) WAS BOARDED 28 AUG AT 0030 LOCAL TIME (REPORTED 5 SEP). WATCH SPOTTED PERSONS ON THE FORECASTLE AND RAISED THE ALARM. IT WAS DISCOVERED THAT THE LOCK TO THE FORECASTLE HAD BEEN FORCED WITH A CROWBA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.216666699741666, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-221", - "dateofocc": "2000-08-30", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "ARDEAL", - "descriptio": "BANGLADESH:THE 6,036-TON ROMANIAN FLAG CARGO SHIP (ARDEAL), LYING SINCE APRIL 1999 AT MONGLA BANGLADESH AND WITH CREW UNPAID SINCE APRIL 2000, WAS REPORTED 30 AUG TO HAVE BEEN LOOTED BY THIEVES WHO HAVE ALSO STOLEN ALL OF THE CREW'S BELONGINGS. IN SEP 1", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.616666699722657, 22.283333300359971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-222", - "dateofocc": "2000-08-29", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CARGO SHIP WAS BOARDED 29 AUG AT 0600 LOCAL TIME WHILE ANCHORED AT CHITTAGONG ANCHORAGE C. SEVEN PERSONS USING GRAPPLING HOOKS BOARDED FROM A SMALL BOAT BUT FLED WHEN THEY WERE SPOTTED AND CREW MUSTERED ON DECK.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.333333300226684] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-223", - "dateofocc": "2000-09-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 2 SEP AT 2215 LOCAL TIME WHILE UNDERWAY IN POSITION 01-04N 104-54E. PERSONS ARMED WITH MACHETES AND KNIVES ENTERED THE MASTER'S CABIN, TIED HIM UP, AND STOLE $22,000 FROM THE MASTER'S SAFE. W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.900000000410273, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-49", - "dateofocc": "2001-01-08", - "subreg": "71", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER REPORTED BEING APPROACHED 8 JAN AT 0320 LOCAL TIME BY AN UNLIT BOAT WHILE UNDERWAY IN POSITION 01-08N 105-02E. WHEN BOAT APPROACHED WITHIN FIVE METERS OF STERN CREW RAISED ALARM AND TURNED ON DECK LIGHTS WHEREUPON THE BO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.03333330011327, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-50", - "dateofocc": "2001-01-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 8 JAN AT 0500 IN POSITION 00-51.7N 105-06.9E BY FIFTEEN PERSONS ARMED WITH LONG KNIVES AND OTHER UNSPECIFIED WEAPONS. BOARDERS TOOK CONTROL OF THE SHIP, HIT THE CREW AND STOLE STORES AND CREW VALUABL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.114999999747226, 0.861666700418198] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-51", - "dateofocc": "2001-01-06", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified tanker was boarded 6 Jan at 0400 local time at Balikpapan. The two boarders jumped overboard when spotted by watch and escaped in a boat waiting nearby.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.833333300135109, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-52", - "dateofocc": "2001-01-09", - "subreg": "57", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED TANKER WAS BOARDED 9 JAN AT 0200 LOCAL TIME WHILE ANCHORED. THE INTRUDERS ENTERED VIA THE HAWSE PIPE BUT FLED WHEN THE ALARM WAS SOUNDED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.99166670008583, 4.15000000007484] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-53", - "dateofocc": "2001-01-10", - "subreg": "57", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 10 JAN AT 0115 LOCAL TIME WHILE ANCHORED AT TEMA. TWO PERSON BOARDED THROUGH THE HAWSE PIPE BUT FLED WHEN ALARM WAS SOUNDED AND ESCAPED IN A SMALL CANOE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.01666669955182, 5.66666669957084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-54", - "dateofocc": "2001-01-12", - "subreg": "63", - "hostility_": "BOARDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:A BOARDING WAS ATTEMPTED OF AN UNIDENTIFIED TANKER 12 JAN AT 2355 LOCAL TIME 4.5 MILES NW OF THE FAIRWAY BUOY, COCHIN ROADS. WATCH NOTICED A PERSON ON THE ANCHOR CHAIN AND RAISED THE ALARM. INDIVIDUAL ESCAPED IN A BOAT WITH ABOUT 10 ACCOMPLICES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-55", - "dateofocc": "2001-01-09", - "subreg": "63", - "hostility_": "INTRUDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 9 JAN AT 1905 LOCAL TIME WHILE AT COCHIN ANCHORAGE. WHEN CONFRONTED BY ANTI-PIRACY WATCH HE JUMPED OVERBOARD AND ESCAPED IN AN UNLIT BOAT CONTAINING ABOUT NINE ACCOMPLICES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.250000000338105, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-56", - "dateofocc": "2001-01-13", - "subreg": "71", - "hostility_": "INTRUDER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-JAVA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 13 JAN AT 0245 WHILE AT ANCHOR AT JAKARTA. ONE INTRUDER WAS OBSERVED LOWERING A ROPE TO HIS ACCOMPLICES WHEN ALARM SOUNDED AND HE JUMPED OVERBOARD TO ESCAPE IN A BOAT WITH ABOUT TEN ACCOMPLICES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.896666700245532, -6.051666699742498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-57", - "dateofocc": "2001-01-09", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:Thieves in Balikpapan port employed a possible new tactic in robbing an unidentified tanker 9 Jan. Crew of the berthed vessel noticed a small boat approach the bow at 0400 local time. When they shined ship's lights on it the boat moved", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.833333300135109, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-58", - "dateofocc": "2001-01-08", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED TANKER WAS BOARDED 8 JAN AT 0400 LOCAL TIME WHILE ANCHORED AT SANDAKAN, SABAH. SHIP'S STORES STOLEN. SAME SHIP BOARDED 9 JAN AT 0100 WHILE AT BERTH 3, SANDAKAN AND TRIED TO STEAL STORES, BUT FLED WHEN SPOTTED AND ALARM RA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.111666699938269, 5.820000000299729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-59", - "dateofocc": "2001-01-17", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON:AN UNIDENTIFIED BULK CARRIER WAS BOARDED 17 JAN AT ITS BERTH AT DOUALA. DUTY OFFICER THREATENED WITH LONG KNIFE AND SHIP'S STORES STOLEN. POLICE AND HARBOR MASTER'S OFFICE NOTIFIED BUT DID NOT RESPOND.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.716666699566929, 4.066666700238557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-60", - "dateofocc": "2001-01-20", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "TORM ALEXANDRA", - "descriptio": "IVORY COAST:THE 3,972-TON MALTA-FLAG CARGO SHIP (TORM ALEXANDRA) WAS BOARDED 20 JAN AT 0415 LOCAL TIME AT ITS BERTH, ABIDJAN. SEVERAL PERSONS ARMED WITH KNIVES AND PIPES BROKE INTO A CONTAINER AND STOLE TWO BAGS OF COCOA. SHOUTS FROM THE CREW AND THE P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.316666699604468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-61", - "dateofocc": "2001-01-17", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS SURROUNDED 17 JAN AT 0855 LOCAL TIME BY ARMED MEN IN SEVERAL FISHING BOATS AT KAKINADA INNER ANCHORAGE. ONE MAN BOARDED THE TANKER, STOLE SHIP'S STORES AND JUMPED OVERBOARD.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.333333300368395, 16.983333300098593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-62", - "dateofocc": "2001-01-18", - "subreg": "63", - "hostility_": "ATTACKERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 18 JAN AT 2037 LOCAL TIME BY TWO PERSONS ARMED WITH LONG KNIVES. THE INTRUDERS ATTACKED FOUR SHORE WATCHMEN AND TWO CREW. DUTY OFFICER SOUNDED ALARM AND THE TWO ESCAPED IN TWO BOATS.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.999999999658598, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-296", - "dateofocc": "2001-10-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAI OF MALACCA: An unidentified container ship reports being followed 21 Oct at 1930 local time by three unlit boats while underway in position 01-26N 103-06E. No attempt to board took place.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.099999999812439, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-63", - "dateofocc": "2001-01-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "MYANMAR:THAI POLICE ON 18 JAN ARRESTED 20 ALLEGED PIRATES FOLLOWING AN 11 JAN ATTACK ON THE THAI FLAG FISHING BOATS (NONG BOW) AND (AU THONGLAY). THE ATTACK TOOK PLACE OFF MERGUI, MYANMAR. THE BOATS WERE ATTACKED BY PERSONS IN TWO TRAWLERS WHO FORCED T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [98.566666700147039, 12.433333299636729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-284", - "dateofocc": "2001-09-26", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified VLCC was boarded and robbed 26 Sep at 0400 local time while transshipping cargo at Balikpapan anchorage. Two person were spotted on the forecastle lowering stores into their boat. Thieves fled In their boat when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.266666699817108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-285", - "dateofocc": "2001-10-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified tanker was boarded 6 Oct at 0200 UTC while anchored at Abidjan Roads. Four persons came alongside the anchor chain and two persons armed with long knives boarded and stole ship's stores before escaping in their boat when al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-286", - "dateofocc": "2001-10-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: An unidentified general cargo ship was boarded 4 Oct at 2300 local time while unloading cargo at Douala. A locker at the base of the stack was broken into and \"safety equipment\" stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-287", - "dateofocc": "2001-10-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG tanker was subject to an attempted boarding 7 Oct at 0420 local time while at Redeco jetty no. 1, Merak. Four persons from a small boat threw a grappling hook over a railing boat pulled away without boarding when a search", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.400000000009129, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-288", - "dateofocc": "2001-10-05", - "subreg": "94", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TAIWAN STRAIT: An unidentified container ship was subject to attempted boarding 5 Oct at 0200 local time from an unlit speedboat while underway in position 24-31.5N 119-08E. Attempt was aborted when alarm sounded. Same ship reports a similar attempt fou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.133333300299455, 24.525000000171701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-289", - "dateofocc": "2001-10-11", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE: The 2,384ton, Bolivian-flag bunkering tanker (CAPE GEORJEAN) was boarded 11 Oct at 0120 UTC by at least thieves armed with Kalashnikov rifles. The ship's superintendant fired on the intruders with a pump-action shotgun and may have killed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.300000000174748, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-290", - "dateofocc": "2001-10-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 6 Oct at 0001 local time while at Mongla Port. Thieves stole ship's stores from the steering gear flat and zinc anodes from the rudder.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.599999999825513, 22.483333299826825] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-291", - "dateofocc": "2001-10-13", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified bulk carrier reports an attempt to board 13 Oct at 0230 local time while underway at Cartagena. Eight persons approached in a small boat and attemptedto gain access via the ship's ladder which was over the side. Alarm raised a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.416666700398935] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-292", - "dateofocc": "2001-10-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 22 Oct at 0205 UTC while at Lagos Anchorage by three persons armed with knives and operating form a speedboat. The thieves stole ship's stores, crew property and a VHF radio.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-293", - "dateofocc": "2001-10-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: An unidentified bulk carrier was boarded 17 Oct at 0130 UTC while anchored at Owendo. Six persons armed with guns boarded at the forecastle and stole ship's equipment and stores despite crew attempts a thwarting them.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.500000000202874, 0.283333299648461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-294", - "dateofocc": "2001-10-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified tanker was boarded 19 Oct at 0045 local time while at anchorage 1, Dar es Salaam. Two groups of three persons armed with knives boarded at the forecastle and poop deck, from a group of twenty in a boat. Crew raised alarm and t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.283333300010383, -6.833333300383742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-295", - "dateofocc": "2001-10-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 18 Oct at 1135 local time at Mongla anchorage. Five persons armed with long knives gained access via the anchor chain and attacked the watchman. When crew responded the intruders jumped overboard an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.599999999825513, 22.483333299826825] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-297", - "dateofocc": "2001-10-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 21 Oct at 0005 local time while at Belawan anchorage. Seven persons armed with knives gained access via the anchor chain and three assaulted the watchman, stabbing and severely injuring him. A seco", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.983333300052493, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-298", - "dateofocc": "2001-10-21", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified tanker was boarded 21 Oct at 0330 local time while at PTSC oil terminal, Vung Tau. One person armed with a knife boarded at the stern from a small unlit boat that approached with three other persons aboard. Watch raised alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-299", - "dateofocc": "2001-10-21", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MARIE THERESE", - "descriptio": "BRAZIL: The 3,113 ton Antigua flag cargo ship MARIETHERESE was boarded 21 Oct at 0430 local time while berthed at Belem. Three persons armed with knives broke into a storeroom and stole ship's stores before fleeing to their boat when spotted by watchma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.499999999874149, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-1", - "dateofocc": "2000-01-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "A BIMCO report states:Using at least five boats in their attack, pirates boarded a container vessel awaiting entry to the port of Colombo (06-57N 079-51E).Upon detection of the approaching pirates, the ship's crew notified the navy and the harbor police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.849999999735076, 6.949999999805641] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-224", - "dateofocc": "2000-09-02", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS BOARDED AND ROBBED OF UNSPECIFIED CASH AND VALUABLES 2 SEP AT 0045 LOCAL TIME WHILE UNDERWAY IN POSITION 00-58N 105-02E. AFTER THE ROBBERY THE SIX ARMED PERSONS ESCAPED BY BOAT IN THE DIRECTION OF INDON", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.03333330011327, 0.966666700408098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-225", - "dateofocc": "2000-08-30", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 30 AUG AT 1630 UTC WHILE UNDERWAY IN POSITION 01-42N 102-36E BY SEVEN ARMED PERSONS WHO FORCED THE MASTER TO OPEN THE SAFE, TAKING ALL THE MONEY AS WELL AS PERSONAL POSSESSIONS OF THE CREW. TH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.600000000245927, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-226", - "dateofocc": "2000-09-01", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED VEHICLE CARRIER WAS BOARDED 1 SEP AT 0200 LOCAL TIME WHILE AT SAMARINDA MUARA ANCHORAGE. NINE PERSONS IN A SMALL SPEEDBOAT ATTEMPTED TO BOARD VIA THE ANCHOR CHAIN. WHEN SPOTTED BY THE WATCH, THE JUMPED OVERBOARD AND ESCAPED IN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.183333300101481, -0.483333300223364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-227", - "dateofocc": "2000-08-31", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED LIVESTOCK CARRIER WAS BOARDED 31 AUG AT 0200 LOCAL TIME BY FIVE PERSONS ARMED WITH LONG KNIVES ACCOMPANIED BY TWO OTHERS WHO REMAINED IN THEIR BOAT. ALERT WATCH SPOTTED THE INTRUDERS WHO FLED WITHOUT TAKING ANYTHING WHEN THE CR", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.183333300101481, -0.483333300223364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-228", - "dateofocc": "2000-08-30", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER WAS BOARDED 30 AUG AT 0245 LOCAL TIME AT BELAWAN PORT. SEVEN PERSON ARMED WITH LONG KNIVES GAINED ACCESS TO THE SHIP, THREATENED AND ROBBED A PUMPMAN AND FLED WHEN SPOTTED BY DUTY OFFICER WHO RAISED THE ALARM.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-229", - "dateofocc": "2000-09-01", - "subreg": "71", - "hostility_": "SPEEDBOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA:DUTY OFFICER OF AN UNIDENTIFIED CONTAINER SHIP AT PENANG INNER ANCHORAGE NOTICED A RADAR ECHO APPROACHING THE SHIP 1 SEP AT 0030 LOCAL TIME. A BOAT CONTAINING FOUR PERSONSAPPROACHED FROM THE STERN AND CIRCLED THE SHIP SEVERAL TIMES BUT MOVED OF", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.250000000214925, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-230", - "dateofocc": "2000-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:An unidentified supply vessel was reported boarded by \"pirates\" carrying rifles, six miles from Funiwa, Nigeria, at 0400 15 Jan. The boarders stole food, personal belongings, the life raft, a computer and radio equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.841666699554025, 4.416666700204928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-231", - "dateofocc": "2000-01-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "RED MARTIN 1", - "descriptio": "NIGERIA:The 1,930-ton, St. Vincent flag supply vessel (RED MARTIN 1) was boarded 0115 26 Jan in posit. 04-03N 05-56E off the Niger Delta. Seven men armed with machine guns stole a\"large amount\" of equipment and crew's possessions and the vessel's master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.933333299876153, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-232", - "dateofocc": "2000-01-19", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "SMIT-LLOYD 31", - "descriptio": "NIGERIA:The 1,089-ton, Bahamas-flag supply vessel (SMIT-LLOYD 31) was boarded at 0340 19 Jan near Olibiri, Nigeria. Three crew suffered cuts and bruises.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.299999999739669, 4.669999999767924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-233", - "dateofocc": "2000-01-22", - "subreg": "57", - "hostility_": "ATTACKERS", - "victim_d": "SEABULK LINCOLN 6", - "descriptio": "NIGERIA:The 137-ton, St. Vincent-flag supply vessel (SEABULK LINCOLN 6) was chased by would-be boarders 0400 22 Jan from a position 6 miles offshore from FIniwa, Nigeria. Shots fired at the vessel struck its starboard side and portable Diesel fuel tank.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.841666699554025, 4.416666700204928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-234", - "dateofocc": "2000-01-20", - "subreg": "57", - "hostility_": "HIJACKERS", - "victim_d": "HOVERCRAFT", - "descriptio": "NIGERIA:On 20 Jan an unidentified Shell Oil Co. hovercraft with 5 staff was hijacked near Bugama Flow Station near Port Harcourt. Hostages released 24 Jan but craft still held as of 27 Jan.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-235", - "dateofocc": "2000-01-18", - "subreg": "57", - "hostility_": "LETUGBENE COMMUNITY", - "victim_d": "TUGS", - "descriptio": "NIGERIA:Two tugs (NFI) carrying 9 crew from Shell Oil Co. Opukushi Flow Station were seized by the Letugbene Community of Bayelsa State 18 Jan. No information on the craft or their crew was available as of 27 Jan.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-236", - "dateofocc": "2000-01-22", - "subreg": "61", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA:Unidentified chemical tanker boarded at Mombasa Inner Anchorage 22 Jan. Boarders operated form two canoes and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.675277799932473, -4.053055600029381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-237", - "dateofocc": "2000-01-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:Unidentified container ship boarded 20 Jan while underway in 04-37N 098-43E in the Strait of Malacca. Five intruders armed with swords attacked the bridge and master's office, assaulted the master, and stole his belongings and an unrep", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.716666699747179, 4.616666699671782] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-238", - "dateofocc": "2000-01-17", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified general cargo vessel was boarded 17 Jan while underway in 01-41N 102-39E in the Strait of Malacca. Five intruders robbed the master of ship's cash andhis personal belongings.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.650000000112641, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-239", - "dateofocc": "2000-01-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "IBNU", - "descriptio": "STRAIT OF MALACCA:The 22,367-ton, Panamanian-flag product tanker (IBNU) was boarded 0350 16 Jan while underway in position 01-43N 102-37E. Four intruders, armed with knives and a crowbar boarded undetected and surprised the Chief mate in his cabin. Aft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.616666700143071, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-64", - "dateofocc": "2001-01-20", - "subreg": "62", - "hostility_": "SMALL BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA-BAB EL MANDEB:AN UNIDENTIFIED TANKER WAS APPROACHED BY \"ABOUT\" EIGHT SMALL BOATS WITH SIX TO SEVEN MEN IN EACH 20 JAN AT 0730 UTC IN POSITION 12-29.8N 043-36.6E. THE BOATS APPROACHED TO WITHIN 30 METERS AND THEN FOLLOWED THE TANKER AT A DISTANCE", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.609999999750187, 12.496666700070534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-65", - "dateofocc": "2001-01-20", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:THREE ARMED PERSONS BOARDED AN UNIDENTIFIED SHIP 20 JAN AT 0030 LOCAL TIME AT PANJANG ANCHORAGE. THE SECOND OFFICER WAS SEIZED AND STRUCK ON THE HEAD BUT ALERTED OTHER CREW ON HIS WALKIE-TALKIE. THE ALARM WAS RAISED AND THE INTRUDERS JUMPED O", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-66", - "dateofocc": "2001-01-18", - "subreg": "72", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified tanker was approached 18 Jan at 0300 local time by several persons armed with crowbars operating in a small boat. Duty officer raised the alarm and shined search lights on the boat which then departed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.833333300135109, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-67", - "dateofocc": "2001-01-22", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "PETRO NAVIGATOR", - "descriptio": "PAPUA NEW GUINEA-ADMIRALTY ISLANDS: THE 1,711-TON, PAPUA NEW GUINEAFLAG CHEMICAL TANKER (PETRO NAVIGATOR) WAS BOARDED 22 JAN AS ITAPPROACHED THE BERTH AT LORENGAU, MANUS ISLAND. FIFTEEN ARMED MENASSAULTED THE CREW OF THIRTEEN WHO PUT UP RESISTANCE AND", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [147.249999999936222, -2.016666699616508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-68", - "dateofocc": "2001-01-30", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CONTAINER SHIP WAS \"CHASED\" 30 JAN AT 0436 LOCAL TIME IN POSITION 01-19N 103-19E. ALERT CREW PREVENTED ATTEMPTED BOARDING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.316666700075814, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-69", - "dateofocc": "2001-01-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED DREDGER WAS BOARDED 26 JAN AT 0400 LOCAL TIME WHILE UNDERWAY IN POSITION 01-12N 103-23E IN THE EASTBOUND TRAFFIC SEPARATION LANE. TEN PERSONS ARMED WITH KNIVES DEMANDED MONEY AND SLASHED THE MASTER AND TWO CREW MEMBERS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.383333300014954, 1.199999999844522] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-70", - "dateofocc": "2001-01-27", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CEMENT CARRIER WAS BOARDED 27 JAN AT 0420 LOCAL TIME AT PISAI JETTY, BELAWAN, BY FOUR PERSONS OPERATING FROM A SPEEDBOAT. THE FOUR JUMPED OVERBOARD WITH SHIP'S STORES AFTER BEING DISCOVERED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.786666700265471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-71", - "dateofocc": "2001-01-23", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 23 JAN AT 0120 LOCAL TIME WHILE UNDERWAY IN POSITION 01-15.9N 103-24.1E. THE FIVE PERSONS WERE SPOTTED BY CREW AND FLED WITHOUT TAKING ANYTHING.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.401666699939142, 1.264999999581335] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-72", - "dateofocc": "2001-02-05", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "INCAT 033", - "descriptio": "RED SEA-BAB EL MANDEB:THE 3,889-TON, BAHAMAS FLAG FAST FERRY (INCAT 033) WAS APPROACHED 5 FEB AT 0530 LOCAL TIME IN POSITION 12-40N 043-18E BY TWO INFLATABLE BOATS, EACH WITH TWO PERSONS ABOARD AND POSSIBLY ARMED WITH TRIPOD-MOUNTED WEAPONS. THE BOATS D", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.300000000036903, 12.666666699797247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-73", - "dateofocc": "2001-02-02", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TANKER REPORTS FOILING ATTEMPTED BOARDING 2 FEB AT 0535 LOCAL TIME IN POSITION 01-21.2N 103-16.8E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.280000000052098, 1.353333299674091] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-74", - "dateofocc": "2001-02-02", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED CARGO SHIP REPORTS FOILING ATTEMPTED BOARDING 2 FEB AT 0535 LOCAL TIME IN POSITION 01-20.8N 103-17.9E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.298333300151569, 1.346666700114611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-75", - "dateofocc": "2001-02-03", - "subreg": "93", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 3 FEB AT 0105 UTC WHILE ANCHORED AT BANGKOK BAR ANCHORAGE. EIGHT ARMED PERSONS BOARDED FROM A SMALL CRAFT AND USED CROWBARS TO BREAK INTO A CONTAINER. WHEN CREW SOUNDED ALARM THE INTRUDERS JUMPED OVER", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.603333300410668, 13.341666700246208] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-76", - "dateofocc": "2001-02-06", - "subreg": "71", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED BULK CARRIER WAS SUBJECT TO AN ATTEMPTED BOARDING 6 FEB AT 0010 LOCAL TIME WHILE UNDERWAY IN POSITION 05-05.8N 097-53.0E BY TEN ARMED PERSONS IN A HIGH SPEED BOAT. DUTY AB RAISED THE ALARM AND DUTY OFFICER TRANSMITTED A", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.883333300286722, 5.096666700011042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-77", - "dateofocc": "2001-02-06", - "subreg": "72", - "hostility_": "THIEF", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Indonesia-Borneo:An unidentified tanker was boarded 6 Feb at 2000 utc while at anchor at Lhotuan pilot station. One person boarded the ship and broke into store room while an accomplice waited in their boat. Crew spotted the intruder and sounded alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.573333300320996, 0.129999999818949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-300", - "dateofocc": "2001-10-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified cargo ship was boarded 29 Oct at 0403 UTC 5.5 nm from the south mole signal station at Lagos. Six persons boarded from a small boat and escaped with stores andsafety equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-301", - "dateofocc": "2001-10-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:An unidentified chemical tanker reports being approached by two boats with \"several\" persons on board. When crew was alerted boats turned away after firing four shots, none of which struck the tanker, which then turned to a course farther offsho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.383333299970218, 2.333333299579863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-302", - "dateofocc": "2001-10-25", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified bulk carrier was boarded 25 Oct while underway in position 06-04N 126- 12.4E east of the Philippines. Duty officer noticed movement on the forecastle while ship was maneuvering in busy fishing ground. When floodlights were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [126.20666669967386, 6.066666700303244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-303", - "dateofocc": "2001-11-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:An unidentified bulk carrier reports an attempted boarding 4 Nov at 2245 local time while drifting in position 06-01.7N 003-37E off Lagos. The crew spotted a small boat that was illuminated by searchlight and which then left the area.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.616666699639438, 6.028333300252484] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-304", - "dateofocc": "2001-11-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified cargo ship was boarded 4 Nov at 0410 local time by six persons who stole a life raft and ship's stores. Ship was drifting in position 06-06N 003-37E, 20 miles south of fairway buoy.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.616666699639438, 6.100000000272814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-305", - "dateofocc": "2001-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified cargo ship was fired upon 5 Nov at 1055 local time while casting off and preparing to sail from Kismayu. At least 20 rounds from machine gun struck thesuperstructure shattering windows. Incident reported to harbor master and sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.550000000237503, 0.366666700208839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-306", - "dateofocc": "2001-11-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "YEMEN: An unidentified bulk carrier reports attempted boarding 5 Nov at 0715 UTC while underway in position 12-29N, 044-43E five nm from Aden. Ship began evasive maneuvers and attempt to board was abandoned.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.716666699799475, 12.483333300402762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-307", - "dateofocc": "2001-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker was subject to attempted boarding 3 Nov at 0410 local time while underway in position 01-49.7N 102-31.5E. Small fishing boat nearby switched off lights and approached. Crew raised alarm and attempt wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.524999999996226, 1.828333299756878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-308", - "dateofocc": "2001-11-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified chemical tanker reports an attempt to board 6 Nov at 0150 local time while anchored at Dar es Salaam. Six persons operating form a small black wooden boatwere noticed in the attempt and \"drifted away\" when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.353333300003669, -6.725000000164414] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-309", - "dateofocc": "2001-11-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports approach 11 Nov at 0606 local time by a suspicious boat while underway in position 02-02N 101-57E. Lookout noticed two masked men, armed with rifle and carrying grapnel hooks. Alarm was raised and boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.950000000179955, 2.033333300379581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-310", - "dateofocc": "2001-11-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified supply ship was boarded 17 Nov at 0615 local time while berthed at Belawan. Thieves broke a porthole glass and stole crew personal belongings and cash. Watchman saw thieves running away along quay.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-311", - "dateofocc": "2001-11-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified ship was boarded 15 Nov between 1330 and 1430 local time while at Pulau Laut anchorage. Thieves entered via the hawse pipe stealing a life raft and ship'sstores. The theft reportedly took place during heavy rain.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.933333299577498, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-312", - "dateofocc": "2001-11-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "INDONESIA: An unidentified log carrier was boarded 8 Nov at 0450 local time while alongside wharf 201 by seven persons armed with knives and iron bars. Duty seaman taken hostage while paint store robbed. The seven escaped with ship's stores when alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.000000000305363, 1.49999999994418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-313", - "dateofocc": "2001-11-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified general cargo ship was boarded 26 Nov at 0415 UTC while anchored about 5.5 miles from mole signal station, Lagos. The intruders escaped without stealing anything when spotted by watch.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-314", - "dateofocc": "2001-11-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 23 Nov at 0550 local time while discharging at Haldia port. Thieves cut four mooring lines and escaped with them and other stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.083333300329514, 22.016666700054657] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-315", - "dateofocc": "2001-11-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 25 Nov at 0315 local time by about 12 persons armed with long knives which ship was anchored off Kutubdia Island, Chittagong. Intruders threatened duty seaman with knife and stole ship's stores. Thieves e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-316", - "dateofocc": "2001-11-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 22 Nov at 1300 UTC while anchored at Mongla anchorage. Persons armed with long knives boarded via the stern and escaped with ship's property when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 22.466666699754398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-20", - "dateofocc": "2000-03-28", - "subreg": "28", - "hostility_": "ASSAILANTS", - "victim_d": "HAYAT", - "descriptio": "CARIBBEAN SEA:The son of the owner of the Dutch yacht, HAYAT, was shot and wounded 28 Mar. Assailants, who appeared to be fishermen boarded the craft by invitation while it was anchored at Half Moon Cay, about fifty miles east of the Nicaragua-Honduras b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.999999999608576, 15.500000000396938] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-21", - "dateofocc": "2000-04-26", - "subreg": "24", - "hostility_": "BOARDERS", - "victim_d": "SPEAR", - "descriptio": "BRAZIL:The 37,955-ton Panamanian-flag bulk carrier, SPEAR, was boarded 0700 UTC 26 Apr while alongside the terminal at Sepetiba, Brazil. Master and crew \"attacked\" but no one was injured and there is no report of loss.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-43.000000000145974, -23.000000000398472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-22", - "dateofocc": "2000-04-13", - "subreg": "61", - "hostility_": "VANDALS", - "victim_d": "ASIAN SUN", - "descriptio": "KENYA:According to 13 Apr report, Kenyan authorities are investigating vandalism of 133 of a cargo of 600 vehicles on board vehicle carrier, ASIAN SUN. Radios and power windowswitches were stolen while vehicles were still aboard.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.500000000306102, -2.999999999751708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-23", - "dateofocc": "2000-04-24", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:Six thieves attempted to board an unidentified container ship at Chennai (Madras) anchorage 0245 local time 24 Apr. The would-be intruders used the anchor chain and grappling hooks but were prevented from boarding by alert crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.266666700364624, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-24", - "dateofocc": "2000-04-19", - "subreg": "22", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: A 7,000-ton container ship was boarded at 0455 as it lay at anchor off Guayaquil. Thieves gained access via the anchor chain and stole paint and mooring line from the forecastle store. Ship's alarm was sounded and the thieves fled leaving the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.433333300245806, -2.783333300387653] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-25", - "dateofocc": "2000-05-01", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: A watchman on an unidentified bulk carrier at anchor Chennai anchorage, Madras (13-06N 080-18E) observed approach of a suspicious unlit craft at 0120 local time. Watchman alerted second watchman at vessel's stern who came forward to help whereupo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.000000000234536, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-26", - "dateofocc": "2000-05-01", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR:An unidentified 9,700-ton, Bahamas-flag, refrigerated cargo ship was boarded at midnight while anchored 4.5 miles off the Data Sea Buoy (02-44S 080-25W) at Guayaquil. Five thieves armed with knives and handguns boarded the ship and drove the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.416666700173437, -2.73333329962162] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-89", - "dateofocc": "2001-02-27", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED TANKER WAS CHASED WITH APPARENT INTENT TO BOARD 27 FEB AT 2345 LOCAL TIME WHILE UNDERWAY IN POSITION 05-17.5N 097-58.4E. DUTY OFFICER RAISED ALARM, CREW MUSTERED AND SHIP ALTERED COURSE. THE PURSUING BOAT WITHDREW AFTER 20 MIN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.973333300406523, 5.2916667001208] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-27", - "dateofocc": "2000-04-23", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR:An unidentified 14,000-ton, Cyprus-flag, container ship was boarded and a container broached by at least three individuals. At the time of the attack, the ship was navigating the Estero Salado channel, near buoys 29 and 31, approaching the port h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.166666699940492, -2.599999999918623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-240", - "dateofocc": "2000-01-21", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker anchored in position 01-13.25N 103-33.85E reported six persons attempted to board from a dark colored motor boat at the stern on 21 Jan. Crew anti-piracy watch prevented the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.564166700180465, 1.220833300072229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-241", - "dateofocc": "2000-01-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded 20 Jan while at anchor at Kota Bharu Inner Anchorage, Kalimantan. About ten persons armed with guns and knives boarded and tied up and threatened to kill the duty lookout if other crew intervened. Larg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.802222199621951, -3.646111100237249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-242", - "dateofocc": "2000-01-19", - "subreg": "72", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified bulk carrier was boarded at anchor during cargo loading operations 19 Jan at Adang Bay. Ship stores reported stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.802222199621951, -3.646111100237249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-243", - "dateofocc": "2000-01-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified 10,000-ton bulk carrier was boarded and robbed 17 Jan while lying off Kota Bharu, Kalimantan. A group of more than ten thieves boarded in the early morning, bound a deckhand and held him at gunpoint while the boatswain's store", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.802222199621951, -3.646111100237249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-244", - "dateofocc": "2000-01-09", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified, Japanese-controlled 25,000-ton bulk carrier was boarded while at anchor Tanjung Priok port on 9 Jan, reported 26 Jan). Intruders fled after being spotted and no loss was reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-245", - "dateofocc": "2000-01-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "PARIS", - "descriptio": "INDONESIA:The 18,000-ton, Liberian-flag container ship (PARIS) was boarded during the night of 6 Jan (reported 27 Jan) at Tanjung Priok anchorage, about three miles from the breakwater. Pirates boarded undetected despite posting of a piracy watch. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-246", - "dateofocc": "2000-01-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GONE TROPPO", - "descriptio": "YEMEN:An Australian woman was injured when five armed attackers assaulted the yacht (GONE TROPPO) carrying her and her family 27 Jan in position 13-03N 048-41E in the Gulf of Aden. After firing a barrage of shots the attackers boarded the yacht, ransac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.683333300134507, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-247", - "dateofocc": "2000-01-27", - "subreg": "62", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EGYPT:An unidentified container ship was boarded 27 Jan in the Suez outer anchorage. Three attackers operating from a motor boat were discovered removing stores from the forecastle locker via the anchor chain. When discovered the three fled and nothing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [33.68277780012312, 27.544166700294113] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-248", - "dateofocc": "2000-01-26", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified cargo ship berthed at Dumai Port, Indonesia was boarded 26 Jan by three robbers armed with knives. The three entered the engine room and tied up the duty oiler who was reported injured. When spotted by the ship's crew the thre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.447499999585887, 1.688611100345213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-249", - "dateofocc": "2000-01-28", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:A boarding was attempted on an unidentified bulk carrier 28 Jan at anchor at Belawan. Three assailants armed with long knives were spotted by the security watch and fled when the ship's alarm was sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.691388899688604, 3.787500000366663] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-250", - "dateofocc": "2000-09-04", - "subreg": "22", - "hostility_": "THIEVES", - "victim_d": "PELLA", - "descriptio": "PERU:The 22,102-ton Cyprus-flag tanker (PELLA) was boarded 4 Sep (reported 14 Sep) and robbed of mooring line, life buoys, and fire hoses while moored at Callao discharging cargo. The thieves escaped in a waiting fishing vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-251", - "dateofocc": "2000-09-02", - "subreg": "22", - "hostility_": "GUNMAN", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR:An unidentified refrigerated cargo ship was attacked 2 Sep (reported 13 Sep) at 0100 local time while navigating in position 02-03S 080-21W, by an unknown person who fired a single shot at the ship from a small boat passing on its starboard side.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.350000000409523, -2.049999999586078] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-252", - "dateofocc": "2000-09-01", - "subreg": "51", - "hostility_": "ATTACKERS", - "victim_d": "L'OBJECTIF LUNE", - "descriptio": "EASTERN ATLANTIC-MADEIRA:A French yachtsman reported 10 Sep that he had been boarded 1 Sep about 200 miles north of Funchal while sailing alone from the Brittany coast to Madeira. According to the report several young men boarded the yacht (L'OBJECTIF L", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.947500000209516, 35.567500000009431] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2000-253", - "dateofocc": "2000-09-05", - "subreg": "57", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON:An unidentified cargo ship was boarded 5 Sep at 0530 local time while at Douala berth 11. Four persons were observed by the duty cadet passing drums of lube oil over the side. When the cadet alerted other crew the intruders jumped over the sid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.680833299644348, 4.023055600080511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-78", - "dateofocc": "2001-02-13", - "subreg": "63", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:AN UNIDENTIFIED TANKER WAS BOARDED 13 FEB AT KAKINADA ANCHORAGE. ALTHOUGH SPOTTED BY WATCHMAN WHO RAISED ALARM, THIEVES ESCAPED WITH SHIP'S STORES.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.383333300235108, 17.033333299965363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-79", - "dateofocc": "2001-02-15", - "subreg": "63", - "hostility_": "TUG BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MYANMAR:AN UNIDENTIFIED TANKER REPORTS BEING CHASED 15 FEB FROM 0400 TO 0500 LOCAL TIME FOR OVER AN HOUR BY A TUG OFF THE COAST OF MYANMAR IN POSITION 19-42N 092-27E. THE TANKER REPORTED THE TUG ATTEMPTED TO COME ALONGSIDE AND ASKED FOR LAST PORT AND CA", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [92.450000000322405, 19.699999999993167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-80", - "dateofocc": "2001-02-15", - "subreg": "71", - "hostility_": "SPEED BOAT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:MALAYSIAN NAVAL FORCES REPORT SCARING OFF A BOAT FOLLOWING AN UNIDENTIFIED BULK CARRIER FOR OVER AN HOUR 15 FEB AT 1500 LOCAL TIME IN POSITION 01-49N 101-03E. A MALAYSIAN WARSHIP OBSERVED THE BOAT'S MOVEMENTS AND APPROACHED IT AS A RES", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.049999999881038, 1.816666699940981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-81", - "dateofocc": "2001-02-16", - "subreg": "72", - "hostility_": "INTRUDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA-SABAH:AN UNIDENTIFIED CHEMICAL TANKER WAS BOARDED 16 FEB AT 1815 LOCAL TIME VIA THE ANCHOR CHAIN BY THREE PERSONS, WHICH THE SHIP WAS LOADING AT SPA OIL PIER, SANDAKAN, SABAH. CREW RUSHED FORWARD AND THE THREE PERSONS ESCAPED IN A MOTOR BOAT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-82", - "dateofocc": "2001-02-23", - "subreg": "62", - "hostility_": "UNSPECIFIED", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN:AN UNIDENTIFIED SHIP REPORTED BEING \"CHASED\" IN A MAYDAY MESSAGE 23 FEB. THE MESSAGE REPORTED THE INCIDENT OCCURRED AT 0347 UTC IN POSITION 13-47N 048-12E. IT DID NOT IDENTIFY THE SHIP BEING CHASED, WHOSE CALL WAS PICKED UP BY ANOTHER SHIP", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.199999999565875, 13.783333299635387] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-83", - "dateofocc": "2001-02-22", - "subreg": "62", - "hostility_": "SPEED BOATS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:AN UNIDENTIFIED BULK CARRIER REPORTED 22 FEB THAT IT WAS CHASED AT 1120 LOCAL TIME IN POSITION 13-29.8N 043-01E BY TWO HIGH SPEED BOATS. SHIP RAISED ALARM AND COMMENCED EVASIVE MANEUVERING WHEREUPON THE BOATS BROKE OFF PURSUIT AND APPROACHE", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.016666699834445, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-84", - "dateofocc": "2001-02-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TUG WAS BOARDED AND ROBBED 22 FEB AT 2320 LOCAL TIME WHILE UNDERWAY IN POSITION 00-56.6N 103-39.1E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.651666700172086, 0.94333330022738] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-85", - "dateofocc": "2001-02-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "STRAIT OF MALACCA:AN UNIDENTIFIED TUG WAS BOARDED AND ROBBED 21 FEB AT 2130 LOCAL TIME WHILE UNDERWAY IN POSITION 00-58N 103-41E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 0.966666700408098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-86", - "dateofocc": "2001-03-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 2 MAR AT 0245 AT ANCHOR 7 NM FROM THE LAGOS BREAKWATER. THREE PERSONS ARMED WITH KNIVES AND MACHETES BOARDED THE SHIP FROM A BOAT CONTAINING SIX PERSONS. ALTHOUGH THE ALARM WAS SOUNDED THE THIEVES CUT ONE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.466666700039298, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-87", - "dateofocc": "2001-03-05", - "subreg": "63", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:AN UNIDENTIFIED CONTAINER SHIP REPORTEDLY WAS SUBJECTED TO THREE ATTEMPTED BOARDINGS WHILE AT CHITTAGONG OUTER ANCHORAGE \"C\". ALL THREE ATTEMPTS WERE LAUNCHED FROM THE SAME BOAT AND INVOLVED THREE PERSONS ON THE FIRST TWO OCCASIONS AND EIGHT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-88", - "dateofocc": "2001-02-27", - "subreg": "71", - "hostility_": "BOARDERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED CONTAINER SHIP WAS BOARDED 27 FEB AT 0130 LOCAL TIME BY SIX PERSONS ARMED WITH LONG KNIVES WHILE UNDERWAY IN POSITION 03-20.0S 105-34.0E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.566666700373389, -3.333333299820879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-91", - "dateofocc": "2001-03-12", - "subreg": "71", - "hostility_": "THIEVES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED SHIP WAS BOARDED 12 MAR AT 0520 UTC WHILE ANCHORED AT JAKARTA ANCHORAGE. THREE PERSONS ARMED WITH LONG KNIVES BOARDED FROM A LONG BLUE BOAT WITH CANVAS HOOD AND ESCAPED WITH ENGINE SPARES DESPITE BEING ROUTED BY CREW.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.749999999975444, -6.133333299551737] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-92", - "dateofocc": "2001-03-08", - "subreg": "71", - "hostility_": "PIRTATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:AN UNIDENTIFIED LPG CARRIER WAS BOARDED 8 MAR AT 0445 LOCAL TIME WHILE UNDERWAY IN POSITION 01-05N 105-13E. A GROUP OF ABOUT EIGHT PIRATES ARMED WITH LONG KNIVES AND GUNS BROKE OPEN AN ACCOMMODATION BLOCK DOOR AND WENT TO THE BRIDGE WHERE THEY", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.216666700407018, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-317", - "dateofocc": "2001-11-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MAYANMAR: An unidentified container ship was chased 25 Nov at 0530 local time by two fishing boats while underway in position 09-52N 097-41E. Gun shots were reportedly fired at the ship which increased speed and mustered crew on deck, whereupon the boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [97.683333299920548, 9.866666700066389] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-318", - "dateofocc": "2001-11-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was subject to attempted boarding 25 Nov at 0045 via anchor chain by six person operating from a small boat while ship was at anchor, Belawan. Anti-piracy watch sounded alarm and activated flares whereupon attempt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-319", - "dateofocc": "2001-11-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 22 Nov at 0520 local time via the forecastle by three persons operating from a small motor boat. Ship was at Muara Berau anchorage, Samarinda. Crew sounded alarm and thieves escaped with ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.300000000372677, 1.366666700241183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-320", - "dateofocc": "2001-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 19 Nov at 0545 local time while underway in the Durian Strait in position 00-43N 103-36.5E. Six persons armed with long knives entered the accommodation and took elec. Engineer, chief mate and cadet", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.608333299864853, 0.71666670017521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-321", - "dateofocc": "2001-11-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified bulk carrier was boarded 22 Nov between 2200 and 2400 local time while at anchor, Sandakan, Sabah. Thieves boarded during heavy rain and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [95.316666699817063, 5.88333330000944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-322", - "dateofocc": "2001-11-26", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified general cargo ship was boarded 26 Nov at 0520 local time by a single person who gained access while ship approached pilot station at Vung Tau. When spotted, intruder jumped overboard and was retrieved by boat trailing the ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-323", - "dateofocc": "2001-11-22", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: The Antigua-flag container ship (MAERSK LA GUAIRA) was boarded 22 Nov by three men operating from a speedboat while the ship was between buoys 48 and 44 leaving Guayaquil. The men broke the seals of two containers and threatened the deck watch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-324", - "dateofocc": "2001-11-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: A Ro-Ro was boarded 14 Nov at 0345 via the ship' stern ramp at Bonny Town, Nigeria anchorage (reported 4 Dec). The thieves were armed and stole mooring rope. The Bonny Town Port Control was notified, but the thieves had left the scene by the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-325", - "dateofocc": "2001-11-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 28 Nov at 0130 local time in position 06-00.5S 106-54.4E at Jakarta anchorage. Ten thieves, armed with long knives, boardedvessel from a wooden boat. When the watch raised the alarm, the tanker's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.906666699859159, -6.008333300334584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-326", - "dateofocc": "2001-11-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: A Panamanian \"handy-size\" ship was boarded and robbed 18 Nov at 0430 by four attackers carrying long knives. The intruders used hooked poles to climb on board the ship which was located at the Jakarta anchorage. The ship was illuminated at t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-327", - "dateofocc": "2001-11-29", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: An unidentified bulk carrier was subject to attempted boarding 29 Nov at 0130 local time in position 12-59N 100-44.5E. The vessel was underway in the Gulf of Thailand, when a red-hulled wooden boat approached from astern. About three or four", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.741666700194855, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-328", - "dateofocc": "2001-12-06", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "ECUADOR: An unidentified container ship was boarded 6 Dec at 0455 local time by seven thieves while underway at Guayaquil pilot station, Ecuador. The crew mustered on the bridge when the alarm sounded. However, the intruders, armed with guns and knives", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-329", - "dateofocc": "2001-12-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "BRAZIL: America's Cup yachting winner, Sir Peter Blake was shot and killed late 5 Dec aboard his yacht (SEAMASTER) anchored near Macapa at the mouth of the Amazon. Two other crew were wounded. Watches, cameras and an inflatable boat were stolen by the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.066388899593676, 0.033888899665953] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-47", - "dateofocc": "2003-02-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 6 Feb at midnight local time while at berth 9, Chittagong. Two persons armed with knives broke into the forecastle store and attempted to steal stores. One man was caught by crew and turned over to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-48", - "dateofocc": "2003-02-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 8 Feb at 2340 local time in position 06 00S, 105 56E, Banten Roads. Six persons boarded but were driven off when watch sounded alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.933333300412187, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-49", - "dateofocc": "2003-02-09", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC: An unidentified tanker was boarded 9 Feb at 0350 local time while at berth No. 1-2, Rio Haina. About ten persons armed with knives boarded simultaneously fore and aft and stole ship's stores before being driven off by crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-50", - "dateofocc": "2003-02-06", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: The tanker (MEKHANIK KARASYOV) was boarded 6 Feb at day break, while anchored in inner harbor, Santos. Thieves boarded from a boat and stole personal effects, electronics and other items. When discovered on deck by crew members, the intruders re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.300000000342607, -23.949999999664783] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-51", - "dateofocc": "2003-02-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified bulk carrier was subject to attempted boarding 13 Feb while in position 03-20N, 111-25E off Matu, Sarawak. Alert crew prevented boarding (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.416666700067935, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-52", - "dateofocc": "2003-02-11", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 11 Feb at 0350 local time while anchored at Halong Bay, Haiphong anchorage. Three persons armed with knives boarded the ship, discharging cargo, using grappling hooks. They broke into paint store before", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.683333300211586, 20.866666700422115] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-53", - "dateofocc": "2003-01-31", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified tanker was subject to attempted boarding 31 Jan at 0300 local time while at Nha Be Terminal, Ho Chi Minh City. Three persons with grappling hooks were scared off by crew who recovered the hooks and lines (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.716666700005874, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-54", - "dateofocc": "2003-02-20", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified cargo ship was boarded via the stern 20 Feb at 2130 local time in Cartagena inner roads by persons armed with guns. They bound three watchmen and forced them into the hold, but fled when spotted by ship's crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.416666700398935] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-55", - "dateofocc": "2003-02-24", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified container ship was boarded 24 Feb at 0030 local time in Dakar Roads as it approached port. Ship's stores were stolen from the poop (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-56", - "dateofocc": "2003-02-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified Ro/Ro was boarded 13 Feb at 0210 local time at Mtwara port. Watchman spotted one person on board who passed ship stores to two others in a boat. Port policeinformed and on arrival they fired warning shots. Thieves fled and s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.200000000206444, -10.266666700108146] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-57", - "dateofocc": "2003-02-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified chemical tanker reports being fired upon 22 Feb between 1310 and 1405 UTC while underway in position 09 56N, 051 43E off Somalia's northeast coast. Seven persons in two 6-meter white open speedboats were armed with machine guns", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.716666700025883, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-58", - "dateofocc": "2003-02-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Feb at 0115 local time at Sebuku anchorage, East Kalimantan. Two persons boarded the ship during discharge via hawse pipe. Crew raised alarm and intruders jumped overboard and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.416666700229598, -3.249999999984595] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-59", - "dateofocc": "2003-02-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 18 Feb at 0830 local time while at old wharf No. 2, Dumai. Two persons armed with long knives arrived alongside on a motorbike and boarded from the quay. Watch raised alarm and crew mustered. The intruder", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-60", - "dateofocc": "2003-03-01", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified container ship was subject to attempted boarding 1 Mar at 0326 local time at Buenaventura. Nine persons attempted to board form a wooden boat on the port side, using a wooden ladder against the side. Crew switched on lights a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-61", - "dateofocc": "2003-02-22", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified ship was boarded 22 Feb at 2215 local time while at berth 5C, Callao. The intruders broke open forecastle locker and escaped with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-62", - "dateofocc": "2003-02-27", - "subreg": "54", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified liquefied gas carrier was boarded 27 Feb at 0455 local time at anchor, Lagos Roads. A lone individual armed with knife and machete threatened duty seaman and escaped with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [25.133333299957485, 40.999999999872614] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-264", - "dateofocc": "2003-08-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified ship was reportedly approached 4 Aug at 0220 while underway in position 13 00N, 047 28.9E. Several boats \"intended to board\" but were driven off by crew preventive measures and the assistance of unspecified \"coalition warsh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.483333299735989, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-265", - "dateofocc": "2003-08-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified tanker was approached 3 Aug at 2340 local time while underway in position 12 55N, 047 35E. Before abandoning the chased, three fast boats pursued the tanker for over an hour during which the tanker altered course, sounded i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.583333300368736, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-266", - "dateofocc": "2003-07-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 29 Jul at 1045 UTC while at Chittagong anchorage Alpha. Fifteen persons in four boats, armed with knives and crowbars, boarded at stern. Crew sounded alarm and mustered while 12 shore watchmen who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-267", - "dateofocc": "2003-07-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports attempt to board 30 Jul at 0840 local time while underway in position 05 36N, 097 34E. Four persons in two boats attempted board from port and starboard side. Crew sounded whistle and activated fire hose", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.566666700114695, 5.599999999806982] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-268", - "dateofocc": "2003-07-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified liquefied gas carrier reports attempt to board 31 Jul at 0645 UTC while underway in position 05 59.4N, 96 10.8E off the northern tip of Sumatra. Five fast boats approached with two on either beam while the fifth criss-crossed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.183333300321692, 5.983333299742867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-269", - "dateofocc": "2003-08-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The Indonesian flag tug (HAMCO BINTANG) and its barge (HAMCO MULIA) with their crew of 8 are reported hijacked sometime after last reported contact 23 Jun (reported 4 Aug) while on voyage between Surabaya to Tanjung Setor (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.733333300272307, -7.200000000247258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-270", - "dateofocc": "2003-08-08", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified bulk carrier was boarded 8 Aug at 0400 local time while at berth 29, Puerto Cabello. Intruders broke open a paint locker but fled empty handed when crew foiled their theft (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.000000000055138, 10.483333300338074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-271", - "dateofocc": "2003-08-10", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified chemical tanker reports attempt to board 10 Aug at 0430 local time while at Belem anchorage. A single individual tried to climb anchor chain but fled when seaman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.499999999874149, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-272", - "dateofocc": "2003-08-11", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified container ship was boarded 11Aug underway after dropping pilot off Dakar. Thieves escaped with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-273", - "dateofocc": "2003-08-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified general cargo ship reports attempt to board 9 Aug at 0220 local time while anchored in position 06 38S, 039 28E, Dar es Salaam. Four persons in a small boat came close aboard and attempted to board using grappling hook. Crew ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.466666700304188, -6.633333300017568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-274", - "dateofocc": "2003-08-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: The 740-ton, Malaysian flag tanker (PENRIDER) was attacked 10 Aug at 1330 local time by heavily armed pirates while 12 nm off Port Klang in the northbound lane of the traffic separation scheme bound from Singapore to Penang with 1,000", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.133333299717322, -2.750000000418083] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-275", - "dateofocc": "2003-08-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: The 2,912-ton Taiwan flag refrigerated fishery cargo ship (DONG YIH) was attacked 9 Aug at about 1725 local time while underway in position 05 43N, 097 44E. More than 200 rounds reportedly hit the ship during the chase and the Captain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.733333299787262, 5.716666700336873] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-106", - "dateofocc": "2004-04-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Unidentified fishing boat was boarded 25 Apr at midnight at Pulau Kendi off Pulau Pangkor. Seven persons armed with M16s boarded form a speedboat. They took two crew hostage but subsequently released one after robbing him (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.183333299551691, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-107", - "dateofocc": "2004-04-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:Deep sea diving support ship (OCEAN WINSERTOR) was boarded about 26 Apr while underway near the Lingga Islands, southwest of Bintan and Batam, bound for Singapore160 km away. Pirates armed with knives and guns boarded while about half the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.000000000111356, 0.833333299981007] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-108", - "dateofocc": "2004-04-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified chemical tanker was boarded 25 Apr at 0335 local time while underway in position 03 00.0N-105 17.4E east of Bintan Island. Eight pirates armed with guns and knives assaulted duty officer and took him as hostage to master's and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.289999999730412, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-109", - "dateofocc": "2004-04-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified cargo ship boarded 24 Apr at 1530 UTC while underway in position 02-51.8S 105-59.7E. Five persons armed with guns and long knives threatened the crew and stole cash, before escaping at 1550 UTC (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.994999999919571, -2.863333299994565] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-110", - "dateofocc": "2004-04-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified container ship boarded 24 Apr at 0700 local time while at Tanjung Priok anchorage. Two person broke open the seal on a container but jumped overboard and escaped empty handed when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.058333300201298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-111", - "dateofocc": "2004-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified container ship boarded 22 Apr at 1510 UTC while underway in position 03-06.0S 106-58.0E in Gelasa Strait. Persons armed with guns and daggers held master and six crew at gunpoint and escaped with cash and crew belongings at 1615", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.829999999614699, -1.328333300399095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-112", - "dateofocc": "2004-04-22", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier detected stationary craft 4.5 nm ahead, on radar 22 Apr at 0030 local time, while underway in position 01-19.7S 107-49.8E. Craft approached to 6 cables, switched off its lights and began pursuing the bulk carrier.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.829999999614699, -1.328333300399095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-113", - "dateofocc": "2004-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker boarded 22 Apr at 0236 local time while anchored in position 01-42.61N 101-27.83E at Dumai. Two persons armed with long knives threatened duty seaman who informed Duty Officer who raised alarm and mustered crew. The intr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.4638888998075, 1.71027779959951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-114", - "dateofocc": "2004-04-20", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Unidentified tug spotted unlit high speed craft on its radar at a range of 4 miles 20 Apr at 2325 local time while underway in position 05-12S 112-12E in the Java Sea. Craft crossed bow and then turned toward tug coming within 0.3 cables. C", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.199999999836905, -5.20000000018257] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-115", - "dateofocc": "2004-04-25", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: Unidentified container ship boarded 25 Apr at 1612 UTC while at Laemchabang anchorage. Five persons gained access via the forecastle, stole ship's stores, and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.775000000164425, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-116", - "dateofocc": "2004-05-02", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MAURITANIA: Unidentified refrigerated cargo ship boarded 2 May at 0110 UTC while at inner anchorage, Nouadhibou. Ten persons armed with knives gained access via the anchor chain. They threatened duty seaman and stole his walkie talkie, then broke into s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.033333300174036, 20.891666699905841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-117", - "dateofocc": "2004-03-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker reports attempt to board 29 Mar at o330 UTC while anchored in position 06 12.9N 003 20E, Lagos. Three persons in a boat withdrew when watchman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.214999999876341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-118", - "dateofocc": "2004-05-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker boarded 3 May at 0300 local time at Dumai inner anchorage. Four persons armed with long knives entered engine room and took two hostages. They broke into store room but escaped empty handed when duty seaman raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.724999999794079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-119", - "dateofocc": "2004-04-27", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier reports being chased 27 Apr at 0310 local time while underway in the Makassar Strait. Two speedboats doing 28 knots followed on port and starboard sides for 30 minutes but moved away when crew switched on deck light", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.999999999664738, -2.999999999751708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-189", - "dateofocc": "2002-07-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was robbed of zinc anodes at its stern 4 Jul at 0700 while the ship drifted during pilot pick up.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-190", - "dateofocc": "2002-07-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Jul at 0500 local time at Santan anchorage. Thieves armed with long knives threatened duty seaman and tied his hands. Alarm was raised and thieves jumped overboard with crew valuables.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.533333300067852, -6.299999999948341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-191", - "dateofocc": "2002-07-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 4 Jul at 0235 local time while ship was at Muara Berau anchorage, Samarinda. Thieves broke open forecastle locker and stole ship's stores and a life raft before escaping when alarm sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.635833299929459, -0.241666700301039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-192", - "dateofocc": "2002-07-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was subject to attempted boarding 3 Jul at 0500 local time while berthed at the Pertamina-Citra Jetty, Belawan. Four persons attempted to gain access via the starboard side but were foiled by the cadet and duty seaman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-193", - "dateofocc": "2002-07-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 3 Jul at 0100 local time while at Surabaya anchorage. Two persons Armed with long knives boarded at the forecastle but escaped empty-handed when spotted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.733333300272307, -7.200000000247258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-194", - "dateofocc": "2002-07-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 2 Jul at 0100 UTC while at berth 105, Belawan. Six persons boarded from a small boat and took ship's stores. Another group broke into engine room and took spare parts. The attack occurred despite", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-195", - "dateofocc": "2002-07-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship was boarded 9 Jul at 0620 local time while underway two nm off Manta, Ecuador. Three persons with guns threatened crew which retreated into accommodation. Mater alerted port and police boat escorted ship to do", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.716666700273038, -0.949999999820307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-196", - "dateofocc": "2002-07-09", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified container ship was boarded 9 Jul at 0500 local time while underway at Dakar pilot station. Four persons gained access via the poop and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-197", - "dateofocc": "2002-07-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was subject to attempted boarding 13 Jul at 0140 local time while at anchor off Chennai. Six persons in a wooden boat tried to board via the stern before being scared off.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.512222199867381, 13.003055600245034] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-198", - "dateofocc": "2002-07-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was robbed of 14 zinc anodes from its stern post 12 Jul at 1800 UTC while berthed at No. 2 berth, Chittagong. The thieves operated from four wooden pump boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-199", - "dateofocc": "2002-07-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified ro-ro was boarded 14 Jul at 1500 UTC while at Muara Berau loading anchorage, Samarinda. Five persons armed with knives boarded form an unlit craft, broke open forecastle store and stole three coils of mooring line.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.116666700162341, -0.516666700017652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-200", - "dateofocc": "2002-07-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 14 Jul at 0210 local time while at Santan anchorage. Five persons approached in a small oat and one gained access via the anchor chain. Alarm raised by crew and thieves fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.289166699887915, -3.746388899646206] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-201", - "dateofocc": "2002-07-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Jul at 1930 local time while at Tanjung Merangas anchorage, east of Kalimantan, during cargo operations. Six persons armed with long knives took master hostage despite presence of police personnel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.738333300367117, -0.31222219982061] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-202", - "dateofocc": "2002-07-14", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 14 Jul at 2240 local time while at Haiphong anchorage. Our persons armed with long knives gained access via the forecastle and lowered ship's stores into waiting boats. Crew raised alarm and thieves ju", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.683333300211586, 20.866666700422115] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-203", - "dateofocc": "2002-07-18", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified ship was boarded 18 Jul at 2115 local time at Guayaquil outer anchorage. Ten persons armed with guns boarded near the data pilot buoy and broke into a container on deck. Master reported to pilot station and a patrol boat was s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-204", - "dateofocc": "2002-07-17", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified tanker was boarded 17 Jul at 2200 local time while anchored at the port of La Libertad. Thieves boarded via the anchor chain and stole a liferaft and supplies.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.916666699739949, -2.216666699982682] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-205", - "dateofocc": "2002-07-20", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified ship was boarded 20 Jul at Pertigalete Bay, Guanta. Persons with guns stole cash and crew personal effects and escaped in a motorboat. Master called port authorities but received no response.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-276", - "dateofocc": "2003-08-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "PHILIPPINES: An unidentified tug and the research ship it was escorting report being fired on 6 Aug at 0645 local time from a steel hulled boat underway in position 04 11.7N, 120 00.1E in the Celebes Sea, south of Tawi Tawi. Tug increased speed and bega", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.999999999729425, 4.199999999941554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-277", - "dateofocc": "2003-08-18", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HONDURAS: An unidentified container ship was boarded 18 Aug at 0001 local time while anchored in Puerto Cortes Roads. Two persons armed with knives climbed anchor chain but fled empty handed when seaman sounded alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.949999999935869, 15.833333299566789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-278", - "dateofocc": "2003-08-05", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PANAMA: Container ship (APL ALMANDINE) reports attempt to board 5 Aug at 2315 local time (reported 15 Aug). Ship was at anchor, Cristobal outer anchorage when a boat containing an undetermined number of persons approached anchor chain with apparent int", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.916666699707605, 9.349999999703414] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-279", - "dateofocc": "2003-08-17", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CARIBBEAN-JAMAICA: An unidentified general cargo ship reports attempt to board 17 Aug at 2343 local time while underway in position 17 29.6N, 077 25W, south of Kingston. Unlit speedboat with two men on deck and two hidden inside came close but withdrew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.416666700076405, 17.499999999562306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-280", - "dateofocc": "2003-08-18", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship was boarded 18 Aug at 0225 local time while anchored at Bonny Roads. About ten persons, armed with knives, took duty seaman hostage, stole all five mooring lines from forecastle, and escaped. Bonny signal statio", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-281", - "dateofocc": "2003-08-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker reports attempt to board 17 Aug at 2110 local time while in position 22 10N, 091 46E, Anchorage C, Chittagong. About fifteen persons tried to gain access via anchor chain. Watchman spotted them and they jumped into w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-282", - "dateofocc": "2003-08-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tug was boarded 12 Aug at 0145 local time while anchored in position 22 15N, 091 43E, Anchorage B, Chittagong. Fifteen to 20 persons from 3 or 4 motorized boats boarded armed with knives and bolos. One crew member injured d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-283", - "dateofocc": "2003-08-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports attempt to board 18 Aug at 1930 UTC while underway in position 06 07N, 097 33E. Persons in three boats attempted board but ship increased speed and undertook evasive maneuvers while crew activate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.550000000217551, 6.116666700169958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-284", - "dateofocc": "2003-08-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDONESIA: An unidentified trawler was chased 12 Aug at 0230 local time while underway in position 04 50N, 108 02E. Persons in pursuing boat opened fire, killing the captain. They then boarded the boat, stole cargo and ship's equipment (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.033333300210302, 4.833333300110382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-285", - "dateofocc": "2003-08-24", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified tanker was boarded 24 Aug at 0100 local time while berthed at the Coal Terminal, Cartagena. Persons armed with knives gained access at the forecastle, assaulted and tied up a crew member, stole ship's stores and escaped. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.416666700398935] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-286", - "dateofocc": "2003-08-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified container ship was boarded 19 Aug at 0005 local time while anchored in Tema Roads. Four persons armed with long knives stole ship's stores before crew raised alarm and the thieves escaped in an unlit boat. Master informed other", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.000000000345324, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-287", - "dateofocc": "2003-08-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 21 Aug at 1130 local time while underway in position 05 47.8N, 005 20.5E, Deli Creek, Sapele. Groups armed with firearms boarded from speedboats, ordered the ship to anchor and open all cargo holds. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.349999999574038, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-288", - "dateofocc": "2003-08-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: An unidentified reefer ship was boarded 20 Aug at 0530 local time while at Douala. Four persons broke the seal on number four hatch but escaped empty handed when crew sounded alert (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-69", - "dateofocc": "2003-02-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Feb at 0005 local time in the outer roads, Balikpapan. Thieves stole stores from forecastle locker (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-289", - "dateofocc": "2003-08-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports approach by ten persons, armed with machine guns, in two speedboats 24 Aug at 1735 local time while underway in position 08 44S, 115 43E, Lombok Strait. One boat came within one cable and tried to interse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.716666700296969, -8.733333299815683] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-290", - "dateofocc": "2003-08-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 22 Aug at 2130 UTC while underway in position 00 57N, 105 03E off Bintan Island. Three persons armed with knives and crowbars escaped empty handed when the second engineer raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.050000000010414, 0.949999999611634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-291", - "dateofocc": "2003-08-21", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified container ship reports being chased 21 Aug at 2015 local time while underway in position 09 12.9N, 120 28E in the Sulu Sea. A speedboat making more than 17 knots approached but pulled away at 2215 when ship raised alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.466666700225687, 9.216666700000417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-292", - "dateofocc": "2003-08-30", - "subreg": "25", - "hostility_": "pirates", - "victim_d": "TUG", - "descriptio": "DOMINICAN REPUBLIC: An unidentified ocean going tug was boarded 30 Aug at 0230 local time while moored at San Pedro de Macoris. Four persons armed with knives came aboard from an unlit boat alongside but fled when watch called for assistance from guard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.316666700084227, 18.449999999727879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-293", - "dateofocc": "2003-08-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 25 Aug at 2235 local time while at Lagos SBM. Five persons stole a mooring line and held off duty seaman by brandishing empty glass bottles (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-294", - "dateofocc": "2003-08-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 31 Aug at 0115 local time at Chennai anchorage. One person had gained access with three others attempting to, when alarm raised. Port control and port police informed and police boat arrived at 0215 (IM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.300000000334137, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-295", - "dateofocc": "2003-09-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier had zinc anodes stolen 1 Sep at 0730 while at berth 6, Chittagong (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-296", - "dateofocc": "2003-08-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 28 Aug at 0001 local time while at Chittagong Roads anchorage. Ship was boarded as it approached anchorage. Alarm raised and deck lights switched on causing intruders to flee in a high speed boat (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-297", - "dateofocc": "2003-08-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports an attempt to board 31 Aug at 0500 while underway in position 00 47.9N, 105 19.9E. Six persons in a wooden boat came close to the port quarter but turned away when alarm raised and crew mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.333333300212871, 0.800000000011494] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-298", - "dateofocc": "2003-08-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship reports attempt to board 30 Aug at 0446 local time while underway in position 01 03.4N, 105 06.5E off Bintan Island. Five persons in a speedboat made the attempt but turned away after ten minutes when crew activate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.116666699774271, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-299", - "dateofocc": "2003-08-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 29 Aug at 2330 local time while underway in position 00 56N, 105 08E off Bintan Island. Six persons armed with guns and long knives attempted to board from a speedboat, using grappling hoo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.133333299846697, 0.933333299714491] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-300", - "dateofocc": "2003-08-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Aug at 2250 local time while underway in position 00 46N, 105 14E off Bintan Island. Six masked pirates armed with guns and knives boarded from a speedboat. They went to bridge and tied up duty se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.233333299580124, 0.766666700041924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-301", - "dateofocc": "2003-08-27", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 27 Aug at 0430 UTC while underway in position 05 37.5N, 097 30.9E off northern Sumatra. Several speedboats approached but moved away when master raised alarm and crew activated fire ho", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.516666700247981, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-302", - "dateofocc": "2003-08-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 26 Aug at 0500 local time while underway in position 01 20N, 104 58E, about 50 nm N.E. of Bintan Island. Eight masked pirates armed with guns and long knives tied up duty seaman on deck and chief engi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.96666670017413, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-303", - "dateofocc": "2003-08-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 22 Aug at 2330 local time while underway in position 01 36.6N, 105 22.5E. Nine persons armed with guns knives stole ship's cash and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.383333300079585, 1.616666699574751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-304", - "dateofocc": "2003-09-02", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified bulk carrier was boarded 2 Sep at 0130 local time while at berth 5C, Callao. One person boarded the ship while two accomplices waited in their boat. Second officer raised alarm and intruder jumped overboard and escaped in the boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-345", - "dateofocc": "2001-12-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: The Belize-flag tanker (YAULIE ISLAND 70) was discovered adrift without crew 12 Dec in position 01-18.22N 104-10.5E and initial reports state ship was reported hijacked on a voyage from Taiwan to Vietnam. Subsequent reports indicate c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.175000000094542, 1.303333299807377] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-346", - "dateofocc": "2001-12-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified container ship reports an attempted boarding 15 Dec at 0235 local time while underway in position 01-03.0N 103-39.1E. Fourteen persons, armed with rifles and long knives, in a dark yellow boat were spotted by duty officer who d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.651666700172086, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-347", - "dateofocc": "2001-12-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 17 Dec at 0300 local time while at Sandakan's working anchorage. A lone thief broke open the paint store but jumped overboard and escaped when spotted by anti-piracy watch.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.999999999664738, 5.808333299759681] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-348", - "dateofocc": "2001-12-11", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:An unidentified container ship was subject to attempted boarding 11 Dec at 2310 while the ship was at Laem Chabang anchorage. Anti-piracy watch raised alarm and activatedfire hoses after which intruders fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.916666700178041, 12.616666699930477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-349", - "dateofocc": "2001-12-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship reports attempt to board 20 Dec at 0345 local time while ship was anchored in Lagos Roads. Six persons in boat were spotted by watch who raisedalarm and activated ire hoses before boat moved off.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-350", - "dateofocc": "2001-12-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship reports attempt to board 22 Dec at 1945 local time while ship was anchored at Rangatala Crossing, Hugli River. Three persons in a wooden boatWere spotted by watch and driven off when alarm sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.066666700257088, 21.86666669955514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-351", - "dateofocc": "2001-12-21", - "subreg": "63", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "YACHT", - "descriptio": "SRI LANKA: An unidentified yacht reports suspicious following 21 Dec at 1120 UTC while underway 70 nm east of Galle in position 05-53N 081-25E. Yacht took evasive action when it noteda wooden fishing boat matching its course. Boat eventually departed.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [81.416666699997108, 5.88333330000944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-352", - "dateofocc": "2001-12-22", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 22 Dec at 2310 local time while ship was anchored at Banjarmasin, South Borneo. Watch noted seven persons in a small boat attempting to climb the anchor chain. Alarm raised and crew must", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.150000000099567, -3.299999999851309] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-353", - "dateofocc": "2001-12-22", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported attempt to board 22 Dec at 0345 local time while underway in Alice Channel in position 04-41N 118-54E. A green speedboat approachedvery closely and ordered the master to stop. Instead master raised alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.899999999963711, 4.683333299610922] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2001-354", - "dateofocc": "2001-12-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified tanker was boarded 24 Dec at 0100 local time while anchored at Vung Tau. Six persons armed with long knives boarded using a grappling hook, stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-1", - "dateofocc": "2002-01-08", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: The container ship (CSAV ATLANTA) was boarded 8 Jan at 2258 local time while dropping pilot on departure Guayaquil. Two small boats observed at port side and crew alerted to search ship. Two men observed running and jumping overboard on starbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-2", - "dateofocc": "2002-01-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: An unidentified cargo ship was boarded 4 Jan at 0440 local time while anchored at Libreville. About 10 to 15 persons armed with long knives boarded at forecastle. Crew mustered on main deck and fired signal rockets but thieves opened four conta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.450000000336161, 0.383333300281265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-3", - "dateofocc": "2002-01-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:An unidentified container ship was boarded 4 Jan at 0300 local time by three persons operating form a wooden boat. The alarm was raised and the intruders escaped with one mooring line.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.336666699931243, -6.758333300133984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-4", - "dateofocc": "2001-12-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carriers reports attempted boarding 24 Dec at 0735 local time while underway in position 12-30N 044-49E, 13 nm south of Little Aden. Six persons inan unreported number of wooden boats attempted to board but ship altere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.816666700432222, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-5", - "dateofocc": "2002-01-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 6 Jan at 1415 UTC while at Bedford Anchorage, Hoogly River. Three persons armed with knives boarded from a wooden boat and cut a mooring line. They threatened the watchman but jumped overboard and escaped in t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.173611100124901, 22.020555599635088] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-255", - "dateofocc": "2002-08-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG carrier was boarded 27 Aug between 0100 and 0200 while berthed at Balikpapan. Six persons armed with long knives were spotted by the watch loweringstores from the forecastle to a wooden boat. Crew suspects shore watchm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-256", - "dateofocc": "2002-08-28", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "PAPUA NEW GUINEA: The fifty-foot Australian ketch (SPIRIT OF WYCHWOOD) was boarded 28 Aug at 1615 UTC while in position 05 28S, 154 41E, about 2 nm south of Buka Passage. Five persons armed with machine guns held the two owners hostage while they ran", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [154.683333299965284, -5.466666700312658] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-257", - "dateofocc": "2002-08-29", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: U. S. flag yacht (MISS T) was boarded and ransacked, one crew member injured 29 Aug between 0715 UTC and 1415 UTC. Yacht was anchored in Carnero Bay in position 10 31.65N, 066 05.9W. Five persons, two or more of whom may have been in mili", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-66.099999999723877, 10.533333300204788] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-258", - "dateofocc": "2002-09-12", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 12 Sep at 0130 local time from the water side while berthed at Guanta. Five persons armed with knives boarded from a small boat using a hook on a pole. Two patrolling watchmen retreated into accommoda", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-259", - "dateofocc": "2002-09-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "IVORY COAST: An unidentified tug was boarded 13 Sep at 0305 local time in position 05 13N, 004 00W, outer roads, Abidjan. Eight persons armed with long knives boarded from two boats and stole ship's stores before escaping when alarm was sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.999999999784052, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-260", - "dateofocc": "2002-09-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: According to a 13 Sep report 10 persons died when two rival gangs, consisting of about 30 persons, total, tried to simultaneously rob a small wooden coastal vessel of its cargo of salt. One speed boat of each group arrived at the scene", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 21.833333299760852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-261", - "dateofocc": "2002-09-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 11 Sep at 0345 local time by five persons who gained access via the stern. Duty officer raised alarm and sounded whistle and the thieves fled without taking anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-262", - "dateofocc": "2002-09-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 2 Sep between 0310 and 0340 at Chittagong anchorage. About 14 persons armed with long knives and steel bars boarded over the port bow from two unlit wooden boats during heavy rain. The thieves took", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-263", - "dateofocc": "2002-09-08", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Tanker (BOW CARDINAL) reports approach by suspicious vessel 8 Sep at 1205 local time while underway in position 13.8N, 042.7E in southern Red Sea near area referred to by seamen as \"Gate to Hell\". Small armed boat without number or", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.699999999837644, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-264", - "dateofocc": "2002-09-10", - "subreg": "71", - "hostility_": "SUSPCIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified cargo ship reports attempt to board 10 Sep at 0130 local time while underway in position 1 25N, 104 30E in vicinity of Horsburgh Light, Tanjung Berakit, Singapore Strait. High speed boat with 7 to 10 persons attemp", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.499999999677868, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-265", - "dateofocc": "2002-09-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 14 Sep at 0215 local time by two persons armed with guns wile at Balikpapan anchorage. Duty seaman held at gunpoint while thieves stole three life rafts and ship's stores. Alarm raised and thieves escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-109", - "dateofocc": "2003-04-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG carrier was boarded 7 Apr at 0810 local time while at Tanjung Priok tanker anchorage awaiting a pilot. Two persons boarded the ship while two accomplices waited in their boat below. The crew sounded alarm and the intruders", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-110", - "dateofocc": "2003-04-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 6 Apr at 0110 local time while underway in position 00 57N, 105 04E. Four persons armed with guns and long knives took two crew hostage. Alarm was raised but crew were tied up, ship's speed reduced, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.066666699907557, 0.949999999611634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-111", - "dateofocc": "2003-04-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Four persons operating from an aluminum colored boat attempted to board and unidentified VLCC 4 Apr at 2200 UTC while the tanker was underway in position 02 58.2S, 107 18.5E, near Selat Baur, Gaspar Strait. Crew sounded alarm, activated fire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.316666700205133, -2.966666699782138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-112", - "dateofocc": "2003-03-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 31 March at 2200 local time while underway in position 02 56S, 107 17.4E in the Gaspar Strait. Five persons armed with long knives boarded amidships and went to the bridge, where they held the quart", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.283333300410845, -2.933333299987794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-113", - "dateofocc": "2003-04-05", - "subreg": "92", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified cargo ship was chased 5 Apr at 2200 UTC by three speedboats while underway in position 05 23.3N, 119 43.3E, 16 nm NW of Tawi Tawi Island. Crew activated fire hoses and directed searchlights at the boats which then withdrew", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.716666700426345, 5.383333300442928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-114", - "dateofocc": "2003-04-13", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC: An unidentified bulk carrier was boarded 13 Apr at 0400 local time while at berth 6A, Rio Haina. Six armed persons took two watchmen and one crew member hostage. They stole ship's property, crew personal effects and cash before escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-115", - "dateofocc": "2003-04-11", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 11 Apr at 1320 local time at berth Puerto Cabello. Several persons armed with knives broke open paint locker and stole stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.000000000055138, 10.483333300338074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-116", - "dateofocc": "2003-04-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified cargo ship was boarded 12 Apr at 0430 local time at Cochin anchorage. Intruders boarded from a 25 ft boat and one was chased of forecastle attempting to cut mooring lines while two others were intercepted aft. The thieves were dri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.233333300440904, 9.966666699799816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-117", - "dateofocc": "2003-04-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker was boarded 13 Apr at 1510 UTC while underway in position 02 14.2N, 101 54.5E. Nine persons armed with guns and long knives boarded the ship but left empty handed after crew sounded alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.916666700210385, 2.233333299846436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-118", - "dateofocc": "2003-04-08", - "subreg": "71", - "hostility_": "SIUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified cargo ship reports being approached 8 Apr at 0400 UTC while underway in position 02 17N, 101 49E. Two fast boats making about 20 knots came within 50 meters on starboard quarter before moving away when crew sounded al", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.816666699577638, 2.283333299713149] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-119", - "dateofocc": "2003-04-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified cargo ship was boarded 11 Apr at 0505 local time while in position 01 25N, 103 05E. The intruders took second engineer hostage and took him to captain's cabin to ask him to open door. Master instead phoned duty offic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.083333299915296, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-120", - "dateofocc": "2003-04-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified fishing boat was hijacked 10 Apr at 2010 local time while 70 nm of Luau Pangkor. Heavily armed pirate boarded the vessel, shot and killed one crew member and injured two others. The pirates took the fishing boat and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.999999999981981, 4.500000000041211] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-121", - "dateofocc": "2003-04-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 8 Apr at 2010 local time in position 04 01.7S, 116 00.5E, South Pulau Laut anchorage. Five persons armed with long knives attempted to take duty seaman hostage but duty officer raised alarm, crew must", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.016666700396627, -4.033333299753622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-122", - "dateofocc": "2003-04-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was fired upon 8 Apr at 1730 local time by persons in three fishing boats while underway in position 04 21.7N, 098 43.6E. Master was forced to stop and sent distress message. Thieves boarded ship and gathered all", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 4.366666700338214] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-348", - "dateofocc": "2003-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG tanker was boarded 3 Nov. at 1200 local time while underway in position 03 16.5N, 105 21.9E. Master, second officer and duty seaman were held hostage by persons armed with long knives while ship's cash and crew belongings", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.366666700007215, 3.283333299745493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-349", - "dateofocc": "2003-11-03", - "subreg": "74", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 3 Nov at 0115 local time while underway in position 12 00.5S, 108 26.2E. Five persons armed with long knives boarded at the stern from a wooden boat containing two accomplices. They went to bridge and ti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [108.43333330004333, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-350", - "dateofocc": "2003-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 3 Nov at 0010 local time while underway in position 03 16N, 105 24.4E. Nine pirates armed with knives took third officer and second officer hostage and forced them to call master to bridge. When master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.399999999976785, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-351", - "dateofocc": "2003-11-03", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker reports suspicious approach 3 Nov at 0225 local time while underway in position 02 01S, 108 29E. Two unlit speedboats were detected ahead of the tanker and one approached to within five cables at 20 knots. Ship", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.483333299910043, -2.016666699616508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-352", - "dateofocc": "2003-11-03", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tug towing a barge reports suspicious approach 3 Nov at 0430 local time while underway in position 02 39N, 105 03E. A speedboat with six persons approached but withdrew after fifteen minutes when crew switched on searchlights", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.050000000010414, 2.649999999576664] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-353", - "dateofocc": "2003-11-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 2 Nov at 2130 local time while underway in position 03 05N, 105 21E. Eight persons armed with knives, swords and bamboo sticks took three crew hostage and took them to crew lounge where they tied up ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.350000000110072, 3.083333300278639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-354", - "dateofocc": "2003-11-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The Indian flag tanker (JAG PRANAM) was boarded 2 Nov at 0400 local time while underway in position 01 13N, 105 10E off Bintan Island. Duty officer was held hostage to force master to open his cabin where they stole ship's cash. The cabins of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.166666699640984, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-355", - "dateofocc": "2003-10-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 29 Oct at 2248 local time while underway in position 01 03.3N, 105 13.8E, 22.75 miles off Pulau Mapor. Four persons in a speedboat attempted to gain access from stern but aborted attempt w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.233333299580124, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-356", - "dateofocc": "2003-10-28", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 28 Oct at 2035 UTC while underway in position 01 01.3N, 105 15.6E east of Bintan Island. Duty officer spotted a speedboat making 15 knots which passed the ship then came about to approa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.266666700273788, 1.016666700274811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-357", - "dateofocc": "2003-10-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "INDONESIA: An unidentified self-propelled barge was hijacked 27 Oct while underway off Tanjung Jabung, Selat Berhala, with a cargo of palm oil. Palm oil and diesel oil are among cargo thieves' favorite targets in SE Asia (IMB, ONI).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.499999999677868, -0.99999999968702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-358", - "dateofocc": "2003-10-26", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship was boarded 26 Oct at 2200 local time, by three persons disguised as stevedores, while moored to buoy RQ2, Ho Chi Minh port. One intruder threatened duty seaman with a knife while the others entered engine room and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.716666700005874, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-359", - "dateofocc": "2003-11-10", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified refrigerated cargo ship was boarded 10 Nov about 1.5 miles from Dakar pilot station while underway inbound. Persons armed with knives were chased by crew who mustered when alarm sounded. Dakar port control provided a police bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-360", - "dateofocc": "2003-11-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 9 Nov at 2248 UTC while in position 06-20.2N 003-22.8E in Lagos Roads. Thieves boarded at stern from a speedboat and stole ship's stores, before crew raised alarm and they escaped (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.396666700046012, 6.336666699763384] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-45", - "dateofocc": "2002-02-09", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND:Forecastle store lock of unidentified vessel broken open during cargo discharge operations 9 Feb at 1700-1730 local time while at Kosichang anchorage, Thailand. The ship's crewhanded over suspects to local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.816666700444614, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-46", - "dateofocc": "2002-02-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier was approached by a speed boat 13 Feb at 2100 local time while underway in position 13-15N 049-20E, Gulf of Aden. When the boat attempted to come alongside, the duty officer raised the alarm, increased speed, z", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.333333300006473, 13.250000000099305] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-47", - "dateofocc": "2002-02-13", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reported three vessels acting suspiciously 13 Feb at 0043 UTC while underway in position 03-14.47S 107-19.6E off Simedang Island, Indonesia. The three boats emerged from the island, and headed straight for the c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.326666699818759, -3.241666700398071] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-48", - "dateofocc": "2002-02-12", - "subreg": "73", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was chased by a suspicious vessel 12 Feb at 0102 local time, while underway in position 07-40S 121-24E in the Flores Sea, Indonesia. Whenthe small boat approached from off the port bow, the container ship altere", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.399999999594911, -7.6666666998442] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-49", - "dateofocc": "2002-02-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified cargo barge under tow off India in position 08-16N 076-24E was boarded 21 Feb at 1039 UTC by person operating from seven small high-speed boats. Tug captain tried evasive maneuvers and fired signal flares but thieves sole batteries", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.399999999938245, 8.266666699834786] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-50", - "dateofocc": "2002-02-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA:An unidentified tanker was boarded 21 Feb at 0415 local time while anchored in position 17-00N 082-21E in the Kakinada fairway. Crew raised alarm and thieves escaped in theirboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.350000000265538, 16.999999999995794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-51", - "dateofocc": "2002-02-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 19 Feb at 0515 local time while anchored in position 17-01N 082-21E in the Kakinada fairway. Five person armed with knives boarded at theforecastle but escaped in their boat when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.350000000265538, 17.016666699892937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-52", - "dateofocc": "2002-02-15", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker was boarded 15 Feb at 0105 local time while at Balikpapan anchorage. Five person wearing orange boiler suits boarded at the forecastle. Crew raised alarm and thieves escaped with life saving equipment including a life r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.833333300135109, -1.283333299889478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-54", - "dateofocc": "2002-02-28", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: The cargo ship HORNESRAND was ordered to stop and fired upon 28 Feb at 0600 while in position 09-11N 014-33W off Conakry. Eight persons armed with unspecified guns chased the ship for one hour and broke off the chase at 0710 after crew switched", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.550000000439979, 9.183333300206129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-55", - "dateofocc": "2002-02-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "SUSPICIOUS CRAFT", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reported a suspicious approach 25 Feb at 1200 UTC while underway in position 02-25N 101-43E. Seven persons in a small motorboat approached and then stopped. Bulk carrier altered course and alerted crew a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.716666699844211, 2.41666670014024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-56", - "dateofocc": "2002-02-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified chemical tanker was boarded 27 Feb at 0130 local time while alongside berth unloading cargo. The intruders boarded form the water side, broke open the forecastle store and stole ships stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.833333300142726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-57", - "dateofocc": "2002-03-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 4 Mar at 0015 local time while anchored at Belawan port. Thieves armed with knives boarded via the forecastle, broke open padlocks and stole ship's stores. Ship's crew raised alarm; thieves jumped ove", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-58", - "dateofocc": "2002-03-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified tanker was boarded 3 Mar at 2021 local time while anchored at Balikpapan. Three or four persons armed with knives boarded from a boat via the anchor chain and stole two mooring lines. Anti-piracy watch threatened with knife bef", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.973333300121681, -1.343333300269137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-59", - "dateofocc": "2002-03-04", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOLOMON ISLANDS: The Thailand-flag freighter (ANYA MANJI) was boarded 4 Mar at 1315 UTC shortly after arriving at the anchorage, Honiara. A single armed man (NFI), who had apparentlyboarded via the anchor chain, forced crew to lower accommodation ladder", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [159.966666700154178, -9.416666699675943] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-266", - "dateofocc": "2002-09-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 12 Sep at 030 local time while at Tanjung Priok anchorage. Persons armed with knives and crowbars boarded via the stern. They stole a large quantity of engine spares and escaped in their boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-267", - "dateofocc": "2002-09-09", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 9 Sep at 1830 UTC while anchored in position 01 20.6S, 116 57E, Balikpapan. Four persons boarded via forecastle on starboard side from two unlit boats. Duty officer raised alarm and thieves escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.949999999765737, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-268", - "dateofocc": "2002-09-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "INDONESIA: An unidentified tug and barge with a cargo of palm oil were reported hijacked 6 Sep at 1930 local time in position 01 35.40N, 101 54.40E in vicinity of Bengkalis Strait. Eleven persons participated in the robbery. Malaysian authorities a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.900000000313241, 1.583333299780463] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-269", - "dateofocc": "2002-09-14", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified refrigerated cargo ship was subject to attempted boarding 14 Sep at 0400 local time while at Davao anchorage. One person from a boat with two accomplices attempted to gain access via the anchor chain during cargo operations", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.616666699987604, 7.066666700335588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-270", - "dateofocc": "2002-09-18", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "DOMINICAN REPUBLIC: An unidentified cargo ship was boarded 18 Sep at 0235 local time while berthed at Rio Haina. Five persons armed with long knives tried to break into bridge and chased duty seaman and 2nd mate, who retreated into accommodation. A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-271", - "dateofocc": "2002-09-20", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified cargo ship reports attempt to board 20 Sep at 0415 local time at inner anchorage, Buenaventura. Three persons attempted to gain access using a long pole but fled in a small wooden boat when alarm raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.083333300214804, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-272", - "dateofocc": "2002-09-06", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified cargo ship was boarded 6 Sep at 0430 local time while at inner anchorage, Buenaventura. Three persons armed with machetes boarded using a long pole with hooks and stole ship's stores. Coast Guard informed but only arrived af", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-273", - "dateofocc": "2002-09-07", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: A 1,213-ton Danish flag cargo ship was boarded 7 Sep at 0445 local time while berthed at St. Laurent port. Three persons armed with iron bars and handguns beat several crew, including the master. Chief mate slipped away and notified police who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.03333329957195, 5.500000000073555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-274", - "dateofocc": "2002-09-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified bulk carrier was boarded 21 Sep at 0215 local time while in position 05-48.9N, 118-06E at inner loading anchorage, Sandakan. One person boarded during rain but jumped overboard and escaped when crew alerted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.100000000297541, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-275", - "dateofocc": "2002-09-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 17 Sep while in position 03 10N, 112 52.5E at Kuala Semanok anchorage, Bintulu, Sarawak. Two persons operating from a speedboat and armed with knives boarded via the forecastle, broke into the locker an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.883333299872447, 3.16666669993964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-276", - "dateofocc": "2002-09-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "INDONESIA: An Indonesian tug and barge were hijacked 17 Sep at 0200 at Kuala Gaung, Sumatra. The 639-ton (BES 04) and 94-ton (USDA JAYA) had loaded a cargo of 1,500 tons of palm oil. The crew were released unharmed at Pulau Lingka (some reports say t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, -0.033333299624246] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-277", - "dateofocc": "2002-09-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified ship was boarded 24 Sep at 0130 local time while at Alpha outer anchorage, Chittagong. Three boats approached stern, bow and midship section starboard. Four persons boarded aft and one tried to climb to forecastle. Alarm rai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-278", - "dateofocc": "2002-09-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The 1,699-ton Malaysian-flag tanker (NAUTICA KLUANG) was hijacked 28 Sep at 0300 local time while underway off Indonesia in the vicinity of Pulau Iyu Kecil at the southern tip of the Strait of Malacca. The pirates, armed with guns and machet", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.350000000045384, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-371", - "dateofocc": "2003-11-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker was boarded 14 Nov at 0550 local time while at Lawi-Lawi SBM anchorage. Three armed persons boarded from a black motorboat and broke into forecastle locker. They stole ship's stores and threatened duty seaman with iron bar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.766666700195969, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-372", - "dateofocc": "2003-11-17", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Five persons boarded an unidentified container ship 17 Nov at 2300 local time while underway about 6 nm off Ho Chi Minh City (NFI). Crew raised alarm and intruders fled empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.716666700005874, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-373", - "dateofocc": "2003-11-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 22 Nov at 2300 local time at Lagos anchorage. Thieves stole ship's stores before escaping in a waiting trawler (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-374", - "dateofocc": "2003-11-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 23 Nov at 0400 local time at Chittagong anchorage. Six persons armed with long knives stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-375", - "dateofocc": "2003-11-22", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "RESEARCH VESSEL", - "descriptio": "MALAYSIA: A suspicious unlit craft was noticed on radar by the duty officer of an unidentified research ship 22 Nov at 2120 local time while the ship was in position 05 51.2S, 118 53.4E off Sandakan. When craft approached to 2.5 miles ship's crew switch", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.883333300066511, -5.850000000248542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-376", - "dateofocc": "2003-11-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Nov a 0630 local time while anchored in position 01 21.1N, 117 01E, 14 nm off Balikpapan. Three persons armed with guns and knives boarded via the hawse pipe, took deck watch hostage, and stole stores and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.016666700428914, 1.350000000344039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-60", - "dateofocc": "2002-03-09", - "subreg": "55", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BULGARIA: An unidentified bulk carrier was boarded 9 Mar at 2030 local time by eight persons who broke into crew cabins and stole cash and personal belongings. Crew raised alarm and port authorities arrested the intruders.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [27.549999999752401, 42.50000000037079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-61", - "dateofocc": "2002-03-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST:An unidentified cargo ship was boarded 5 Mar at 0225 UTC while anchored in the Abidjan outer anchorage. Two persons armed with knives stole ship's stores before alarm wasraised whereupon they jumped overboard and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.083333299620335, 5.225000000356943] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-62", - "dateofocc": "2002-03-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TOGO: An unidentified container ship was subject to an attempt to board 6 Mar at 0445 while anchored in Lome Roads. Five persons in a motorized fishing boat tried to gain access at the stern. Watchman sounded ship's whistle and directed searchlights at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 6.133333300242384] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-63", - "dateofocc": "2002-03-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports an attempt to board 11 Mar at 0540 local time while underway in position 02-35N 101-30E. Three persons in a speedboat, described as six meters long with white hull, approached the starboard quarter but w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 2.583333299812807] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-64", - "dateofocc": "2002-03-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports attempt to board 10 Mar at 2200 local time while underway in position 04-10N 099-26E. Persons in a speedboat doing 21.5 knots attempted to board via the port side. Duty officer raised alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.433333299752292, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-65", - "dateofocc": "2002-03-09", - "subreg": "72", - "hostility_": "PIRATERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:An unidentified cargo ship was boarded 9 Mar at 0325 local time while at outer anchorage, Banjarmasin. Armed pirates (NFI) broke into forward stores and stole supplies.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.599999999734678, -3.333333299820879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-66", - "dateofocc": "2002-03-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tug and barge were boarded 8 Mar at 0445 local time while anchored at Tanjung Balai, Karimun.Seven persons armed with swords and knives tied up the six crew and forced five into a speedboat when they were taken to a nearby isla", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.300000000016951, 4.033333300444269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-67", - "dateofocc": "2002-03-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified \"special purpose vessel\" was underway 5 Mar at 0300 local time in position 05-10S 118-45E when three boats were noticed ahead. As the boats were passed they increased speed and came alongside with one person preparing to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.750000000363571, -5.166666700213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-68", - "dateofocc": "2002-03-14", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR:Watch on an unidentified bulk carrier found three unauthorized persons near paint locker 14 Mar at 0715 UTC while ship was alongside at Manta. He raised alarm upon sightingthree more persons on forecastle. Thieves jumped overboard with ship's s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.733333300345464, -0.933333299923163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-69", - "dateofocc": "2002-02-13", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA-BISSAU: An unidentified ship was pursued and fired upon 13 Feb (reported 18 Mar) while underway in position10-42-59N 16-28-04W outside the islands offshore of Guinea Bissau. A speedboat containing five armed men in military uniform started to com", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.467777800445049, 10.716388899923743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-70", - "dateofocc": "2002-03-08", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE: Fishing vessel (SAWA II) was reported to have been attacked 8 Mar (reported 14 Mar) off Yelibouya Island, three miles from Guinean waters. Two patrol boats sent by the Maritime Wing of the Rep. of Sierra Leone Armed Forces came under sust", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.29666669994532, 8.940000000256703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-71", - "dateofocc": "2002-03-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 15 Mar at 0230 local time while at Lagos anchorage. Four persons armed with long knives held a seaman hostage. Second officer raised alarm and drove off the thieves with help of two watchmen. Thieves f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-72", - "dateofocc": "2002-03-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA:An unidentified container ship was boarded 13 Mar at 0240 local time while berthed at container terminal, Dar es Salaam. Thieves armed with knives threatened to kill five dutywatchmen. Duty officer raised alarm and thieves jumped overboard wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.283333300010383, -6.800000000414173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-73", - "dateofocc": "2002-03-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was boarded 18 Mar while at anchor, Kalpi anchorage, Hooghly River. Four persons armed with knives stole ship's stores but jumped into river and escaped when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.203333300189513, 22.091666700304359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-74", - "dateofocc": "2002-03-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 15 Mar at 0755 local time while anchored in Pussur River below Mongla. The \"armed\" thieves stole a wire rope and escaped. At 0900 local time three armed persons boarded from a small boat via the anch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 22.466666699754398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-280", - "dateofocc": "2002-09-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 Sep at 2345 local time while at Balikpapan coal terminal. Six armed persons broke open paint store and stole a large quantity of ship's stores. Watchman noticed the breakin but was taken hostage by t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-281", - "dateofocc": "2002-09-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified cargo ship was boarded 27 Sep at 0130 local time while in position 10 16.5N, 107 04E, Vung Tau outer roads anchorage. Intruders boarded via forecastle, broke into bosun's store and stole ship's stores. Alarm raised and thieves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.2833332999719] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-282", - "dateofocc": "2002-09-29", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified cargo ship was boarded 29 Sep at 0305 local time while in position 24 05.42S, 046 21.23W at No. 3 Santos outer anchorage. Six persons, four of whom were armed with guns and long knives, boarded from a small speedboat. Watch so", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.35000000020932, -24.0833333002671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-283", - "dateofocc": "2002-10-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified chemical tanker was boarded 3 Oct during the early morning hours while berthed at Santana (Macapa). Thieves stole an outboard motor from a lifeboat and ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.050000000271382, 0.033333300314894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-284", - "dateofocc": "2002-10-01", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A cargo ship underway 1 Oct in position 12 18N, 004 06E reports attempt to close by three persons in a small unlit boat. Crew directed searchlights at boat which withdrew.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.549999999564534, 12.416666699564303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-285", - "dateofocc": "2002-10-06", - "subreg": "62", - "hostility_": "POSSIBLE TERRORISTS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "YEMEN: The 157,833 ton, French Antarctic Territory flag ultra large crude carrier (LIMBURG) was damaged by explosion in the morning hours of 6 Oct as it picked up the pilot before mooring at al Shihr in position 14 42N, 049 32E. One crew member is dead", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.53333329966739, 14.699999999831448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-286", - "dateofocc": "2002-10-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 3 Oct at 1400 local time while anchored at Chittagong. Four armed thieves boarded while four accomplices waited in their boat. The thieves stole two mooring lines before escaping when alarm was sounded and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-287", - "dateofocc": "2002-10-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker was boarded 1 Oct at 0425 local time while underway in position 01 26N, 104 42.5E, 20 nm from Horsburgh lighthouse. Eight persons armed with guns and long knives boarded via the stern while two accompl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.716666699941186, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-288", - "dateofocc": "2002-10-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified ship was boarded 5 Oct at 1945 local time while departing Pulau Laut, Kota Baru. Thieves boarded at main deck and stole two life rafts", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.216666699863481, -3.233333300087452] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-289", - "dateofocc": "2002-10-05", - "subreg": "92", - "hostility_": "POSSIBLE TERRORISTS", - "victim_d": "FERRY", - "descriptio": "PHILIPPINES; The interisland passenger-cargo ferry (LADY ADZRA) was hit by explosion of a home made bomb 5 Oct while docked at Bongao port, Tawi Tawi. The bomb blew a one meter hole in the vessel's bow. Police are attempting to determine if the bomb", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.766666700293058, 5.033333299577237] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-290", - "dateofocc": "2002-10-02", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified bulk carrier was boarded 2 Oct at 0315 local time while at Davao port. Two persons armed with long steel bars gained access via the anchor chain and were spotted by security patrol trying to open manhole cover. Alarm raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.616666699987604, 7.066666700335588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-291", - "dateofocc": "2002-10-02", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship averted boarding 2 Oct at 0530 local time while at anchor off Vung Tau. Duty seaman saw a man climbing aboard from a small blue boat containing three other men and raised alarm. Intruders attempted second boardin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-292", - "dateofocc": "2002-10-11", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified container ship was boarded 11 Oct at 2140 local time at port of Callao. Two persons armed with knives attacked local watchman, stole ship's stores and escaped. Master raised alarm and informed authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-293", - "dateofocc": "2002-10-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 14 Oct at 1950 local time while at Wharf No. 1A, Sandakan. Two persons broke the seal on a container on deck but fled empty handed in their speedboat when duty seaman raised alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.833333300142726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-138", - "dateofocc": "2003-04-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was subject to attempted boarding 25 Apr at 2320 local time while underway in position 03 23N, 105 31.5E, 18nm NW of Anambas Islands. Persons in a fast boat attempted to board using bamboo poles but fled when crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.533333299679782, 3.38333330037824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-139", - "dateofocc": "2003-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 22 Apr at 2015 local time while underway in position 01 42.5N, 106 09.6E about 60 nm SE of Anambas Islands. Seven persons armed with knives and guns tied up master and crew and stole personal belongings", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.166666699673328, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-140", - "dateofocc": "2003-04-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 28 Apr between 0045 and 0145 local time while anchored in position 06 19.6N, 003 20.7E 4.3 nm off Lagos port. Three persons boarded from a 14 ft boat and threw empty glass bottles at duty seaman when discover", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.35000000040867, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-141", - "dateofocc": "2003-04-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: The offshore support ship (MAERSK SHIPPER) was boarded 15 Apr and its crew of 16 held hostage off the Nigerian Coast. The vessel's operator paid what is described as a $2.500 ransom in local currency and the hostages were freed beginning 4 May", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-142", - "dateofocc": "2003-04-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified offshore support vessel was subject to attempted boarding 25 Apr at 0835 local time while in position 04 48N, 05 20E. Twelve persons attempted to gain access from a speedboat. Guard on board the vessel fired warning shots and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.333333299676895, 4.800000000140813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-143", - "dateofocc": "2003-04-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified cargo ship was subject to an attempt to board 30 Apr at 0005 local time while anchored at Takoradi. Four persons operating form a small boat tried to board at the stern using a hook on a bamboo pole. Duty seaman raised alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.733333299589276, 4.883333299977096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-144", - "dateofocc": "2003-05-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified tanker was subject to an attempt to board 1 May at 0400 UTC while in the Abidjan pilot waiting area, position 05 13N, 004 02.6W. Two persons armed with knives boarded at the poop using grappling hooks. When crew sounded al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.049999999650765, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-145", - "dateofocc": "2003-04-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified tanker was boarded 30 Apr while in the pilot waiting area, position 05 13N, 004 02.6W. One person armed with a knife threatened crew but jumped overboard and escaped empty handed in his wooden boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.049999999650765, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-146", - "dateofocc": "2003-04-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The Korean-flagged fishing boat (BEIRA 9) was hijacked near Kismayo on 1 April by an unnamed Somali warlord, according to a 4 May report. The boat's 24 crew members are being held by the warlord who is demanding payment of three months fishing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.550000000237503, -0.366666700417511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-385", - "dateofocc": "2003-11-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA: An unidentified tug and tow were hijacked 25 Nov at 0315 local time while underway in position 00 39.47S, 103 48.09E, 15 nm off Muara Sabak, Jambi. The tug's crew were forced to jump overboard and all 14 swam safely ashore. The barge with 78", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.799999999745182, -0.666666699617792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-147", - "dateofocc": "2003-04-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified container ship was subject to an attempt to board 28 Apr between 0740 and 0830 UTC while underway in position 13 18N, 049 20E. Three speedboats approached at about 25 knots but gave up chase when ship altered course and wa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.333333300200536, 13.299999999966076] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-148", - "dateofocc": "2003-05-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tug and barge were boarded 2 May at 0100 UTC while underway in position 08 52.2N, 076 25.2E, 8 nm west of Quilon. The thieves stole ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.416666699835389, 8.866666700034045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-149", - "dateofocc": "2003-05-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 2 May at 2100 local time while at Chittagong anchorage. Three persons armed with big knives boarded via the stern. Duty seaman raised alarm and the thieves fled with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-150", - "dateofocc": "2003-05-02", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was approached 2 May at 0100 local time while in position 2 53N, 091 38E at Chittagong anchorage. Persons armed with long knives in three speedboats were foiled by the crew in their attempts to board the ship (IMB", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-377", - "dateofocc": "2003-11-19", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports suspicious approach by unlit small craft 19 Nov at 0330 local time while underway in position 03 12N, 108 47.7E 10 nm off Pulau Subi Kecil. Boat was spotted on radar at a distance of five miles, making five knot", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.799999999906845, 3.19999999990921] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-378", - "dateofocc": "2003-11-22", - "subreg": "25", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "CARIBBEAN: An unidentified yacht reports being chased 22 Nov at 2200 UTC while underway in position 17 45N, 054 31W east of the Leeward Islands. Several persons in a 30 meter vessel were assessed to be preparing to board. Yacht switched off lights and e", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.516666699965356, 17.749999999795193] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-379", - "dateofocc": "2003-11-29", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified cargo ship was boarded 29 Nov at 0730 UTC while in position 03 52N, 077 05W, Buenaventura inner roads. Two persons armed with crowbars gained access, but jumped overboard and escaped when a contract guard employed by the ship f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.866666699872383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-380", - "dateofocc": "2003-11-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified cargo ship was boarded 28 Nov at 0205 local time at Lagos anchorage. Four persons armed with knives gained access from a fishing boat. They threatened duty seaman who received head injuries. The intruders stole 8 mooring lines b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-381", - "dateofocc": "2003-11-24", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: An unidentified bulk carrier was boarded 24 Nov at 0130 UTC while anchored at Conakry. Fifteen persons armed with \"high powered guns\" operating from two motorboats took two crew hostage and entered accommodation via the bridge. They assaulted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-382", - "dateofocc": "2003-12-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: A crew member aboard the Belize-flag offshore support vessel SEA PANTHER was shot dead 2 Dec. Four apparent pirates in a fishing boat demanded the master stop and opened fire when he instead increased speed. SEA PANTHER was on a voyag", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.500000000415469, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-383", - "dateofocc": "2003-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE: An unidentified tanker was boarded 19 Nov at 2325 local time while underway in position 01 17.9N, 104 06.1E at the Eastern Buoy. Seven persons armed with long knives stole ship's cash and escaped. This is a rare instance crime inside Singapor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.099999999844783, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-384", - "dateofocc": "2003-11-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 25 Nov at 2250 local time while underway in position 03 01N, 106 58E, Selat Leplia. Five persons armed with long knives and guns entered the bridge and tied up the duty officer, seaman and a cadet. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.966666700238818, 3.016666700339499] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-386", - "dateofocc": "2003-11-24", - "subreg": "73", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship reports suspicious approach with intent to board 24 Nov at 1115 local time while underway in position 08 36S, 137 14E, 20 nm off False Cape, Lolepon Island, Irian Jaya. Two fishing boats approached the ship which beg", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [137.233333299715696, -8.600000000112686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-387", - "dateofocc": "2003-11-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 24 Nov at 0540 local time while underway in position 00 56.9N, 105 20.4E, 41 nm off Bintan Island. Seven persons armed with guns and knives fired two shots at bridge door, entered and took second of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.333333300212871, 0.949999999611634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-388", - "dateofocc": "2003-11-29", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified tanker was boarded 29 Nov at 0200 local time at anchor at Puerto la Cruz, Venezuela. 3 persons armed with knives took duty seaman hostage and tied him up. They stole ship's stores and safety equipment before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.633333300094591, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-389", - "dateofocc": "2003-12-06", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified chemical tanker was boarded 6 Dec at 0130 as it came to anchor with a pilot on board at Georgetown. Alarm was raised but the thieves escaped with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-390", - "dateofocc": "2003-12-08", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 8 Dec at 0025 local time underway in position 01 11N, 126 52E in the Molucca Sea. 3 persons in a motorboat were spottedand ship raised alarm, directed searchlights and activated fire hoses", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [126.866666700252836, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-75", - "dateofocc": "2002-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified livestock carrier was boarded 14 Mar at 2240 local time while underway in position 01-52N 102-27.5E. Four persons armed with guns fired two shots toward bridge when master raised alarm. Crew were ordered to retreat in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.458333300232312, 1.866666699807695] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-76", - "dateofocc": "2002-03-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 18 Mar at 0400 local time despite duty officer shining searchlight on three boats as they approached the starboard side. Boarding was on port side and thieves stole two life rafts before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.150000000131968, -0.500000000120508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-77", - "dateofocc": "2002-03-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Mar at 0300 local time while anchored at Belawan. A single person boarded over the side and opened hawse pipe cover whereupon five more persons gained access via the anchor chain and attacked duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.800000000108469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-78", - "dateofocc": "2002-03-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA: The tug and barge boarded and hijacked 8 Mar at 0445 local time while anchored at Tanjung Balai, Karimun have been identified as 120-ton, Singapore flag tug (GUAN SENG 12) and 1,404 ton, Singapore flag barge (YUAN CHENG 19). IMB broadcast an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.300000000016951, 4.033333300444269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-79", - "dateofocc": "2002-03-18", - "subreg": "83", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PACIFIC OCEAN: Seychelles flag fishing vessel (FULL MEANS NO. 2) was reported hijacked by its crew 18 Mar while in position 15-24N 154-34W. Crew consists of Taiwanese master and 33 mainland Chinese crew. Vessel reported sailing toward Island of Hawaii", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-154.566666700368074, 15.399999999764191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-80", - "dateofocc": "2002-03-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified cargo ship was boarded 20 Mar at Lagos Anchorage. Two persons boarded via the stern and held duty seaman hostage at gunpoint while they lowered three mooring lines into a waiting boat and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-81", - "dateofocc": "2002-03-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 22 Mar at 0315 local time while at jetty no. 1, Haldia. Thieves boarded at the forecastle and stole six hawsers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.083333300329514, 22.016666700054657] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-300", - "dateofocc": "2002-10-17", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified product tanker was boarded 17 Oct between 0300 and 0400 while berthed at Caltex refinery, Batangas. Thieves boarded at the poop, broke open paint locker and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.016666699658913, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-82", - "dateofocc": "2002-03-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: A fishing boat captain was killed and a crew member injured 16 Mar when a four-man gang dressed in military fatigues robbed their boat off Beluran, near Sandakan. Policelater announced arrest of two Filipinos suspected in the incident and reco", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.500000000098225, 5.500000000073555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-83", - "dateofocc": "2002-03-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 21 Mar at 0300 local time while berthed at jetty 5C, Pertamina terminal, Balikapan. Anti-piracy watch noticed small unlit craft bearing four men with long bamboo poles at stern. Crew mustered and thieves fl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-84", - "dateofocc": "2002-03-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Mar at Balikpapan anchorage. Two persons boarded over the stern And held duty seaman at gunpoint. The thieves lowered a mooring line into a waiting boat and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-85", - "dateofocc": "2002-03-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified VLCC was boarded 19 Mar at 0445 local time while anchored at Balikpapan. Three persons broke into the steering gear room and stole engine spares before being driven off by crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-86", - "dateofocc": "2002-03-22", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 22 mar at 0235 local time while at Vung Tau outer anchorage. Four persons armed with long knives boarded via the anchor chain. Crewraised alarm and the intruders fled without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-87", - "dateofocc": "2002-03-28", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: The Ukraine flag fishing vessel (VOSTOCHNYY) was attacked 28 Mar at an unknown location off the Guinea coast by seven person who robbed it of $13,000 plus audio and video equipment. No crew injuries reported but an electricity cable was shot th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.230555599564866, 9.964722200097242] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-88", - "dateofocc": "2002-03-27", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: The Ukraine flag tanker (SKHIDNYY) was boarded 27 Mar at 0520 UTC while in position 10-04N 016-23.5W in territorial waters near Conakry. Ten persons armed with machine guns stole cash (some accounts say $15,000), TV sets and radios. The thieves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.391666700418625, 10.06666670043262] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-294", - "dateofocc": "2002-10-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 11 Oct at 0445 local time while berthed at Caltex Jetty No. 2, Dumai in position 01 41.3N, 101 27.9E. Three persons armed with knives entered engine room, held duty cadet at knifepoint and demanded locker", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-295", - "dateofocc": "2002-10-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA: An unidentified salvage tug was boarded 9 Oct at 0100 local time while at Panjang anchorage. Five persons armed with long knives were spotted by duty officer and fled when he raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, -5.466666700312658] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-296", - "dateofocc": "2002-10-13", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA: An unidentified salvage tug was boarded 13 Oct. at 0420 local time while anchored in position 07-8.9S 112-39.8E, Surabaya. Three persons armed with knives were spotted by duty officer and escaped with ship's property in a waiting canoe which h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.666666700333167, -7.150000000380544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-297", - "dateofocc": "2002-10-16", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified cargo ship was boarded 16 Oct at 0945 local time while berthed at Georgetown. Seven persons armed with long knives and machetes broke into forward store and stole ship's stores. Alarm raised and thieves escaped in boat after th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-298", - "dateofocc": "2002-10-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 19 Oct. while in position 22-19.2N, 088-06E in the Hooghly River. One person from a six-meter wooden motorboat used a grappling hook to gain access at the stern. Crew raised alarm and intruder jumped o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.100000000226657, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-299", - "dateofocc": "2002-10-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was subject to attempted boarding 18 Oct at 0128 local time while underway in position 01 38N, 105 41E, near Pengibu Island. Seven persons armed with long knives and iron bars were spotted by alert crew who dir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.683333300179243, 1.633333299647177] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-301", - "dateofocc": "2002-10-21", - "subreg": "55", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GEORGIA: An unidentified cargo ship was boarded 21 Oct at 1935 local time while in port Poti. Two persons armed with guns and pretending to be Customs Officers entered captain's cabin and beat him severely, stealing $76,192 in ship's cash. Master bou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [41.583333300174729, 42.150000000404418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-302", - "dateofocc": "2002-10-28", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified VLCC reports suspicious approach 28 Oct at 0100 UTC while underway in position 05 46N, 096 39E, Straits of Malacca. Six high speed boats maneuvered suspiciously but no boarding took place.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.649999999918634, 5.766666700203587] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-303", - "dateofocc": "2002-10-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "STRAIT OF MALACCA: Pirates armed with guns opened fire 25 Oct on a fishing boat operating in position 06 30N, 097 09E in the Straits of Malacca. All nine crew members of the fishing boat were thrown overboard and the boat hijacked. The fishermen spent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.150000000384466, 6.500000000105899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-304", - "dateofocc": "2002-10-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Oct at 0100 local time while at Cigading anchorage. Two persons armed with long knives jumped overboard with a life raft when spotted by crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.950000000309331, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-305", - "dateofocc": "2002-10-22", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 22 Oct at 0510 local time while in position 00 15S, 117 34E at Samarinda anchorage. Five persons armed with knives boarded via the anchor chain and attacked the duty seaman, injuring his hand. Thieves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-306", - "dateofocc": "2002-10-31", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified bulk carrier was robbed of zinc anodes 31 Oct at 1530 local time while at berth 5-C, Callao. Chief officer spotted person in the act and informed the Coast Guard which arrived within 15 minutes. Local security guards hired and onb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-307", - "dateofocc": "2002-10-22", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "VENEZUELA: An unidentified tug was boarded 22 Oct between 0300 and 0600 local time while berthed at Puerto Cabello. Thieves stole stores and crew belongings. Master was advised thatarmed robbery was common and to hire guards.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.000000000055138, 10.483333300338074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-308", - "dateofocc": "2002-10-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship was boarded 28 Oct between 0300 and 0315 local time while at berth no. 16, Apapa, Lagos. Six armed persons threatened ship's crew before escaping in a speedboat. No report of losses.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-309", - "dateofocc": "2002-11-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: Antigua-flag container ship (ALEXANDRA) was boarded 2 Nov at 0300 UTC by between 5 and 7 armed persons while ship was at anchor outside Tema. Alarm raised and intruders escaped in sea-going canoe. Forecastle locker was discovered forced open a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-151", - "dateofocc": "2003-04-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 29 Apr at 2310 local time while in position 22 16N, 091 43.6E proceeding to Alpha anchorage, Chittagong. Two persons stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-152", - "dateofocc": "2003-05-02", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier was approached 2 May at 1258 UTC while underway in position 05 25.90N, 097 43.15E. An unlit speedboat containing several persons came within one cable of the ship and increased speed from 15 knots to 25 k", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.716666699714835, 5.433333300309641] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-153", - "dateofocc": "2003-05-05", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: The Singapore-flag LPG carrier (APOLLO PACIFIC) was chased 5 May at 1400 UTC, about midnight local time, by seven small craft apparently operating in concert with a larger mother ship. The tanker was underway in position 03 37.34N, 111 04.81E", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.08333330017399, 3.616666699639438] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-154", - "dateofocc": "2003-04-29", - "subreg": "71", - "hostility_": "SUSPICIOPUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports being followed 29 Apr at 2300 local time by two unit speedboats while underway in position 00 58N, 105 04.5E. Crew directed searchlights at the boats which moved away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.083333299979984, 0.966666700408098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-155", - "dateofocc": "2003-04-03", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports attempt to board 3 Apr at 2350 local time while underway in position 02 36.7N, 108 53E in the vicinity of the Anambas/Natunas Islands. The threatening boat dropped astern when ship increased speed (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.883333299743128, 2.616666699607094] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-156", - "dateofocc": "2003-04-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 30 Apr at 1645 UTC while underway in position 01 04N, 104 59E, east of Bintan Island. The boarders took the duty officer and seaman hostage and handcuffed them before forcing them to the master's ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.983333300246557, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-157", - "dateofocc": "2003-04-30", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was approached 30 Apr by 3 to 5 persons in a fast moving boat, while underway in position 00 55.8N, 105 05E. Alert seaman raised alarm and the boat withdrew (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.083333299979984, 0.933333299714491] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-158", - "dateofocc": "2003-05-03", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified container ship reports attempt to board 3 May at 0430 local time while at south harbor anchorage, Manila Bay. Three persons armed with guns attempted togain access from an unlit boat but moved away when crew flashed lights a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.966666699792199, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-159", - "dateofocc": "2003-05-07", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified bulk carrier was boarded 7 May at 1830 local time while at berth 5E, Callao. Three persons gained access at the forecastle and fled with a liferaft when duty seaman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-160", - "dateofocc": "2003-05-11", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship reports attempt to board 11 May at 1900 local time while drifting 20 nm off the sea buoy, Guayaquil. Two blue wooden speedboats approached but master took evasive measures and increased speed. Five persons in on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-161", - "dateofocc": "2003-05-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 12 May at 0330 UTC while underway in position 14 20.5N, 050 36.7E. Ship was approached by eight speedboats. Master took evasive action, raised alarm and sent distress messages. Crew a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.616666700260055, 14.349999999865133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-162", - "dateofocc": "2003-05-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 8 May at 0840 UTC while underway in position 13 18N, 050 22E. A mother ship and three speedboats approached and the speed boats increased speed to 25 knots. Master raised alarm, took", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.366666700027167, 13.299999999966076] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-163", - "dateofocc": "2003-05-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: The chemical tanker (SPIC EMERALD) was boarded in the early hours of 6 May in rough weather while at Chennai anchorage. Seven persons armed with crude weapons threatened the crew and began looting crew belongings and ship's property. The Indian", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.300000000334137, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-164", - "dateofocc": "2003-05-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "BAY OF BENGAL: Twenty-seven fishing trawlers operating in the Bay of Bengal were raided 7 May while 12 km off Andar Char, and were looted of fish, nets and other valuables. The looted boats were returning to Bhola and Barisal after deep sea fishing. Sur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.999999999690942, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-391", - "dateofocc": "2003-12-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 3 Dec in the early morning while anchored at Jakarta and a liferaft stolen (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, 6.100000000272814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-392", - "dateofocc": "2003-12-02", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 2 Dec at 0630 UTC by a blue hulled speedboat while underway in position 05 32N, 097 36E, 20 nm north of Tanjung Jamboaye. The boat followed for 10 minutes and moved away when crew muste", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.600000000084265, 5.533333300043068] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-393", - "dateofocc": "2003-12-01", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports 5 persons attempted to board 1 Dec at 0330 local time while ship was working cargo at Balikpapan anchorage. The five attempted to climb anchorchain but were spotted and chased by crew and onboard police who fire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-394", - "dateofocc": "2003-12-12", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports suspicious approach 12 Dec at 2925 local time while underway in position 04-14N 099-17E. An unlit fast boat 35-40 feet in length and with a green hull, making 20 knots, came close aboard but withdrew wh", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.283333300152151, 4.233333299911124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-395", - "dateofocc": "2003-12-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports attempt to board 11 Dec at 0315 local time while underway in position 01-58.3N 102-4.7E. Duty officer raised alarm upon approach of unlit speedboat. Crew mustered and directed searchlights at boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.283333300152151, 1.971666699797595] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-1", - "dateofocc": "2003-12-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier reports attempt to board 11 Dec while anchored at New Mangalore. Crew raised alarm and boarding was aborted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [74.816666699603786, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-2", - "dateofocc": "2003-12-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 16 Dec at 1910 local time while anchored in position 22-12.7N 091-43.2E at Chittagong anchorage 'B'. Nine persons boarded at the forecastle, tied up a cadet and two shore watchmen and held them at kn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.7199999997502, 22.211666700164358] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-3", - "dateofocc": "2003-12-22", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 22 Dec at 0325 UTC while anchored in position 01-05S 117-17E at Samarinda. Thieves gained access via the hawse pipe, broke open forecastle store and stole supplies and safety equipment. Police chased", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.283333299834908, -1.083333300422623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-4", - "dateofocc": "2003-12-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 21Dec at 0400 local time while anchored in position 01-54S 116-37E at Apar Bay. Five persons armed with knives boarded via the hawsepipe from a speedboat. The intruders threatened duty seaman with a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.616666699696566, -1.899999999985937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-5", - "dateofocc": "2003-12-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship reports attempt to board 20 Dec at 0620 local time while underway in position 01 08N, 103 30E, 7 nm NE of Pulau Karimun Besar. Four persons in an unlit boat about 8m long approached from the port quarter bu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-6", - "dateofocc": "2003-12-16", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 16 Dec at 0430 local time while underway in position 09-18S 132-15E. Crew directed searchlight at persons in a long, narrow speedboat which followed the tanker before moving away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [132.250000000350497, -9.300000000045372] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-7", - "dateofocc": "2003-12-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BENIN: An unidentified bulk carrier was boarded 24 Dec at 0357 local time while anchored 3.5 miles south of fairway buoy at Cotonou anchorage. Five persons armed with guns and knives took watchman and chief engineer hostage. They broke into master's c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.433333300212666, 6.349999999606382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-8", - "dateofocc": "2003-12-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports suspicious approach by about five boats 28 Dec at 0215 local time while underway in position 13-45.8N 048-49.0E. About five boats were sighted 4 miles ahead and 2 of these closed in on both sides of th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.816666699662278, 13.763333300408192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-9", - "dateofocc": "2003-12-24", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified vehicle carrier report attempt to board 24 Dec at 1400 UTC while underway in position 20-55N 119-43E. When approach by boat was detected crew switched on light and boat withdrew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.716666700426345, 20.918055599741081] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-10", - "dateofocc": "2003-12-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: The Bangladeshi coastal freighter (BARVINA) was attacked 31 Dec while at Chittagong port and looted of goods while crew were kept hostage at gunpoint. Local operators reportedly refuse to lodge complaints with police fearing retaliatory att", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-89", - "dateofocc": "2002-03-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified cargo ship was boarded 29 Mar at 2030 local time while at berth 18 Abidjan. Thieves boarded from an unlit boat using grappling hooks and escaped with ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-90", - "dateofocc": "2002-03-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified bulk carrier was boarded 30 Mar at 2250 UTC while at Tema anchorage. About thirteen persons boarded from a small wooden boat via the anchor chain. Crew chased them and thy jumped overboard and escaped, apparently without stealing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-91", - "dateofocc": "2002-04-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: The Cyprus flag cargo ship (TORM COTE D'IVOIRE)was boarded during the night of 1-2 Apr while anchored in Port Gentil Roads. About 30 persons boarded and the master was beaten with a rifle butt suffering a broken nose and other injuries. Thieves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.800000000270188, -0.20000000002085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-92", - "dateofocc": "2002-03-31", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified tanker reports suspicious approach 31 Mar at 0900 UTC while underway in position 14-00N 051-52.4E. Three speedboats each with three persons wearing masksattempted to come alongside but abandoned attempt when crew mustered a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.873333300084823, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-93", - "dateofocc": "2002-03-28", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reported a suspicious approach 28 Mar at 2355 local time while underway in position 15-15N 051-40E. Speedboat with four persons approached within eight meters of the starboard quarter but moved away when alarm", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.666666700159169, 15.250000000163993] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-94", - "dateofocc": "2002-03-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was robbed of zinc anodes attached to its hull 29 Mar at 2030 local time while berthed at no. 2 berth Chittagong. Five persons in a boat removedthe anodes and escaped under pier when search light was directed at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-95", - "dateofocc": "2002-04-01", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified vessel reports suspicious approach 1 Apr at 2000 UTC while underway in position 04-22.5N, 099-12.6E. Forecastle watch heard sound of powerful outboard motor and bridge watch directed search light at long fast boat seen", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.209999999929494, 4.374999999924739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-96", - "dateofocc": "2002-03-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 27 Mar at 1812 UTC while anchored at Apar Bay. Seven persons armed with guns and knives took duty seaman hostage, stole his wristwatch and removed mooring lines before escaping in their speedboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.003055599784659, 3.869166700000619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-97", - "dateofocc": "2002-03-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tug was boarded and hijacked 25 Mar at 0100 local time while berthed at Pulau Citlim jetty. Thieves armed with knives et three persons escape by jumping overboard and later released the other three crew. Unlike other hijacki", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.919999999605125, 0.755000000401196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-98", - "dateofocc": "2002-03-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 25 Mar during the middle of the night by three persons armed with knives. Duty seaman alerted crew and raised alarm,whereupon the intruders fled, apparently without taking anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-99", - "dateofocc": "2002-03-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: An unidentified tanker was hijacked 17 Mar at 1320 local time, reported 1 Apr, while underway in position 07-45.9N 097-42.5E. Pirates armed with guns and knives held the ship and later transferred 1,950 metric tons of gas oil to another tanke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [97.708333300303536, 7.76500000024123] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-100", - "dateofocc": "2002-04-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: Container vessel (SEA TIGER) was boarded and robbed 9 Apr at 0100 local time while about 14 miles before its arrival at the data buoy at Guayaquil. Eleven containers were broached and several cartons thrown into the thieves' boat. Master repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.026111099703598, -2.373055600190867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-101", - "dateofocc": "2002-04-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified cargo ship was boarded 3 Apr at 0330 UTC while at Lagos anchorage. Armed persons stole ship's stores and an outboard motor from a lifeboat. Duty seaman was attacked with knives and bottles. When crew sounded alarm thieves esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-102", - "dateofocc": "2002-04-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Militant youths seized a crew boat and ten persons and held them hostage 1 Apr in the Dodo River. The attack involved about 40 persons in 8 boats and was part of anoperation that had begun about two weeks earlier by locals seeking compensation", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.140277800169088, 5.059999999987383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-310", - "dateofocc": "2002-10-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 30 Oct at 1300 UTC while anchored in position 21 41N, 088 01E in the Sagar Roads anchorage, Hooghly River. Thieves armed with long knives boarded at the bow and, while crew dealt with them, a second gang boarde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.016666700390374, 21.683333300160712] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-311", - "dateofocc": "2002-10-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded 30 Oct at 0430 local time while at Bravo Anchorage, Chittagong. Ten persons armed with knives gained access at the stern. They threatened crew, broke open forecastle locker and stole stores. Alarm r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-312", - "dateofocc": "2002-10-30", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified supply ship was approached suspiciously 30 Oct at 0225 local time by an unlit boat while both were underway in position 05 23.4N, 097 37.1E. Duty seaman directed searchlight at boat and crew raised alarm. Shot fired f", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.616666699981408, 5.383333300442928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-313", - "dateofocc": "2002-11-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship (SINAR BATAM) was boarded 4 Nov at 0005 local time while underway in position 00 52.6N, 105 07.1E I vicinity of Bintan Island. Eight persons armed with knives third mate hostage and forced him to call captain to bridge where h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.616666699981408, 0.883333299847777] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-314", - "dateofocc": "2002-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker (MONT BLANC) was boarded 3 Nov at 0130 local time while underway in position 01 04N, 104 56E in vicinity of Bintan Island. Group of about eight persons boarded at stern and took chief engineer hostage, binding him with ropes", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.933333300379843, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-315", - "dateofocc": "2002-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship (CAPE YORK) was boarded 3 Nov at 0110 local time while underway in position 01 03.8N, 104 56.8E off Bintan Island. Eight persons armed with knives entered ship's bridge but fled when crew raised alarm and warned others via shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.950000000276987, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-316", - "dateofocc": "2002-11-01", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified Ro-Ro was boarded 1 Nov at 0500 local time while at Balikpapan outer anchorage. Ship was boarded over starboard quarter but intruders fled in their waiting boat when crew raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-317", - "dateofocc": "2002-10-31", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified Ro-Ro was boarded 31 Oct at 0300 local time while anchored in position 01 21S, 116 57E Balikpapan outer anchorage. Access was gained via anchor chain but crew raised alarm and intruders fled in their waiting boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.949999999765737, -1.349999999653392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-318", - "dateofocc": "2002-10-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Oct at 0100 local time while at Cigading anchorage. Two persons armed with long knives jumped overboard with a life raft when spotted by crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.950000000309331, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-319", - "dateofocc": "2002-11-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship was boarded 1 Nov at 0040 local time while in position 20 38N, 106 55E, Haiphong Pilot Station. Anti-piracy crew spotted a person on forecastle and raised alarm. Intruder escaped empty handed in a wooden motor bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.916666700372105, 20.633333300261654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-320", - "dateofocc": "2002-11-06", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC: An unidentified bulk carrier was boarded 6 Nov at 0340 local time while at pier no.1, east, Rio Haina. Five persons armed with knives and wooden battens boarded via the forecastle, beta and tied the 2nd officer and hit duty seaman", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.900000000386342, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-321", - "dateofocc": "2002-11-05", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified cargo ship reports being chased 5 Nov at 0510 UTC while underway in position 00 04.5N, 045 05.5E, off Somalia. Master increased speed and mustered crew and boats displayed searchlights as a signal to stop. Ship continued on c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.099999999735417, 0.083333300181607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-322", - "dateofocc": "2002-11-04", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified container ship was approached 4 Nov at 0215 local time while underway in position 08 10N, 052 24E off Somalia. An unidentified speedboat approached from port quarter. Ship altered course and increased speed while master muster", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.400000000061425, 8.166666700101359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-323", - "dateofocc": "2002-11-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN-SOCOTRA: An unidentified bulk carrier was attacked 7 Nov at 0001 UTC while underway in position 12 22N, 054 45E. Two pirates armed with knives boarded from a boat, ransacked the master's cabin, held him hostage, and demanded money and the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.750000000092427, 12.366666699697589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-165", - "dateofocc": "2003-05-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker reports suspicious approach 10 May between 2040 and 2110 local time while underway in position 04 30S, 107 20E in the Java Sea. A speedboat making 25 knots approached from the starboard bow and followed at a r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.333333300277559, -4.500000000249884] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-166", - "dateofocc": "2003-05-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 8 May at 0340 local time while underway in position 00 48.79N, 105 06.10E off Bintan Island. Seven pirates armed with guns and knives boarded from a speedboat. Duty crew were attacked on deck and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.099999999877127, 0.816666699908637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-167", - "dateofocc": "2003-05-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 May at 0500 UTC while underway in position 01-04N, 105-06E off Bintan Island. Eight persons armed with guns and knives took master, chief engineer, chief officer and watchman hostage, stole ship's c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.099999999877127, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-168", - "dateofocc": "2003-05-07", - "subreg": "93", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified container ship reports suspicious approach 7 May at 2345 local time while underway in position 05 11N, 104 58.5E in the South China Sea. Two unlit craft were observed off port and starboard bows at a range of 1.2nm whic", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.983333300246557, 5.183333300076754] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-169", - "dateofocc": "2003-05-09", - "subreg": "55", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BULGARIA: An unidentified bulk carrier was boarded 9 May between 1630 and 1915 local time while berthed at Bourgas. Thieves entered the master's cabin and stole ship's cash (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [27.483333299988544, 42.483333299574269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-170", - "dateofocc": "2003-05-18", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier was followed 18 May at 0745 local time by six persons in two speedboats while underway in position 12 21N, 045 12E, 30 mi SE of Aden. The bulk carrier was followed for 45 minutes and when the boats approached", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.200000000368163, 12.349999999800445] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-171", - "dateofocc": "2003-05-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 17 May at 1010 local time while underway in position 12 53.2N, 049 22.5E. Twelve persons in a vessel towing two small boats approached to within 1 nm and then transferred to the small", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.38333330006725, 12.883333300235847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-172", - "dateofocc": "2003-05-17", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports suspicious approach 17 May at 0930 UTC by two speedboats with four persons each while underway in position 13 12N, 048 41E. Ship raised alarm and crew activated fire hoses, whereupon boats moved away (I", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.683333300134507, 13.200000000232592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-132", - "dateofocc": "2002-04-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified cargo ship was boarded 26 Apr at 0030 UTC while at working anchorage, Tanjung Manis. The thieves broke into forward storeroom and stole ship's stores. Master reported to local police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.303055599560935, 3.363611099927255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-173", - "dateofocc": "2003-05-17", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified cargo ship reports being chased 17 May at 0750 local time while underway in position 14 42.2N, 051 34E. Three \"well-equipped\" fast craft doing 20 knots pursued the ship for 1 hour 15 minutes before master raised alarm, cre", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.566666700425685, 14.699999999831448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-174", - "dateofocc": "2003-05-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports attempt to board 16 May at 0400 local time while underway in position 12 18N, 047 33E. Six persons in a speedboat followed for one hour before heading for the ship and attempting to board. Crew raised a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.550000000399166, 12.299999999933732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-175", - "dateofocc": "2003-05-15", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified chemical tanker reports being followed 15 May at 1030 local time while underway in position 13 24.8N, 049 09.0E. Five speedboats containing 5 to 6 persons each followed at a distance of 3 nm. When boats approached to withi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.149999999731449, 13.416666699596647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-176", - "dateofocc": "2003-05-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded16 May at 0100 UTC while at Chittagong anchorage 'A'. Five persons armed with steel bars boarded at bow but jumped overboard and escaped empty handed when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-11", - "dateofocc": "2004-01-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 4 Jan at 2230 UTC while anchored in position 01-21S 116-58E at Balikpapan. Five persons gained access via the hawse pipe, entered the bosun's store, and store ship's stores and safety equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.349999999653392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-12", - "dateofocc": "2004-01-10", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified container ship was boarded 10 Jan at 2330 local time while anchored in position 12-12.2S 077-13.0W anchorage 12, Callao. Three persons armed with guns and knives entered engine room and stole spare parts.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.216666699710231, -12.370000000135633] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-13", - "dateofocc": "2004-01-02", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: An unidentified chemical tanker reports detecting two unlit boats 2 Jan at 1330 UTC while underway in position 01-04.3N 103-36.0E. The two boats crossed the tanker's bow, switched on powerful searchlights and approached at high speed.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.071666700397998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-14", - "dateofocc": "2004-01-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The bulk carrier (ROSINA TOPIC) was boarded 12 Jan at 0230 local time while anchored at Samarinda in position 01-02S 117-15E. Four persons armed with long knives and steel bars gained access via the hawse pipe and threatened the duty seaman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.249999999865395, -1.03333329965659] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-15", - "dateofocc": "2004-01-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 10 Jan during the early morning at Tarahan coal terminal. Armed persons entered the engine room and stole spare parts.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.854444400070747, 3.283333299745493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-16", - "dateofocc": "2004-01-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified LPG tanker reports attempt to board 17 Jan at 0330 local time while ship was anchored at Tema. Persons in two boats approached but fled when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.595833300421646, 5.600555600057362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-17", - "dateofocc": "2004-01-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 17 Jan at 2100 local time while at anchorage Alpha, Bangladesh. Four armed persons gained access via the stern but fled empty handed when anti-piracy watch responded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.91499999979527, 21.70833329964438] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-18", - "dateofocc": "2004-01-14", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports suspicious approach 14 Jan at 1423 UTC while underway in position 01-42.6N 105-48.1E. Two speedboats approached and one crossed under bows,but moved away when crew directed searchlights against them.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.801666699836915, 1.706666699694608] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-19", - "dateofocc": "2004-01-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified refrigerated cargo ship reports two attempts to board 22 Jan at 0255 and 0350 local time while anchored at Tema. The first occasion involved seven persons in a single boat, while the second involved about 20 persons in two boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-20", - "dateofocc": "2004-01-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified refrigerated cargo ship was boarded 22 Jan at 0030 UTC while anchored .7 mi. from the Tema breakwater. Three persons stole ship's stores before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-21", - "dateofocc": "2004-01-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Jan at 1215 UTC while anchored in position 01-11S 116-46E, Balikpapan. Ten persons armed with knives assaulted the duty seaman and tied him up while they stole ship's property and escaped down the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, -1.18333330015605] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-22", - "dateofocc": "2004-01-27", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified container ship reports attempt to board 27 Jan at 0350 local time while in position 18-33.8N 072-22.9W, anchorage 'd', Port au Prince. Four persons armed withknives tried to board using grappling hooks but fled when duty seaman r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.381666699918071, 18.563333300203681] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-23", - "dateofocc": "2004-01-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: An Italian yacht captain was shot dead 28 Jan after he and two companions had been robbed in the early morning hours while the South African-flag yacht (JOE'S DOG) was about 50 km from Isla Margarita on a voyage from St. Vincent to Puerto la", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.792777799749729, 11.092777799725297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-24", - "dateofocc": "2004-01-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "NIGERIA: An unidentified supply vessel was boarded 28 Jan at 1515 local time while berthed at Ohne Port. Three persons tried to steal ship's stores but jumped into their canoe and fled when duty seaman raised alarm. Seaman was slightly injured in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.095277799724215, 4.182499999943218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-25", - "dateofocc": "2004-01-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "YEMEN: An unidentified cargo ship reports \"several\" attempts to board 29 Jan at 0555 local time while underway in position 14-34.6N 049-33.5E, 7.5 nm from Ash Shihr Oil Terminal.Four persons, armed with shotguns, made passes at the ship until crew sound", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.558333300050435, 14.576666699742077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-103", - "dateofocc": "2002-03-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: The Liberian flag cargo ship (SEA BRILLIANCE) was one of two ships attacked during the night of 31 Mar-1 Apr at Owendo mooring station. Master and chief mate were injured and the mate hospitalized. The ship's safe was emptied.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.500000000202874, 0.283333299648461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-104", - "dateofocc": "2002-03-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: The Cyprus-flag cargo ship (TIM BUCK) was one of two ships attacked during the night of 31 Mar-1 Apr at Owendo mooring station. Master reported seriously injure din machete attack. This marks three attacks accompanied by significant violence in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.500000000202874, 0.283333299648461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-105", - "dateofocc": "2002-04-05", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified cargo ship reports being \"chased closely\" 5 Apr at 0330 UTC while underway in position 00-07N 043-58E off Somalia. Five speedboats with six or seven armed persons each approached form both sides. Ship altered course and incre", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.966666700000076, 0.116666699975895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-106", - "dateofocc": "2002-04-04", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified tanker reports suspicious approach 4 Apr at 0745 UTC while underway in position 14-21N 050-41E. Five speedboats each with 3 to 4 persons approached on the starboard beam at a distance of about five miles. The five boats pos", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.683333300199195, 14.349999999865133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-107", - "dateofocc": "2002-04-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified barge under tow in position 08-55N 076-05E was boarded and robbed 3 Apr at 0230 UTC off Quilon port. Three persons boarded the barge from two boats with four persons each. The thieves stole mooring lines.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.083333299941444, 8.916666699900759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-108", - "dateofocc": "2002-04-07", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTERN RED SEA: An unidentified special purpose ship reports suspicious approach 7 Apr at 0950 UTC by towboats with three men each. Ship was underway in position 13-16.5N 043-07.7Ewhen boats were observed on reciprocal course. At one mile boats revers", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.128333300283145, 13.274999999583031] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-109", - "dateofocc": "2002-04-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded and robbed 5 Apr at 0100 local time while anchored at Belawan. Three persons climbed the anchor chain, broke into the forward locker and stole ship's stores. When crew was alerted the thieves jumpe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.775000000099737, 3.925000000224941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-110", - "dateofocc": "2002-03-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "GHANA: An unidentified bulk carrier was boarded 30 Mar at 2250 UTC while at Tema anchorage. About thirteen persons boarded from a small wooden boat via the anchor chain. Crew chased them and they jumped overboard and escaped, apparently without stealing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-111", - "dateofocc": "2002-04-10", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT SHIP", - "descriptio": "SOMALIA: An unidentified Ro-Ro reports suspiciousapproach 10 Apr at 1200 UTC while underway in position 00-56S 043-41E 70 miles from Chisimayo. Three white boats approached from the port side and followed when the ship altered course. Two other white", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.683333299972844, -0.933333299923163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-112", - "dateofocc": "2002-04-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "An unidentified cargo ship was boarded 12 Apr at 0430 local time while anchored at Chittagong. Four persons armed with knives stole ship's stores before watch raised alarm and the intruders escaped in a motorboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-113", - "dateofocc": "2002-04-12", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA:An unidentified bulk carrier reported suspicious approach 12 Apr at 2140 UTC while underway in position 04-38N 098-42E by a boat off its starboard side. Crew directed searchlight at the boat which withdrew after ten minutes", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 4.633333299744208] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-114", - "dateofocc": "2002-04-09", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG carrier was boarded 9 Apr at 0200 local time while anchored at Bontang. Thieves boarded via the anchor chain, broke into forecastle and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.483333300201139, 0.100000000078751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-115", - "dateofocc": "2002-04-12", - "subreg": "94", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EAST CHINA SEA: An unidentified chemical tanker reports suspicious approach 12 Apr at 0100 local time while underway in position 25-22.7N 120-19.4E. A very fast craft approached abeam.Ship's master altered course, switched on all lights, and directed A", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.323333300185027, 25.378333299933956] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-116", - "dateofocc": "2002-04-16", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU:An unidentified bulk carrier reported attempt to board 16 Apr at 0800 UTC while anchored at Callao. Two persons in speedboat approached and one tried to board via anchor chain but fled when crew alerted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-117", - "dateofocc": "2002-04-23", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship was boarded 23 Apr at 0155 local time while approaching the pilot buoy at Guayaquil. Four persons were spotted on deck near container bay 15 by a guard at whom they fired two shots before jumping over side and fl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-324", - "dateofocc": "2002-11-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 6 Nov at 0145 local time while in position 13 05.8N, 080 21.8E, Chennai anchorage. Three persons from a speedboat used grappling hooks to gain access. Alert watch sounded alarm and the intruders jumped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.366666700098051, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-325", - "dateofocc": "2002-11-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: U. S. flag roll-on/roll-off ship (MAERSK CONSTELLATION) was boarded 18 Nov at 2130 local time while anchored off Dar es Salaam anchorage no. 2. Thieves armed with knives boarded at bow via anchor chain and took bosn hostage. Thieves stole bos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.299999999907584, -6.816666700311316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-326", - "dateofocc": "2002-11-16", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN-SOCOTRA: An unidentified bulk carrier reports being called on VHF 16 Nov at 1616 UTC by persons in a small boat who attempted to get vessel to alter course toward the boat under the ruse that it would run into fishing nets. Bulk carrier wa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.566666699623397, 11.550000000134276] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-327", - "dateofocc": "2002-11-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 18 Nov at 0210 local time while at anchor off fairway buoy, Cochin. One person boarded at forecastle while four accomplices remained in their boat. Duty seaman raised alarm and intruder jumped overboar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.233333300440904, 9.966666699799816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-328", - "dateofocc": "2002-11-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was approached 17 Nov at 0550 local time while anchored in position 22 15N, 091 45E, Chittagong. Duty officer raised alarm and boats moved away, but at 0640 thieves in a boat stole all the zinc anodes from rudde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-329", - "dateofocc": "2002-11-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 7 Nov at 0205 local time at Chittagong anchorage. Seven persons armed with knives, crowbars and large hooks boarded at the stern and threatened duty cadet with a knife. Duty seaman raised alarm and int", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-330", - "dateofocc": "2002-11-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified VLCC was boarded 12 Nov at 1845 UTC while anchored in position 01 21.5S, 116.58E at Balikpapan. Five persons climbed anchor chain but escaped when spotted and alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.366666699550535] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-331", - "dateofocc": "2002-11-14", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified bulk carrier was subject to attempted boarding 14 Nov at 2115 UTC while underway in position 17 51.5N, 120 08E, about 15 nm off Luzon's west coast. Several unlit boats approached of which two moved toward the ship at high s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.133333300331742, 17.86666670032514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-332", - "dateofocc": "2002-11-22", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC: An unidentified LPG carrier was boarded 22 Nov at 0030 local time while moored at buoys, Rio Haina by six persons, one armed with a rifle. Duty seaman sounded alarm and thieves jumped into the sea. Crew later discovered safety equi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-333", - "dateofocc": "2002-11-19", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports being approached 20 Nov at 1810 UTC by two large speedboats. Ship was underway in position 12 05N, 051 40E at time. Boats approached to within 4 m and increased speed from 5.5 knots to 15.5 knots. Mast", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.666666700159169, 12.083333299670358] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-334", - "dateofocc": "2002-11-19", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN-SOCOTRA: A bulk carrier reports that 19 Nov at 2250 UTC, while underway in position 13 04N, 057 07E, east of Socotra, persons aboard a large boat called via VHF and ordered master to alter course toward them. Master ignored the call, illum", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.11666670002063, 13.066666699630275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-335", - "dateofocc": "2002-11-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAB-EL-MANDEB: An unidentified bulk carrier reports suspicious approach 21 Nov at 0503 UTC while underway in position 12 41N, 043 20E. Eight persons in two white speedboats \"attemptedto board\" (NFI) but crew raised alarm and pressurized fire hoses and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.333333300006473, 12.683333299869616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-336", - "dateofocc": "2002-11-17", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: According to a 24 Nov report two fishermen were robbed of their outboard engines a week prior by a group of pirates armed with M16s. The thieves fled in the direction of the southern Philippines. Malaysian forces have added boats to patrol th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.999999999664738, 6.999999999672355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-337", - "dateofocc": "2002-11-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: An unidentified fishing boat was fired upon 17 Nov at 0130 local time while casting nets 67 nm off Pantai Remis, Perak. One crew member was struck by a bullet before the captain steered the boat toward the coast.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.500000000033651, -2.500000000185196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-177", - "dateofocc": "2003-05-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 15 May at 1850 UTC while at Chittagong anchorage 'A'. Two persons boarded at the stern but escaped empty handed when duty seaman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-178", - "dateofocc": "2003-05-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports attempted boarding 12 May at 0445 local time while underway in position 05 12N, 098 33E. Ship increased speed and took evasive maneuvers when approached by persons in three speedboats. Crew dire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.550000000249838, 5.199999999973898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-179", - "dateofocc": "2003-05-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 17 May at 0050 local time while underway in position 03 07N, 105 10E in the Anambas Islands. Three small craft were observed on radar to increase speed from 15 to 35 knots and head directly to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.166666699640984, 3.116666700072926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-180", - "dateofocc": "2003-05-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 16 May at 1940 UTC while in position 01 42.1N, 101.26.9E, Dumai anchorage. Three persons armed with long knives stole engine spares and escaped when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-181", - "dateofocc": "2003-05-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 14 May at 0230 local time while underway in position 01 35S, 117 16.8E, 25 miles from the outer buoy, Balikpapan. The pirates stole two life rafts and a mooring line. Earlier that day five persons", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.283333299834908, -1.583333299989135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-182", - "dateofocc": "2003-05-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was pursued and fired upon by machine gun fire 13 May at 0545 UTC while underway in position 04 31N, 098 23E off Kuala Langsa, Sumatra. Four persons dressed in military style uniforms and armed with machine guns w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.383333299853234, 4.516666699938355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-183", - "dateofocc": "2003-05-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 13 May at 0445 local time while underway in position 01 25N, 105 25E off Bintan Island. Five persons armed with knives and guns boarded at stern and took a crew member hostage. They went to the bri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.416666699873929, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-184", - "dateofocc": "2003-05-15", - "subreg": "91", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified cargo ship reports being chased 15 May at 0845 local time while underway in position 16-25.7N 119-38.8E, 10 nm off Luzon. Three speedboats with 4 to 5 persons each were spotted by crew who mustered and sounded ship's whist", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.649999999763168, 16.416666699693678] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-185", - "dateofocc": "2003-05-12", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 12 May at 0340 local time while anchored off buoy no. 24, Buenaventura. Four persons armed with long knives boarded at the forecastle, took duty seaman hostage and tied him up. They broke into forecast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-186", - "dateofocc": "2003-05-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified chemical tanker reports being followed 20 May at 0600 UTC while underway in position 14 14.5N, 050 29.7E. Two speedboats paralleled the tanker's course for 30 minutes until crew mustered and activated fire hoses, whereupon", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 14.250000000131649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-187", - "dateofocc": "2003-05-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 21 May at 1945 local time while at Chittagong anchorage 'B'. One person armed with a steel bar gained access at the forecastle but jumped overboard and escaped in a boat with three accomplices whe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-188", - "dateofocc": "2003-05-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 25 May at 0200 local time while underway in position 01 02.3N, 105 00.3E off Pulau Bintan. Twelve persons armed with guns and knives stole ship's cash and equipment and crew's belongings before leaving", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.583333299966853, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-189", - "dateofocc": "2003-05-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 24 May at 0315 local time while in position 02 57S, 118 35E in the South Makassar Strait. The thieves boarded at the forecastle and stole a life raft. Boarding via the forecastle suggests ship was at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.583333299966853, -2.949999999884994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-190", - "dateofocc": "2003-05-23", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship was boarded 23 May at 2315 local time while anchored in position 1016.0N, 107 05.2E, 3 nm south of Vung Tau. Two persons armed with knives were spotted by duty officer who raised alarm, directed lights at their wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.083333300044671, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-26", - "dateofocc": "2004-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: The Romanian flag bulk carrier (CAPE HARALAMBOS) was boarded 29 Jan at 0135 local time while underway in position 01-10.6N 103-27.2E. Three persons armed with knives assaulted the master and tied him in his cabin. The pirates stole c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.491666700059, 1.136666700134811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-27", - "dateofocc": "2004-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: The Romanian flag bulk carrier (CAPE HARALAMBOS) was boarded 29 Jan at 0135 local time while underway in position 01-10.6N 103-27.2E. Three persons armed with knives assaulted the master and tied him in his cabin. The pirates stole c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.453333300008183, 1.176666700387898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-28", - "dateofocc": "2004-01-30", - "subreg": "71", - "hostility_": "PRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker reportsattempted boarding 30 Jan at 1530 UTC while underway in position02 02S, 108 33E, south of Karang Ontario light house, Karimata Strait. Four boats approached the tanker; one each from port and starboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.549999999673958, -2.033333299688934] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-29", - "dateofocc": "2004-01-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 30 Jan at 0330 local time while underway in position 01 23.5N, 117 10.0E, 23 nm from Balikpapan. Four persons armed with long knives stole two life rafts and fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.166666700029054, 1.391666699724851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-30", - "dateofocc": "2004-02-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "VIETNAM: Two fishing boats were attacked by gunfire and hijacked 1 Feb off Kien Giang Province. Three pirates pulled alongside the two boats and opened fire, forcing the eighteen crew to jump into the water. The pirates then stole the boats and fled i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.128888899678884, 12.302222200386439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-31", - "dateofocc": "2004-02-02", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified LPG tanker was boarded 5 Feb at 0815 UTC while in position 01-24-09S 048-30-18W at Belem inner anchorage. Four persons operating form a small boat stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.505000000130622, -1.402499999648342] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-32", - "dateofocc": "2004-02-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "DERELICT VESSEL", - "descriptio": "BANGLADESH: The Mongolian flag (STAR 4) was boarded 7 Feb at 0300 local time while at Chittagong inner anchorage by a gang which stole property from the ship which was awaiting scrapping. Two watchmen who tried to resist the thieves were injured and la", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-33", - "dateofocc": "2004-01-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "SOUTHERN RED SEA: An unidentified supply vessel was challenged and stopped 30 Jan by 8 persons armed with automatic weapons operating from an 18-foot unmarked high-powered launch. 5 persons wore military uniforms. 6 person boarded the supply vessel, h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [40.267777799747023, 17.348611099610594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-34", - "dateofocc": "2004-02-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "MALACCA STRAIT: An unidentified tug, with barge in tow, was fired upon 9 Feb at 1900 UTC while underway in position 04-37N 099-28E in the Northern Malacca Strait. Ten persons in a wooden fishing boat opened fire with automatic weapons and the tug's cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.466666700445899, 4.616666699671782] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-35", - "dateofocc": "2004-02-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: An unidentified bulk carrier was boarded 3 Feb at 1955 local time while underway in position 01-05.42N-103-34.03E, west of Phillip Channel. Crew raised alarm and the single intruder fled empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.090277800172998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-36", - "dateofocc": "2004-02-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 4 Feb at 1550 UTC while underway in position 02-43N 118-34E, Celebes Sea. Ten persons armed with knives and crowbars and operating in three speedboats ten meters in length were deterred w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.56666669989454, 2.716666700239841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-37", - "dateofocc": "2004-02-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Four crew members of the 640-ton tanker (CHERRY 201) were reported shot dead 5 Feb following the failure of negotiations for payment of ransom in a previously unreported 5Jan hijack of the ship with a cargo of 1,000 tons of palm oil off Aceh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.398333299658646, 3.785555599589486] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-38", - "dateofocc": "2004-02-12", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was approached 12 Feb at 0744 UTC while drifting in position 05-09N 004-21E off Lagos by five persons armed with guns in a tugboat. Master raisedalarm and ship gathered speed whereupon the tug moved away toward Esc", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.350000000441014, 5.150000000107184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-118", - "dateofocc": "2002-04-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: The refrigerated carrier (FRIO JAPAN) was boarded 20 Apr at 0200 while berthed at Port Harcourt. Six persons armed with clubs and machetes overpowered two security guards, injuring one. While crew locked themselves in the accommodation block", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-119", - "dateofocc": "2002-04-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified special purpose ship reports suspicious approach 18 Apr at 0848 local time while in position 12-22.6N 044-12.9E. Six men in a seven-meter boat approached to a distance of about 3 cables but withdrew when fire hoses were di", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.215000000205919, 12.376666700210535] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-120", - "dateofocc": "2002-04-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: An unidentified bulk carrier reports attempt to board 17 Apr at 1030 local time while underway in position 14-08N 049-39E off Mukalla. Crew activated fire hoses at six fast boats which withdrew after about 30 minutes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.650000000197281, 14.133333299601759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-121", - "dateofocc": "2002-04-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "STRAIT OF MALACCA: At 0630 local time 17 Apr pirates armed with rifles seized four fishing trawlers and their crew of twelve and took them to Sumatra where they were held for ransom of RM 30,000 (approx $7,400). Crew released when ransom paid then lodg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.006666700265555, 3.171111099945733] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-122", - "dateofocc": "2002-04-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: An unidentified fishing trawler was hijacked 10 Apr after departing Kuching, Sarawak. Trawler was taken to Pemangkat, Kalimantan where its owners were negotiating release.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.81666669990102, 2.283333299713149] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-123", - "dateofocc": "2002-04-18", - "subreg": "72", - "hostility_": "PRIATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 18 Apr at 2315 local time while anchored at Adang Bay. One person armed with a knife escaped with ship's stores when crewraised alarm and fled in a waiting boat containing three accomplices", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.654999999922552, -5.714999999619181] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-124", - "dateofocc": "2002-04-22", - "subreg": "93", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EAST CHINA SEA: An unidentified bulk carrier reports suspicious approach 22 Apr at 2000 local time while underway in position 10-46N 111-12E 130 miles off the coast of Vietnam. Two unlit boats making 25 knots came up from astern and approached to withi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.199999999804618, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-125", - "dateofocc": "2002-04-25", - "subreg": "21", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PANAMA (PACIFIC):An unidentified fishing vessel was attacked 25 Apr in the Bay of Panama about 1 nm from Brujas. Six persons armed with revolvers and automatic weapons stole 1,200 lb of fish product. Captain was shot in stomach, engineer was shot six t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.541944400075977, 8.590555599641448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-126", - "dateofocc": "2002-04-27", - "subreg": "22", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified refrigerated cargo ship reported suspicious approach 27 Apr at 0230 UTC while underway at 21 knots off Guayaquil. A speedboat containing four persons passed close abeam. When crew switched on lights and sounded alarm boat with", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-127", - "dateofocc": "2002-04-25", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship reported an attempt to board 25 Apr while underway in position 01-10S 081-20W 21 nm west of Isla de la Plata. Three persons in a speedboat came within three meters of ship but withdrew when crew mustered and swit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.333333299645403, -1.166666700083624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-128", - "dateofocc": "2002-04-24", - "subreg": "22", - "hostility_": "24-APR-2002", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: The Antigua flag container ship (MAERSK LA GUAIRA) was boarded early 24 Apr as it entered Manta harbor. Thieves broke in a container at that time. Later the same day as the ship was entering Guayaquil persons boarded the ship at the entrance", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.716666700273038, -0.949999999820307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-129", - "dateofocc": "2002-04-23", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship was boarded 23 Apr at 0155 local time while approaching the pilot buoy at Guayaquil. Four persons were spotted on deck near container bay 15 by a guard at whom they fired two shots before jumping over side and fl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-130", - "dateofocc": "2002-04-28", - "subreg": "62", - "hostility_": "SUSPICICIOUS APPROACH", - "victim_d": "MERCHANET VESSEL", - "descriptio": "SOUTHERN RED SEA: An unidentified bulk carrier reports suspicious approach 28 Apr at 1030 local time while underway in position 14 50N, 041 55E. A boat with twenty persons aboard approached and followed the bulk carrier for twenty minutes during which", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.916666700068674, 14.833333300433765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-131", - "dateofocc": "2002-04-26", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified tanker was boarded 26 Apr at 0400 local time while at IOI berth, Sandakan. Thieves broke into forward storeroom and stole ship's stores before escaping in a boat. Storeroom had anti-piracy lock (not specified) but thieves remo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.833333300142726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-338", - "dateofocc": "2002-11-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 Nov at 2030 UTC while anchored in position 03 12S, 116 20E at Pemancingan. Six persons armed with knives boarded via the anchor chain from a wooden boat. Duty officer raised alarm, crew mustered, an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.333333299669334, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-339", - "dateofocc": "2002-11-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 20 Nov between 1000 and 1100 UTC while anchored in position 01 24.0S, 116 56.8E at Balikpapan. Six persons armed with long knives and crowbars came up the anchor chain, broke open forward store and stole sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.949999999765737, -1.400000000419425] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-340", - "dateofocc": "2002-12-02", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified cargo ship was boarded 2 Dec between 0100 and 0130 local time while inbound to Georgetown. Thieves stole stores from forecastle locker and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-341", - "dateofocc": "2002-11-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "NIGERIA: A Nigerian fishing trawler was attacked 28 Nov while anchored at the Fairway Buoy, East Mole, Lagos. About 20 masked and painted thieves approached the boat in two high-speed motorboats and stole part of their catch. Some of the fishing boat'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-342", - "dateofocc": "2002-12-01", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "STRAIT OF MALACCA: An unidentified yacht reports being intercepted and followed 1 Dec during the night while underway in position 01 27.5N, 104 37.3E. Three boats made the intercept. One directed its searchlight aT the yacht while following for 40 minu", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-343", - "dateofocc": "2002-12-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "INDONESIA: An unidentified tug and barge were hijacked 1 Dec at 2030 local time while anchored in position 01 03.46N, 103 23.54E. Eight persons armed with guns assaulted the second engineer and tied him to a barge anchored nearby before escaping in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.399999999912097, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-344", - "dateofocc": "2002-11-26", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified ro-ro ship was boarded 26Nov at 2150 UTC while anchored in position 00 14.7S, 117 32.8E at Samarinda anchorage. Three persons gained access via the stern andtried to steal a life raft. Crew raised alarm and the three fled em", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-345", - "dateofocc": "2002-11-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified ro-ro vessel was boarded 25 Nov at 0100 UTC while anchored in position 00 14.7S, 117 32.8E at Samarinda anchorage (presumably same vessel as in #20020344). Persons posing as stevedores broke into bosun's stores, stole safety", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-346", - "dateofocc": "2002-11-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 Nov at 2030 UTC while anchored in position 03 12S, 116 20E at Pemancingan. Six persons armed with knives boarded via the anchor chain from a wooden boat. Duty officer raised alarm, crew mustered, an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.333333299669334, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-347", - "dateofocc": "2002-09-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAITTen pirates armed with guns and long knives approached a chemical tanker undersay. Eight pirates boarded from stern while two remained in long boat with two outboard engines. Pirates took master and all officers hostage. They stole crew's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.716666699941186, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-348", - "dateofocc": "2002-11-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIAOn 2 Nov. at 1810Z pirates armed with long knives boarded container ship while underway. They entered bridge and threatened duty officer, who sounded alarm. Pirates escaped empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.950000000276987, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-349", - "dateofocc": "2002-11-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA. At 1830Z on 2 Nov. about eight pirates armed with long knives boarded chemical tanker at stern. Pirates tried to break open captain's safe but failed. They then took Ch. Engineer hostage, tied his hands, assaulted him, and robbed his personal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.933333300379843, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-350", - "dateofocc": "2002-12-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified bulk carrier was subject to attempted boarding 9 Dec at 0120 local time while underway 1 nm west of sea buoy at Buenaventura outer roads. Seven persons in a wooden motorboat attempted to board using grappling hooks but were re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-351", - "dateofocc": "2002-12-05", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: An unidentified cargo ship reported suspicious approach 5 Dec at 2355 local time while underway in position 16 24.9N, 061 24.2E. An unlit vessel was spotted on radar 8 nm ahead, proceeding at 5 knots. Unknown vessel increased speed to 25", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.400000000352463, 16.416666699693678] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-191", - "dateofocc": "2003-05-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified roll-on/roll-off ship was boarded 30 May at 0330 local time while anchored in position 06 17N, 003 22E at Lagos. Four persons armed with knives and wooden clubs assaulted duty seaman who nonetheless raised alarm. The thieves s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-192", - "dateofocc": "2003-05-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 30 May at 1950 local time while at Chochin anchorage. Ten persons boarded at the forecastle but jumped overboard and escaped when crew sounded alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.233333300440904, 9.966666699799816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-193", - "dateofocc": "2003-06-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was raided 2 Jun at 1030 local time while preparing to depart Mongla, with pilot on board. Twenty persons armed with long knives and axes threatened the crew, stole ship's property and stores, and left after 30", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 22.466666699754398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-194", - "dateofocc": "2003-05-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified livestock carrier reports interdiction 30 May at 0515 while underway in position 01 18.2N, 104 07.3E in the Johor Port pilot boarding ground. Two unlit boats with 4 to 7 persons each were sighted 6.5 cables (about .65 nm) ahead", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-195", - "dateofocc": "2003-05-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 31 May at 2355 while underway in position 01 03S, 107 17E near Mendanau Island, Gelasa Strait. Four persons armed with long knives took two crew hostage and held them at knifepoint. The remaining crew muster", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.283333300410845, -1.049999999553734] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-196", - "dateofocc": "2003-06-04", - "subreg": "25", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TRINIDAD & TOBAGO: An unidentified ro/ro was approached several times 4 Jun at 0605 UTC while underway in position 12 01.6N, 059 43.5W near Tobago Island. Five persons in a unlit fast craft came alongside several times but ship maneuvered evasively to", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.725000000079774, 12.026666700244164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-197", - "dateofocc": "2003-05-04", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "LIBERIA: The Antigua-flag cargo ship (ST. PAULI) was boarded 4 May (reported 4 Jun) at 0615 while awaiting pilot outside breakwater at Monrovia. Eight persons in fatigue uniforms demanded to board the ship from a big canoe, declaring they were part of a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.816666700440692, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-198", - "dateofocc": "2003-06-03", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TUG", - "descriptio": "GULF OF ADEN: An unidentified tug towing a tanker was shadowed 3 Jun while underway in position 12 45N, 045 38E. Two boats with seven men each were kept at bay when crew mustered and activated fire hoses. Twenty minutes later the same two boats approa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.633333300170818, 12.74999999963353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-199", - "dateofocc": "2003-05-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified fishing trawler was boarded 28 May at 1630 local time while underway off Pangkor Island, Perak. Pirates armed with guns shot and injured the master and kidnapped two crewmembers. Raids of this kind in the region gene", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.333333300051208, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-49", - "dateofocc": "2004-02-23", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN: An unidentified yacht reports being followed suspiciously 23 Feb at 1900 UTC while underway in position 13-45N 049-50E. Yacht's master took evasive action and boat moved away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.833333299767048, 13.749999999665818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-200", - "dateofocc": "2003-06-03", - "subreg": "74", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "SOUTH PACIFIC: An unidentified yacht reports suspicious approach by a grey colored fishing boat 3 Jun at 1315 local time while underway in position 11 32.6S, 116 49.2E between Christmas Island and Darwin, Australia, 190 nm south of Bali. Yacht attempted", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -11.550000000342948] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-201", - "dateofocc": "2003-06-13", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 13 Jun at 0140 local time while at the inner anchorage, Kingston. Four persons were spotted on the forecastle; duty officer raised alarm and the intruders fled empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.783333300082802, 17.966666700058568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-202", - "dateofocc": "2003-06-09", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 9 Jun at 0415 local time while five miles from the sea buoy, Kingston, awaiting a pilot. Duty officer sounded alarm and the thieves escaped with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.783333300082802, 17.833333299631477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-39", - "dateofocc": "2004-02-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "NDONESIA: Three trawlers with a total crew of 12 persons were boarded 2 Feb at 1100 local time at Pulau Jerajak. Twelve persons approached under the pretext of buying fish and when they got close five persons armed with M16 rifles took the 10 hostage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.314999999951738, 5.339722200284882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-40", - "dateofocc": "2004-02-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA: The Indonesian flag tug (SINGSING MARINER) and its barge (KAPUAS 68) with a cargo of 3,000 tons of palm oil were attacked 9 Feb at midnight on passage from Satui, Kalimantan for Butterworth, Malaysia. Four pirates boarded the barge, kidnappe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.057777800167685, -2.355277799617681] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-41", - "dateofocc": "2004-02-03", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified tanker was boarded 3 Feb between 0300 and 0400 while in position 20- 50.40N 107-08.20E at Hongay inner anchorage. Five persons stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.136666699965531, 20.840000000012026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-42", - "dateofocc": "2004-02-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 19 Feb at 0220 UTC while at Guanta port. Two armed persons threatened the bosun with knives but escaped empty handed when alarm was sounded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.511111099781886, 10.25055560025271] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-43", - "dateofocc": "2004-02-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: An unidentified Egyptian fishing vessel was hijacked in January by gunmen working for the Somali fishing firm Raas in what was termed a commercial dispute. Twenty-three of the24-person crew were freed 23 Feb at Beravo, about 150 km south of Mo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.91416670003747, 0.863333299721205] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-44", - "dateofocc": "2004-02-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 15 Feb at 0245 local time while at Dumai outer anchorage. Duty officer raised alarm; crew directed searchlights at boat withseveral persons, and manned charged fir hoses and boarding was abandon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-45", - "dateofocc": "2004-02-19", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "THAILAND: An unidentified yacht was boarded 19 Feb at 2005 local time while anchored off PV Island off Northern Kolanta, y two persons armed with big knives. Yacht master informed theIMB which in turn notified local authorities who arrived on the scene", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.111388899680605, 9.500555599553934] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-46", - "dateofocc": "2004-02-23", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified container ship was boarded 23 Feb at 0230 local time while at anchorage 'F', Port Au Prince. One persons boarded but fled empty handed, with 3 accomplices in aboat, when duty officer raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.350000000150828, 18.550833299562498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-47", - "dateofocc": "2004-03-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 29 Feb at 2300 UTC at Lagos anchorage. Four persons threw glass bottles and pieces of metal at crew as they stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-48", - "dateofocc": "2004-02-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN: An unidentified yacht was boarded 27 Feb at 1530 local time by persons armed with automatic rifles and big knives, while underway in position 13-25N 047-30E. The thieves stole cash and valuables from the yacht's crew and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.499999999633133, 13.416666699596647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-50", - "dateofocc": "2004-02-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NORTH ARABIAN SEA: An unidentified chemical tanker reports attempt to board 29 Feb at 0625 UTC while underway in position 24-43.6N 061-55.0E. Four persons in two speedboats moved away when alarm raised and crew mustered with activated fire hoses.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.916666699816119, 24.7266666996656] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-51", - "dateofocc": "2004-02-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "BANGLADESH: Seven trawlers were looted and one crew member is missing after pirates struck 27 Feb off Bangladesh's Patharghata Coast. Three trawlers were attacked at noon 30 km s. e. ofPatharghatta and 4 were attacked that night. The pirates reportedl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.333333299727769, 21.534999999688296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-52", - "dateofocc": "2004-02-29", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA-BAB EL MANDEB: An unidentified container ship reports suspicious approach 29 Feb at 1700 local time while underway at the \"Bab el Mandeb Traffic Separation Scheme\". Two speedboats came within 1.5 nm but moved away, possibly due to roug", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [38.341666700155372, 21.097777800305209] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-133", - "dateofocc": "2002-04-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Apr at 0210 local time while at Senipah anchorage. Two persons stole a life raft, lifejackets and ship's stores. When crew mustered thieves jumped overboard and escaped in a small boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.216666699895768, -1.049999999553734] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-134", - "dateofocc": "2002-04-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 27 Apr at 1300 UTC while anchored at Chittagong anchorage 'A'. Armed persons were discovered and jumped overboard escaping with safety equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-135", - "dateofocc": "2002-04-23", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified LPG carrier reports suspicious approach 23 Apr at 0500 local time while underway in position 01-41.4S, 102-51E. Five persons in a boat followed the ship but moved away after crew were alerted.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.849999999579552, -1.684444400398604] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-136", - "dateofocc": "2002-05-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 5 May in the early morning while at anchor at Tanjung Priok. The thieves entered the engine room, tied up the 4th engineer and stole his radio as well as engine spares and escaped before alarm was raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-137", - "dateofocc": "2002-05-02", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 2 May at 2359 while at Jorong anchorage. About 15 to 20 persons were spotted already aboard by the anti-piracy watch which raised alarmand mustered crew. Thieves left after stealing ship's stores. Cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.977222199637481, -4.40722220032626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-138", - "dateofocc": "2002-04-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified tanker was subject to attempted boarding during the night of 2 May while anchored at Golden Grove on the Demerara River, Georgetown, Guyana. Boarding was aborted when crew raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-139", - "dateofocc": "2002-05-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified chemical tanker was boarded 2 May at 0200 local time while anchored at Accra. Ship's stores stolen before alarm raised and port control informed. Police patrol boat detained one boat with stolen stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.20000000002085, 5.533333300043068] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-140", - "dateofocc": "2002-05-11", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports suspicious approach 11 May at 2100 local time while underway in position 12-30 N, 046-23E. An unlit boat approached from the port bow and crossed ahead to try to approach from the starboard side. Crew", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.383333299970218, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-141", - "dateofocc": "2002-05-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 12 May at 1555 UTC while underway in position 00-55N 105-11E near the Berhala Strait. Seven pirates armed with long knives broke open accommodation f\\door and took a cadet hostage at knifepoint forc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.183333299713411, 0.916666699642064] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-15", - "dateofocc": "2002-12-31", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified bulk carrier reports attempt to board 31 Dec at 2310 local time while at outer anchorage, Guayaquil. Five men in a wooden boat were spotted during attempt and withdrew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.883333299913261, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-142", - "dateofocc": "2002-05-11", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports three warning shots being fired at it by \"pirates\" 11 May at 2140 local time while ship was anchored in position 01-19S 127-45E in the Molucca Sea. Ship weighed anchored as pirates kept firing at bridge.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [127.749999999755232, -1.316666699683822] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-143", - "dateofocc": "2002-05-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 10 during \"hours of darkness\" while at berth PT ISAB Wharf, Panjang. Thieves boarded unobserved and broke into forecastle stores stealing a large quantity of ship's stores. Crew suspect ship was boarded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, -5.466666700312658] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-144", - "dateofocc": "2002-05-09", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified cargo ship was boarded unnoticed 9 May at 2315 local time while at anchorage E2 off Mui Vung Tau. Thieves boarded form two boats and stole a quantity of ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-145", - "dateofocc": "2002-05-09", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Six persons in two boats attempted to board an unidentified cargo ship 9 May at 0635 local time at anchorage off Mui Vung Tau. Alert crew prevented boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-146", - "dateofocc": "2002-05-13", - "subreg": "22", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified cargo ship reports suspicious approach and probable attempt to board 13 May at 0220 UTC while underway in position 00-52S 081-16W off Isla de la Plata. A fast speedboat with four persons came alongside and remained there as ship", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.266666699706263, -0.866666699984023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-352", - "dateofocc": "2002-11-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: An unidentified Indonesian fishing trawler was attacked 28 Nov at 2230 local time while off Bukit Tinggi, Tuaran, Sabah. Two assailants armed with M-16 rifles boarded from a small boat and demanded the captain turn over his identification doc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.99999999960005, 6.999999999672355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-353", - "dateofocc": "2002-12-09", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported being followed 9 Dec between 1000 and 1100 local time by a small speed boat while underway in position 05 51N, 096 20E. Two persons in boat were described as wearing big hats and with their faces partly", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.333333299921833, 5.85000000003987] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-354", - "dateofocc": "2002-12-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 Dec at 2300 local time while anchored at Semarang. Persons posing at stevedores hid behind a cargo of plywood on a barge alongside the ship before trying to board. Boarding averted when they were s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.416666700035591, -6.950000000014313] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-355", - "dateofocc": "2002-11-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SINGAPORE STRAIT. Four pirates boarded a fishing trawler. One threatened the captain at gun point and with one other pirate took him to a secluded island while two pirates remained aboard vessel. Pirates told captain to telephone his family and ask for r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.499999999613181, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-356", - "dateofocc": "2002-12-15", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship was boarded 15 Dec between 0500 and 0545 local time while at the fairway buoy, Kingston. Thieves stole ship's property and broke into a container, stealing cargo.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.783333300082802, 17.966666700058568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-357", - "dateofocc": "2002-12-06", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified tanker was boarded 6 Dec at 0110 UTC while anchored in position 10 19.2N, 075 31.5W Bahia de Cartagena. Five persons climbed up anchor chain and broke into Bosun's store. Crew sounded alarm and thieves jumped overboard, escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-358", - "dateofocc": "2002-12-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier reported attempT to board 11 Dec at 1805 local time while at Lagos anchorage. Six persons armed with M16s attempted to climb the anchor chain from a speedboat but aborted the attempt when confronted with an alert c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-359", - "dateofocc": "2002-12-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: An unidentified container ship was boarded 10 Dec at 2300 local time while anchored 4 nm from Colombo port. Armed persons broke open four containers but fled empty handed when crew sounded alarm and mustered.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.849999999735076, 6.949999999805641] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-360", - "dateofocc": "2002-12-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 17 Dec at 0530 local time while at Samarinda anchorage. Five persons armed with knives boarded on the starboard side. Duty seaman was injured while escaping after sounding alarm. The intruders jumped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.116666700162341, 0.51666669980898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-361", - "dateofocc": "2002-12-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: A liquefied gas carrier was boarded 16 Dec at 0610 local time at Jakarta anchorage. Four persons stole safety equipment and escaped in a wooden boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-362", - "dateofocc": "2002-12-15", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 15 Dec at 1805 local time while anchored in position 04 01.7S, 115 59.97E, 2.3 nm from IBT anchorage, Pulau Laut. Two persons from a high speed boat attempted to climb the anchor chain bu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.99999999960005, -4.033333299753622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-363", - "dateofocc": "2002-12-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Dec at 1320 local time while anchored at Jakarta. Armed person from a small boat stole ship's property and stores before escaping in their boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-364", - "dateofocc": "2002-12-09", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported being followed 9 Dec between 1000 and 1100 local time by a small speed boat while underway in position 05 51N, 096 20E. Two persons in boat were described as wearing big hats and with their faces partly", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.333333299921833, 5.85000000003987] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-1", - "dateofocc": "2002-11-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: An unidentified Indonesian fishing trawler was attacked 28 Nov at 2230 local time while off Bukit Tinggi, Tuaran, Sabah. Two assailants armed with M-16 rifles boarded from a small boat and demanded the captain turn over his identification docu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.99999999960005, 6.166666700036672] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-2", - "dateofocc": "2002-12-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "INDONESIA: An unidentified tug and barge were hijacked 22 Dec at 0400 local time from Tanjung Uban, Batam. The hijackers took the master and mate toward shore in a speedboat and later released the mate who made a report at Tanjung Pinang, Bintan. The tu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-203", - "dateofocc": "2003-05-25", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified cargo ship was robbed 25 May (reported 17 Jun) while at South Pier, Port Au Prince. Forecastle store was broken into and ship's stores stolen along with bagged cargo either by stevedores r persons who boarded with them (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.350000000150828, 18.550000000360683] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-204", - "dateofocc": "2003-06-12", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 12 Jun at 2300 local time while at Barranquilla anchorage. Three persons n a boat gained access at the forecastle using grappling hooks. Crew raised alarm and intruders escaped, apparently empty handed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.799999999915315, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-205", - "dateofocc": "2003-06-10", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified cargo ship was boarded 10 Jun at 1950 local time while at Berth No. 5, Buenaventura. Two persons went to the boat deck while a third went into the engine room. Safety equipment was stolen from two life rafts and the thieves es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-206", - "dateofocc": "2003-06-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF GUINEA: An unidentified bulk carrier reports attempt to board 13 Jun at 0730 UTC while underway in position 09 05S, 015 35W about 90 nm west of the Guinea Coast. 15 to 20 persons in a wooden boat apparently abandoned their attempt when duty offic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [-15.583333300441893, -9.083333299781998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-207", - "dateofocc": "2003-06-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF GUINEA: An unidentified bulk carrier reports being boarded and robbed 12 Jun between 2200 and 0600 UTC while underway between 10 53S, 017 17W and 09 38N, 016 05W about 60 to 90 nm west of Guinea. Ship's stores are reported stolen by persons who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.283333300406923, -10.883333300379832] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-208", - "dateofocc": "2003-06-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA: An unidentified supply vessel was boarded 13 Jun between 0300 and 0600 local time while anchored in Luanda Bay. Thieves stole ship's equipment (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.250000000099305, -8.799999999579541] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-209", - "dateofocc": "2003-06-13", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GLUF OF ADEN: An unidentified cargo ship reports being followed in a suspicious manner 13 Jun at 0001 UTC while underway in position 13 29.6N, 049 11.7E, south of Mukalla, Aden. Two speedboats moved away when ship altered course, switched on lights and", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-210", - "dateofocc": "2003-06-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was boarded 16 Jun at 0200 local time while at Chennai anchorage. Three persons boarded at the forecastle, broke open a locker and stole ship's stores. Thieves escaped into a waiting boat when spotted and when alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.300000000334137, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-211", - "dateofocc": "2003-06-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was boarded 14 Jun at 1310 local time while at Chennai anchorage. Three persons broke into forecastle locker and stole ship's equipment. The thieves escaped in a boat containing six accomplices (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.300000000334137, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-212", - "dateofocc": "2003-06-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 11Jun about 2130 local time while at fertilizer jetty, Chittagong. Three persons injured two watchmen and stole ship's stores. Thieves escaped in a boat containing seven accomplices (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-213", - "dateofocc": "2003-06-13", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAB EL MANDEB: An unidentified bulk carrier reports attempt to board 13 Jun at 2245 local time while underway in position 12 46N, 043 15E. Duty officer raised alarm upon approach of fast boat and turned searchlights in its direction, whereupon boat mov", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.250000000170189, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-214", - "dateofocc": "2003-06-21", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SENEGAL: An unidentified container ship reports attempt to board 21 Jun at 2105 local time while underway off Dakar. Crew raised alarm and attempt was abandoned (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.516666699668122, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-215", - "dateofocc": "2003-06-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded 23 Jun at 0330 local time while in position 22 03.8N, 091 40.3E off Chittagong anchorage area. Two armed persons boarded in a heavy rain and stole ship's stores before escaping when crew raised alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 22.06666669992137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-216", - "dateofocc": "2003-06-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified LPG carrier reports being obstructed in its passage of the Pussur River on 22 Jun at 1618 local time while underway in position 22 23N, 089 37.4E near Mongla. About ten persons in small fishing boats first attempted to obstruc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.616666699722657, 22.383333300093398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-217", - "dateofocc": "2003-06-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 18 Jun at 0330 local time while at Chittagong anchorage. Three persons armed with long knives boarded from two boats and escaped with ships stores when spotted. The same persons reportedly later made a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-218", - "dateofocc": "2003-06-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE: The Singapore Shipping Association issued a warning after a member vessel was attacked 24 Jun between 2320 and 0010 local time while underway in position 01 07N, 105 05E about 60 nm from Horsburgh Lighthouse. Eight persons robbed the crew of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.083333299979984, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-53", - "dateofocc": "2004-02-27", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA-BAB EL MANDEB: An unidentified container ship reports two unlit speedboats lay in wait in the vicinity of the \"Bab el Mandeb Traffic Separation Scheme\" and attempted to board 27 Feb at 1900 local time. Ship increased speed to 25 knots", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [38.311388899840381, 21.080833299833159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-54", - "dateofocc": "2004-02-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The bulk carrier (SINAR ANDALAS) was chased and fired upon 24 Feb at 0220 UTC while underway in position 05-35N 096-30E off the coast of Indonesia's Aceh Province. The ship suffered bullet holes in windows and paneling, but no personnel casu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.500000000318494, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-55", - "dateofocc": "2004-03-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 1 Mar at 2315 UTC while anchored in position 06-02S 106-54E at Jakarta Roads. Five persons armed with knives stole a liferaft and escaped in a motor boat when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.033333299818253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-230", - "dateofocc": "2003-07-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 2 Jul during the morning hours while berthed at Haldia. Ship's stores were stolen (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.12000000035323, 22.009999999771082] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-56", - "dateofocc": "2004-03-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified tanker was boarded 5 Mar at 2110 local time while anchored at Mamonal inner anchorage in approximate position 10-19N 075-31W. Three persons armed with knives threatened the chief officer and duty seaman before escaping with a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-57", - "dateofocc": "2004-02-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: An unidentified yacht was boarded 28 Feb at 2215 local time anchored in position 10-43N 062-34W at Punta Pargo. Several persons armed with guns boarded the yacht and master sent mayday message o VHF as well as firing flares. The intruders f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.566666700090764, 10.716666699599273] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-58", - "dateofocc": "2004-03-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: A local boat, identified as (AVIJAJA), loaded with scrap, was attacked 5 Mar after it anchored at Takoradi in approximate position 04-53N 001-44W for repairs. About 200 persons, operating from canoes dismantled the vessel's communications, stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.733333299589276, 4.883333299977096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-59", - "dateofocc": "2004-03-08", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified tanker reports observing five boats drifting 8 Mar at 0700 in position 12-27N 044-42E at a distance of about 5 nm. Boats suddenly accelerated to within one mile of vessel's stern before moving away as crew mustered and ac", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.699999999902332, 12.450000000433192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-60", - "dateofocc": "2004-03-03", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified vehicle carrier reports small boat with powerful engine and containing four persons followed from astern 3 Mar at 0330 while underway in position 14-42N 050-56E. Ship altered course toward open sea and boat withdrew.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.933333300432139, 14.699999999831448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-61", - "dateofocc": "2004-03-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified tanker reports encountering two boats with a line strung between them 2 Mar at 0315 local time while underway in position 21-33.7N 091-35.5E east of Maiskhal Island. As tanker passed between the boats the boats wee drawn into i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.591666700303676, 21.561666700098385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-62", - "dateofocc": "2004-03-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 6 Mar at 0640 local time at a Tajung Priok berth in approximate position 06-06S 106-53E. Three persons armed with knives and battens beat up duty officer injuring his stomach, back and legs, but escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-63", - "dateofocc": "2004-03-05", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG tanker reports approach 5 Mar at 1430 UTC by an unlit boat while underway in position 01-48S 108-04E. When boat got within 20 meters crew raised alarmand boat moved away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.066666700004589, -1.800000000252453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-64", - "dateofocc": "2004-03-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was approached 3 Mar at 0400 UTC while at anchor, Tanjung Priok, in approximate position 06-06S 106-53E by 3 boats under the pretext of doing business. Crew ordered boats to move away but later discovered that", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-65", - "dateofocc": "2004-03-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempted boarding 13 Mar at 1620 local time while underway in position 04-51.2N 098-19.5E off the east coast of Aceh Province. Eight persons armed with machine guns attempted to board from a fishing boat. Shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.325000000399996, 4.853333300236955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-147", - "dateofocc": "2002-05-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: An unidentified refrigerated cargo ship was boarded 20 May at 0550 UTC while berthed at Douala Port. Persons armed with knives boarded but were spotted by watch which raised alarm. The intruders escaped by jumping over the side; no mention o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-148", - "dateofocc": "2002-05-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified cargo ship reports suspicious approach 20 May at 1330 local time while underway in position 14-32N 049-39E. A blue colored boat kept coming closer despite the ship altering course. When fire hoses activated boat moved awa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.650000000197281, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-149", - "dateofocc": "2002-05-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified gas carrier was boarded 15 May at 0410 local time while underway in the inner roads port of Rome. Thieves armed with knives stole ship's stores and escaped. A second attack was made at 0435 while ship was mooring and thieves sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.549444399781578, 6.770833299667174] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-150", - "dateofocc": "2002-05-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 24 May at 0250 local time while at Isab wharf, Panjang. Six persons armed with knives entered engine room, tied up duty oiler, stole alarge amount of engine spares and escaped through the emergency door", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, -5.466666700312658] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-151", - "dateofocc": "2002-05-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified Netherlands flag dredger was attacked by gunfire from a small boat 22 May at 2250 local time while underway in position 01-08.13N 103-45.4E. Dredger took evasive action and reported to Vessel Traffic Information System befor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.756666700161986, 1.135555600358089] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-152", - "dateofocc": "2002-05-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified Panamanian flag dredger was pursued 22 May at 2140 local time while underway in position 01-07.7N 103-45.7E by a small craft with flashing yellow light. A second boat joined the first and both attempted to stop the dredge by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.795000000388029, 1.155000000234281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-153", - "dateofocc": "2002-05-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempted boarding 20 May at 0300 local time while at Belawan anchorage. Intruders armed with long knives attempted to gain access via the anchor chain but duty watch raised alarm and boarding was aborted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-154", - "dateofocc": "2002-05-29", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 29 May at 2320 local time while anchored at Barranquilla. Ten persons broke into forward lockers and stole a large quantity of ship's store before escaping in a big speedboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.799999999915315, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-155", - "dateofocc": "2002-05-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MADAGASCAR: An unidentified cargo ship was boarded 29 May at 0140 local time while berthed at Diego Suarez. Four armed persons boarded from a small boat and broke open the forward locker room which they took ship's stores. Anti piracy watch threatened", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.300000000230966, -12.266666700172834] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-156", - "dateofocc": "2002-05-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MADAGASGAR: Armed thieves boarded an unidentified cargo ship 24 May at its berth at Diego Suarez. Thieves stole safety equipment from lifeboats before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.300000000230966, -12.266666700172834] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-157", - "dateofocc": "2002-06-01", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified tanker reports approach 1 Jun at 0745 local time while underway in position 13-14.8N 042-56.5E about 25 nm from the northern entrance to the Bab el Mandeb. \"Several\" speedboats closed in and suddenly increased speed. Tank", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.941666699584687, 13.246666699869934] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-158", - "dateofocc": "2002-06-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified cargo ship was boarded 3 Jun at 0620 while at outer anchorage, Kakinada. Armed persons boardedvia the anchor chain, broke into the forecastle locker, and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.249999999632792, 16.93333330023188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-159", - "dateofocc": "2002-06-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified chemical tanker was boarded 5 Jun at 2300 local time while berthed at Barranquilla. Three persons broke into portside locker but jumped over board and escaped with watch sounded alarm. No information on losses.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.799999999915315, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-160", - "dateofocc": "2002-06-09", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified general cargo ship was boarded 9 Jun at 0500 local time while berthed at Georgetown. Thieves stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-231", - "dateofocc": "2003-06-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 28 Jun by an unauthorized person from a service boat while the ship was berthed at Chennai. Ship's stores were stolen (IMB),", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.300000000334137, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-3", - "dateofocc": "2002-12-21", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship reports approach by two boats 21 Dec at 1020 local time while underway in position 05 48.1N, 096 27.3E off Aceh Province. The two boats, each with three persons, came within .1km and were not fishing boats accordin", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.449999999552404, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-4", - "dateofocc": "2002-12-21", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship reported being followed 21 Dec at 1030 local time while underway in position 05 24N, 097 30.7E off Aceh Province. A motorboat with four armed persons approached to within 50 meters and one person pointed a rifle to", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.516666700247981, 5.400000000340071] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-5", - "dateofocc": "2002-12-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 21 Dec at 0455 local time while at anchor at Anyer. Duty motorman spotted three persons armed with guns and long knives near the engine room store. The motorman was bound hand and foot but freed himself and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.916666700339761, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-6", - "dateofocc": "2002-12-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 18 Dec at 0200 local time while anchored in position 03 42S, 116 24E at Sebuku. Five persons armed with knives climbed the anchor chain, broke open the paint locker and stole ship's stores before esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.400000000332511, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-7", - "dateofocc": "2002-12-19", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PHILIPPINES: Philippine-flag fishing trawler (MUNANG) was reported hijacked 19 Dec off Tongquil, Jolo Province. Four crew were taken hostage with the boat by the six attackers who released eight of the trawler's crew near Basilan Province.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.999999999794113, 6.166666700036672] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-8", - "dateofocc": "2002-12-30", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: The 9,981-ton fruit juice tanker (ORANGE STAR) was boarded 30 Dec at 0030 local time while at Santos anchorage No. 4 in position 24 07.5S, 46 17.2W. Approximately 10 persons armed with shotguns, handguns and knives smashed a radio room port t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.283333300445463, -24.116666700061444] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-9", - "dateofocc": "2002-12-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified cargo ship was boarded 27 Dec at 0220 UTC while at outer roads, Tema. Five persons armed with long knives attacked duty seaman on forecastle but fled in waiting boat when alarm raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-10", - "dateofocc": "2002-12-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "MALAYSIA: Two unidentified speedboats, towing a barge, were hijacked 23 Dec at 0730 local time at Batik Kelambu Islands off Semporna, Sabah. Three persons armed with M-16 rifles left the boats' crew of five adrift on the barge where they were later res", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.999999999697138, 4.500000000041211] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-11", - "dateofocc": "2002-12-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 27 Dec at 0850 local time while at Balikpapan anchorage. Three persons boarded via the anchor chain, bending the hawse pipe cover. They stole a life raft and escaped in their boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.083333300422623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-12", - "dateofocc": "2002-12-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Dec at 1930 local time while at Balikpapan inner anchorage. Three persons boarded via anchor chain and hawse pipe and stole a liferaft. Thieves were chased by a crewmember and jumped overboard, es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-13", - "dateofocc": "2002-12-23", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PHILIPPINES: Philippine trawler (PRINCE WARREN) was hijacked 23 Dec off Pangutaran, Sulu Archipelago. At least four men armed with automatic weapons chased the boat and opened fire upon it late on the 23rd. Two fishermen jumped overboard and were resc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.500000000195314, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-14", - "dateofocc": "2002-12-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: An unidentified bulk carrier was approached 24 Dec at 2145 local time by unlit boat while underway in position 12 56N, 100 44E, approaching Ko Si Chang. One person using grappling hook climbed aboard and tried to tie off boat to ship's rail.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.733333299884237, 12.933333300102561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-16", - "dateofocc": "2003-01-05", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified container ship was robbed of a mooring line 5 Jan, apparently when it encountered a small boat shortly after leaving Dakar. The boat shone a strong light as it moved close. Ship's master suspects it was signaling accomplices a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-219", - "dateofocc": "2003-06-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Jun at 0230 local time while underway in position 0057N, 105 06E near Bintan Island. About 12 persons armed with guns and knives took 2 crew hostage and used them to force master to open his cabin d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.099999999877127, 0.949999999611634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-220", - "dateofocc": "2003-06-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 22 Jun at 0520 local time while underway in position 00 43.8N, 105 27.2E off Bintan Island. Two persons armed with guns tied off their boat at the ships stern. Crew raised alarm and mustered. The int", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.449999999843499, 0.73333330024758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-221", - "dateofocc": "2003-06-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 21 Jun at 2105 local time while underway in position 00 51N, 105 05.1E off Bintan Island. Eight persons armed with guns and knives boarded at the starboard quarter form a speedboat. Master, duty off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.083333299979984, 0.849999999878207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-222", - "dateofocc": "2003-06-24", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified cargo ship was boarded 24 Jun at 0405 local time while at pier 5C, Callao. Two persons wearing masks tried to steal ship's stores but jumped overboard and escaped when discovered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-223", - "dateofocc": "2003-06-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: 1 German and 2 Filipino contractors working for Shell Nigeria were kidnapped 23 Jun from their tug off the Forcados Export terminal. On 26 Jun the unidentified abductors sent a ransom demand for $2 million plus a smaller sum for feeding the host", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.433333300309641, 5.366666700370558] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-224", - "dateofocc": "2003-06-26", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified cargo ship reports suspicious approach 26 Jun at 0100 local time while underway in position 12 30N, 045 25E. A fast speedboat followed the ship and kept chasing when the ship took evasive maneuvers. When boat came within 1", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.416666699732161, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-225", - "dateofocc": "2003-06-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified fishing trawler reports being fired on 23 Jun at 1530 local time while underway in position 05 46N, 097 50.4E. The firing came from a black hulled tug. One crew member was wounded and hospitalized ashore; trawler suffe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.833333300420009, 5.766666700203587] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-226", - "dateofocc": "2003-06-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 30 Jun at 0700 local time at Tanjung Priok anchorage. Four persons armed with long knives entered pump room and stole engine stores. Crew raised alarm and thieves fled (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-227", - "dateofocc": "2003-06-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The 13,852 ton Malaysian flag bulk carrier (ECO CHARGER) was approached 29 Jun at 0320 local time while underway in position 01 13N, 105 03E off Bintan Island. A high speed craft approached to within 25 m of the ship before it was spotted by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.050000000010414, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-228", - "dateofocc": "2003-06-24", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified tanker was boarded 24 Jun at 0250 local time while at Batangas anchorage. Two persons armed with metal bars boarded from fishing boats but, seeing crew alertness, jumped overboard and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.016666699658913, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-229", - "dateofocc": "2003-06-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA: An unidentified chemical tanker was boarded 27 Jun at 2300 local time at Zhanjiang anchorage. Five persons stole ship's property before crew raised alarm and they fled in their boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.400000000138448, 21.199999999592023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-232", - "dateofocc": "2003-07-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 1 Jul at 0255 local time while at anchorage 'A', Chittagong. Chief officer observed 4 persons armed with long knives try to steal hawsers and raised alarm. The thieves threatened crew with 18-inch knives be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-66", - "dateofocc": "2004-03-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "SINGAPORE STRAIT: An unidentified tug was boarded 16 Mar at 2340 local time while anchored outside Singapore Port Limit in position 01-14.13N 103-34.7E. Armed persons took five crew hostage at knifepoint and forced the master to admit them to his cabin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.578333300124655, 1.235555600091573] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-67", - "dateofocc": "2004-03-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 22 Mar at 1730 UTC while drifting, undergoing engine repairs, in position 04-02S 106-38E, Gelasa Strait. Six persons armed with knives and guns forced duty seaman to make master open his cabin door wher", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.633333300344873, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-68", - "dateofocc": "2004-03-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 17 Mar at 0240 local time while at Tanjung Priok anchorage. One person, using a grappling hook, gained access but escaped empty handed when discovered by crew. Later inspection revealed a single strapsecur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-69", - "dateofocc": "2004-03-26", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "TRINIDAD AND TOBAGO: A Trinidadian fisherman was shot and killed 26 Mar within Trinidad's territorial waters 13 miles off Soldado Rock, Cedros. The assailants rammed the fishing boat, shot one crew member when he sat up from his sleeping position, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.694722199829471, 10.673888900441739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-70", - "dateofocc": "2004-03-21", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified LPG tanker was boarded 21 Mar between 0030 and 0100 local time while underway off Dakar. The pirates stole ship's stores before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.000000000204466, 14.250000000131649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-71", - "dateofocc": "2004-03-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker reports attempt to board 29 Mar at o330 UTC while anchored in position 06-12.9N 003-20E, Lagos. Three persons in a boat withdrew when watchman raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.214999999876341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-72", - "dateofocc": "2004-03-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was ordered to stop 23 Mar at 1013 UTC while underway in position 05-33.4N 005-24.4E in the Warri River. Armed persons in 6 boats ordered the tanker to pump part of its gasoline cargo into a barge and about 650 mt of car", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.406666699724326, 5.556666700223786] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-73", - "dateofocc": "2004-03-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports attempt to board 28 Mar at 1900 local time while underway in position 03 03N, 100 47E, One Fathom Bank. Three speedboats with about four persons armed with firearms in each, approached but were pr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.783333299751007, 3.050000000309069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-74", - "dateofocc": "2004-03-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified vehicle carrier reports attempted boarding 28 Mar at 0048 while underway in position 02-37.4N 101-27.7E. An unlit boat with several persons approached the ship but the captain mustered crew, switched on lights, direct", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.461666700254113, 2.623333300065894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-75", - "dateofocc": "2004-03-29", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "RESEARCH VESSEL", - "descriptio": "INDONESIA: An unidentified research vessel reports suspicious approach 29 Mar at 0204 local time while underway in position 01 0.1N, 103 3`.9E. An unlit boat approached the port quarter but retreated and rejoined other small craft when the research shi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.064999999815825, 1.18499999997448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-169", - "dateofocc": "2002-06-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 14 Jun at 0300 local time during transshipment operations at Balikpapan anchorage. Thieves gained access via forward anchor chain in heavy rain and broke into forward lockers. They stole ship's stores and a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-24", - "dateofocc": "2003-01-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 10 Jan at 2135 local time while at Lawi Lawi anchorage. Thieves boarded via anchor chain, stole ship's stores, and fled when alarm was raised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.766666700195969, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-76", - "dateofocc": "2004-03-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports being ordered to stop 27 Mar at 1040 UTC while underway in position 05-42.8N 097-49E of Aceh Province. The order came from a supplyboat and persons aboard fired on the bulk carrier's poop deck and bridge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.816666700347582, 5.713333300282727] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-77", - "dateofocc": "2004-03-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship reports attempted boarding 26 Mar at 1000 local time while underway in position 01-39S 104-50E about 34 miles from Selat Berhala. Six persons in a grey-colored fishing type boat with fishing gear attempted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.833333299747039, -1.649999999752993] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-161", - "dateofocc": "2002-06-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: Persons from a boat boarded an unidentified general cargo ship 3 Jun at 2300 local time as it approached the port of Georgetown with pilot on board and stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-162", - "dateofocc": "2002-06-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: The third officer of an unidentified bulk carrier was threatened by several persons with knives 2 Jun at 0620 local time while ashore reading ship's draft while ship was moored at jetty no. 7. Officer's walkie-talkie stolen. The previous day", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-163", - "dateofocc": "2002-06-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was subject to attempted boarding 4 Jun at 2025 local time while anchored in Bontang pilot boarding ground. Seven persons in a motor boat tried to gain access via the forecastle but alarm was raised and crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.483333300201139, 0.100000000078751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-164", - "dateofocc": "2002-06-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified cargo ship was boarded 15 Jun at 2200 local time by five armed persons while at Belem inner anchorage. Duty seaman was tied up and blindfolded while thieves stole ship's stores, departing when alarm was sounded by another seaman", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.499999999874149, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-165", - "dateofocc": "2002-06-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship was subject to attempted boarding 15 Jun at 0205 local time at Lagos anchorage. Intruders tried to gain access via anchor chain but were spotted by watch and escaped n wooden boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-166", - "dateofocc": "2002-06-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON: An unidentified cargo ship was boarded 14 Jun at 1000 local time during cargo operations at Port Gentil. Several persons armed with knives threatened the captain and duty crew and tried to make them open ship's stores without success. The intru", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.800000000270188, -0.20000000002085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-167", - "dateofocc": "2002-06-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The 14,921-ton Cyprus flag bulk carrier (PANAGIA TINOU) was seized by boarders one mile off the Somali coast 15 Jun at 0930 UTC and its crew of 23 held hostage on the ship with their passports sent ashore. The ship is reportedly in position 11", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 11.749999999601187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-168", - "dateofocc": "2002-06-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was robbed 12 Jun at 140 local time while mooring at Chittagong. Mooring gang requested ship pay out more line fore and aft, which it did. When ship was all fast crew noted that lengths of 100 m were cut out", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-170", - "dateofocc": "2002-06-17", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: The Singapore-flag tug (SM-88) was stopped 17 Jun while underway in position 06- 16.4N 121-30.6E off Jolo Island by 11 armed men in military style uniforms. The assailantsremoved the tug's Indonesian Captain, Chief Officer, Second Officer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.509999999841284, 6.273333300228899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-171", - "dateofocc": "2002-06-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 22 Jun at 0330 local time while at Chittagong anchorage. Watch spotted man armed with rifle on after deck and sounded alarm. Manescaped in a boat with three accomplices.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-172", - "dateofocc": "2002-06-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was subjected to attempted boarding 20 Jun at 2300 local time while at Chittagong anchorage. Six persons armed with knives tried to board at the stern but alert crew prevented the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-173", - "dateofocc": "2002-06-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 28 Jun at 2005 while at Chittagong anchorage 'B'. Three persons of ten in a boat that came alongside boarded before the duty watch raised the alarm and mustered crew, whereupon the intruders jumped ove", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-174", - "dateofocc": "2002-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified bulk carrier was boarded 28 Jun at 0330 local time while anchored at Bintulu. Thieves broke into forecastle store and stole ship's stores. Duty watch spotted them and sounded alarm whereupon the thieves fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.133333300105392, 3.050000000309069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-17", - "dateofocc": "2003-01-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 1 Jan at 2055 UTC while anchored in position 20 59.3N, 088 14.7E, Sandheads anchorage, in the Hooghly River. About ten persons boarded at stern from an unlit motor boat and assaulted duty seaman before stealing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.249999999826855, 20.983333300227969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-18", - "dateofocc": "2003-01-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 6 Jan at 0200 local time while at Samarinda anchorage. Five persons armed with long knives boarded via the hawse pipe and threatened the duty seaman. Crew raised alarm and mustered; thieves jumped ov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.116666700162341, -0.516666700017652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-19", - "dateofocc": "2003-01-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified ro-ro ship was boarded 4 Jan at 0620 local time while in position 00 59.8S. 117 17.6E, Samarinda anchorage. Eight persons armed with knives took Second Officer and duty seaman hostage before breaking into bosun locker and ste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.283333299834908, -0.01666669955182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-20", - "dateofocc": "2003-01-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 2 Jan at 0400 local time while at Cigading anchorage. Four persons armed with knives took duty oiler hostage and threatened him with a knife. Oiler freed himself and sounded alarm whereupon the thiev", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.950000000309331, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-21", - "dateofocc": "2003-01-09", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified chemical tanker was boarded 9 Jan at 0225 local time at anchor at Kingston. Several persons from two motor boats about 10 meters long climbed the anchor chain and were discovered in the master's office. Alarm raised and intrud", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.783333300082802, 17.966666700058568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-22", - "dateofocc": "2003-01-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: The 6,285-ton cargo ship (CEC MEADOW) was boarded 11 Jan at 0300 local time by about twenty armed robbers, while the ship was discharging at berth 4. The intruders began beating the stevedores and their foreman, while the ship's crew fled into", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.400000000372415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-23", - "dateofocc": "2003-01-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The Singapore-flag tug (BINA OCEAN 2) was hijacked 11 Jan at about 0500 local time off Bintan Island. About ten persons armed with knives and guns forced or allowed the crew of 6 to jump overboard from the tug anchored off Tanjung Uban. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.499999999677868, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-25", - "dateofocc": "2003-01-08", - "subreg": "83", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 8 Jan at 0625 local time while in position 01 03S, 177 16E at Samarinda anchorage. Four persons armed with knives gained access at the stern and stole life rafts and stores before fleeing when alarm sou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [177.266666699904249, -1.049999999553734] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-26", - "dateofocc": "2003-01-08", - "subreg": "74", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "AUSTRALIA-INDONESIA: Australian authorities recovered the Taiwanese-flag fishing vessel (HAI AN NO. 6) 8 Jan about 80 nm northeast of Rowley Shoals offshore of Broome. The vessel, drifting without crew, was spotted apparently abandoned 4 Jan. The lifeb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [120.500000000195314, -16.166666699669406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-27", - "dateofocc": "2003-01-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MOZAMBIQUE: An unidentified container ship was boarded 13 Jan at 2045 UTC at Nacala anchorage. Duty seaman spotted person lowering mooring line through hawse pipe and sounded alarm whereupon the intruder fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.666666699803386, -14.533333299643516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-28", - "dateofocc": "2003-01-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 19 Jan at 0100 local time at Taboneo anchorage, Banjarmasin, by one of five persons who approached in a small boat. The intruder, armed with a long knife, boarded via the hawse pipe but was driven off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.749999999551108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-29", - "dateofocc": "2003-01-15", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified tanker was boarded 15 Jan at 0700 local time while anchored at Vung Tau. The intruders used a grappling hook to gain access via the poop deck, but duty seaman raised alarm and they fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-30", - "dateofocc": "2003-01-17", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 17 Jan at 0120 local time while anchored 1.3 nm west of Pigeon Island. Four persons from an unlit boat boarded via the anchor chain. They broke open the forecastle locker and escaped with ship's propert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.116666699976747, 17.799999999661907] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-233", - "dateofocc": "2003-07-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 1 Jul at 0255 local time via the poop while at anchorage 'A', Chittagong. Four persons armed with long knives arrived in two large motorboats and one smaller boat. The intruders lowered ship's mooring lin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-234", - "dateofocc": "2003-07-02", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 2 Jul at 2300 local time while at Merak anchorage. Crew mustered and activated fire hoses when they spotted an unlit boat, which withdrew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.000000000176044, 5.916666699803784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-235", - "dateofocc": "2003-07-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 1 Jul at 0130 while underway in position 01 05N, 105 00E, near Bintan Island by persons using grappling hooks over starboard quarter. Ten masked persons armed with knives and guns took a seaman and seco", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.0000000001437, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-236", - "dateofocc": "2003-07-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded 1 Jul at 1210 local time while underway in position 00 41N, 105 12.5E near Bintan Island. Eight persons armed with knives and guns took second officer hostage and then held master at gunpoint while the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.216666700407018, 0.683333300380866] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-237", - "dateofocc": "2003-06-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 30 Jun at 2230 local time while at Belawan anchorage. About five persons operating form a small fishing boat were driven off when crew mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-238", - "dateofocc": "2003-06-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Jul at 0315 local time while anchored in position 00 00, 117 35E at Bontang. Two persons armed with knives boarded at forecastle and fled with life raft when spotted by duty seaman (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, 0.000000000345324] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-239", - "dateofocc": "2003-07-11", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified cargo ship was boarded 11 Jul in the early morning while berthed at Guanta. The intruders broke padlocks on storerooms but fled when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-240", - "dateofocc": "2003-07-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier reports attempt to board 14 Jul at 1400 local time while at Chittagong anchorage. Eleven persons in a boat came alongside and three, armed with knives, attempted to climb the anchor chain. Watch raised alarm and t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-241", - "dateofocc": "2003-07-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded 9 Jul at 0030 local time while at berth in Chittagong anchorage. Seven persons armed with knives boarded at forecastle, took duty crew hostage, and escaped with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-242", - "dateofocc": "2003-07-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG & BARGE", - "descriptio": "INDONESIA: The Singapore flag tug (BINTAN 1200) and its barge (BINTAN GOLDEN 2301) are reported hijacked 10 Jul while underway near Dabo Sinkep, Sinkep Island. A fast boat came alongside and armed men boarded the tug, binding and blindfolding its crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, -0.583333299956792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-243", - "dateofocc": "2003-07-11", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: An unidentified bulk carrier was boarded 11 Jul at 0245 local time while underway 5 miles NW of Ko Khram Island near Kosichang. Duty crew raised alarm and the intruders fled in a boat with three accomplices (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.666666699945154, 12.74999999963353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-244", - "dateofocc": "2003-07-10", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified container ship was boarded 10 Jul at 1819 local time while at Callao during cargo operations. A single man armed with a knife assaulted a security guard and then escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-245", - "dateofocc": "2003-07-18", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified container ship was boarded 18 Jul at 0830 local time during cargo operations at Puerto Cabello. Safety equipment was stolen form aft store (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.000000000055138, 10.483333300338074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-246", - "dateofocc": "2003-07-17", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified bulk carrier was boarded 17 Jul at 0320 UTC while berthed at Guanta. A single armed individual stole safety equipment from a liferaft and escaped. Authorities did not respond to attempted contact (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 14.999999999931106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-247", - "dateofocc": "2003-07-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified container ship reports attempt to board 15 Jul at 0130 local time while at berth 29A, Puerto Cabello. Four darkly dressed persons in a boat attempted to gain access using a grappling hook but alert crew drove them off by dire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.000000000055138, 10.483333300338074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-248", - "dateofocc": "2003-07-20", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified tanker was boarded 20 Jul at 0130 local time while at Dakar anchorage. Thieves broke into bosun's stores and stole ship's supplies. When contacted, Port Control advised they were unable to assist (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-78", - "dateofocc": "2004-03-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempted boarding 24 Mar at 0505 local time while anchored at Balikpapan. Two persons climbed the anchor chain while two others waited in their boat. Crew raised alarm and the four fled.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-79", - "dateofocc": "2004-04-02", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified tanker was boarded 2 Apr at 0300 local time while berthed at the Port Kaiser alumina jetty. Two persons armed with knives threatened duty seaman and escaped with ship's stores. Port control informed and security personnel boar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.593333300261918, 17.86666670032514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-80", - "dateofocc": "2004-03-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: An unidentified yacht was boarded 28 Mar at 0300 local time while at Polamar, Isla Margarita. An outboard motor was stolen from the yacht's dingy. Yacht master reported several attempted thefts during the week.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.846666700096193, 10.95444439994111] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-81", - "dateofocc": "2004-04-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TOW", - "descriptio": "INDIA: An unmanned vessel under tow was boarded 5 Apr at 0400 UTC while in position 08 12.3N, 076 46.4E, 20nm from Trivendram aero light. Persons from eight boats stole property from the ship and left at 0435 UTC.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.77333330026056, 8.205000000327402] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-82", - "dateofocc": "2004-04-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDIA: An unmanned tug under tow was boarded 2 Apr at 0650 local time in position 08 06N, 076 43E off Trivendram. Pirates form six boats stole tug's stores and property before the arrival of coast guard boats and an aircraft from Cochin.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.716666699935047, 8.100000000337502] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-101", - "dateofocc": "2004-04-14", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHAMT VESSEL", - "descriptio": "CHINA: Unidentified bulk carrier was boarded 14 Apr at1530 UTC in position 21-28.10N 108-20.10E at Fang Cheng. The intruders stole ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.335000000337004, 21.468333299924382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-83", - "dateofocc": "2004-04-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SHATT AL ARAB: Thefts and extortion are report 3 and 4 Apr and 27 Mar from ships exiting the Shatt al Arab following calls at Abu Flus. The attacking boats used the same tactic in all cases; fishing nets were strung across the waterway and at least som", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.700000000031707, 29.899999999783404] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-84", - "dateofocc": "2004-03-30", - "subreg": "74", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 30 Mar at 2120 UTC while underway in position 12-58S, 106-58.3E in Selat Leplia. Two persons armed with guns and long knives forced open wheelhouse starboard door but fled empty handed when duty sea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [106.971666699595971, -12.96666670010552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-85", - "dateofocc": "2004-03-17", - "subreg": "74", - "hostility_": "NAVAL PERSONNEL", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The master of an unidentified cargo ship reports he was fired upon, stopped, and questioned by the Indonesian naval vessel (KAI YOUTEFA) 17 Mar while in position 12-18.5S 104-38.5E off Jayapura, Irian Jaya. (reported 7 Apr).Master and third", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [104.641666699691484, -12.308333299728929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-86", - "dateofocc": "2004-04-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Unidentified tanker attacked by five persons armed with machine guns 7 Apr at 0104 local time while anchored in position 05-28N 005-05E, Escravos anchorage. Anti-piracy crew raised alarm and directed foam monitor at boat. Attackers opened fir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.083333300343327, 5.466666700103985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-87", - "dateofocc": "2004-04-08", - "subreg": "61", - "hostility_": "MILITIAMEN", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOMALIA: According to 8 Apr report, activity at port of Kismaayo has been halted by threat of militiamen allied with Juba Valley Alliance to attack vessels entering or leaving port with anti-aircraft missiles with which they are armed. Three ships have", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.550000000237503, -0.366666700417511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-88", - "dateofocc": "2004-04-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Unidentified tanker boarded 8 Apr at 2200 local time while underway in position 01 40N, 102 10E. Pirates armed with guns stole ship's property and crew cash ands damaged radio equipment before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.166666700443329, 1.666666700340784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-89", - "dateofocc": "2004-04-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker boarded 8 Apr during early morning hours at Balikpapan anchorage. Despite presence of 2 armed security guards and 4 anti-piracy crew, the intruders escaped with ship's property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-90", - "dateofocc": "2004-04-11", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "SULU SEA-PHILIPPINES-MALAYSIA: Malaysian tug (EAST OCEAN 2) and barge (SARINTO 1), sailing from Sabah to Solomon Islands with construction material, was attacked 11 Apr at 1900 local time near Taganak Island by 8 to 10 heavily armed gunmen in black unif", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.316666699661596, 6.050000000406101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-175", - "dateofocc": "2002-06-30", - "subreg": "71", - "hostility_": "REBELS", - "victim_d": "SUPPLY VESSEL", - "descriptio": "INDONESIA: Nine crew from the offshore supply boat (KM PELANGI) (NFI) were taken hostage 30 Jun after probable rebels operating form two fishing boats intercepted their vessel and forced them ashore in Aceh Province. Two of the eleven crew were left b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.377222199755408, 3.819166700133849] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-176", - "dateofocc": "2002-06-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was subject to attempted boarding 27 Jun at 0130 local time at Tanjung Priok anchorage. Watch saw eight persons armed with long knives approach in an unlit boat and attempt to fasten a grapping hook to the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-177", - "dateofocc": "2002-06-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Jun at 1848 UTC while anchored in Apar Bay. Fifteen persons boarded at the forecastle using grappling hooks and threatened the crew which had mustered. The thieves broke open forecastle locker and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.649999999666079, -1.883333300088736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-178", - "dateofocc": "2002-06-24", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach by a boat 24 Jun at 1639 UTC while underway in position 06-46S 117-39E. Boat was detected at five mile on radar and closed to within .4 miles after increasing speed at one mile out. C", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.64999999969848, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-179", - "dateofocc": "2002-06-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 23 Jun at 2145 local time while at Samarinda anchorage. Five persons threatened duty seaman with a knife, broke into forecastle locker, and stole ship's stores and a life raft. Master did not succee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.116666700162341, -0.516666700017652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-180", - "dateofocc": "2002-06-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Jun at 0145 local time while at Sebuku anchorage. Five persons gained access via the anchor chain, broke into the forecastle locker, stole ship's stores and a life raft and escaped in their wooden", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.416666700229598, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-181", - "dateofocc": "2002-06-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was subjected to attempted boarding 18 Jun at 0145 while at Bontong pilot boarding ground when five persons in a speedboat tried to climb the anchor chain. Crew raised alarm and intruders fled. A second attempt at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.483333300201139, 0.100000000078751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-182", - "dateofocc": "2002-06-30", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified cargo ship was boarded 30 Jun at 2345 local time while at the Vung Tau outer anchorage. Six armed persons gained access via the anchor chain, attacked seaman on watch, stole ship's stores and escaped in a wooden boat. Port autho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-183", - "dateofocc": "2002-06-30", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified bulk carrier was subject to an attempt to board 30 Jun at 1145 local time while underway in position 17-33N 119-58E off Luzon Island. Pirates armed with long knives and wearing masks operating from seven boats attempted to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.966666699759912, 17.550000000328339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-184", - "dateofocc": "2002-07-07", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Chilean-flag container ship (PACIFIC RIDER) was boarded 7 Jul at 0115 local time while berthed at Callao. Master was at work in his office when he noticed a gun pointed at him through the office porthole. A second thief dropped a bag though anot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-185", - "dateofocc": "2002-07-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified container ship was subject to attempted boarding 3 Jul at 0300 local time while in Rio Magdalena channel at anchor. A high speed boat with 5 or 6 persons was repelled by alert crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.799999999915315, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-186", - "dateofocc": "2002-07-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified cargo ship was boarded 3 Jul at0740 local time while at anchor in Demerara River. Two persons boarded at the forecastle but fled empty-handed when spotted by crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-187", - "dateofocc": "2002-07-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified cargo ship was subject of attempted boarding 3 Jul at 0305 local time while in Demerara River anchorage. Ship's crew spotted four persons using grappling hooks and duty officer drove them away by firing flares at them.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2002-188", - "dateofocc": "2002-07-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: The Third Officer of an unidentified cargo ship at Berth 3, Chittagong, was assaulted 8 Jul at 2200 local time when he left the ship to checks its draft. Seven persons armed with long knives attempted to grab the mates gold chain and watch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-31", - "dateofocc": "2003-01-26", - "subreg": "27", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "CUBA: An unidentified yacht was boarded 26 Jan at night while anchored in the channel at Nueva Gerona, Isla de Juventud. Crew and yacht property stolen. Crew reports local authorities unresponsive to report of the theft.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.800000000174009, 21.916666700321173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-32", - "dateofocc": "2003-01-22", - "subreg": "27", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CUBA: An unidentified bulk carrier was robbed 22 Jan at 0600 local time during cargo operations in the port of Havana. Intruders broke open the forecastle store and stole ship's supplies. Authorities were informed but no action was taken.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.333333299677747, 23.133333299892797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-33", - "dateofocc": "2003-01-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified cargo ship was subject to attempted boarding 24 Jan between 0454 and 0600 local time while anchored at Tema. Alert crew repelled the attempt but the twelvepersons in a wooden boat then attempted to gain access to another anchored", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-34", - "dateofocc": "2003-01-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified LPG tanker was boarded 23 Jan at 0405 local time while aT Bonny Town anchorage, Port Harcourt. One of three persons operating form a small boat gained access at the forecastle, unreported by the contract watchman. Crew spotted t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-35", - "dateofocc": "2003-01-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified survey ship was boarded 25 Jan at 1800 UTC at Goa. Two persons operating form a canoe stole ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [73.799999999674299, 15.433333299733704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-36", - "dateofocc": "2003-01-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 27 Jan at 2100 UTC in heavy rain while at Lawi-Lawi anchorage. Thieves armed with long knives escaped with a life raft and ship's stores after crew raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.766666700195969, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-37", - "dateofocc": "2003-01-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: A cargo ship heaving anchor was boarded 25 Jan at 2305 UTC while in position 01 00S, 117 17E, Samarinda anchorage. Six persons stole a liferaft before escaping. Pilot tried to contact shore police without response.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.283333299834908, -0.99999999968702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-38", - "dateofocc": "2003-02-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship was boarded 1 Feb at 0230 local time at container berth 11, Dar es Salaam. Ship was preparing to depart and 5 shore watchmen did not report the intruders. When spotted by crew the thieves jumped overboard and es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.299999999907584, -6.816666700311316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-39", - "dateofocc": "2003-01-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 29 Jan at 2345 local time while at outer anchorage, Chittagong. Crew shouted at the intruders and reported to the bridge and thieves jumped overboard with ship's stores. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-40", - "dateofocc": "2003-02-01", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 1 Feb at 0245 local time while anchored at Adang Bay. As ship was preparing to depart thieves, suspected by master of receiving aid from local stevedores, stole two 20-person life rafts which had been", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.500000000065938, -1.71666670041617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-41", - "dateofocc": "2003-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 29 Jan between 2200 and 2300 at Panjang Port. About eight persons mixed with local stevedores, broke padlocks on stores' lockers and tried to steal ship's stores. They jumped overboard when crew raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, -5.466666700312658] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-42", - "dateofocc": "2003-01-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA: The 142-ton tug (BW WISDOM) was hijacked 28 Jan between 1900 and 2000 local time while anchored at Batu Ampar, Batam. Ten persons armed with parangs and steel pipes boarded the tug and sailed it away, abandoning the barge (BAYSWATER 228), wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.983333300214213, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-43", - "dateofocc": "2003-01-31", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified tanker was subject to attempted boarding 31 Jan at 0300 local time while at Nha Be Terminal, Ho Chi Minh City. Three persons with grappling hooks were scared off by crew who recovered the hooks and lines (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.716666700005874, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-44", - "dateofocc": "2003-02-08", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified chemical tanker was boarded 8 Feb at 0430 local time while in position 05 03-5S, 081-07W at Portuario de Paita Terminal. A person armed with a knife boarded via the poop from a small boat. Watch raised alarm and Coast Guard appre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.116666700106123, -5.066666699580253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-45", - "dateofocc": "2003-02-09", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified refrigerated cargo ship was boarded 9 Feb at 0400 local time in Dakar Roads, 2 nm southeast of Ile de Goree. To persons armed with knives boarded via the stern but were chased off by alert crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.433333300007064, 14.683333299934304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-246", - "dateofocc": "2006-10-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Bangladesh:Four robbers boarded a bulk carrier, at Chittagong anchorage 'a' at 0234 LT. One robber armed with a knife attempted to enteraccommodation. Alert crew closed all entrance doors and raised alarm. Robbers jumped into a waiting boat and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-46", - "dateofocc": "2003-02-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TOGO: An unidentified tanker reports attempted boarding 7 Feb at 2315 UTC while anchored in position 06 04N, 001 21E at Lome. Eight persons armed with knives attempted to board using a grappling hook. When crew thwarted attempt persons in boat threw a s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.350000000344039, 6.066666700303244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-249", - "dateofocc": "2003-07-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was boarded 14 Jul at 2000 UTC while anchored in position 13 05N, 080 25E, Chennai. Two persons stole ship's stores and escaped in a boat with ten accomplices (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.416666699964765, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-250", - "dateofocc": "2003-07-20", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports attempt to board 20 Jul at 2135 local time while underway in position 01 38.4N, 103 58E. Alert crew switched on deck lights when approached by unlit speedboat. Speedboat moved away in direction o", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 1.633333299647177] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-251", - "dateofocc": "2003-07-17", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports suspicious approach 17 Jul at 2320 local time while underway in position 01 22N, 103 14.3E. Two speedboats were detected and illuminated by searchlights. The boats then moved away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.233333300414756, 1.366666700241183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-252", - "dateofocc": "2003-07-15", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 15 Jul at 1400 UTC while underway in position 00 13N, 107 56E off Indonesia. An unlit boat approached at 35 knots but withdrew when crew mustered and turned on lights (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.933333299577498, 0.216666699709378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-253", - "dateofocc": "2003-07-16", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship was boarded 16 Jul at 0530 local time while at Vung Tau anchorage. Six persons broke into the paint store but escaped empty handed when discovered by crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.349999999735758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-254", - "dateofocc": "2003-07-24", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified bulk carrier reports attempt to board 24 Jul at 0815 local time while underway in position 00-23N, 082-33W. Three speedboats with a total of fifteen persons dressed in black were spotted by alert crew who mustered and activated", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.549999999941122, 0.383333300281265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-255", - "dateofocc": "2003-07-25", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified container ship was boarded 25 Jul at 0045 local time while underway near Barranquilla. Persons armed with knives stole ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.799999999915315, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-256", - "dateofocc": "2003-07-22", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified container ship reports attempt to board 22 Jul at 2235 local time while underway in Maracaibo Channel near Isla Pescadores. Persons in five speedboats were detected by alert crew who switched on deck lights, activated hose, f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.616666700248572, 10.916666699965447] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-257", - "dateofocc": "2003-07-26", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified bulk carrier was boarded 26 Jul at 0600 local time while at Berth 16, Santos, engaged in cargo operations. Armed persons damaged bridge door and provision storeroom door and stole ship's equipment and stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.300000000342607, -23.949999999664783] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-258", - "dateofocc": "2003-07-26", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified container ship was boarded 26 Jul at 0305 UTC while at Berth 11, Belem. Two persons armed with guns attacked duty seaman, broke into paint locker and stole ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.499999999874149, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-259", - "dateofocc": "2003-07-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 24 Jul while at TSP jetty, Chittagong. Master reports gangway stolen and states that since arrival they ship had been boarded a number of times, losing stores and equipment (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-260", - "dateofocc": "2003-07-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified LPG tanker reports attempt to board 28 Jul at 1605 UTC by several persons in a high speed boat. Tanker was underway in position 01 59.4N, 102 07.7E. Crew directed searchlights at the boat which moved off (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.133333299749665, 1.983333299613548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-245", - "dateofocc": "2006-10-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "BANGLADESH: Duty watchman reported robbery 9 Oct, at 0324 local time at Chittagong anchorage, Bangladesh. Duty watchman sighted four robbers cutting mooring ropes. The duty watchman was assaulted by the robbers, after attempting to stop them. Duty of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-261", - "dateofocc": "2003-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reports being fired upon 26 Jul at 1020 UTC while underway in position 05 45N, 097 51E. Master increased speed and due to rough sea boat could not close. Master reports attacking boat was blue, flew Indone", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.850000000317152, 5.750000000306443] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-262", - "dateofocc": "2003-07-30", - "subreg": "25", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CARIBBEAN-ST. LUCIA: An unidentified tanker reports being chased 30 Jul at 0630 local time while underway in position 14 04N, 062 30W, SW of the island of St. Lucia. A white speedboat with orange interior, named MANADA BAY and containing two persons, w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.500000000326907, 14.066666699662619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2003-263", - "dateofocc": "2003-07-30", - "subreg": "25", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CARIBBEAN-ST. LUCIA: An unidentified bulk carrier reports a speedboat came close aboard 30 Jul at 0030 UTC while underway in position 14.00N, 062 30W and the persons on board asked for help. They refused to explain the help needed and continued to foll", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.500000000326907, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-91", - "dateofocc": "2004-04-11", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified vehicle carrier reports attempt to come alongside 11 Apr at 1945 UTC while underway in position 20-18N 114-14E. Unlit craft fled when ship's crew raised alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.233333299871219, 20.300000000192426] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-92", - "dateofocc": "2004-04-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified fishing vessel boarded 9 Apr between 0040 and 0100 local time while underway in position 03-00.5N 105-06.5E, off Anambas Island. Eight persons, armed with long knives, stole ship's cash and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.108333300362972, 3.058333299895594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-93", - "dateofocc": "2004-04-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified tanker boarded 8 Apr at2300 local time while underway in position 02 58.60N, 105 16.20E off Anambas Islands. Ten pirates armed with guns and long knives boarded via the stern, stole cash and property, and escaped. Somecre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.26999999960384, 2.976666700086412] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-94", - "dateofocc": "2004-04-19", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: Unidentified container ship reports attempt to board 19 Apr at 0520 local time while underway in the Buenaventura River. Twelve persons in two high speed boats attempted to board using grappling hook, but fled when crew raisedalarm, switched", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-95", - "dateofocc": "2004-04-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Unidentified cargo ship reports attempt to board 18 Apr at 1750 local time while underway in position 15-35.9N 055-41.3E. Persons tried to board from three boats, but fled when ship began evasive maneuvers, switched on floodlights, and cal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.688333299718067, 15.59833330010332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-96", - "dateofocc": "2004-04-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA-INDIA: A chemical tanker under tow was boarded 15 Apr at 0645 UTC while underway in position 20-15.5N 071-27.1E of India's west coast. Persons from three boats involved. Alerted by the IMB, Indian Coast Guard units apprehended one of the b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.451666699670341, 20.258333299912238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-97", - "dateofocc": "2004-04-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier subject to attempted boarding 17 Apr at 1745 UTC while underway in position 06-38.2S, 119-18.3E in the Flores Sea. When pirates attempted to gain access at the poop, using a grappling hook, crew sounded alarm, muste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.305000000053269, -6.636666700071714] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-98", - "dateofocc": "2004-04-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier was boarded 16 Apr at 1740 UTC while at coal berth, Balikpapan. The intruders stole ship's property and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.766666700195969, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-99", - "dateofocc": "2004-04-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified container ship was boarded 16Apr at 1630 UTC while underway in position 00 50N, 105 18E east ofBintan Island. About 10 pirates armed with guns and knives boarded from an orange-colored high speed boat. Master, Chief Engineer an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.300000000243301, 0.833333299981007] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-100", - "dateofocc": "2004-04-17", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PHILIPPINES: Two fishermen were killed and four are missing after a probable pirate attack during the weekend of 17-18 Apr in the Celebes Sea off General Santos City. The fishing boat (JAMES BOND) was found drifting with the bodies of the two dead men.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.183333300360232, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-102", - "dateofocc": "2004-04-05", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "EASTERN PACIFIC: Unidentified sailing vessel was boarded 5 Apr (reported 20 Apr) at 1500 local time while underway in position 03-20N 084-44W nw of Ecuador. Five masked persons armedwith guns and knives tied up the captain and another crew member and s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-84.73333329957552, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-103", - "dateofocc": "2004-04-23", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: Unidentified tanker was boarded 23 Apr at 0310 local time while at Rocky Point inner anchorage. Thieves boarded via the bow, stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.300000000445834, 17.766666699692337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-104", - "dateofocc": "2004-04-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: Unidentified container ship boarded 20 Apr at 2020 UTC while at Abidjan container terminal. Duty seaman raised alert and single thief jumped into water and escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.027777799970806, 5.320833299935032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-105", - "dateofocc": "2004-04-20", - "subreg": "71", - "hostility_": "SUSPICOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT: Unidentified general cargo ship reports approach 20 Apr at 1720 UTC by boat with about ten persons wearing black masks, while underway in position 02-06..0N 101-57.5E. Duty officer raised alarm and boat moved away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.95833329976648, 2.100000000143439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-237", - "dateofocc": "2006-10-10", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: General cargo ship boarded and robbed 10 Oct, at 0300 local time, at Conakry anchorage. Robbers threw drums on deck overboard. Alert crew raised alarm and crew mustered.Robbers jumped overboard and escaped. No response from port control. Becaus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.79999999974126, 9.466111099982925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-238", - "dateofocc": "2006-10-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Oilfield supply vessels attacked 02 Oct, in Cawthorne Channel, Rivers state, Niger Delta. At least three soldiers protecting the convoy were killed, when about 70 gunmen in speedboats attacked the barges carrying fuel and other supplies to sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.100000000305158, 4.458333299761023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-239", - "dateofocc": "2006-10-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Bulk carrier surrounded by six boats,7 Oct at 2145 local time, in position 05-04.7N 098-25.7E. Crew mustered and activated anti-piracy measures. Some of the boats closed within 20 meters. At 2345 local time, there were two boats each", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.428333300362794, 5.078333300086854] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-240", - "dateofocc": "2006-10-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded 14 Oct, at 0400 local time in position 01-15.3S 116:47.7E, Balikpapan inner anchorage, Indonesia. Four robbers, in a small merchandised unlit dinghy, approached a bulk carrier during cargo operations. One robber boarde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.794999999909123, -1.255000000176381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-241", - "dateofocc": "2006-10-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded 9 Oct, at 0405 localtime, Tarahan anchorage, Indonesia. Three armed pirates boarded abulk carrier at poop deck. Alert duty watchman raised alarm but robbers escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, -5.516666700179371] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-242", - "dateofocc": "2006-10-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: General cargo ship reported attempted boarding 12 Oct, at 0500 local time in position 06-42.7S 039-28.3E, 10nm east of Dar Es Salaam pilot station, Tanzania. Three robbers armed with long knives attempted to board the general cargo ship, usi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.471666699661341, -6.711666700321416] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-243", - "dateofocc": "2006-10-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded and robbed 7 Oct, at 0140 local time in position 06-45.1S 039-19.9E, Dar Es Salaam anchorage area no. 2, Tanzania. Five robbers armed with knives boarded the container ship. The robbers held up one crew member and tied", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.33166669967477, -6.751666699675184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-244", - "dateofocc": "2006-10-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded 10 Oct, at 0234 local time in position 22-17.4N 091-44.1E, Chittagong anchorage a, Bangladesh. Four robbers boarded the bulk carrier. One robberarmed with knife attempted to enter accommodation. Alert crew closed all", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.7349999996203, 22.289999999744168] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-247", - "dateofocc": "2006-10-20", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Bulk carrier boarded 20 Oct at 0045 UTC in position 12-01S 077-11W, Callao anchorage 1a, Peru. Robbers boarded the bulk carrier via hawse pipe and stole from the ship's stores. The incident was reported to local authorities but no help arrived", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-248", - "dateofocc": "2006-10-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "BANGLADESH: Product tanker reported suspicious 21 Oct, at 0730 local time in position 22-11.31N 091-43.50E, Chittagong b anchorage, Bangladesh. A group of suspected robbers were spotted near the propeller of a product tanker. The crew chased them awa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725000000006673, 22.18861109965917] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-249", - "dateofocc": "2006-10-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Container ship boarded 21 Oct, in position 21-41.46N 088-01.13E, .8 miles north of CSF buoy, Sagar roads anchorage in Hugli river, Calcutta, India. Three robbers boarded thecontainer ship at poop deck and tried to steal from the ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.018888899943761, 21.691111100220894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-250", - "dateofocc": "2006-10-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Product tanker robbed 19 Oct, at 0700 local time in position 22-12.10N 091-40.50E, Chittagong b anchorage, Bangladesh. Robbers were detected at stern stealing zinc anodes from the product tanker. The ship's crew threw empty bottles and mo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.67500000013996, 22.201666699651412] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-4", - "dateofocc": "2004-12-22", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 22 Dec at 0310 local time, while at Campha anchorage. Eight persons armed with iron bars assaulted duty seaman. The robbers stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.316666700205133, 21.016666700022313] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-5", - "dateofocc": "2004-11-15", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified tanker reports being trailed on 15 Nov between 0100 and 0300 local time, while underway, in position 01-57.7S 044-47.8E, off the SE Somali Coast. A boat of about 60 meters in length came within one cable of ship's side before p", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.796666700305707, -1.961666700392641] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-6", - "dateofocc": "2004-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified multi-purpose cargo ship was boarded on 11 Nov at 2140 local time, while at Chittagong anchorage. Two people armed with knives gained access at the forecastle, broke open locker, and stole ship's stores. The Master raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-7", - "dateofocc": "2004-11-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded on 23 Nov at 0400 local time, at Chittagong anchorage. Six people armed with long knives stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-8", - "dateofocc": "2004-11-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded on 10 Nov at 0400 local time, at Chittagong anchorage B. Thieves stole ship's stores and safety equipment.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-9", - "dateofocc": "2004-11-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded on 7 Nov at 2330 local time, while at Chittagong anchorage. A group of about 10 to 15 people, armed with swords and knives, boarded the ship,and despite the crew firing distress rockets at them,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-10", - "dateofocc": "2004-11-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "BANGLADESH: More than 100 trawlers were reported looted during the night of 1-2 Nov on the Meghna River estuaries of Manpura, Tazmuddin, Daulatkhan of Bohia, and Dhal Char. In one case, a fisherman fought back and detained some of the pirates, whereupon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.933333299927085, 22.333333300226684] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-11", - "dateofocc": "2004-11-22", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "RESEARCH VESSEL", - "descriptio": "MALAYSIA: A suspicious unlit craft was noticed on radar by the duty officer of an unidentified research ship on 22 NOV at 2120 local time, while the ship was in position 05-51.2N 118 -53.4E off Sandakan. When craft approached to 2.5 miles, ship's crew s", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.890000000350028, 5.853333300269298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-12", - "dateofocc": "2004-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE: An unidentified tanker was boarded on 19 Nov at 2325 local time, while underway in position 01-17.9N, 104-06.1E, at the Eastern Buoy. Seven people armed with long knives stole ship's cash and escaped. This is a rare instance of crime inside", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.101666699871885, 1.298333299550904] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-13", - "dateofocc": "2004-11-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded on 24 Nov at 0630 local time, while anchored in position 01-21.1S 117-01E, 14nm off Balikpapan. Three people armed with guns and knives boarded via the hawse pipe, took deck watch hostage, and stole stores a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.016666700428914, -1.351666699680436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-14", - "dateofocc": "2004-11-19", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports suspicious approach by unlit small craft on 19 NOV at 0330 local time, while underway in position 03-12N 108-47.7E, 10nm off Pulau Subi Kecil. Boat was spotted on radar at a distance of 5 miles, making 5 knots.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.794999999650372, 3.19999999990921] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-15", - "dateofocc": "2004-11-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: 6 people attempted to board au unidentified bulk carrier on 17 Nov at 1920 UTC, at Cigading anchorage in position 06-01S 105-54E. Using grappling hooks, they began to climb the forecastle but escaped in a waiting boat, when the alarm was rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.900000000442617, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-16", - "dateofocc": "2004-11-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker reports attempt to board on 16 Nov, at 1055 at Balikpapan anchorage. About nine people were climbing the anchor chain when the crew raised alarm and the intruders fled in a waiting motorboat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.500000000152852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-17", - "dateofocc": "2004-11-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker was boarded on 14 Nov at 0550local time while at Lawi-Lawi SBM anchorage. Three armed people boarded from a black motorboat and broke into forecastle I locker. They stole ship's stores and threatened the duty seaman with i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.758333299885408, -1.500000000152852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-18", - "dateofocc": "2004-11-09", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded on 9 Nov at 0510 local time, while at Balikpapan inner anchorage. Two people armed with knives boarded the ship, while it was being piloted from anchorage to the open sea. The thieves threatened crew,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.758333299885408, -1.266666699817108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-205", - "dateofocc": "2005-06-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified container ship was boarded 25 Jun at 0230 local time, while at Tema anchorage. Three robbers boarded the vessel via the hawse pipe. They cut forward store lock but were unable to open the door. Crewman on duty raised alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-206", - "dateofocc": "2005-06-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The general cargo ship (SEMLOW) was hijacked 27 Jun somewhere between Haradhere and Hobyo, approximately 190 miles northeast of Mogadishu. Hijackers are demanding $500,000 to free the vessel and ten crewmen. The vessel was under charter of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.341666700381779, 2.019444400286204] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-207", - "dateofocc": "2005-06-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship reported an attempted boarding 26 Jun at 0230 local time, while at Chittagong anchorage 'C'. Robbers in a boat attempted to board using a hook attached to ropes. Anti-piracy watch spotted them, raised alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-208", - "dateofocc": "2005-06-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: M/T (NEPLINE DELIMA) was hijacked 13 June at 2100 UTC, while underway off Langkawi Island. Ten armed pirates boarded from a speedboat. One crew member managed to escape in the pirates' boat, landed at Langkawi, and notified police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.766666699646237, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-209", - "dateofocc": "2005-06-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 24 Jun at 0230 local time while at Jakarta anchorage. They stole a life raft and escaped in a speedboat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.875000000091916, -6.075000000098441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-210", - "dateofocc": "2005-06-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jun at 0550 local time, while in position 01-27.2S 116-42.0E, Lawi-Lawi oil terminal anchorage, Balikpapan. Two robbers boarded the vessel at the forecastle. Alarm was raised and crew mustered. Robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.700000000432169, -1.45333329961619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-211", - "dateofocc": "2005-06-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAIT: An unidentified tug reported an attempted boarding at 1015 local time, while underway in position 01-17N 104-12E on 20 June. Persons wearing dark clothes in four speedboats, 6-8 meters in length with open tops, approached the tug. B", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.19999999957821, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-212", - "dateofocc": "2005-06-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "IRAQ-N.ARABIAN GULF: The U.S. flag tug (THUNDER) and integrated barge (LIGHTNING) was boarded 30 June early morning local time, while approaching Iraqi waters enroute Umm Qasr, with reconstruction aid material. The pirates held crew at gunpoint, fired", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.866666700428311, 29.833333300019547] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-213", - "dateofocc": "2005-07-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 04 Jul at 0310 local time in position 06-19.5N 003-22.0E, anchored 4nm from the breakwater, Lagos. Five robbers tied up and assaulted duty crewman. They stole ship's equipment and stores. They then escaped a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.325000000122714] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-214", - "dateofocc": "2005-06-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The general cargo ship (SEMLOW) was hijacked 26 Jun while underway, in position 04-47.6N 048-12.0E, off Hobyo. Hijackers are demanding $500,000 to free the vessel and ten crewmen. The vessel was under charter of the UN World Food Program and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.199999999565875, 4.793333299857295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-215", - "dateofocc": "2005-07-06", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship was boarded 06 July at 0550 UTC, while at Kingston anchorage. Five robbers, armed with long knives, threatened the crewmember on duty, broke locks off storerooms, and opened a container on deck. Alert crew raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-217", - "dateofocc": "2005-07-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was boarded 06 Jul at 0300 local time, while anchored 1.2 miles NE of fairway buoy, Ennore anchorage. Alert crew raised alarm after three robbers boarded the vessel. Robbers escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.389999999554675, 13.699999999799104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-39", - "dateofocc": "2006-02-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 1 Feb at 0130 local time, while anchored in position 05-52.7S - 106-00.3E, Merak anchorage. Five armed robbers boarded via the poop deck and entered engine room. They attacked and tied up", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.005000000432517, -5.878333299961639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-40", - "dateofocc": "2006-02-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified RO RO ferry was approached 8 Feb at 0450 UTC, while underway in position 15-21.7N 052-34.1E. Several speedboats approached the ferry at forward and stern. Boats came within 400m at stern. Several persons in each boat had", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.568333299825724, 15.361666700437468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-41", - "dateofocc": "2006-02-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: An unidentified chemical tanker was approached 7 Feb at 0120 local time, while underway in position 01-15N 104-07E. An unlit speedboat approached the tanker at port bow. Master altered course and took evasive maneuvers. However anot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-42", - "dateofocc": "2006-02-18", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An offshore barge was boarded and hostages taken 18 Feb in a pre-dawn raid, along the Escravos coast. Militants in speedboats stormed the barge and abducted nine people. Militants also blew up two nearby oil and gas pipelines, and set fire to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.94999999974101, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-43", - "dateofocc": "2006-02-18", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified RO-RO ship was followed 18 Feb at 0720 local time, while underway in position 00-11.48N - 052-45.59E, 400nm off the coast. A boat doing 12 knots followed the vessel. Ship took evasive maneuvers, increased speed, and proceeded", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.759722199965836, 0.191388899650804] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-44", - "dateofocc": "2006-02-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified bulk carrier reported an attempted boarding13 Feb at 0415 local time, while at anchor off San Pedro. Six boats, with more than fifteen persons, tried to board using hooks and ropes at the stern and near the no.1 hatch, port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.749999999648139, 4.666666700437816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-45", - "dateofocc": "2006-02-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified chemical tanker was surrounded by boats 18 Feb at 0700 UTC, while underway in position 14-24.0N 051-43.6E. Six speedboats doing 20 knots surrounded the vessel. Master altered course, increased speed, raised alarm, and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.726666699639452, 14.399999999731847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-46", - "dateofocc": "2006-02-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified container ship was surrounded by boats 18 Feb at 0430 UTC, while underway in position 13-39N 049-18E. Four crafts, doing 21 knots, surrounded the vessel. Boats came within 0.6 nm and crossed the bow and stern of the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.300000000230966, 13.64999999993239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-47", - "dateofocc": "2006-02-20", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified container ship reported being followed 20 Feb at 0618 UTC, while underway in position 01-55.9N 048-52.2E, 150 nm off the coast. The vessel observed two white speedboats following them, while doing 17 knots. The vessel increa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.86999999975842, 1.931666700443827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-48", - "dateofocc": "2006-02-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified multipurpose ship was boarded and robbed 19 Feb at 1930 local time at anchorage 'B', Chittagong roads. Five robbers in a boat, pretending to have engine trouble, approached the vessel. Three robbers armed with wooden battens", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-49", - "dateofocc": "2006-02-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "RED SEA: An unidentified yacht was boarded and robbed 19 Feb at 0400 local time, while anchored in position 27-33.7N 33-47.0E, Endeavour harbor, Tawila Island. Four robbers, in a six meter blue colored fishing boat, boarded the yacht. Alert skipper", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [33.783333300282209, 27.561666700292392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-50", - "dateofocc": "2006-02-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified RO RO ship was boarded and robbed 20 Feb at 1920 UTC, while in position 05-56.3S 106-06.8E, Pt Cilegon Fabricators jetty,West Java. Robbers in a motorboat boarded by using a hook attached to a rope. They ent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.113333299752469, -5.938333300341299] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-120", - "dateofocc": "2004-05-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: Unidentified product tanker was boarded 4 May at 0125 UTC in position 05-36N 00-01E. Tema outer anchorage by 3 persons armed with knives. Duty seaman raised alarm and thieves stole his walkie talkie and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.599999999806982] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-121", - "dateofocc": "2004-05-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Unidentified tanker was boarded 7 May at 0555 local time while in position 13-05.7N 080 -22.5E at Chennai anchorage. Persons armed with knives boarded at the poop and threatened duty seaman, who had seen them and activated fire hose. Seaman rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.374999999684576, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-122", - "dateofocc": "2004-05-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker boarded 10 May while underway in position 01-24.15N 105-16.05E, east of Bintan Island. Seven persons armed with knives and guns tied up second officer and duty seaman on bridge, entered cabins, and stole cash, personal bel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.267500000374923, 1.402500000338989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-123", - "dateofocc": "2004-05-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE: Unidentified tanker was boarded 9 May at 0115 local time while in position 01-14N 103 -34E at the Outside Port Limits anchorage. Five persons armed with knives took master, chief officer, chief engineer, third officer, two other crew hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-124", - "dateofocc": "2004-05-04", - "subreg": "72", - "hostility_": "SHORESIDE PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Duty officer of unidentified chemical tanker spotted 3 persons trying to break lock on forecastle store 4 May at 0440 local time while ship was at oil berth, Sandakan. Intruders jumped overboard empty handed when alarm raised (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.058333300017352, 5.791666699687312] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-125", - "dateofocc": "2004-05-16", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BRAZIL: Unidentified fishing vessel boarded 16 May in position 24-05S 046-19W at Ilhas Das Palmas (Guaruja), Santos by 3 persons operating from a red and white aluminum boat. The 3 stole ship's equipment, stores and personal property and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.31666670023975, -24.0833333002671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-126", - "dateofocc": "2004-05-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Unidentified chemical tanker was boarded 12 May while engaged in STS operations 10 nm off Lagos (06-27N 003-23E). Intruders assaulted duty seaman who raised alarm, but thieves escaped with stores, equipment and crew personal effects (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-127", - "dateofocc": "2004-05-15", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE: Unidentified bulk carrier reports attempt to board 15 May at 0210 local time while at B1 inner anchorage, Freetown. Duty seaman spotted persons trying to gain access via hawse pipe and raised alarm. Signal station informed and naval patr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.216666700338465, 8.502777799974297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-128", - "dateofocc": "2004-05-16", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Unidentified general cargo ship reports being followed suspiciously 16 May at 0455 UTC while underway in position 12-34N 051-37E off N. E. Somalia. Boat did not continue pursuit when ship increased speed (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.616666700292399, 12.566666700063763] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-129", - "dateofocc": "2004-05-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Unidentified bulk carrier reports attempt to board 16 May at 0715 UTC while anchored in position 13-06N 080-22E, Chennai (Madras) outer roads. Eight persons armed with long knives tried to gain access via the stern, but duty seaman raised alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.366666700098051, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-130", - "dateofocc": "2004-05-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified container ship was boarded 13 May at 0730 UTC while at Tanjung Priok anchorage and stole equipment from a life raft (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-131", - "dateofocc": "2004-05-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Unidentified tug was boarded 8 May at 2200 local time while underway in position 05-35.5S 106-39.67E 20 nm north of Pulau Panjang in the Java Sea. Eleven persons armed with long knives and guns threatened the crew and stole ship's property,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.661111099632308, -5.591666700429073] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-132", - "dateofocc": "2004-05-20", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HONDURAS: Unidentified container ship reports attempt to board 20 May at 0220 local time while anchored at Puerto Cortes. Three persons tried to gain access via anchor chain but fled when alarm was raised (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.951388900287441, 15.836111100269875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-133", - "dateofocc": "2004-05-18", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: Unidentified container ship was boarded 18 May at 0520 local time while anchored at Dakar. Three masked persons from a fishing boat threatened crew and escaped with ship's stores. Port authority notified via VHF (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.408333299624076, 14.677777800151546] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-134", - "dateofocc": "2004-05-02", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier reports boarding 24 May at 1950 UTC while underway in position 01-43S 117-10E, Makassar Strait. Two persons gained access but jumped overboardand fled, when spotted by duty officer who raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.166666700029054, -1.71666670041617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-19", - "dateofocc": "2004-11-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded on 3 Nov at 0245 local time while anchored at Adang Bay. Three people gained access at the forecastle, broke into the storeroom, and stole the ship's stores before escaping in a boat toward Balikpapan", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.466666700096425, -2.083333299555647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-20", - "dateofocc": "2004-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG tanker was boarded on 3 Nov at 0115 local time, while underway in position 03-16.5N 105-21.9E. The Master, second officer, and duty seamanwere held hostage by people armed with long knives, while ship's cash and crew belo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.364999999980114, 3.175000000425541] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-21", - "dateofocc": "2004-11-03", - "subreg": "74", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified cargo ship was boarded on 3 Nov at 0115 local time, while underway in position 12-00.5S 105-24.4E. Five people armed with long knives boarded at the stern, from a wooden boat containing two accomplices. They went to the bridg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [108.436666700097476, -12.008333299629271] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-22", - "dateofocc": "2004-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded on 3 Nov at 0100 local time, while underway in position 03-16N 105-24.4E. Nine pirates armed with knives took the third officer and second officer hostage, to force them to call the master to the bridg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.406666700260303, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-23", - "dateofocc": "2004-11-03", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker reports suspicious approach on 3 Nov at 0225 local time, while underway in position 02-01S 108-29E. Two unlit speedboats were detected ahead of the tanker and one approached to within 5 cables, at 20 knots. The", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.483333299910043, -2.016666699616508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-24", - "dateofocc": "2004-11-17", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Five people boarded an unidentified container ship on 17 Nov at 2300 local time, while underway about 6 nm \"off\" Ho Chi Minh City (NFI). Crew raised alarm and intruders fled empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.70000000010873, 10.749999999568843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-25", - "dateofocc": "2004-12-31", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC: An unidentified LPG tanker was boarded 31 Dec at 0330 local time, while at CBM terminal, Rio Haina. Two persons armed with long knives boarded at the mooring buoys but jumped overboard after one had threatened duty officer, when he", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-26", - "dateofocc": "2005-01-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified general cargo ship was boarded 2 Jan at 2120 UTC, while anchored at Kandla outer anchorage. Robbers broke into forecastle locker and stole ship's stores, escaping in their boat when duty officer raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.116666700441044, 22.833888900043576] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-27", - "dateofocc": "2004-12-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified general cargo ship was boarded 27 Dec, while anchored at Kandla inner anchorage, by robbers operating from a small boat. The robbers stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [73.224999999858028, 20.499999999659281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-28", - "dateofocc": "2004-12-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Eight pirates armed with knives in an unlit boat boarded a bulk carrier 29 Dec at 1720 UTC, while underway in position 22-05N 091-43E, off Chittagong. Alert crew mustered and switched on deck lights but thieves nonetheless broke into aft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-29", - "dateofocc": "2005-01-02", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF HORMUZ: An unidentified container ship reports suspicious approach 2 Jan at 0730 local time by six 6- to 8-meter blue speedboats, while underway in position 26-13.2N 056-52.2E. Each boat held several persons armed with guns and wearing black", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.870000000017114, 26.219999999880258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-30", - "dateofocc": "2005-01-03", - "subreg": "71", - "hostility_": "SUS[ICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports being followed 3 Jan at 0120 local time, while underway in position 01-14N 103-25E in the Phillip Channel by a boat named (GOLDEN SPHERE SC-375). After being followed for 50 minutes, the tanker's master activa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-31", - "dateofocc": "2004-12-30", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES:", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.770833299788933, 12.887500000391128] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-32", - "dateofocc": "2004-12-30", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "PHILIPPINES: The tug (CHRISTIAN) and barge (FLORA) are reported missing 30 Dec after failing to report since 14 Dec, when they were underway in position 05-34N 119-22E in the Sulu Sea, on a voyage from the Philippines to Indonesia. ONI NOTE: In most c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.366666699560596, 5.566666699837413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-33", - "dateofocc": "2005-01-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 6 Jan at 0400 local time, while anchored at Chittagong outer anchorage. \"Several\" robbers, armed with long knives, boarded at the poop deck. Crew activated fire hoses and the robbers fled in a waiting spee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-228", - "dateofocc": "2005-07-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (HANSEDUO) was fired upon 16 Jul at 1325 local time, while underway in position 03-05N 048-05E, east coast of Somalia. Four pirates, armed with guns, fired upon the vessel from a speedboat and tried to board at the starboard quarter. Shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.083333299935248, 3.083333300278639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-216", - "dateofocc": "2005-06-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The general cargo ship (SEMLOW) was hijacked 26 Jun, while underway in position 04:47.6N, 048:12.0E, off Hobyo. Hijackers are demanding $500,000 to free the vessel and ten crewmen. The vessel was under charter of the UN World Food Program (WF", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.199999999565875, 4.793333299857295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-218", - "dateofocc": "2005-07-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ-N.ARABIAN GULF: The M/V (DUBAI PALM) was boarded 10 July at 0230 UTC, while underway in position 29-36.4N 048-57.2. An unknown number of pirates held the crew at gunpoint and took money and personal effects before departing the vessel (Operator).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.953333299594703, 29.60666669996732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-219", - "dateofocc": "2005-07-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker was boarded 12 Jul at 1630 UTC, while underway in position 01-13.34N 103-34.23E. Six pirates, armed with long knives, detained the crew and seized personal belongings, money, and ships property. Pira", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.57055559988919, 1.222222200423801] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-220", - "dateofocc": "2005-07-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "MALAYSIA: The tug (SAMUDRA SINDO VIII) towing barge (AGANDA 7) was boarded 03 Jul at 0005 local time, while awaiting berthing at Tanjung Pengelih port. Eight pirates, armed with guns and long knives and wearing face masks, held master and crew hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.08333329994764, 1.369444400220175] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-221", - "dateofocc": "2005-07-11", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported attempted boarding 11 Jul at 1100 local time, while underway in position 01-17.50S 117-09.50E, Balikpapan. Pirates, armed with long knives, attempted to board the vessel from a 4 meter long speedboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.158333299718493, -1.291666700200096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-222", - "dateofocc": "2005-07-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 06 Jul at 0030 local time, while anchored in position 01-42.3N 101-26.7E, Dumai inner anchorage. Alert crewmember on duty raised alarm after three armed robbers boarded the vessel. Crew mustered and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.44500000035697, 1.704999999667507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-223", - "dateofocc": "2005-07-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 06 Jul at 0100 local time, Surabaya. Robbers stole a life raft and ship's property (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.720833299631181, -7.191666699761356] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-224", - "dateofocc": "2005-07-18", - "subreg": "26", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship was boarded 18 July at 0300 local time, while at Kingston Anchorage. Alert crew raised alarm after a robber, armed with a crowbar, boarded the vessel. The robber jumped overboard and escaped in a boat, waiting w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-225", - "dateofocc": "2005-07-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 15 Jul at 0215 local time, while in position 06-18.2N 003-23.4E, Lagos anchorage. Three robbers, armed with knives, held two duty crew hostage and took their walkie-talkies. They stole ships stores and esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.389999999762495, 6.303333299969097] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-226", - "dateofocc": "2005-07-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified product tanker was boarded 15 Jul at 0315 local time, while in position 06-19.7N 003-22.5E, Lagos anchorage. Three robbers, armed with knives, boarded the vessel during STS operations. Two robbers overpowered a duty crewman a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.374999999892395, 6.328333300352085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-227", - "dateofocc": "2005-07-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship was boarded at 0200 local time, while drifting off port at Dar Es Salaam. Eight robbers boarded the vessel from a motorboat and broke into a container. Alert crew mustered and robbers escaped empty handed (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.399999999641011, -6.716666699678569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-51", - "dateofocc": "2006-02-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 13 Feb at 0430 local time, while in position 06-04.0S 106-53.6E, Tg. Priok anchorage. Seven robbers boarded and tried to enter engine room. Duty engineer raised alarm and crew mustered. Robbers ju", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.893333300191387, -6.066666699612597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-52", - "dateofocc": "2006-02-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:The dhow (Bhaki Sagar), an Indian Vessel, was on route from Kismayo to El-Maan. While underway off Mogadishu at 0530UTC, Pirates, armed with guns in two speedboats, boarded a big wooden vessel (dhow or Bhaki Sagar). They hijacked the vessel and a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.916666700197993, 2.216666699774009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-53", - "dateofocc": "2006-02-23", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:At 1025 local time off Balikpapan, two crafts chased a bulk carrier, that was underway. The master raised alarm, took evasive manoeuvres, crew mustered, and craft moved away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.975000000148725, -1.541666700433041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-54", - "dateofocc": "2006-02-23", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified bulk carrier was boarded and robbed 23 Feb at 1930 local time at Callao anchorage, Peru. Two life rafts and ship's stores were stolen and robbers escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-55", - "dateofocc": "2006-02-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified supply ship reported an attempted boarding 26 Feb at 1300 local time, while underway 8nm off Bonny fairway buoy. Four pirates armed with AK-47 rifles, in a black zodiac rubber dinghy with outboard motor, attempted to board. Ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.216666699838697] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-56", - "dateofocc": "2006-03-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified product tanker was boarded and robbed 4 Mar during early morning, at anchorage off Talara. Seven armed robbers held the master and crew at gunpoint. They stole cash, equipment, and personal belongings of crew and escaped (IMB, LL", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.298333299648789, -4.565833300087832] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-57", - "dateofocc": "2006-03-05", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: An unidentified bulk carrier was approached 5 Mar at 0500 UTC, while underway in position 14-42N - 051-42E. Six fast boats, with a yellow-red colored hull, approached the bulk carrier making more than 20kts. Each boat had four persons on", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.700000000128682, 14.699999999831448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-58", - "dateofocc": "2006-03-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship reported boarding and attempted robbery 5 Mar at 0345 local time, at Chittagong C anchorage. Four country boats approached the vessel. Two boats came close to port side and two boats approached at stern. Twe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-59", - "dateofocc": "2006-03-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship reported boarding and attempted robbery 4 Mar at 2340 local time, while in port at Chittagong C anchorage. Twelve robbers attempted to board at port side. They threatened duty seamen who raised alarm. Crew mu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-60", - "dateofocc": "2006-03-02", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified cargo ship was approached 2 Mar at 1722 local time, while underway in position 01-28N - 052-42E, 350 nm from the east coast. A white-hulled trawler making 12.6 knots followed the vessel. Master took evasive maneuvers and trawl", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.700000000161026, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-61", - "dateofocc": "2006-02-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded and robbed 17 Feb at 2055 local time at Chittagong C anchorage. Ten robbers armed with long knives, rods and battens boarded the vessel. They took hostage a duty crew, assaulted him, tied him, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-62", - "dateofocc": "2006-02-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUGBOATS", - "descriptio": "ARABIAN SEA: Two tugboats (JAWA and JAWA BOSAR) were boarded and robbed 24 Feb, while anchored off the coast near Manora Island. The manager for the tugboats, owner, reported to police that four masked men approached the boats, in two separate vessels.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [66.966666699844552, 24.799999999888314] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-63", - "dateofocc": "2006-02-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOAT", - "descriptio": "BANGLADESH: Unidentified fishing trawlers were attacked 26 Feb off the Sundarban coast. Indian pirates launched a violent attack on 20 trawers. Thirty men were injured and one was killed (LL).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 21.499999999691624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-64", - "dateofocc": "2006-03-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "YEMEN: Unidentified fishing boats were hijacked 6 Mar near Abd al Kuri Islands, Socotra. Somali pirates hijacked four Yemeni fishing vessels with 50 fishermen on board, as they carriedout their daily fishing duties. The four vessels where taken to an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.183333299798051, 12.17499999981726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-135", - "dateofocc": "2004-05-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified container ship reports attempt to board 24 May at 1318 UTC while underway in position 00-54N 105-04E in Selat Berhala. Six to 8 persons, dressed in black, approached in 2 black rubberized boats with twin outboard motors. Duty s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.066666699907557, 0.899999999744921] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-136", - "dateofocc": "2004-05-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified chemical tanker boarded 19 May at 1935 UTC at Belawan anchorage by 3 persons, who stole ship's stores and escaped overboard when chased by crew. Master attempted to contact port authorities without success (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-137", - "dateofocc": "2004-05-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The tanker (AGATE) was boarded 19 May at 0200 local time at Balongan anchorage. Three persons armed with knives held an oiler hostage, while the others ransacked engines stores, and escaped ship's property at about 0200. Oiler uninjured but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.466666699837674, -6.266666699978771] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-138", - "dateofocc": "2004-05-19", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Unidentified bulk carrier reports approach 19 May at 0435 local time while at SPA berth No. 1, Sandakan, by five persons in a light colored boat about 7 m long. Men were carrying long poles with hooks but moved away toward oil jetty when Duty", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.836111099946493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-139", - "dateofocc": "2004-05-19", - "subreg": "71", - "hostility_": "PIRATES / KIDNAPPING", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA-THAILAND: Four Thai fishermen were kidnapped for ransom 19 May at 2100 local time when their boat was boarded 39 nm off Gertak Sanggul, Balik Pulau, Penanang (Pinang) Island, by 6 persons armed with sub machine guns. One crew member was releas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.183333299551691, 5.266666699737755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-140", - "dateofocc": "2004-05-23", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA-HONG KONG: The 91-ton cargo ship (CHUNG HO LIN) was boarded 23 May at 2015 local time while underway in Hong Kong waters, near Lamma Island (Pok Liu Chau), forcing 7 of its crew of 10 to jump overboard. The 5 or 6 \"probable\" Mainland Chinese assa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.105555599775698, 22.274999999874069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-141", - "dateofocc": "2004-05-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Unidentified cargo ship reports attempt to board 27 May during the night while at anchor Chennai anchorage. Crew contacted Coast Guard which apprehended the men armed with knives and swords and turned them over to police (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.374999999684576, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-142", - "dateofocc": "2004-05-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Unidentified container ship was boarded 26 May at 0415 local time, while anchored at Chennai (Madras) Roads. Four armed men boarded using grappling hooks and stabbed one of the crew when alarm was sounded, escaping in their boat with four accompl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.366666700098051, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-143", - "dateofocc": "2004-05-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Unidentified cargo ship was boarded 25 May at 0350 local time while at Chennai (Madras) anchorage, by a single armed man operating from a green boat with a white line containing 3 accomplices. Crew raised alarm and intruder escaped empty handed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.374999999684576, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-144", - "dateofocc": "2004-05-29", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT: Unidentified LPG tanker reports suspicious approach 29 May at 2120 local time, while underway in position 05-05.1N 100-10.2E. Three very fast grey speedboats positioned themselves with one ahead and one on either flank. Crew sounded w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.169999999708693, 5.085000000370371] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-43", - "dateofocc": "2005-01-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "BANGLADESH: Eleven fishing trawlers were looted, 2 fishermen are missing and 27 injured during incidents, over a two day period during Eid-il-Azha according to a 28 Jan report. The incidents are reported in the Bay of Bengal, off the Patharghata coast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.966666699689029, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-145", - "dateofocc": "2004-05-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT: Unidentified cargo ship reports being fired upon and forced to stop 25 May at 1700 local time while in position 03-33.49 099-4.8E off Sumatra. Four persons armed with machine guns and hand grenades went to bridge where they damaged al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.079999999556549, 3.55805559961135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-146", - "dateofocc": "2004-05-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified container ship was boarded 26 May at 0415 local time while underway in position 01-42N 104-40E by 7 persons armed with long knives. Chief officer taken hostage and taken to master's cabin where pirates stole ship's cash.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, 1.53333329991375] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-34", - "dateofocc": "2005-01-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 9 Jan at 0500 local time, while anchored at Tanjung Priok (Jakarta). Five persons armed with knives entered engine room, but crew mustered and fought with the intruders, who then jumped into a bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.894444399968108, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-35", - "dateofocc": "2005-01-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 7 Jan at 1220 local time, while anchored 3 miles off the breakwater at Tanjung Priok (Jakarta) cargo anchorage. Four armed robbers stole engine spares and then escape din a high speed boat (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.894444399968108, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-36", - "dateofocc": "2004-12-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-MALACCA STRAIT: An unidentified container ship reports attempt to board 17 Dec at 2330 local time, while underway in position 03-54N 099-54E. When an unlighted boat approached, crew activated fire houses, switched on lights, and began evasiv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.900000000248554, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-37", - "dateofocc": "2005-01-11", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified tanker was boarded 11 Jan at 0350 local time, while underway at Kingston, Jamaica. Three persons armed with long knives boarded at forecastle, broke into locker and stole supplies. Crew mustered and robbers left at 0415 in a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-38", - "dateofocc": "2005-01-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified general cargo ship was boarded 15 Jan at 0730 UTC, while at Macapa anchorage on the Amazon River. Intruders boarded via anchor chain and stole ship's stores, from forecastle locker. Crew raised alarm and robbers escaped in a spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.050000000271382, 0.019444400221516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-39", - "dateofocc": "2005-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA-OMAN: An unidentified container ship reports attempt to board 12 Jan at 1045 local time, while underway in position 20-47N 059-14E. Four masked person in four white speedboats were driven off by crew, who mustered and activated fire hoses,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.233333299891171, 20.783333299861795] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-40", - "dateofocc": "2004-12-31", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAB EL MANDEB: An unidentified tanker reports suspicious approach 31 Dec at 2300 local time, by an unlit 10-meter fast boat, while underway in position 15-29N 042-29E. Crew directed searchlight at boat, on port quarter, and boat then turned and moved", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.483333299574269, 15.483333299600474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-41", - "dateofocc": "2005-01-13", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 13 Jan at 1550 UTC, at Pulau Laut anchorage. Four persons armed with guns and long knives boarded at the forecastle, stole a life raft, and escaped in a speedboat, when crew sounded alarm and mustered", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.316666699596908, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-42", - "dateofocc": "2005-01-19", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINICAN REPUBLIC: An unidentified tanker was boarded 19 Jan at 0135 local time, while at berth No. 2 (Rio Haina) during cargo operations. Two persons armed with knives were discovered and jumped overboard to escape, when duty seaman raised alarm (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-153", - "dateofocc": "2004-06-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA: An unidentified trawler was boarded 3 Jun at daybreak while anchored at Mombasa by nine persons who stole ship's property and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.859722199602288, 4.133611099853226] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-44", - "dateofocc": "2005-01-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "BANGLADESH: At least 13 trawlers are reported looted in incidents on 1, 2 and 9 Jan according to a 19 Jan report. The incidents took place in the Meghna River, around Bhola district (INFO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.816666700121232, 22.650000000223486] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-45", - "dateofocc": "2005-01-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jan at 0340 local time, while berthed at Panjang. Three persons armed with long knives jumped overboard and escaped empty handed in a speedboat, when duty officer sounded alarm and crew mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.350000000110072, -5.483333300385027] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-46", - "dateofocc": "2005-01-16", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified general cargo ship was boarded 16 Jan at 0010 local time, while anchored in position 20-39N 106-51E at Haiphong. \"Several\" persons boarded at the forecastle,stole ships stores, and fled in an unlit boat when duty seaman raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.849999999708871, 20.650000000158798] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-47", - "dateofocc": "2005-01-19", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified tanker was boarded 24 Jan at 2310 local time, at Callao anchorage. Two robbers armed with knives attempted to steal ship's stores. Alert crew mustered and robbers jumped overboard. Robbers escaped in a boat waiting with other accom", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-229", - "dateofocc": "2005-07-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (PARANA) was fired upon 16 Jul at 1600 local time, while underway in position 04-37.4N 04825.9E, east coast of Somalia. Four pirates, wearing military fatigues and armed with shoulder fired rockets and machine guns, opened fire upon the v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.431666699699292, 4.623333300130582] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-230", - "dateofocc": "2005-07-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified container ship was fired upon 18 Jul at 0300 local time, while underway in position 12-11N 050-27E off Caluula, NE coast of Somalia. Six pirates in two boats, armed with guns, fired upon the vessel in an attempt to board. Sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.449999999863451, 12.183333300303104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-231", - "dateofocc": "2005-07-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified RORO was fired upon 17 Jul at 1830 local time, while underway in position 12-09N 050-52E off Caluula, NE coast of Somalia. Seven pirates in two boats, armed with guns, fired upon the vessel in an attempt to board from the ste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.866666699593679, 12.150000000333534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-232", - "dateofocc": "2005-07-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Singapore Straits:Six pirates armed with long knives and wearing black facemasks boarded a tanker underway, via a speedboat. They took hostage two duty crewmembers and tied them up. They entered accomodation and took captain, oiler , and 2/E as hostages", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.568611100186558, 1.219722200295564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-233", - "dateofocc": "2005-07-18", - "subreg": "26", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship was boarded 18 July at 0300 local time, while at Kingston Anchorage. Alert crew raised alarm after a robber, armed with a crowbar, boarded the vessel. The robber jumped overboard and escaped, in a boat waiting w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-234", - "dateofocc": "2005-07-21", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified bulk carrier was boarded 21 Jul at 2000 local time, while at Callao anchorage no 1. Six robbers in a boat approached the vessel. One robber boarded via the anchor chain. Alert crew raised the alarm and the robber escaped empty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.025000000425791] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-235", - "dateofocc": "2005-07-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 15 Jul at 0215 local time, while in position 06-18.2N 003-23.4E, Lagos anchorage. Three robbers, armed with knives, held two duty crew hostage and took their walkie-talkies. They stole ships stores and esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.374999999892395, 6.303333299969097] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-236", - "dateofocc": "2005-07-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 21 Jul at 1745 local time while underway in position 03-38N 049-30E, east coast of Somalia. Pirates, armed with guns, approached the vessel in a blue and white-hulled speedboat, that was approximate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.49999999969782, 3.633333299711865] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-237", - "dateofocc": "2005-07-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: RORO vessel (JOLLY MARRONE) was fired upon 21 Jul at 1100 local time, while underway in position 03-30N 049-20E, east coast of Somalia. Six pirates, armed with guns, opened fire from two boats in an attempt to board. Crew mustered and ship i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.333333300200536, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-238", - "dateofocc": "2005-07-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: An unidentified general cargo ship reported an attempted boarding 23 Jul at 1030 local time, while underway in position 13-41.53N 042-29.16E, southern Red Sea. Twelve armed persons in, two low profile, white hull speedboats approached the ves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.485833299702506, 13.692222199738865] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-239", - "dateofocc": "2005-07-23", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: An unidentified general cargo ship reported an attempted boarding 23 Jul at 1650 local time, while underway in position 12-32.3N 043-26.6E, SE lane of Bab El Mandeb TSS, southern tip of the Red Sea. Six persons, armed with guns in a low profi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.443333300252846, 12.538333299626629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-240", - "dateofocc": "2005-07-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified fishing vessel was fired upon 21 Jul at 2030 local time, while underway 12nm off Muar, Johor. Pirates, armed with guns, opened fire on the vessel, and wounded two crewmembers. Crewmembers were later taken ashore for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.508333300099025, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-65", - "dateofocc": "2006-03-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was approached 5 Mar at 0605 local time, while underway in position 03-01.5S - 107-18.5E, Gelasa straits. Six masked pirates with long knives in a speedboat approached the vessel. D/O raised alarm and crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.308333299894571, -3.025000000134696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-66", - "dateofocc": "2006-03-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDONESIA: An unidentified motor yacht reported an attempted boarding 2 Mar at 2155 local time, while underway in position 00-54.31N - 105-53.18E. Several persons in two fishing boats attempted to board. First boat approached at port bow on collision", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.886388900024713, 0.905277799676924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-67", - "dateofocc": "2006-03-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "MALAYSIA: An unidentified motor yacht was boarded and robbed 1 Mar at 2245 local time, off Tioman islands. Robbers boarded and stole cash, personal belongings, and other portable items. Police arrested three suspects and have recovered some of the sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.066666699875213, 2.833333300045695] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-68", - "dateofocc": "2006-02-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported boarding and attempted robbery 28 Feb at 0330 local time, at Samarinda anchorage. Robbers boarded vessel, broke storeroom locks, and attempted to steal ship's stores and property. Alert crew foiled atte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.153611100036869, -0.502222199673895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-69", - "dateofocc": "2006-02-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 27 Feb at 0255 local time, while in position 03-12S - 116-20E, North Pulau Laut outer anchorage. Three robbers armed with guns and knives boarded the vessel via anchor chain. They took hos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.333333299669334, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-70", - "dateofocc": "2006-02-21", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "MALAYSIA: An unidentified motor yacht reported boarding and attempted robbery 21 Feb, at 2000 local time off Tioman islands. Robbers boarded and stole cash, personal belongings, and other portable items. Local police arrested three suspects and have re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.066666699875213, 2.833333300045695] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-71", - "dateofocc": "2006-03-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "MALAYSIA:An unidentified motor yacht was boarded and robbed at 2245 LT off Tioman Islands, Malaysia. The robbers boarded and stole cash, personnel belongings, and other portable items. Police arrested 3 suspects and have recovered some of the stolen item", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.833333299714695, 2.45000000010981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-72", - "dateofocc": "2006-02-21", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "MALAYSIA:Robbers boarded a yacht at 2000LT off Tioman Islands and stole cash, personnel belongings, and other portable items. Police arrested 3 suspects and have recovered some of the stolen items. Suspects are under investigation and soon will be charge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.833333299714695, 2.45000000010981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-258", - "dateofocc": "2006-10-13", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: Yacht boarded and robbed 13 Oct at 0400 local time, in position 10:28.7N-064:08.5W, Navimca, Cumana. Robbers boarded a yacht at anchor and stole two outboard engines (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.141666699939378, 10.478333300081601] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-73", - "dateofocc": "2006-03-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Product tanker (ISABEL BARRETO) boarded and robbed while at anchor, waiting to berth at the Northern Peruvian Refinery of Petro Peru in Talara. Seven armed men boarded the vessel in the early hours of Mar 4. Master and crew held at gunpoint. Ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.291666700089309, -4.55500000037307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-74", - "dateofocc": "2006-03-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO: Unidentified refrigerated cargo ship reported boarding and attempted robbery 13 Mar at 0130 local time, Ikungulu anchorage, Matadi,Congo river. Two robbers boarded the vessel. Alert crew raised alarm and robbers escaped empty handed. Robbers ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.054166699888469, -5.866111099895306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-75", - "dateofocc": "2006-03-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO: Unidentified container ship boarded and robbed 9 Mar at 0150 local time, Boma anchorage Congo river. Two robbers boarded the vessel, broke open containers, and stole cargo. Alarm was raised and crew mustered. Robbers escaped with stolen cargo (", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.054166699888469, -5.866111099895306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-76", - "dateofocc": "2006-03-07", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified chemical tanker approached 7 Mar at 0900 UTC, while underway in position 14-42N - 052-08E. About fifteen small boats followed the vessel. Ship increased speedand chase was aborted. French maritime forces at Djibouti were no", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.133333299931337, 14.699999999831448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-77", - "dateofocc": "2006-03-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Unidentified cargo ship chased 13 Mar at 0930 local time, while underway in position 01-21N - 044-40.32E, off Marka. Armed pirates in a boat chased the vessel and fired shots at bridge, lifeboat, and superstructure, which caused bullet holes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.505277800367423, 1.350000000344039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-78", - "dateofocc": "2006-03-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified container ship boarded and robbed 8 Mar at 0120 local time at anchorage B, Chittagong. Three robbers, armed with long knives, boarded at stern and stole ship's stores. Duty crew raised alarm and robbers jumped overboard They esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-79", - "dateofocc": "2006-03-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Unidentified tugboat reported attempted boarding and robbery 8 Mar at 1502 UTC, while underway in position 07-56S - 117-34E, Bali sea. Pirates attempted to attack the tugboat. Tug took evasive maneuvers and boarding was averted (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -7.933333300149513] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-147", - "dateofocc": "2004-05-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified product tanker was boarded 31 May at 0225 local time while underway in position 01-32N 104-38E, by 2 persons who entered engine room and broke into stores. Duty engineer raised alarm and the two jumped overboard and escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.53333329991375] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-148", - "dateofocc": "2004-05-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified bulk carrier was boarded 26 May at 0230 local time while underway in position 01-37N 104-37E, by 7 persons armed with pistols and knives. Four crew taken hostage while pirates stole ship's cash from master's cabin and crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.616666699574751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-149", - "dateofocc": "2004-06-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified cargo ship reports attempt to board 4 Jun at 2115 local time while at Salaverry anchorage by four persons who tried to climb anchor chain. Crew raised alarmand the intruders escaped in a boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.005555600018397, -8.233333300249171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-150", - "dateofocc": "2004-06-04", - "subreg": "71", - "hostility_": "UNIDENTIFIED ATTACKER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT: Unidentified LPG tanker reports suspicious approach 29 May at 2120 local time while underway in position 05-05.1N 100-10.2E. Three very fast grey speedboats positioned themselves with one ahead and one on either flank. Crew sounded wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.686666700006981, 4.975000000123998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-151", - "dateofocc": "2004-06-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 6 Jun at 0200 local time while in position 03-55.1N 098-47.1E at Belawan anchorage. Four persons armed with guns and knives gained access at the forecastle and stole ship's stores, before escaping in a boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.784999999713364, 3.918333299941423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-152", - "dateofocc": "2004-06-01", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified livestock carrier reports suspicious approach 1 Jun at 2325 local time, while underway in position 01-12N 104-50E east of Bintan Island. Seven persons in a black rubber boat came close under the stern but withdrew when crew", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.833333299747039, 1.199999999844522] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-154", - "dateofocc": "2004-06-07", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: An unidentified bulk carrier reports being chased 7 Jun at 1940 UTC while underway in position 12-30N 048-38E by an unlit boat. Crew sounded alarm and boat withdrew (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.633333300267793, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-155", - "dateofocc": "2004-06-04", - "subreg": "71", - "hostility_": "UNIDENTIFIED ATTACKER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT: Offshore support vessel (QATIF) reports being fired on 4 Jun at 1025 local time, while underway in position 04-58.5N 098-41.2E. Attackers were in a blue fishing boat and withdrew when crew mustered and activated fire hoses. Offshore su", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.686666700006981, 4.975000000123998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-156", - "dateofocc": "2004-06-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker reports attempt to board 12 Jun at 0530 local time while anchored in position 05-58.3S 105-58.6E at Merak. Seven persons armed with long knives fled when crew sounded alarm and mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.9766666998201, -5.971666700135643] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-157", - "dateofocc": "2004-06-11", - "subreg": "71", - "hostility_": "UNIDENTIFIED ATTACKER", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship reports being fired upon 11 Jun at 0310 local time while underway in position 04 03.18N, 099 21.34E. Unknown assailants injured two crew before alarm was raised and boat withdrew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.355555600422861, 4.053055599820709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-158", - "dateofocc": "2004-05-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA: The tug (MARCO POWER) and its barge (BINTANG 9) were hijacked 19 May (believed previously unreported) by suspected Aceh rebels while underway in position 04-48.15N 098-35.50E off Tanjung Langsa at night. Tug and barge were freed but Captain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.591666699630707, 4.802500000269049] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-159", - "dateofocc": "2004-06-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 8 Jun at 0800 local time while underway off Pulau Berhala, by about 20 persons believed to be Aceh rebels. Twelve crew members jumpedoverboard and were rescued by fishing boats. Captain and Chief Eng", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.399999999944441, -0.866666699984023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-160", - "dateofocc": "2004-05-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Unidentified container ship was boarded 26 May at 0415 local time while underway in position 01-42N 104-40E by 7 persons armed with long knives. Chief officer taken hostage and taken to master's cabin where pirates stole ship's cash.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-48", - "dateofocc": "2005-01-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified general cargo ship was boarded 29 Jan at 0200 local time, while anchored at Kandla outer anchorage. Eight robbers, armed with iron bars, boarded from a fishing vessel. Duty officer raised alarm and robbers escaped empty handed,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-49", - "dateofocc": "2005-02-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "BANGLADESH: Nine fishing trawlers were robbed of cash and fish according to a 03 Feb report. The robbers injured 13 fishermen, after the fishermen offered resistance. The incidents are reported in the Bay of Bengal, off the Patharghata coast of Barguna", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.966666699689029, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-50", - "dateofocc": "2005-01-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jan at 0340 local time, while berthed at Panjang. Three persons armed with long knives jumped overboard and escaped empty handed in a speedboat, when duty officer sounded alarm and crew mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.350000000110072, -5.483333300385027] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-51", - "dateofocc": "2005-01-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified container ship was boarded 20 Jan at 0235 local time, while anchored at Sandakan anchorage. Two robbers broke into a container on deck and stole cargo. Crew raised alarm and robbers jumped overboard. The robbers escaped in a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-52", - "dateofocc": "2005-01-31", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF THAILAND-VIETNAM: An unidentified chemical tanker was boarded 31 Jan at 1852 UTC, while underway in position 09-15N 103-10E. Three persons armed with guns and long knives raided master's cabin, stole cash from ship's safe, and master's personal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.166666699576297, 9.249999999969987] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-53", - "dateofocc": "2004-12-30", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "PHILIPPINES-MALAYSIA: The tug (CHRISTIAN) and barge (FLORA), reported missing 30 Dec, after failing to report since 14 Dec. They were underway in position 05-34N 119-22E in the Sulu Sea on a voyage from the Philippines to Indonesia and were found at Ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.366666699560596, 5.566666699837413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-54", - "dateofocc": "2005-02-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT:Masked pirates armed with handguns and swords boarded a tanker underway, non damage.Vessels requested to be caution advised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-55", - "dateofocc": "2005-02-07", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified bulk carrier was boarded 07 Feb at 0400 local time, while anchored at Buenaventura inner anchorage number three. Two robbers boarded a bulk carrier at forecastle and broke padlocks on store rooms. Crew raised alarm and robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.12166670023322, 3.856666700258756] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-56", - "dateofocc": "2005-02-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Nigerian military reports 1 person was killed during the occupation of an oil terminal near Warri, in Nigeria's southern Delta region on 04 Feb. On 05 Feb, nine people were reported kidnapped and later killed after their boat was ambushed by m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.695000000183256, 5.538333300299541] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-57", - "dateofocc": "2005-02-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified bulk carrier was robbed 02 Feb at 0350 local time, while anchored at Kandla. Two robbers armed with long knives boarded the vessel at the forecastle. Duty officer raised alarm and crew mustered. Robbers jumped overboard and esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-58", - "dateofocc": "2005-01-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified general cargo ship was boarded 29 Jan at 0200 local time, while anchored at Kandla outer anchorage. Eight robbers armed with iron bars boarded from a fishing vessel. Duty officer raised alarm and robbers escaped empty handed, by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-59", - "dateofocc": "2005-02-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 02 Feb at 0130 local time, while anchored at Chittagong. Seven robbers armed with long knives stole the ship's stores and escapedin an unlit boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-60", - "dateofocc": "2005-02-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAITS: An unidentified tanker was boarded while underway on 02 Feb at 0245 local time. Ten masked pirates armed with guns and long knives tried to break the bridge windows,but did not succeed and escaped empty handed. Master raised alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.952500000372879, 1.232222200037427] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-241", - "dateofocc": "2005-07-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Jul at 2110 local time, while at Balikpapan inner anchorage. Alert crew raised alarm while three robbers were in the process of boarding the vessel. Robbers jumped back into the water and escaped in a m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.791666699679695, -1.258333300405809] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-242", - "dateofocc": "2005-07-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:On July 21at 8:30GMT, one Italian Merchant Vessel in navigation off Somalia shores, in position LAT: 03:31.5N LONG: 049:23.7E, has been hijacked by two fiberglass fast boats six meters in length with three persons on board each. Pirate boats ha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.39499999970792, 3.525000000391856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-243", - "dateofocc": "2005-07-26", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified container ship was boarded 26 Jul at 2000 local time, while departing the port of Georgetown. Five robbers, armed with guns, boarded the vessel as it was departing port, with the pilot on board. They held crew at gunpoint and b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.17333329968784, 6.805555599813033] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-244", - "dateofocc": "2005-07-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERSCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 28 Jul at 0415 UTC, while underway in position 04-08.5N 049-49.3E, off the east coast of Somalia. Six pirates, armed with guns, approached the vessel in a white hulled speedboat and opened fire. Ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.821666699951095, 4.141666699588995] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-245", - "dateofocc": "2005-07-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 29 Jul at 1445 local time while underway in position 12:24N, 050:30E, off Caluula, NE coast of Somalia. A white speedboat with five pirates, armed with guns, approached the vessel and opened fire. C", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-247", - "dateofocc": "2005-07-29", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 29 Jul at 0300 local time in position 01-27.39S 116-45.76E, during cargo operations at SPM terminal, Lawi-Lawi, Balikpapan. Robbers broke into three storerooms and stole safety equipment and property and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.762777799716218, -1.456388899994806] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-248", - "dateofocc": "2005-07-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Tanker (CIELO DI MILANO) was fired upon 26 Jul at 1110 UTC, while underway in position 03-09N 048-47E, off the east coast of Somalia. Two speedboats, each with four pirates armed with machine guns and RPGs, approached the tanker. One boat ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.783333299867991, 3.150000000042496] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-249", - "dateofocc": "2005-08-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified general cargo ship was boarded 04 Aug at 0250 local time, while at anchorage no. 2, Ilo. Two robbers, armed with long knives, boarded at forecastle and stole ships stores. Robbers escaped in an awaiting fishing boat. Master call", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.369444399994677, -17.616666700300868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-250", - "dateofocc": "2005-08-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified tanker was boarded 04 Aug at 0006 local time, while at Callao anchorage area no. 8. Three robbers climbed the anchor chain, broke padlocks off forward locker, stole ships stores, and escaped. Master informed port authorities and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.175000000329362, -11.991666699556902] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-251", - "dateofocc": "2005-08-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship reported an attempted boarding 03 Aug at 0212 local time, while underway off Dar Es Salaam, Tanzania. Ten persons in a white boat attempted to board the ship; however, the crew mustered and the suspects aborted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.266666699938014, -6.800000000414173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-252", - "dateofocc": "2005-08-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Chemical tanker (TAKIS) reported an attempted boarding 03 Aug at 1600 UTC, while underway in position 13-24N 049-25E, approximately 40 NM south of Al Mukalla, Yemen. The vessel was trailed by persons with guns in two speedboats, at a rang", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.416666699861537, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-253", - "dateofocc": "2005-07-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was approached by robbers in a small boat 25 Jul at 2100 local time, while in port Chittagong, Bangladesh. The robbers stole zinc anodes welded to the hull using crowbars. The crew signaled the alarms, but the r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-254", - "dateofocc": "2005-07-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 15 Jul at 0400 local time, as approaching anchor off Chittagong. Four robbers boarded the vessel; one held the watchman at knifepoint, while others broke into the aft locker and stole the ships store", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-80", - "dateofocc": "2006-03-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified cargo ship boarded and robbed 12 Mar at 0100 local time, while underway in position 01-43.3S - 117-07.7E, 32 degrees SE of Balikpapan. Two pirates armed with knives boarded the vessel from a speedboat. They stole two life rafts", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.128333299978294, -1.721666699773323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-81", - "dateofocc": "2006-03-07", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Unidentified container ship reported boarding and attempted robbery during night of 7 Mar, while in position 10-19.7N - 107-02E, Vung Tau anchorage. Robbers boarded the vessel unnoticed. They tried to break open locks on forward storerooms bu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.328333299582141] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-82", - "dateofocc": "2006-03-19", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified vehicle carrier approached 19 Mar at 0600 UTC, while underway in position 12-42.7N - 045-46.2E. Three speedboats approached the vessel. One boat came within five cables and master raised alarm. Boats moved away after follow", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.769999999927961, 12.711666700306807] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-83", - "dateofocc": "2006-03-14", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified general cargo ship followed 14 Mar at 2300 local time, while preparing to anchor at Chittagong anchorage. Three boats followed the vessel. Alarm was raised and crew mustered. Boats came within 3 cables and then moved away (IM", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-84", - "dateofocc": "2006-03-14", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Unidentified LPG tanker reported being followed 14 Mar at 1150 UTC, while underway in position 06-12N - 054-56E. A craft, blue hull and white accommodation, followed the vessel. Master took evasive maneuvers and increased speed. Craft reduce", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.933333299662138, 6.200000000006241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-85", - "dateofocc": "2006-03-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified container ship boarded and robbed 17 Mar at 2140 local time, Chittagong anchorage area. While preparing to anchor, robbers in four boats armed with long knivescame alongside the vessel. Alarm was raised and crew mustered but r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-86", - "dateofocc": "2006-03-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: Unidentified cargo ship boarded and robbed14 Mar at 0315 local time while in position 30:06.60N - 047:55.73E, Khawr Az Zubayr roads. Armed robbers boarded the vessel via anchor chain. They broke in to forward locker and stole ship's stores. Duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.928888900329014, 30.109999999763261] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-87", - "dateofocc": "2006-03-25", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Unidentified container ship boarded 25 Mar at 0145 local time at, quarantine anchorage no.2, Santos Roads. Four robbers boarded the vessel via anchor chain. Duty officer raised alarm and crew mustered. Robbers escaped empty handed in an unlit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.333333300312177, -24.05000000029753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-88", - "dateofocc": "2006-03-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified general cargo ship boarded and robbed 24 Mar at 2230 local time, Chittagong anchorage. Robbers armed with long knives in three boats came alongside the vessel, while preparing to anchor. Alarm was raised, crew mustered, and po", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-89", - "dateofocc": "2006-03-26", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Unidentified tanker reported suspicious approach 26 Mar at 1435 local time, while underway in position 15-03N 041-58E. Two speedboats, with white hulls, approached the vessel. Duty officer took evasive maneuvers and crew mustered. Boats mo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.966666699935388, 15.049999999797819] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-90", - "dateofocc": "2006-03-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Tanker hijacked 29 Mar mid-day in Somali territorial waters, shortly after departing Ceel-Adde port, in northern Mogadishu. The tanker is reported to have recently unloaded diesel in the port. Sources at the port are unaware if ransom demands", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.35277779977207, 2.027777799697446] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-91", - "dateofocc": "2006-04-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: South Korean fishing vessel (DONG WON No 628) hijacked 04 Apr, while operating 60 miles off the east coast of Somalia. Coalition warships, USS Roosevelt and HNLMS Zeven Provencien, responded to distress calls but were unable to persuade the hi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-161", - "dateofocc": "2004-06-15", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DOMINCAN REPUBLIC: An unidentified bulk carrier was boarded 15 Jun during the night by six men armed with knives while berthed at Puerto Plata. Crew raised alarm, secured the accommodation and chased the intruders, who jumped into the water and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.698333300025411, 19.802777800429681] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-162", - "dateofocc": "2004-06-19", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified bulk carrier was boarded 19 Jun at 0615 local time while anchored in position 14-41.24N 017-23.36W at Dakar anchorage. Three persons armed with long knives held duty seaman hostage and stole ship's stores. Crew raised alarm a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.389166700322733, 14.687222200414112] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-163", - "dateofocc": "2004-06-13", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CAMEROON: An unidentified general cargo ship was boarded 13 Jun at 0540 local time, while at Douala port. The intruders gained access at the stern using ropes but could not enter the accommodation, which was secured. Crew chased off the first two but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.677777800198498, 4.041666699855512] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-164", - "dateofocc": "2004-06-15", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN-ANDAMAN ISLANDS: An unidentified tanker reports suspicious approach 15 Jun at 1200 UTC, while underway in position 06-15.06N 092-11.6E. Crew activated fire hoses directed searchlights and took evasive maneuvers whereupon craft stopped fol", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [93.192777800311944, 6.25111109964962] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-165", - "dateofocc": "2004-06-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 16 Jun at 0200 local time at north Pulau Laut anchorage. Five persons armed with crowbars, knives and daggers gained access viathe hawse pipe, tied up the duty seaman , and escaped with ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.416666700229598, -3.016666699648852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-166", - "dateofocc": "2004-06-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified Ro/Ro reports attempted attack 15 Jun at 1200 UTC, while underway in position 05 28N 098 34E off Aceh. Persons in 3 boats withdrew when crew raised alarm, activated fire hoses, directed searchlights and took evasive maneuve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.566666700147039, 5.466666700103985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-167", - "dateofocc": "2004-06-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 19 Jun at 2300 local time, while anchored in position 03-12.46S 116-19.41E at Pamancingan anchorage, Kalimantan. Seven persons armed with long knives boarded at the forecastle, overpowered 3 crew and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.323611099731238, -3.207499999603272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-168", - "dateofocc": "2004-06-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 14 Jun while anchored in position 01-15.87S 116-47.69E at Balikpapan Inner anchorage. Two persons boarded at the forecastle from a speedboat, but fled empty handed when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.794722200233537, -1.264444400438947] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-169", - "dateofocc": "2004-06-13", - "subreg": "71", - "hostility_": "UNIDENTIFIED ATTACKERS", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA: An unidentified tug towing a barge was fired upon 13 Jun at 1800 local time, while underway in position 05-03N 098-45E off Aceh. The attackers were in 8 small boats and ordered the tug to stop under threat of more firing. Seven persons the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 5.050000000373757] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-170", - "dateofocc": "2004-06-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MALAYSIA: An unidentified Malaysian fishing boat was boarded 14 Jun at 0130 local time while about 10 nm off Kuala Sepetang (Port Weld or Kampung Sepetang) fishing village. About 10 persons armed with automatic Weapons abducted 3 crew. The remaining 3", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.633333300150809, 4.833333300110382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-171", - "dateofocc": "2004-06-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: An unidentified Ro/Ro ship was boarded 23 Jun at 0400 local time while berthed at Conakry, Guinea. Armed persons threatened duty seaman with knives, but fled when other crew arrived to assist (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-172", - "dateofocc": "2004-06-20", - "subreg": "61", - "hostility_": "UNIDENTIFIED ATTACKERS", - "victim_d": "YACHT", - "descriptio": "SOMALIA: An unidentified yacht reports being fired upon 20 Jun at 1100 UTC while anchored in position 10-30N 051-15E off Raas Xaafun (Hafun). Nine persons in a fishing boat approached the yacht which had anchored to attend to an injured crew member.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.25000000042894, 10.500000000235218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-173", - "dateofocc": "2004-06-20", - "subreg": "71", - "hostility_": "UNIDENTIFIED ATTACKER", - "victim_d": "FISHING VESSEL", - "descriptio": "MALACCA STRAIT: An unidentified fishing boat was fired upon, 20 Jun at 0100 local time 21.5 nm nw of Pulau Jarak. Firing was from an unidentified boat and caused damage to the fishing boat, but no injury to its crew. No explanation has been given for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.099999999715408, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-174", - "dateofocc": "2004-06-23", - "subreg": "92", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: An unidentified offshore support ship reports suspicious approach 23 Jun at 1500 local time while in position 06-07N 119-05E in the Sulu Sea. Three uniformed persons in a fishing boat claimed to be from Customs/Coast Guard and wanted to bo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.083333300432741, 6.116666700169958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-61", - "dateofocc": "2005-02-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded, during STS operations 06 Feb at 1936 UTC, in position 01-22N 116-58E Balikpapan anchorage. Police on board opened fire but the robbers managed to cut the ropes of two life-rafts and throw them overboard.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, 1.366666700241183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-62", - "dateofocc": "2005-02-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 03 Feb at 1530 UTC in position 03:12S 116:21E, Kota Baru anchorage. Six robbers armed with long knives hit a crewman on his head and tied him up. Duty Officer sent a cadet to look for crewman but rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.349999999566421, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-63", - "dateofocc": "2005-02-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 01 Feb at 0300 local time while at berth, Tan Thuan port off Ho Chi Minh City. Two robbers broke into the storeroom and tried to steal ship's stores, while the ship was conducting discharging operations", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.729999999848928, 10.756944399703173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-64", - "dateofocc": "2005-02-03", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "LUZON STRAIT: An unidentified bulk carrier reported an attempted boarding while underway 03 Feb at 1530 UTC, near position 19-43N 119-20E. A craft doing 20 kts approached the starboard side. Duty officer raised alarm and took evasive maneuvers. Crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.333333299766309, 19.716666699890311] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-65", - "dateofocc": "2005-02-11", - "subreg": "24", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified bulk carrier was approached by two unlit boats on 11 Feb, 0400 local time in position 10-16N 064-35W, Pertigalete port cement terminal, Venezuela. Two unlit boats approached within 100 meters before moving away, after securi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-66", - "dateofocc": "2005-02-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship had an attempted boarding on 10 Feb, 0900 local time at Banjarmasin Roads, Indonesia. Twelve robbers armed with knives attempted to board a general cargo ship, along with stevedores. Commanding officer and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.549999999867964, -3.383333299687592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-67", - "dateofocc": "2005-02-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 16 Feb at 2240 local time, while anchored at Chittagong 'B' anchorage. Ten robbers armed with long knives seized the duty seaman and held him at knifepoint. Duty officer raised alarm and crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725000000006673, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-68", - "dateofocc": "2005-02-15", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 15 Feb at 0505 local time, while anchored at (Teluk Adang Bay) Adang Bay anchorage. Three robbers, armed with iron rods, boarded ship from the hawse pipe and broke open the forepeak locker. Duty seam", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.616666699696566, -1.76666670028294] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-69", - "dateofocc": "2005-02-15", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified bulk carrier was approached 15 Feb at 1545 UTC, while underway in position 02-38N 107-47E. As the unlit craft approached, alert crew flashed their aldis lamp in the direction of the craft. A few minutes later, craft al", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.783333299977357, 2.633333299679521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-70", - "dateofocc": "2005-02-19", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HONG KONG: An unidentified barge was boarded 19 Feb late at night, while moored in the city's terminal. Five men boarded the barge from their own vessel and overpowered the lone lighterman keeping watch. The lighterman was tied, gagged and hidden in a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.156666700318397, 22.29166669977127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-71", - "dateofocc": "2005-02-25", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship was approached 25 Feb at 1700 UTC, while underway in position 06-43.98N 050-35.17E. A speedboat followed the vessel for 15 minutes, before moving away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.586111100269534, 6.733055599691511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-72", - "dateofocc": "2005-02-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIA: An unidentified tug was boarded 22 Feb at 0530 local time, while underway in position 07-49N 076-50E, off Trivandrum, SW coast of India. Two fishing boats approached a tug towing an ocean going crane barge. One boat came alongside the barge and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.8333332997409, 7.816666700134988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-73", - "dateofocc": "2005-02-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "STRAIT OF MALACCA: Tug (HIGHLINE 26) was attacked 28 Feb at 2100 local time approximately 50 nm west of Penang, Malaysia. An Indonesian fishing boat came alongside. Four men jumped onto the tugboat and attacked the crew. The bandits fired several sho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.349999999948352, 5.416666700237272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-255", - "dateofocc": "2005-08-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier reported an attempted boarding 04 Aug at 0600 local time, while underway in position 02-19.5N 101-50.0E, 5 nm off Tanjung Tuan. Several persons in an unlit 6m speedboat came within 1 cable, intending to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.833333299650064, 2.324999999993338] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-256", - "dateofocc": "2005-08-09", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship reported attempted boarding 09 Aug at 0035 UTC while anchored in position 17-52.4N 076-47.1W, Kingston outer anchorage. Four robbers in an unlit boat approached the ship and tried to board. Duty officer raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.785000000109903, 17.873333299884564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-257", - "dateofocc": "2005-08-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: An unidentified yacht was boarded 05 Aug at 1220 local time, while anchored off Laguna Grande. Three robbers, armed with machetes, boarded the yacht and lowered the dingy. Skipper confronted one of the robbers who then slashed him with the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.049999999792476, 10.574999999585657] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-258", - "dateofocc": "2005-08-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "BANGLADESH: An unidentified tug towing a tanker for scrap was boarded 10 Aug at 0800 local time off Kutubdia Island. A group of pirates in five trawlers, armed with guns, boarded both the tug and the tanker and stole stores and property. The tug sent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.866666700020289, 21.849999999657996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-259", - "dateofocc": "2005-08-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "THAILAND: Yacht (SWITCH BLADE) was boarded and stolen 11 Aug between 2100 and 2359 local time while moored at Ao Chalong Bay, Phuket. Theft was reported to marine police who searched the immediate area but did not find the vessel. Yacht was subsequent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.383333299853234, 7.883333300074128] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-260", - "dateofocc": "2005-08-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 10 Aug at 0001 local time, while anchored in position 00-33.1N 117-43.7E, Tanjung Bara anchorage. Robbers broke padlock off fore peak locker and stole ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.72833330017761, 0.551666699805651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-261", - "dateofocc": "2005-08-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 12 Aug at 1850 local time, while at the Balikpapan coal terminal. Four robbers, armed with crowbars, boarded the ship by climbing forward mooring ropes. They broke forward store lock and stole ships", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.258333300405809] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-262", - "dateofocc": "2005-08-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported an attempted boarding 04 Aug at 0430 local time in position 01-41.7S 116-38.4E, Adang Bay anchorage, Indonesia. Four persons were in the process of boarding the vessel, using hooks attached to ropes. A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.64000000005251, -1.695000000262553] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-263", - "dateofocc": "2005-08-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified general cargo ship was boarded 04 Aug at 0250 local time, while at anchorage no. 2, Ilo. Two robbers, armed with long knives, boarded at forecastle and stole ships stores. Robbers escaped in an awaiting fishing boat. Master call", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.37499999960221, -17.616666700300868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-264", - "dateofocc": "2005-08-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified general cargo ship was boarded 22 Aug at 0245 UTC, while anchored in location 06-20.7N 003-20.3E Lagos anchorage, Nigeria. Two robbers boarded the vessel and tried to assault duty a/b. He managed to raise alarm and crew muste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.33833329986868, 6.345000000249229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-265", - "dateofocc": "2005-08-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: An unidentified fishing vessel was reportedly hijacked 16 Aug, while fishing off the Somali coast, south of Kismayo. The fishing vessel, reportedly owned by a Chinese company, was seized by six unidentified gunmen, as it was fishing inside Som", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.524999999854458, -0.394444399880229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-266", - "dateofocc": "2005-08-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk cargo ship (YUAN ZHI) had an attempted robbery 12 Aug, while at Chittagong outer anchorage. A regular Coast Guard patrol boat arrested four suspects from an engine boat. Suspects later confessed they were trying to rob the vessel (LL)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-267", - "dateofocc": "2005-08-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: General cargo ship (CEY PIONEER) was boarded 21 Aug at 1945 UTC, while anchored in position 29-43.6N 048-39.E Um Qasr-Khawr Abd Allah Channel, while awaiting berthing. Two boats slowly approached the vessel from the port side. Three watchmen a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.65500000042141, 29.726666699827319] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-92", - "dateofocc": "2006-04-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified ship reported attempted boarding 1 Apr at 1900 UTC, while underway in position 13-32.70N 049-32.80E. Two unlit speedboats attempted to board the vessel. Ship took evasive maneuvers and raised alarm. Crew mustered and dire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.546666700234482, 13.54499999994249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-93", - "dateofocc": "2006-04-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: Unidentified general cargo ship reported attempted boarding 3 Apr at 0735 local time, while in position 30-06.74N 047-055.90E, Khawr Az Zubayr Roads. Armed robbers in four boats attempted to board the vessel. Duty officer raised alarm and crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.93166670013278, 30.112222200215967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-94", - "dateofocc": "2006-03-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 21 Mar at 0240 local time, while in position 02-54.4S 107-16.1E, Gelasa Straits. Six pirates armed with long knives boarded the vessel and entered bridge. They forced two officers to take them", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.268333299641426, -2.906666700301798] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-95", - "dateofocc": "2006-03-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Somalia:On March 29 at 1154 LT 30nm off Mogadihu, east coast of Somalia, twelve pirates boarded a product tanker underway. The pirates were armed with machine guns, AK-47 rifles, and hand arms in two small speed boats. They took hostage 19 crewmembers a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.716666699831819, 2.133333300113009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-96", - "dateofocc": "2006-04-09", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Unidentified general cargo ship reported suspicious approach 9 Apr at 0140 local time, while underway in position 14-14N 042-44E. An unlit speedboat, doing over 26 kts, approached the vessel. Duty officer directed search lights and the boat", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.733333299807214, 14.233333300234506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-97", - "dateofocc": "2006-04-03", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Unidentified vessel reported a suspicious approach 3 Apr at 0145 local time, while underway in position 04-33N 055-40E, 400nm off the east coast of Somalia. As a speedboat approached the vessel, the master took evasive maneuvers and inc", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.666666700288488, 4.549999999907925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-98", - "dateofocc": "2006-04-02", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified general cargo ship reported suspicious approach 2 Apr at 2300 local time, Chittagong anchorage. Five suspicious boats came close to one cable from the vessel. Crew mustered and the boats moved away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-99", - "dateofocc": "2006-04-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified general cargo ship reported attempted boarding, on 4 Apr at 0200 local time at Chittagong anchorage. Three boats with robbers came 50 meters from the vessel. Robbers attempted to board for over one hour and later aborted boardi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-100", - "dateofocc": "2006-04-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Unidentified bulk carrier boarded 4 Apr at 0050 UTC at Callao anchorage. Three robbers armed with knives boarded the vessel at forecastle. Robbers threatened ship's security staff and broke padlock to the hatch. Duty officer sounded alarm and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-101", - "dateofocc": "2006-04-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified general cargo ship reported attempted boarding 3 Apr, at 2230 local time at Chittagong anchorage. Robbers armed with long knives in two boats came alongside the vessel. Alarm was raised and crew mustered. After two hours of at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-102", - "dateofocc": "2006-04-16", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified bulk carrier reported suspicious approach 16 Apr at 0500 UTC, while underway in position 14-00N 053-01.3E. Two boats, one white/blue and the other white/orange in color, approached the vessel. The boats requested ship to st", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.021666700414301, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-103", - "dateofocc": "2006-04-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "BANGLADESH: Unidentified tug boarded and robbed 13 Apr at 0245 local time, while in position 22-10.86N 091-47.06E, Chittagong C anchorage. Three fishing boats approached the vessel and seven robbers armed with long knives boarded. Robbers stole ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.784444400135953, 22.181111100173837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-104", - "dateofocc": "2006-04-17", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TUGBOAT", - "descriptio": "SOUTHERN RED SEA: Integrated tug barge followed 17 Apr at 0951 local time, while underway in position 12-30.5N 042-29.3E, transiting Bab el Mandeb to Gulf of Aden. A green hulled, open ended flat bottom boat with inboard motor doing 10 to 11 kts with", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.488333299830742, 12.508333299886431] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-175", - "dateofocc": "2004-07-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship was boarded 4 Jul at 1815 local time while at Guayaquil anchorage. Ten persons armed with guns and knives gained access via the poop deck and tied up the duty seaman. Alarm was raised and thieves escaped in thei", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.890277799872365, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-176", - "dateofocc": "2004-06-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MADAGASCAR: An unidentified bulk carrier was boarded 27 Jun at 0400 local time while at Majunga inner anchorage. Duty seaman was struck on head and neck. The thieves stole forward life raft and escaped. Seaman was hospitalized for treatment (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.300000000133934, -15.730555600063042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-177", - "dateofocc": "2004-06-30", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified container ship underway in position 12.25N 049-33E at 0500. 30Jun spotted two small craft lying ahead when the two suddenly accelerated toward the ship from a distance of 5 miles. Duty officer directed search lights at the tw", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.549999999564534, 12.250000000067018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-178", - "dateofocc": "2004-07-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified cargo ship was boarded 4 Jul at 0130 local time while at Chittagong anchorage. About 10 persons armed with knives and operating from a 20-meter boat threatened the duty seaman. Crew mustered and the intruders fled empty han", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-179", - "dateofocc": "2004-07-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BANGLADESH: Forty fishermen and three trawlers were taken hostage 3 July by pirates operating at Dublar Char in the Sundarbans. On 5 Jul a cell phone demand for a ransom of Tk 6 lakh was received for the \"first phase\" (INFO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.566666699888287, 22.149999999757654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-180", - "dateofocc": "2004-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "INDONESIA; An unidentified container ship was boarded 28 Jun at 1445 local time while anchored in position 06-02S 106-53E, Tanjung Priok. The intruders stole a life raft before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.883333299646097, -6.033333299818253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-181", - "dateofocc": "2004-06-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Jun at 0450 local time while at Caltex berth no. 3, Dumai. Duty seaman spotted the intruders already on board and mustered the crew, whereupon the intruders escaped. Terminal security staff informed and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.464444400233162, 1.688888900020743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-182", - "dateofocc": "2004-07-05", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "CAMBODIA-VIETNAM: Vietnamese coast guards caught a pirate fishing trawler and arrested one of the pirates according to a 5 Jul report. The pirate boat had reportedly been preying on Vietnamese fishing boats when caught 2.5 miles off Phu Quoc Island (Da", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 10.216666700032761] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-183", - "dateofocc": "2004-07-07", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified general cargo ship was boarded 7 Jul at 0650 UTC by about 8 armed persons while at anchorage \"Hotel\", Port au Prince. The robbers gained access via the hawse pipe, stole ship's stores and escaped after threatening crew with their", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40416670017288, 18.572222200040585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-184", - "dateofocc": "2004-07-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was approached 9 Jul at 2330 local time by 12 persons in two boats while the ship was at anchorage \"C\", Chittagong. One person was armed with a long knife, boarded at the stern, but fled when confronted by sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-185", - "dateofocc": "2004-07-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA-BANGKA STRAIT: The tug boat (GLOBAL SEMESTA I) and its barge (GLOBAL SEMESTA IV) with a cargo of bricks was hijacked 11 Jul at 1130 local time while underway in position 02-15.4S 105 -16.0E. Twelve pirates forced the crew of 10 to jump overbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.266666700273788, -2.256666700235826] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-186", - "dateofocc": "2004-07-10", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-CELEBES SEA: An unidentified tanker reports sighting 7 unlit speedboats joined by a line ahead of its course 10 Jul at 1600 UTC while underway in position 03-20N 119-31E. When boats came within 5 cables tanker switched on lights, mustered cre", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.516666700060114, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-187", - "dateofocc": "2004-07-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified general cargo ship was boarded 12 Jul at 0230 local time, while at Sandakan inner anchorage. Six thieves stole ship's stores before fleeing, when alarm was raised (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-188", - "dateofocc": "2004-07-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "BANGLADESH: Bangladeshi media report 19 Jul that, despite recent high-profile arrests of river pirate gangs preying on local traders and fishermen, other gangs rapidly move into areas where arrests have been made. In the Meghna River estuary 183 trawler", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.999999999690942, 22.499999999723968] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-74", - "dateofocc": "2005-02-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "STRAIT OF MALACCA: An unidentified fishing vessel was stolen early 21 Feb at 0300 local time approximately 20 km from Kalanang beach in Morib, Malaysia. Six pirates, armed with parang and scythes, boarded the vessel as the two fishermen were waiting to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 2.750000000209411] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-75", - "dateofocc": "2005-02-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded during STS operations 06 Feb at 1936 UTC, in position 01-22N 116-58E, Balikpapan anchorage. Police on board opened fire but the robbers managed to cut the ropes of two life-rafts and throw them overboard.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, 1.366666700241183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-76", - "dateofocc": "2005-02-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified chemical tanker was boarded 24 Feb at 0430 local time, while preparing to berth at Hon Gai inner anchorage. The robbers stole ship's stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 20.950000000258399] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-77", - "dateofocc": "2005-03-03", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MOROCCO: An unidentified general cargo ship was boarded 04 Mar at 0315 local time, while berthed at Casablanca port. The duty officer raised alarm and master called police via VHF, after 20 robbers armed with long knives boarded the vessel. Police arr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.600000000080342, 33.638333300039164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-78", - "dateofocc": "2005-03-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified refrigerated cargo ship reported an attempted boarding 03 Mar at 0110 local time while anchored near Tema Roads. Alert crew activated fire hoses and directed search lights after ten robbers attempted to board. Robbers aborted th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-79", - "dateofocc": "2005-03-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Ghana: At Tema Roads, ten robbers in a motor boat attempted to board a refrigerated cargo ship. Alert crew activated fire hoses and directed searchlights.Robbers aborted attempt and fled.POrt control informed who advised master to heave up anchor and mov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-80", - "dateofocc": "2005-02-25", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship was approached 25 Feb at 1700 UTC, while underway in position 06-43.98N 050-35.17E. A speedboat followed the vessel for 15 minutes before moving away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.586111100269534, 6.733055599691511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-81", - "dateofocc": "2005-02-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIA: An unidentified tug was boarded 22 Feb at 0530 local time, while underway in position 07-49N 076-50E, off Trivandrum, SW coast of India. Two fishing boats approached a tug, towing an ocean going crane barge. One boat came alongside the barge an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.8333332997409, 7.816666700134988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-82", - "dateofocc": "2005-03-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 02 Mar at 2230 local time, while anchored at Chittagong B anchorage. Robbers armed with guns stole ships stores and escaped. Port control and coast guard was informed, but no response was rece", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725000000006673, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-83", - "dateofocc": "2005-03-01", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 01 Mar at 0500 local time, while anchored at Sebuku anchorage, Pulau Laut. Eight robbers armed with long knives and metal bars boarded the vessel via the hawse pipe. They hit one crewmember with meta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.326666700109854, -3.206666700401456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-84", - "dateofocc": "2005-03-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAVA SEA: An unidentified tanker was boarded 07 Mar at 0755 local time, while underway in position 04-47S 114-14E, near Borneo, Indonesia. Pirates stole ship's equipment. Several fishing boats were in the area at the time (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.233333299871219, -4.783333299553021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-85", - "dateofocc": "2005-03-08", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "YEMEN: Two U.S. Sailboats were approached 08 Mar at 1700 local time, while underway in position 13-28N 048-07E. Two fast boats, with four men in each, opened fire on the yachts (aiming at the cockpits) approximately 30 miles off the coast of Yemen. O", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.116666699729592, 13.46666670036268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-86", - "dateofocc": "2005-03-14", - "subreg": "63", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified cable laying ship was boarded 14 Mar at 1336 local time, while anchored at Chennai (Madras) outer anchorage. One robber climbed up the anchor chain, crew raised alarm, and the robber jumped into the water. Robber escaped in a wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.355555599808383, 13.120833299827552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-268", - "dateofocc": "2005-08-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: An unidentified tug was fired upon 19 Aug at 2030 local time, while underway in position 02-37.1N 108-57.0E, off Natuna islands. Pirates in a fishing vessel, armed with guns, approached the tug as it was towing a barge. Gunfire caused dam", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.950000000406305, 2.618333299809422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-321", - "dateofocc": "2005-10-13", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was chased 13 Oct at 0500 local time, while underway in the Sunda Strait. Alert crew raised alarm, directed search lights and activated hire hoses. Chase was aborted (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.883333299646097, -5.916666700012456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-269", - "dateofocc": "2005-08-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Tug (ZARA) and barge (ZARA 3) hijacked 16 Aug at 0200 local time, while underway in approximate location 01N 104E. Pirate threw one crewmember overboard, who was later rescued by a nearby craft. He reached shore and reported the incident t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.000000000111356, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-270", - "dateofocc": "2005-08-25", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified bulk carrier reported attempted boarding 25 Aug at 0225 UTC while anchored in position 17-48.5N 077-06.5W, Rocky Point anchorage. Three persons in an unlit speedboat attempted to board the vessel via anchor chain. Alert duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.108333299666185, 17.808333300147808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-271", - "dateofocc": "2005-08-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 25 Aug at 0140 UTC while undergoing STS operations, in position 06-18N 003-22E, off Lagos. Three robbers, armed with long knives, threatened duty crew, stole ships stores, and escaped in a speedboat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-272", - "dateofocc": "2005-08-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: An unidentified fishing vessel was reportedly hijacked 16 Aug while fishing off the Somali coast, south of Kismayo. The fishing vessel, reportedly owned by a Chinese company, was seized by six unidentified gunmen as it was fishing inside Somal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.524999999854458, -0.394444399880229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-273", - "dateofocc": "2005-08-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BAY OF BENGAL: General cargo ship (EUGENIA P) reported attempted boarding 25 Aug, 1300 local time, while underway in position 21-36N 091-19E, 30 nm off the coast of SE Bangladesh. Several persons in two fishing boats approached the vessel in an attemp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.316666699687744, 21.600000000324428] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-274", - "dateofocc": "2005-08-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "BANGLADESH: Tug boarded 25 Aug at 0100 local time while underway near Chittagong anchorage. Seven robbers, armed with long knives and jungle bolos, stole stores and escaped. Later, the Coast Guard arrived for investigation (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-275", - "dateofocc": "2005-08-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified LPG tanker was boarded and robbed 27 Aug at 0230 local time while anchored in position 29-43.7N 048-39.1E, by buoy no. 3 and 5, Khawr Abd Allah. Three robbers, armed with machine guns and steel bars, smashed the bridge window and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.651666700192038, 29.728333300029647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-276", - "dateofocc": "2005-08-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH, CHITTAGONG:Several persons in two fishing boats attempted tp board a general cargo ship underway. Crew raised alarm, activated fire hoses, and fired one rocket flare. Master took evasive manoeuvres amd after 35 mins. boats moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.316666699687744, 21.600000000324428] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-277", - "dateofocc": "2005-09-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship was boarded 02 Sep at 0200 UTC, while drifting in position 06:05N, 003:24E, 19 nm off Lagos. Four robbers in a wooden boat, armed with long knives, boarded the vessel. Alarm was raised, crew mustered, and robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-279", - "dateofocc": "2005-08-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: An unidentified bulk carrier thwarted an attempted boarding 31 Aug at 0130 local time, while underway in position 15-01N 041-53E, about 150 miles NW of Bab El Mandeb TSS. Pirates attempted to board a bulk carrier underway from starboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.88333330027433, 15.016666699828249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-105", - "dateofocc": "2006-04-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "STRAIT OF MALACCA: Unidentified fishing vessel boarded and robbed 17 Apr at 0300 local time, 10 nm off Bagan coast, Baha Pahat. Pirates stole equipment from the vessel. A police report was filed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.716666699811867, 2.166666699907296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-106", - "dateofocc": "2006-04-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "STRAIT OF MALACCA: Fishing vessel fired upon 17 Apr at 0200 local time, 9nm off Parit Haji Baki coast. Six pirates, armed with guns in a speedboat, opened fire on the vessel. Several hit the side of the vessel but the crew escaped injuries. They lodg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.583333300348784, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-107", - "dateofocc": "2006-04-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier reported attempted boarding 16 Apr at 1520 UTC, while underway in position 02-58S 107-18.5E, Gelasa Strait. Five robbers, in a dark grey unlit speedboat, tried to board a bulk carrier underway. Alert crew mustere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.308333299894571, -2.966666699782138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-108", - "dateofocc": "2006-04-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified cargo ship boarded 16 Apr at 1305 UTC, while underway in position 02-53.0S 107-18.4E, Gelasa Strait. Four robbers in a speedboat armed with long knives boarded from stern. They entered the accommodation and held a crew member at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.306666699692244, -2.88333330012108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-109", - "dateofocc": "2006-04-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified vehicle carrier boarded and robbed 11 Apr at 0815 local time at Tg. Priok anchorage, Jakarta. Four robbers boarded the vessel at stern using a rope. They enteredengine room and held chief engineer hostage. Alarm was raised and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.058333300201298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-110", - "dateofocc": "2006-04-18", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: Unidentified product tanker reported attempted boarding 18 Apr at 2218 local time, Mamonal Roads. A robber attempted to board the vessel using a hook, attached to a rope. Alert crew raised alarm and robber escaped in a boat. Coast guard info", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.499999999815657, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-111", - "dateofocc": "2006-04-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified container ship reported attempted boarding 19 Apr at 2230 local time, at Chittagong anchorage. Four boats with eight robbers in each boat armed with long knives approached the vessel. Robbers from two boats attempted to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-112", - "dateofocc": "2006-04-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier reported attempted boarding 23 Apr at 2020 UTC, while underway in position: 02-52.2S 107-17.5E, Gelasa Straits. Seven persons in a speedboat approached the vessel and attempted to board from stern. Alert crew must", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.291666699822144, -2.870000000278083] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-113", - "dateofocc": "2006-04-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Unidentified tanker reported attempted boarding 24 Apr at 0210 UTC, while in position: 06-01.3N 003-17.4E, Lagos Roads. Three robbers in an 8 meter boat attempted to board the vessel. Alert crew prevented boarding (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.290000000029067, 6.021666699793684] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-114", - "dateofocc": "2006-04-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Vessel (AL TAJI) hijacked 25 Apr, Southern Somali coast. Isse Sheik Elmi, who is the agent for the (AL TAJI), said the vessel sailed from Dubai on 6 Apr and arrived at El Maan, Somalia on 23 Apr where it unloaded goods for Mogadishu businessme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.049999999836359, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-115", - "dateofocc": "2006-04-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TOURIST BOATS", - "descriptio": "INDIA: Two passenger vessels hijacked the morning of 30 Apr on River Krishna, Andhra Pradesh state. Two tourist boats were hijacked and ten people were taken hostage by four Maoists and a female accomplice. The hijackers, disguised as passengers, boar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.983333300369736, 15.950000000096736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-116", - "dateofocc": "2006-04-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDIA: Sailing yacht boarded and robbed 22 Apr at 2200 local time, off Kannyakumari, Cape Comorin. More than ten persons in a fishing boat boarded the yacht, stole property, and a life raft and left. Skipper made a police complaint. Authorities recov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [77.533333299673586, 8.066666700367932] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-322", - "dateofocc": "2005-10-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (SAN CARLO) was hijacked 20 Oct, while underway in position 02-013N 049-44E approximately 170 NM off the east coast of Somalia (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.733333300033564, 2.216666699774009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-117", - "dateofocc": "2006-04-29", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker reported suspicious approach 29 Apr at 0330 local time, while underway in position:07-55S 118-20E, Flores Sea. An unlit 10 meter boat going about 14 kts approached the vessel. Duty officer directed search lights and th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.333333299734022, -7.916666700077087] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-189", - "dateofocc": "2004-07-14", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship reports suspicious approach 14 Jul at 1712 UTC while underway in position 02-34.54N 101-29.54E. An unlit craft making 25 knots came close under the stern before the ship activated unspecified anti-pira", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.492222200419917, 2.575555599577285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-190", - "dateofocc": "2004-07-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: An unidentified dry cargo ship was boarded 23 Jul at 0530 local time, by 2 persons armed with long knives while at berth Conakry. Duty officer raised alarm and then two jumpedinto the water and fled. Earlier on 22 Jul at 0500 local time two si", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-191", - "dateofocc": "2004-07-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 20 Jul at 0230 UTC, while in position 06-18N 003-19E at Lagos anchorage. Two persons armed with long knives held night watchman at knifepoint, stole ship's stores and escaped with accomplices in a boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.316666700439157, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-192", - "dateofocc": "2004-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified bulk carrier was boarded 26 Jul at 0910 local time while drifting, for engine repairs in position 04-48.4N 098-38.9E. Armed persons from a fishing boat opened fire damaging bridge windows (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.648333299956221, 4.806666700424387] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-193", - "dateofocc": "2004-07-20", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker reports suspicious approach by 7 small craft 20 Jul at 1620 local time, while underway in position 05-46N 097-37E. Crew mustered and activated fire hoses when boats approached and they withdrew. Later a secon", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.616666699981408, 5.766666700203587] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-194", - "dateofocc": "2004-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT TANKER", - "descriptio": "INDONESIA: An unidentified LPG tanker was boarded 26 Jul at 2040 UTC, while anchored in position 06-01S 105-55E and Anyer. Five persons armed with automatic rifles fired several shots at the duty seaman who was unhurt. The thieves then stole ship's e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.916666700339761, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-195", - "dateofocc": "2004-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified general cargo ship was boarded 26 Jul at 0001 local time, while at anchor (Bintulu, Sarawak). Three persons armed with knives boarded at the forecastle but jumped overboard and escaped empty handed in a fast boat when alarm wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.966666700432825, 3.23333329987878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-196", - "dateofocc": "2004-07-27", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PAPUA-NEW GUINEA: The 353-ton Ro/ro (HURIS) was boarded and robbed 27 Jul shortly after its arrival in the early morning hours at Ah Tam Wharf, Rabaul. Five men armed with 3 home-made guns and a bush knife escaped with a \"substantial\" amount of cash an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [152.177777799651949, -4.208333299736751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-197", - "dateofocc": "2004-07-23", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PAPUA-NEW GUINEA: The container ship (AGUTOI), probably (AGUTOI CHIEF) was looted by at least 35 persons after it ran aground on a sand bank at Kerema. This is 100 km north west of Port Moresby, according to a 23 Jul report. Villagers from Kerema stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [145.733333300440222, -7.966666699943801] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-198", - "dateofocc": "2004-07-26", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified container ship was boarded 26 Jul at 2230 local time, while underway in position 14-38.4N 017-22.9W (3 miles from the port entrance of Dakar). As it departed, three persons armed with knives escaped with a \"large quantity\" of s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.381666699938023, 14.640000000351108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-199", - "dateofocc": "2004-08-02", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE: The general cargo ship (PATRAIKOS II) was attacked 2 Aug at 0420 local time. Ten persons opened fire as they approached, while the ship was anchored at Freetown. The attackers boarded using grappling hooks, smashed cabin doors, held the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.218888899891851, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-200", - "dateofocc": "2004-07-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIA: An unidentified tug and barge report attempt to board 27 Jul at 0745, by persons in several fishing boats while they were underway 18 nm west of Quilon (Kollam). Master contacted Indian Coast Guard, who dispatched an aircraft and patrol vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.600000000304419, 8.883333300106472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-201", - "dateofocc": "2004-07-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: A barge under tow of an unidentified tug was boarded 30 Jul at 0900, while underway in position 21-43N 091-33E 30 nm off Chittagong. The pirates stole stores and loose equipment from the barge and then departed at 0930 (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.550000000023488, 21.716666699954999] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-202", - "dateofocc": "2004-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified commercial landing craft was boarded 26 Jul late in evening, while underway off Pulau Jakak. The thieves stole ships fuel and radio equipment and took master and chief engineer hostage for ransom (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.099999999715408, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-87", - "dateofocc": "2005-03-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: M/T (TRI SAMUDRA) was boarded 12 Mar at 1755 local time, while underway in position 03-37.25N 099-36.75E, 14 nm SE of Berhala Island. Thirty-five pirates, armed with machine guns and rocket propelled grenades, took control of the Ind", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.612499999890758, 3.620833299970002] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-88", - "dateofocc": "2005-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "STRAIT OF MALACCA: Tug (IDATEN) was boarded 14 Mar at 1735 local time while underway in position 04:25.6N 099-40.7E. Number of pirates reported vary between three pirates, armed with pistols and rifles, to fifteen pirates, armed with AK-47 and M-16 ass", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.678333299728763, 4.426666699818497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-89", - "dateofocc": "2005-03-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: An unidentified bulk carrier reported an attempted boarding 11 Mar at 1905 UTC, while underway in position 01-15N 104-05.2E. Alert crew raised alarm, activated fire hoses, and switched on deck lights as three boats approached their ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.086666700001786, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-90", - "dateofocc": "2005-03-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GULF OF ADEN: The Thai-flag fishing vessel (SIRICHAINAVA 12) was seized 16 Mar at 0400 UTC, underway in position 12-45.35N 051-33.18E, by 3 Somali crewmen. The 3 Somali crewmen were working aboard as regular crew people.crew. The 3 held another 26 cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.553055600007838, 12.755833299991139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-91", - "dateofocc": "2005-03-15", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified general cargo ship reports being chased 15 Mar at 1330 UTC, while underway in position 11-59.1N 051-16.6E off Somalia, by three persons armed with guns in a white-hulled speedboat. Ship's crew raised alarm, activated fire", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.27666669993971, 11.984999999963975] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-92", - "dateofocc": "2005-03-15", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified Ro/Ro was approached 15 Mar at 0531 UTC, while underway in position 14-20N 050-50E, by 3 speedboats each containing 4 persons. To prevent boarding, crew activated fire hoses, sounded whistle, and warned other ships in the", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.833333299799392, 14.333333299967933] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-93", - "dateofocc": "2005-03-08", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHTS", - "descriptio": "GULF OF ADEN-YEMEN: The U.S. sailboats (MAHDI) and (GANDALF) report approach 08 Mar at 1700 local time, while underway in position 13-28N 048-07E, approximately 30 miles off the coast of Yemen. Two fast boats, with four men in each, opened fire on th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.116666699729592, 13.46666670036268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-94", - "dateofocc": "2005-03-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 16 Mar at 2245 local time while anchoring in Chittagong anchorage 'B'. Thieves armed with knives boarded at the stern, stole ship's stores, escaped when crew sounded alarm, and ship's whistle a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-95", - "dateofocc": "2005-03-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: .An unidentified bulk carrier was boarded 20 Mar at 1905 local time, at Balikpapan inner anchorage. The intruders tried to break into the bosun's store but fled empty handed, when crew raised alarm. One crew member was injured resisting the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-96", - "dateofocc": "2005-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING BOAT", - "descriptio": "INDONESIA: The Malaysian fishing boat (MITRA UTAMA) was boarded and robbed 14 Mar, while off Belawan with a cargo of vegetables enroute form Malaysia. Pirates, armed with machine guns, stole communications equipment and other property. They also took", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-278", - "dateofocc": "2005-08-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: An unidentified fishing vessel was reportedly hijacked on 16 AUG 2005 while fishing off the Somali coast, south of Kismayo. The fishing vessel, reportedly owned by a Chinese company, was seized by six unidentified gunmen as it was fishing insid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.524999999854458, -0.394444399880229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-280", - "dateofocc": "2005-09-08", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified tanker was boarded 08 Sep at 2235 UTC while moored to a buoy in position 17-52.8N 077-06.2W, Old Port Harbor. Four robbers, armed with knives and hooks, were detected onboard the vessel by the alert crew. Crew raised alarm an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.103333300309032, 17.880000000168138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-281", - "dateofocc": "2005-09-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 06 Sep at 2050 local time, while berthed at Cochin. Several robbers boarded the vessel and stole ships stores and escaped. Local authorities were informed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.257777800398287, 9.965833299873907] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-282", - "dateofocc": "2005-09-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 12 Sep at 0330 local time while anchored in position 03-17S 116-23E, Pulau Laut anchorage. Four robbers broke open bosun store and stole ships stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.383333300435311, -3.283333299954165] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-283", - "dateofocc": "2005-09-11", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 11 Sep at 0415 local time while at anchor near Tg. Mangkok, Sebuku Island. Robbers, armed with long knives, held the crewman on duty and stole ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.326666700109854, -3.206666700401456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-284", - "dateofocc": "2005-07-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 29 Jul at Jakarta anchorage (reported 13 Sep). Alert crew sounded alarm after detecting for robbers onboard. Four robbers escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.891666699989059, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-285", - "dateofocc": "2005-08-19", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 19 Aug at 2000 local time, while moored to a buoy at Ho Chi Minh City port (reported 13 Sep). Two robbers, armed with knives and swords,boarded the vessel. One of the robbers tried to attack duty crewm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.914722199770154, 10.269444399878466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-286", - "dateofocc": "2005-08-04", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 04 Aug while moored to a buoy, at Ho Chi Minh City port (reported 13 Sep). Robbers broke store locks and stole ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.914722199770154, 10.269444399878466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-287", - "dateofocc": "2005-07-31", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 31 Jul at 1900 local time, while moored to buoy no. 39 (reported 13 Sep). Four robbers, armed with long knives, boarded the vessel. Duty officer and crew gave chase after detecting the trespassers. Robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.914722199770154, 10.269444399878466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-288", - "dateofocc": "2005-07-10", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified bulk carrier was boarded 10 Jul at 0200 local time, while moored to a buoy at Ho Chi Minh City port (reported 13 Sep). Two robbers boarded the vessel during cargo operations with barges alongside. They broke open forepeak stor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.914722199770154, 10.269444399878466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-289", - "dateofocc": "2005-07-30", - "subreg": "94", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA: An unidentified bulk carrier was boarded 30 Jul while at Xingang (TIANJIN XINGANG) port.. Robbers boarded the vessel during cargo operations and stole ships equipment (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.76666670022837, 38.977777800127967] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-290", - "dateofocc": "2005-09-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified chemical tanker was boarded 19 Sep at 1220 local time, while anchored in position 05-10N 004-03W, off Abidjan. Three robbers, armed with knives and a steel bar, boarded via the anchor chain. Duty officer raised alarm. Cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.049999999650765, 5.166666700004328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-292", - "dateofocc": "2005-09-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MADAGASCAR: An unidentified tanker was boardedand robbed 13 Sep at 0200 local time, while berthed at Mahajunga port. They broke open bosun store, stole ships stores, and escaped in a boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.309722200072031, -15.727777800259275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-118", - "dateofocc": "2006-05-01", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker reported suspicious approach 1 May at 1140 UTC, while underway in position: 03-13N 108-45E, Kumpulan Natuna Islands. Persons in several unlit boats followed the vessel and came close to her stern. Crew mustered, switch", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.750000000040131, 3.216666699806353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-119", - "dateofocc": "2006-04-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker reported attempted boarding 30 Apr at 1150 UTC, while underway in position 03-04.3S 107-17.2E, Gelasa strait. Three pirates in a green/brown, 5m long motorized banka, armed with long knives, threw grapnel hooks at stern", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.286666699565671, -3.071666699772038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-120", - "dateofocc": "2006-04-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 29 Apr at 2245 local time, while underway in position: 02-55S 107-18E, Gelasa strait. Six pirates armed with long knives in a speedboat boarded the vessel. The master, chief engineer and two ot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.300000000307989, -2.916666699915424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-121", - "dateofocc": "2006-04-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SPRATLY ISLANDS: Fishing vessel assaulted and robbed 27 Apr, Spratly Islands Archipelago, South China Sea. Four Chinese fishermen were killed and three injured, when attacked and robbedby pirates. According to accounts of survivors, pirates dispatched", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.666666700397855, 10.500000000235218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-122", - "dateofocc": "2006-04-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA: Yacht boarded and sailor shot, 28 Apr, Islas de Piritu anchorage, off Puerto la Cruz. Five armed robbers boarded the boat and shot the only sailor onboard. He was injured in his stomach but escaped in a dinghy. He was operated on in a hos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.516666700321082, 10.466666700265648] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-123", - "dateofocc": "2006-05-02", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: Unidentified chemical tanker reported suspicious approach and attempt to board 2 May at 1030 local time, while drifting in position 09-13.1N 014-06.2W off Conakry. Drifting 25 nm off the port, the vessel received a VHF call by someone claimin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.10333330007029, 9.218333300202744] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-210", - "dateofocc": "2004-08-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier reports attempt to board 9 Aug at 0330 local time, while anchored at Lagos in position 06-18.1N, 003-16.0E. Seven persons in a boat tried to gain access at stern using grappling hooks, but aborted attempt and fled", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.266666699673067, 6.30166669976677] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-124", - "dateofocc": "2006-04-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Vessel (AL TAJ) hijacked 25 Apr, Southern Somali coast. Isse Sheik Elmi, who is the agent for the (AL TAJ) said the vessel sailed from Dubai on 6 Apr and arrived at El Maan, Somalia on 23 Apr, where it unloaded goods for Mogadishu businessmen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.049999999836359, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-125", - "dateofocc": "2006-05-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: Sri Lankan troop carrier (PEARL CRUISE II) and its escort of four Dvora fast attack craft came under attack by fifteen suspected Tamil Tiger suicide boats 11 May, during the evening while passing through the area of Jaffna-Vettilaikerny. One", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.000000000234536, 9.949999999902673] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-126", - "dateofocc": "2006-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified container ship boarded 5 May at 0345 local time, at Chittagong anchorage B. Two unlit boats approached the ship. One boat with 10 persons armed with long knives came close and one robber boarded, using grappling hook. Alert cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-127", - "dateofocc": "2006-05-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 4 May at 0120 local time while underway in position 01-23.5N 104-27.0E, off Horsburgh lighthouse Singapore Strait. A speedboat, with five pirates on board, fired upon the vessel. Duty officer r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.449999999811155, 1.391666699724851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-203", - "dateofocc": "2004-07-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 30 Jul at 1205 local time, while anchored in position 06-00.97S 106-53.73E, Jakarta tanker anchorage. Five persons armed with long knives attacked a crew member and chocked him to prevent him from soundin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.895555599569548, -6.016111100394824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-204", - "dateofocc": "2004-07-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 28 Jul at 0200 local time, at Belawan anchorage. Four persons with swords stole ship's equipment and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-205", - "dateofocc": "2004-07-30", - "subreg": "74", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "INDONESIA-ARAFURA SEA: An unidentified yacht reports being \"chased\" 30 Jul at 2139 UTC, while underway in position 10 30S, 138 15E. An unidentified 15-meter long craft pursued for one hour. Another 20 meter craft without markings was reportedly in the", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [138.249999999645183, -10.50000000044389] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-206", - "dateofocc": "2004-08-08", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified bulk carrier was boarded 8 Aug at 0340 local time, while at Pertigalete anchorage, la Cruz. Crew raised alarm and two intruders fled empty handed in a boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.574999999742033, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-207", - "dateofocc": "2004-08-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified chemical tanker was boarded 7 Aug at 0100 UTC, during cargo operations at Oil Jetty no. 4, Kandla. Five persons tried to break into paint locker but jumped overboard and fled empty handed, when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.03333330015937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-208", - "dateofocc": "2004-08-07", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified chemical tanker reports attempt to board 7 Aug at 1310 local time (as reported), while underway in position 05-05.5N, 098-28.7E. Two high speed boats approached form stern and followed for 30minutes while master incre", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.478333300229508, 5.091666699754569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-209", - "dateofocc": "2004-08-06", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: An unidentified bulk carrier was boarded 6 Aug at 0200 local time, while engaged in cargo operations at No. 3 Berth, Bangkok. The thieves stole ship's property and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.569444400190719, 9.606944400070631] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-211", - "dateofocc": "2004-08-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Pirates reportedly from the Shiraj Bahini attacked and looted 5 boats carrying merchandise on the Tatulia (Tetulia) River 10 Aug, and 10 businessmen were reported injured. The same group attacked and looted 9 fishing trawlers 13 Aug, steali", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.652222200177278, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-212", - "dateofocc": "2004-08-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded 13 Aug at 2330 local time, while at Chittagong anchorage by 12 persons armed with guns and knives. The robbers stole ship's stores and fled (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-213", - "dateofocc": "2004-08-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified livestock carrier was boarded 15 Aug at 0745 UTC, whiled anchored in position 06-02.9S 106-53.8E at Jakarta anchorage. Persons from three wooden boats gained access, as the ship was preparing to come to anchor. Duty officer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.896666700245532, -6.048333299688352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-214", - "dateofocc": "2004-08-16", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified cargo ship was boarded 16 Aug at 0300 local time and then again 18 Aug at 0600 local time, while berthed at Varraux Terminal, Port Au Prince. In both cases, alertcrew drove off the intruders empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.354166700306166, 18.555555599968216] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-215", - "dateofocc": "2004-08-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SENEGAL: An unidentified product tanker was boarded 23Aug at 2355 local time while underway in position 14.37.2N, 017 25.5W at Dakar Roads soon after dropping the outward pilot. The intruders stole ship's stores and escaped (MB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.425000000420539, 14.620000000224593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-216", - "dateofocc": "2004-08-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt by persons in two unlit boats to board 21 Aug at 0400 local time, while berthed at Tarahan (Tarakan or Lingkas Roads) coal terminal (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.625000000214754, 3.249722200100393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-217", - "dateofocc": "2004-08-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The container ship (ACX HIBISCUS) was boarded 21 Aug at 0400 local time by 7 persons armed with guns, long knives and steel bars, while underway in position 02-53N 108-00E, about 15 nm se of Midai Island in the Natunas. The crew was taken to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.000000000240732, 2.883333299912408] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-97", - "dateofocc": "2005-03-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "MALAYSIA: Two Filipino fishermen are reported dead in one of three separate pirate incidents, which occurred between 2300 local time 18 Mar and 0200 local time 19 Mar off Tungku. The pirates robbed the boats of engines and kerosene lanterns (INFO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.933333299933224, 5.033333299577237] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-98", - "dateofocc": "2005-03-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BangladeshAt Chittagong 'B' anchorage, robbers armed with long knives boarded a general cargo ship, at stern whilst anchoring. They stole ship's stores and escaped. Crew raised alarm, sounded whistle, and fired a flare. Port control informed but no respo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-99", - "dateofocc": "2005-03-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "Somalia:Three armed pirates in a boat hijacked a fishing vessel underway. They directed the fishing vessel to come closer to the Somali Coast. The Pirates held the 26-crew members as hostage for a ransom. IMB piracy reporting centre alerted coalition shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.553055600007838, 12.755833299991139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-100", - "dateofocc": "2005-03-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Somali:Three pirates armed with guns, in a white hull speedboat, chased a general cargo ship underway and fired upon her. Crew raised alarm, activated fire hoses, increased speed, and took evasive manoeuvres. After 30 minutes pirates aborted attempt and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.27666669993971, 11.984999999963975] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-101", - "dateofocc": "2005-03-26", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported an attempted boarding 26 Mar at 1830 UTC, while berthed at the Balikpapan coal terminal. Four persons in a fast craft came along side and two persons tried to board, by climbing the mooring ropes. Aler", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.265555600040386] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-102", - "dateofocc": "2005-03-22", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 22 Mar at 0330 local time, while in position 05-58.3S, 105-59.4E, near Pertamina jetty - 1 (Luwuk), Tg. Gerem. Alert crew sounded alarm and mustered after two robbers, armed with long knives, boarded the ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.80000000035966, -0.949999999820307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-103", - "dateofocc": "2005-03-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Mar at 1905 local time, at Balikpapan inner anchorage. The intruders tried to break into the bosun's store but fled empty handed, when crew raised alarm. One crew member was injured resisting the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.791666699679695, -1.258333300405809] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-104", - "dateofocc": "2005-03-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified chemical tanker was boarded 20 Mar at 2300 local time, near Chittagong Alfa anchorage. Two boats, with 10 robbers in each, approached the tanker while it was preparing to anchor. Two robbers boarded the stern and stole ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-105", - "dateofocc": "2005-03-21", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "SURINAME: Police report at least six Surinamese fishing boats were hijacked and stripped of their motors 21 Mar, while fishing off the coast near Coronie and Commewijne Districts. At about the same time, 3 Guyanese fishing boats were also attacked, str", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.117500000298151, 5.977777799960108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-106", - "dateofocc": "2005-03-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship reports an attempted boarding 31 Mar at 1330 UTC, while underway in position 00-40.5N 048-49.1E off Somalia, by six persons armed with guns and grenades in two speedboats. Ship sent distress message, increas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.818333299864605, 0.674999999895022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-107", - "dateofocc": "2005-04-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "BANGLADESH: The barge (SWISSCO 12) and its tugboat were boarded and robbed late 01 Apr, while underway in the Bay of Bengal near Kutubdia channel. The attack left three of the 25 crewmembers injured. Valuable tools and spare parts were also stolen in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.930833299766505, 21.826388899626522] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-108", - "dateofocc": "2005-04-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BANGLADESH: Passenger trawler (SEVEN STAR) was boarded 02 April in the Meghna estuary in offshore Kalatola-Telirchar area in Manpura upasila in the Bhoa district. As the vessel was in transit from Ramgati to Monpura, armed pirates boarded the vessel an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.949722200148699, 22.30999999987074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-109", - "dateofocc": "2005-04-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: The bulk carrier (OCEAN BRIDGE) was boarded 01 Apr at 0300 local time, while underway in position 03-06.9N 100-44.6E, in the vicinity of one fathom bank. Pirates armed with guns and knives boarded the Japanese owned, Panamanian-regist", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.743333300397182, 3.115000000045882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-291", - "dateofocc": "2005-06-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo ship SEMLOW hijacked on 26 JUN 2005 while underway in position 04-47.6N 048-12.0E, off Hobyo. Hijackers demanded $500,000 to free the vessel and ten crewmen. The vessel was under charter of the UN World Food Program (WFP), carrying 850 M", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.199999999565875, 4.793333299857295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-293", - "dateofocc": "2005-09-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded and robbed 17 Sep at 2210 local time, while berthed at Cochin oil terminal. Eight robbers boarded the tanker, during cargo operations and escaped with ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.252777800141871, 9.969444399778865] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-294", - "dateofocc": "2005-09-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified general cargo ship was boarded 13 Sep at 2140 UTC, while anchored at Chennai outer anchorage. Four robbers boarded the vessel via the poop deck. Crew spotted them and raised the alarm. Robbers escaped in a speedboat empty hande", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.333333300303707, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-295", - "dateofocc": "2005-09-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified product tanker was boarded and robbed 14 Sep at 0415 local time, while anchored at Tanjung Priok tanker anchorage, Jakarta. The four armed robbers broke into the engine room and threatened the crew with a pistol. They stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.799999999842157, -6.094444399974634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-296", - "dateofocc": "2005-09-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 14 Sep at 1400 local time, while underway at the Jakarta breakwater as it was entering port. Alert crew raised the alarm when seven armed robbers boarded the vessel. Robbers escaped empty handed (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.897222199771875, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-297", - "dateofocc": "2005-09-27", - "subreg": "53", - "hostility_": "PIRATES", - "victim_d": "FERRYBOAT", - "descriptio": "FRANCE: Ro-pax ferry (PASCAL PAOLI) hijacked 27 Sep, Marseille. The hijackers are striking SNCM seafarers outraged by the French governments sale of the state-owned ferry operator, SNCM to an investment company. Members of the Corsican trade union STC", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [9.450000000336161, 42.699999999837644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-298", - "dateofocc": "2005-09-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (IBN BATOUTA) hijacked off the east coast of Somalia per 26 Sep reporting. It is believed the same group of hijackers responsible for the hijacking of the M/V (SEMLOW) are responsible for the hijacking of the M/V (IBN BATOUTA). The hijack", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.833333300439961, -0.16666670005128] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-299", - "dateofocc": "2005-09-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Firefight between pirates and enforcement authorities 27 Sep, Monpura, in Bhola. A 16 member joint forces team encountered two trawlers with pirates onboard and challenged them. The pirates opened fire and the joint forces retaliated. Aut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.649999999724571, 22.650000000223486] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-300", - "dateofocc": "2005-09-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was boarded 20 Sep at 0230 local time, while at Chittagong outer anchorage. Six robbers broke open forward store and tried to steal ships property. Alert crew raised alarm and robbers fled empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-301", - "dateofocc": "2005-09-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA:Tug (MARCO POLO 43) and barge (MARCO POLO 48) reported missing as of 10 Sep while on a voyage from Gresik Java, Surabaya to Jakarta (IMB) Description:Tug: Marco Polo 43, POR-Batam, callsign: YD3907, grt:148, nrt:88 Built-1992, loa: 23.34m,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.663888899630138, -7.155555599988077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-302", - "dateofocc": "2005-09-23", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship was boarded 23 Sep early in the morning, while anchored 6 miles SSW of Vung Tau Island. Robbers broke forward locker padlock and stole ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-128", - "dateofocc": "2006-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Tug missing since 22 Apr believed to be hijacked between Belawan port and Batu Licin, Banjarmasin. A tug towing an empty barge departed Belawan on 13 Apr en route to Batu Licin, Banjarmasin. Last known position was 02-07S 108-47E on 22 Ap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.783333300009701, -2.116666700249255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-129", - "dateofocc": "2006-05-09", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: Unidentified cargo ship boarded and robbed 9 May at 0800 - 0910 UTC in position: 17-52.9N 076-46.6W, Kingston outer anchorage. Six robbers armed with knives boarded the vessel at portside bow. They threatened deck watchman with knives, brok", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.776666699624059, 17.881666700195183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-323", - "dateofocc": "2005-10-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (PANAGIA) was hijacked 18 Oct, while underway in position 06-59.18N 051-08.39E, approximately 90 NM off the east coast of Somalia (Operator).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.139722199607718, 6.986388900153827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-130", - "dateofocc": "2006-05-13", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MAURITANIA: Unidentified refrigerated cargo ship approached 13 May at 2125 local time, while drifting in position: 19-04N 017-09W, Nouadhibou roads. Pirates in an unlit boat approached the vessel 60 nm off the coast. Master raised alarm, took evasiv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.149999999804606, 19.066666699824339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-131", - "dateofocc": "2006-05-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified bulk carrier boarded and robbed 12 May at 0001 local time, Chittagong anchorage B. Three unlit boats with seven robbers, armed with long knives, approached the vessel from stern and boarded using grapnel hooks. They stole ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-132", - "dateofocc": "2006-05-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified general cargo ship boarded 12 May at 1900 local time, while anchored at Chittagong anchorage B. Five robbers armed with long knives boarded the vessel via anchor chain. Alarm was raised, crew mustered, and robbers escaped (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-133", - "dateofocc": "2006-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Unidentified tanker reported attempted boarding 10 May at 1530 UTC, while underway in position 12-55.2N 049-36.6E. Nine people in a 10 to 12 m wooden boat, white/red hull, tried to board the vessel. Master took evasive maneuvers and cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.609999999944193, 12.920000000259506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-134", - "dateofocc": "2006-05-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified bulk carrier reported attempted boarding 10 May, during the night at Chittagong anchorage A. A group of robbers attempted to board the vessel. Crew raised alarm and robbers aborted boarding (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-135", - "dateofocc": "2006-05-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified bulk carrier boarded and robbed 9 May at 0200 local time at Chittagong anchorage A. Ten robbers armed with long knives boarded the vessel via anchor chain. They took hostage two shore watchmen and one crewmember and robbed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-136", - "dateofocc": "2006-05-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOAT", - "descriptio": "INDIA: According to 15 May reports, two trawlers carrying 28 fishermen were intercepted and abducted by pirates on 13 May, from the river Malta near Kalas Islands. Reportedly, pirates demanded a ransom. Kultali police started an immediate search upon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.666666699557084, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-137", - "dateofocc": "2006-05-10", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier reported suspicious approach 10 May at 2010 UTC, while underway in position: 05-50.1S 113-25.0E Java sea. A speedboat came close to the vessel. Crew directed searchlights and after 90 minutes the boat moved away", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.416666700132623, -5.8350000003785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-138", - "dateofocc": "2006-05-09", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified supply ship reported suspicious approach 9 May at 0405 local time while underway in position: 03-13.9N 108-42.5E, vicinity of Natuna islands. An unlit boat approached the stern of the vessel. Alert crew switched on searchligh", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.708333299759943, 3.231666699676452] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-139", - "dateofocc": "2006-05-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified container ship reported attempted boarding 13 May at 1330 local time, while in position: 06:01S - 106:52E at outer roads, Tg. Priok anchorage. Five people in a green colored 5 meter boat tried to board the vessel using grapnel h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-140", - "dateofocc": "2006-05-20", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: Unidentified container ship reported attempted boarding 20 May at 0810 UTC, Kingston outer anchorage. Two boats approached the vessel. One boat had five robbers armed with knives and the other boat had one robber armed with a knife. They tri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-218", - "dateofocc": "2004-08-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 20 Aug at 2200 local time, while underway in position 02-40.58N 107-58.0E near Midai Island in the Natunas. Seven persons armed with long knives and swords took duty crew to bridge as hostages and ti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.966666700271162, 2.676388900311224] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-219", - "dateofocc": "2004-08-25", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: An unidentified container ship was boarded 25 Aug at 0345 local time, while anchored in position 032-11S 051-58W at Rio Grande. Ten persons broke into 8 containers on deck but fled, when duty officer sounded alarm and ship's whistle. Port aut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.966666699568123, -32.183333300259278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-220", - "dateofocc": "2004-08-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 30 Aug at 0200 local time, while at Lagos anchorage. Two persons tried to steal ship's stores but fled empty handed, when crew sounded alarm One crew member reported injured (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.433333300244954, 6.349999999606382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-221", - "dateofocc": "2004-08-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 25 Aug at 1620 local time, while anchored 6 nm of Lagos fairway buoy. Three persons demanded money from master but were driven back to their boat by crew. The intruders then threatened to ignite glas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.413888900368818, 6.369444400381894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-222", - "dateofocc": "2004-08-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ERITREA: An unidentified tanker reports approach 26 Aug at 0545 UTC by about 13 persons in two boats while tanker was undergoing engine repairs in position 15 04N, 041 44E. Persons attempted to board form each side but crew mustered and activated fire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.73333329977487, 15.066666699694963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-223", - "dateofocc": "2004-08-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 30 Aug at 1255 local time, while anchored at Tanjung Priok. Seven persons gained access at port quarter using grappling hooks from ablue boat. Duty officer raised alarm and the intruders fled empty h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.058333300201298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-224", - "dateofocc": "2004-08-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "UNIDENTIFIED SHIP", - "descriptio": "INDONESIA: An unidentified ship was boarded 28 Aug at 0510 UTC, while anchored in position 06-02.3S 106-53.7E at Jakarta anchorage. Four persons stole engine spares and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.895000000218488, -6.038333300074726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-225", - "dateofocc": "2004-08-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 24 Aug at 1600 local time while, at Balikpapan anchorage by persons who entered via the hawse pipe. Intruders broke open forecastle store and took ship's supplies, before escaping when alarm was sounded (IM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.809722200103693, -1.263888900013342] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-226", - "dateofocc": "2004-08-26", - "subreg": "93", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified product tanker reports suspicious approach 26 Aug at 0300 local time, while underway in position 15-50N 111-20E off Triton Island. A 30-meter boat with mounted guns came within 75 m of stern and launched a small boat w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.333333300406935, 15.833333299566789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-227", - "dateofocc": "2004-09-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 2 Sep at 0445 local time while anchored in position 06-20N 003-22E, 3 nm off the Lagos fairway buoy, and engaged in ship to ship transfer operations. Two armed persons tied up duty seaman, broke into storero", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-228", - "dateofocc": "2004-09-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified container ship was boarded 3 Sep at 0200 local time, while anchored in position 22-08.29N 091-46.04E at Chitagong anchorage 'C'. Armed robbers stole ship'sstores from poop deck and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.767222199813148, 22.138055600266171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-229", - "dateofocc": "2004-09-09", - "subreg": "24", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ERITREA: The container ship (SEALAND ATLANTIC) reports suspicious approach 9 Sep at 1345 local time, while underway in position 13-46N 042-27W (about 14 nm off Tekay Deset, Eritrea) and one hour steaming north of the beginning of the Traffic Separation", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-42.449999999813429, 13.766666699563018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-239", - "dateofocc": "2004-09-18", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified bulk carrier reports attempt to board 18 Sep at 0330 local time, while anchored in position 02-06.5N 111-19.6e (Tanjung Manis anchorage, Sarawak). One person armed with a knife attempted to gain access via the anchor chain; d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.326666699948134, 2.108333299729964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-230", - "dateofocc": "2004-09-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 6 Sep at 0200 local time at Tanjung Priok anchorage, by two robbers who gained access via the poop deck. Crew raised alarm when the 2 tried to gain access to the accommodation and escaped empty hand", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-110", - "dateofocc": "2005-03-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: M/T (TRI SAMUDRA) was boarded 12 Mar at 1755 local time, while underway in position 03-37.25N 099-36.75E, 14 nm SE of Berhala Island. Thirty-five pirates, armed with machine guns and rocket propelled grenades, took control of the Ind", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.612499999890758, 3.620833299970002] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-111", - "dateofocc": "2005-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "STRAIT OF MALACCA: Tug IDATEN was boarded on 14 MAR 2005 at 1735 local time, while underway in position 04-25.6N 099-40.7E. The number of pirates reported varies between three pirates armed with pistols and rifles, to fifteen pirates armed with AK-47 an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.678333299728763, 4.426666699818497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-112", - "dateofocc": "2005-04-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: The M/T (YOHTEISAN) reported an attempted boarding late 05 Apr, off Indonesia's Karimun islands. Pirates in seven small fishing boats surrounded the tanker and attempted to board it, on its eastbound journey in heavy rain and poor vis", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-113", - "dateofocc": "2005-04-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 03 Apr at 0145 local time, while underway in position 03-08N 105-24E 12 NM west of P.Mangkai Island, Anambas Islands. Four pirates armed with long bolo knives boarded the vessel at the poop deck. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.399999999976785, 3.133333300145352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-114", - "dateofocc": "2005-03-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 30 Mar at 0415 local time, while anchored at Sebuku anchorage, east Kalimantan. Several robbers armed with long knives boarded the vessel and broke open the forepeak locker. Alert crew and armed secu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.326666700109854, -3.206666700401456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-115", - "dateofocc": "2005-03-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 30 Mar at 2255 local time in, position 05-28.29S 105-17.93E, Panjang outer roads. Six robbers armed with long knives held two crew members hostage and tied them up. They broke into the forward loc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.298888899567316, -5.471388899994281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-116", - "dateofocc": "2005-03-29", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 29 Mar at 2030 UTC, while underway in position 01-53.6S 116-58.0E, in the Makassar Straits. Two pirates armed with knives stole a life raft and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.966666699662937, -1.893333299702363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-311", - "dateofocc": "2005-09-19", - "subreg": "74", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDONESIA: An Indonesian warship fired on a group of Chinese boats allegedly fishing illegally in the Arafura Sea, off the Australian north coast 19 Sep (reported 22 Sep). One boat was damaged and taken in to custody and one Chinese crewman killed, whi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [136.650000000312843, -11.166666700407063] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-312", - "dateofocc": "2005-09-29", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: An unidentified container ship was boarded 29 Sep at 0500 local time, while at Vung Tau anchorage and robbed of stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-117", - "dateofocc": "2005-03-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA: Tugboat BONGGAYA 91 towing barge BONGGAYA 90 was boarded on 30 MAR 2005 at 1020 local time in position 04-35N 119-00E, about three NM east of Mataking Island, Sabah. Five pirates dressed in dark blue clothes and armed with M16 and AK47 rifles", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.999999999697138, 4.583333299877495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-118", - "dateofocc": "2005-04-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (TIM BUCK) was boarded 10 Apr at 1000 local time, while underway in position 03-24N 048-17E, approximately 55 NM off the coast of Somalia. Pirates, armed with grenade launchers and automatic weapons, set fire to a starboard rescue boat but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.166666699596306, 3.40000000027544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-303", - "dateofocc": "2005-09-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified bulk carrier was boarded 3o Sep at 0330 local time, while at Abidjan anchorage. Robbers stole ships stores. Master was advised by port authority to drift 10-15 miles offshore, while awaiting berth (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.034999999780666, 5.269444399716804] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-304", - "dateofocc": "2005-09-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 27 Sep at Escravos anchorage and two crew members were shot. No report on extent of crew injures or loss to ship (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.94999999974101, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-305", - "dateofocc": "2005-09-30", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier was pursued 30 Sep at 2320 UTC, while underway in position 05-05N 051-05E, about 150 nm off the Somali coast. A fishing boat came within 1.7 nm, while ships master undertook evasive maneuvers. Boat pursed the bul", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.08333330003228, 5.083333300343327] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-306", - "dateofocc": "2005-10-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship was boarded 2 Oct at 2000 UTC at Chittagong anchorage B. Robbers armed with long knives boarded at the stern and escaped with ships stores after crew raised alarm. The Bangladesh Coast Guard was informed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-307", - "dateofocc": "2005-09-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship was approached 28 Sep at 2310 local time, while at Chittagong anchorage. Persons armed with long knives approached in a small boat but were repelled by crew throwing wooden dunnage, when they tried to boar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-308", - "dateofocc": "2005-10-01", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA-INDONESIA: The supply ship (PLEIONE) was chased 1 Oct at 1200 local time, while underway in position 06-11.4N 097-06.3E, off the northern tip of Sumatra by ten persons In a fishing boat. Crew activated fire hoses and master began evas", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.104999999874906, 6.190000000392615] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-309", - "dateofocc": "2005-09-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA-INDONESIA: The general cargo ship (PRIMA INDAH) was hijacked 30 Sep at 1300 UTC, while underway in position 01-28.6S 106-41.1E. The 14 crew were set adrift in a fishing boat and later landed safely on an island, but the ship and its", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.685000000238631, -1.476666699796908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-310", - "dateofocc": "2005-09-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 28 Sep at 0550 local time, while anchored at Balikpapan. Two robbers armed with machetes boarded via the anchor chain and stole a forward life raft. The robbers were trying to steal ships stores, when they", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.791666699679695, -1.258333300405809] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-313", - "dateofocc": "2005-09-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "NIGERIA: It was erroneously reported to the IMB that, an unidentified tanker was boarded 27 Sep at Escravos anchorage and two crew were shot. Further investigation reveals the tanker was providing assistance to a fishing vessel, which was fired upon, b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.44166669972094, 5.363333300316413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-314", - "dateofocc": "2005-10-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (MILTZOW) was hijacked 12 Oct at 1530 local time, while offloading in Merca. According to press reports, six gunmen stormed the vessel and ordered it out to sea. Two crewmembers managed to escape as the dockworkers were forced off the ves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.733333299871902, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-315", - "dateofocc": "2005-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (TORGELOW) was reported hijacked as of 10 Oct while in route to El Maan. No details regarding the incident are known. The (TORGELOW) was reported to be carrying fuel and supplies to the recently released (SEMLOW), as well as a consignment", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.166666699596306, 4.666666700437816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-141", - "dateofocc": "2006-05-20", - "subreg": "26", - "hostility_": "suspicous approach", - "victim_d": "merchant vessel", - "descriptio": "JAMAICA: Unidentified container ship reported attempted boarding 20 May at 0245 local time while in position 17-52.7N 076-46.6W , Kingston outer anchorage. Five persons in a small unlit boat approached the ship. Alert crew directed searchlights at t", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.776666699624059, 17.86666670032514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-142", - "dateofocc": "2006-05-22", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: Russian product tanker (SHKOTOVO) boarded and robbed 22 May at 0620 local time, while underway in position: 09-16.7N 014-42.5W, 60 nm from Conakry. The tanker provides fuel for fishing vessels in the area. Two speedboats approached the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.708333299626702, 9.278333299683084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-143", - "dateofocc": "2006-05-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Unidentified LPG carrier reported suspicious approach 20 May at 0500 UTC while underway in position 21-43.8N 059-52.2E, 20 miles off the coast of Oman. Three Speedboats approached the carrier. Ship raised alarm, crew mustered, and activ", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.870000000114146, 21.729999999797997] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-144", - "dateofocc": "2006-05-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified container ship reported boarding and attempted robbery 22 May at 0300 local time, Chittagong anchorage B. Two unlit boats approached the vessel. One boat with ten robbers armed with long knives came close and two robbers board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-145", - "dateofocc": "2006-05-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE: Unidentified bulk carrier reported attempted boarding 18 May at 2350 local time, while anchored in position 01-13.8N 103-34.8E, west OPL, Singapore straits. Five boats with 2-3 men in each boat, dark brown color, approached the vessel, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.580000000151756, 1.22999999958472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-238", - "dateofocc": "2004-09-20", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified product tanker reports attempt to board 18 Sep at 1026 local time, while underway in position 03-50.5S 107-14.6E in the Gelasa Strait. Persons in 2 speedboats approached but broke off attempt, when duty officer sounded alarm", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.243333300157758, -3.84166669969801] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-146", - "dateofocc": "2006-05-22", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PHILIPPINES: The crew of Tristar Fishing Corporation's vessel Cadiz City reported a dozen men boarded their vessel early on 22 May while transiting near Isla Higantes, in the Iloilo province. The fishing vessel's 30 member crew opted to resist the attac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.533333300229515, 10.683333299804929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-147", - "dateofocc": "2006-05-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Unidentified tanker boarded and robbed 24 May at 0350 local time, Lagos outer anchorage. Two robbers boarded the vessel at stern using a rope. They assaulted a crewmember and tied his hands. They stole ship's stores, property, and the crewmem", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-148", - "dateofocc": "2006-05-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified container ship reported attempted boarding 28 May at 2215 local time, Chittagong anchorage B. Ten robbers, armed with long knives in an unlit boat, approached the vessel from stern. Duty officer raised alarm, crew mustered, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-149", - "dateofocc": "2006-05-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Unidentified cargo ship fired upon 22 May at 1815 local time while underway in position: 01-57N 045-31E, 10.5nm SE of Mogadishu. Duty officer of the vessel noticed a target at range of 1.5nm on radar. He alerted two armed security guards on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.516666700364965, 1.949999999643978] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-231", - "dateofocc": "2004-09-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Sep during the \"early morning\" while departing Makassar (Ujung Pandang). Five persons armed with long knives and axes entered the bridge just after the ship had dropped the pilot. Robbers held duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.380555599654031, -5.116666700346286] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-232", - "dateofocc": "2004-09-02", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 2 Sep at 0215 local time, while anchored in position 01-16-34S 117-14-24E at Balikpapan anchorage. Ten persons stole ship's stores. When master contacted port security officer, he was advised to call", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.240000000251712, -1.276111100079618] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-233", - "dateofocc": "2004-09-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNIDENTIFIED SHIP", - "descriptio": "BANGLADESH: Passengers on the launch (SONARTORI-1), attacked by river pirates 11 Sep at Postogola, turned on their attackers beating one to death and injuring another while their five accomplices escaped. Seven robbers boarded the launch bound from Cha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.666666699621715, 23.216666699553855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-234", - "dateofocc": "2004-09-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded,11 Sep at 0545 local time while at Tanjung Priok anchorage, by 2 persons who gained access at the stern using grappling hooks. Theduty seaman raised the alarm and the two fled empty handed in a wood", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.058333300201298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-235", - "dateofocc": "2004-09-10", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA: An unidentified bulk carrier was boarded 10 Sep in the early morning hours, while anchored in position 21-27N 108-22E, Fangcheng. Thieves armed with knives and crowbars boarded at the forecastle using grappling hooks, broke into fore peak lock", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.366666700104247, 21.449999999824911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-236", - "dateofocc": "2004-09-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified supply ship, towing another vessel, was boarded 16 Sep at 1430 UTC at Chittagong Roads. Nine robbers, armed with knives, stole ship's stores and fled when crewfought them off using hand flares and axes, without injury to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-237", - "dateofocc": "2004-09-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 20 Sep at 0335 local time, while berthed at Dumai. Three armed robbers threatened crew with knives but fled empty handed, when crew mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.475000000097168, 1.687499999669171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-240", - "dateofocc": "2004-09-17", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified bulk carrier was boarded 17 Sep at 0300 local time, while anchored in position 17-50N 077-05W at Port Esquivel. Six robbers armed with guns, knives, and crowbars broke into forward lockers and stole ship's stores. When crew m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 17.833333299631477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-241", - "dateofocc": "2004-09-15", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship was boarded 15 Sep at 0824 UTC, while at the outer anchorage of Kingston. Five robbers armed with guns broke into a cargo hold and forward locker and stole ship's stores. Crew raised alarm and master informed po", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.849999999846716, 17.941666699675523] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-242", - "dateofocc": "2004-09-27", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified bulk carrier was boarded 27 Sep at 0130 local time, while berthed at Conchan. Five armed persons took security guard hostage and beat him. Shore security patrol exchanged gunfire with the robbers who stole ship's stores and escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.883333299816286, -12.316666700039548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-243", - "dateofocc": "2004-09-20", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: An unidentified general cargo ship was boarded 20 Sep at 2220 local time, during cargo operations, while at Berth No. 3, Conakry. Six persons armed with long knives tried to enter accommodation but crew mustered and informed local police and po", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.717500000006112, 9.513888900296308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-244", - "dateofocc": "2004-09-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: The cargo ship (BINA NIAGA) was attacked 17 Sep, by an organized gang of pirates at Chittagong's outer anchorage, as it awaited berthing for scrapping (INFO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.300000000257114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-245", - "dateofocc": "2004-09-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: The supply ship (DEA LAEGUE), towing the cargo vessel (MAY QUEEN) which had engine trouble, was boarded 16 Sep at 1430 UTC at Chittagong Roads. Nine robbers, armed with knives, stole ship's stores and fled when crew fought them off using ha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.300000000257114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-119", - "dateofocc": "2005-04-05", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF OMAN: An unidentified supply ship was approached 05 Apr at 1625 local time, while underway in position 25-14.1N 057-10.E, in the Gulf of Oman. A small vessel tried to come alongside the supply ship. Master took evasive maneuvers and sounded w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.166666699887344, 25.234999999718013] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-120", - "dateofocc": "2005-04-09", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker was approached 09 Apr at 0500 local time, while underway in position 05-32.7N 098-14.8E. A speedboat doing over 23 knots approached the tanker at port quarter. When boat came to within three cables, crew soun", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.246666699920809, 5.544999999683796] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-121", - "dateofocc": "2005-04-04", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship was chased 04 Apr at 0130 local time, while underway in position 03-55N 100-28E, SW of Sembilan Island. A boat approached the container ship, on starboard beam, and came close to port quarter. Alarm w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.466666699578923, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-122", - "dateofocc": "2005-04-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPRE STRAIT: An unidentified bulk carrier reported an attempted boarding 08 Apr at 0345 local time, while underway in position 01-16.0N 104-10.0E. Several small boats surrounded the vessel and persons inside attempted to board on both sides from bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-123", - "dateofocc": "2005-04-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: The M/T (YOHTEISAN) reported an attempted boarding 05 Apr at 1615 local time, while underway in position 01-08.8N 103-29.E, off Indonesia's Karimun islands. Pirates in seven small fishing boats surrounded the tanker and attempted to b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.483333299748381, 1.146666699748437] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-124", - "dateofocc": "2005-04-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 11 Apr at 0430 local time, in position 03-47.46N 098-42.64E, Pertamina jetty, Belawan port. Three robbers, armed with long knives, boarded the tanker at forecastle during cargo operations. Duty officer ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.710555599714041, 3.791111100271564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-125", - "dateofocc": "2005-04-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 10 Apr at 0520 local time, in position 03-12.5S 116-22E, Pulau Laut anchorage. Eight robbers, armed with knives, stole a liferaft, communications equipment, and stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.366666700362885, -3.208333299704407] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-126", - "dateofocc": "2005-04-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: The M/T (KYOSEI MARU) was boarded 08 Apr at 2320 local time, while underway in position 01-15.30N 103-33.72E, approximately 8 km off Tanjung. Pelepas port anchorage, Johor, Malaysia. Ten pirates, armed with knives, tied the hands of the mast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.561944399903041, 1.254999999967708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-127", - "dateofocc": "2005-04-11", - "subreg": "93", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified tanker was approached 11 Apr at 1200 UTC, while underway in position 03-30N 104-24E, off Malaysia. Two boats, one unlit, followed the tanker. When the boats came within four cables, crew mustered, sounded whistle, and", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.399999999944441, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-128", - "dateofocc": "2005-04-09", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified tanker was approached 09 Apr at 0600 LT,, while underway in position 04-43.7N 106-14.8E, 15 nm NE of Kakap Natuna oil terminal. Two fishing boats doing 15 kts came within one mile of the tanker, from both sides. Crew", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.24666670017956, 4.728333300120482] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-129", - "dateofocc": "2005-04-11", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: An unidentified container ship reported being approached 11 Apr at 1700 UTC, while underway in position 07-35N 082-07E, off the east coast of Sri Lanka. Two unlit speedboats approached at starboard quarter. When boats came close, crew direc", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.116666699929795, 7.58333329997447] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-130", - "dateofocc": "2005-04-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified ship was boarded, hijacked 10 Apr at 1200 UTC while underway in position 00-50S 047-36E, off the eastern coast of Somalia. Armed pirates took all 17 crewmembers hostage and hijacked the ship, forcing it to anchor close to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.600000000265936, -0.833333300189679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-131", - "dateofocc": "2005-04-14", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship was approached 14 Apr at 0800 UTC, while underway in position 02-59N 100-47E. An airborne helicopter from a French warship spotted four 15m long boats, powered by three outboard engines with their fron", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.783333299751007, 2.983333299645892] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-316", - "dateofocc": "2005-10-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified tanker was boarded 12 Oct at 0240 local time, while anchored at Dar es Salaam. Three robbers, armed with long knives, boarded the vessel via the hawse pipe. They threatened the crewmember on duty and stole ships stores. Port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-317", - "dateofocc": "2005-10-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified general cargo ship was boarded 11 Oct, while at Kandla anchorage. Seven robbers broke into the store room but the alert crew raised the alarm and the robbers escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-318", - "dateofocc": "2005-10-12", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: Bulk carrier approached 12 Oct at 1830 UTC, while underway in position 05-01N 111-27E. Three speedboats doing over 23 kts approached the vessel. Ship took preventive measures and boats moved away (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.450000000037505, 5.016666700404187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-319", - "dateofocc": "2005-10-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 17 Oct at 0330 local time, while anchored in position 06-02.87S 106-53.57E, Jakarta anchorage. Robbers, armed with long knives, boarded the vessel from an unlit boat. They threatened the crew with kn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.892777799765781, -6.047777800162066] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-320", - "dateofocc": "2005-10-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 13 Oct at 1230 local time while at Jakarta anchorage. Six robbers boarded the vessel at the stern. Duty officer raised alarm, crew mustered and robbers fled. Master contacted a customs patrol boat n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.892777799765781, -6.047777800162066] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-324", - "dateofocc": "2005-10-18", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: An unidentified bulk carrier was boarded 18 Oct at 0345 UTC, while anchored in position 09-17.6N 013-45.2W, Conakry anchorage. Three robbers in a speedboat, armed with billhooks, boarded the vessel and assaulted the duty watchman and stole ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.753333300103918, 9.293333299553126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-325", - "dateofocc": "2005-10-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (SAN CARLO) was hijacked 20 Oct, while underway in position 02-13N 049-44E, approximately 170 NM off the east coast of Somalia (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.733333300033564, 2.216666699774009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-326", - "dateofocc": "2005-10-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (PANAGIA) was hijacked 18 Oct, while underway in position 06-59.18N 051-08.39E, approximately 90 NM off the east coast of Somalia (Operator, IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.139722199607718, 6.986388900153827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-327", - "dateofocc": "2005-10-05", - "subreg": "63", - "hostility_": "PIRTATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker reported an attempted boarding 05 Oct at 0220 local time, while at Chennai anchorage. An estimated 10 robbers, in a fishing boat, attempted to board the tanker via the starboard quarter. Crewmember on duty raised the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-328", - "dateofocc": "2005-10-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: M/V (OCEAN ATLAS) was boarded 18 Oct at 0040 local time, while anchored in position 29-44.39N 045-39.14E, while awaiting pilot boarding to Umm Qasr in the morning. Three robbers, two armed with AK-47s, entered the bridge approximately 20 minutes", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.758333300384265, 29.633333299653373] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-329", - "dateofocc": "2005-10-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robbed 04 Oct at 1830 UTC, while in position 00-08.7N 117-35.6E, Bontang anchorage. Robbers tied up the crewmember on duty and stole ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.593333300447512, 0.144999999688991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-330", - "dateofocc": "2005-10-27", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MAURITANIA: An unidentified bulk carrier was boarded 27 Oct at 2030 local time, in position 20-47.8N 017-01.8W, off Nouadhibou inner anchorage. Eight robbers approached in a wooden boat fitted with an outboard motor. Two robbers boarded via anchor cha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.029999999944607, 20.796666700428887] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-150", - "dateofocc": "2006-05-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified product tanker boarded and robbed 24 May at 2100 local time while underway in position: 03-10.2S 106-20.2E, south of Bangka island. Ten pirates armed with guns and long knives boarded the vessel. They stole master's and crews", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.336666700299361, -3.17000000037774] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-151", - "dateofocc": "2006-06-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Unidentified tanker boarded and robbed, 5 June at 02:15 local time, at Dar Es Salaam Roads. Six robbers armed with knives and tools, for cutting locks, boarded the vessel. They broke into forward locker and stole ships stores. Alert crew ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-152", - "dateofocc": "2006-06-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified cargo ship boarded and robbed 5 June at 0050 local time, while in position 05 53.28S 106 05.29E, P.P Kali anchorage, Merak. Six robbers armed with long knives in an unlit boat approached the vessel from stern. Two robbers board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.088055600417988, -5.88805559972451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-153", - "dateofocc": "2006-05-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 31 May at 2040 UTC, while in position: 05-52.2S 106-04.5E, Tg. Priok anchorage. Five robbers armed with long knives boarded the vessel. They tied up two crewmembers and threatened them with knive", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.075000000425746, -5.870000000375114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-154", - "dateofocc": "2006-06-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GUYANA: Eight fishing boats attacked and robbed 5 and 6 Jun, Berbice River. Several fishermen beaten, locked up , and held at gunpoint by four pirates beginning around 2 pm on 5 Jun and continued until late 6 Jun in the vicinity of the mouth of the Ber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.583333300001527, 6.266666699770099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-155", - "dateofocc": "2006-06-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "GUYANA: Six fishing boats attacked and robbed 5 and 6 June, Corentyne River close to Suriname waters. Seven masked gunmen attacked fishing boats of the Number 66 Fish Port Complex, about 9 pm on 5 Jun. A second attack was launched about 12 midnight an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.133333300301729, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-156", - "dateofocc": "2006-06-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified bulk carrier reported attempted boarding 7 June, Chittagong anchorage A. Seven robbers armed with knives approached the vessel, at stern in a black wooden boat. They threw a hook attached to a line and tried to board. They th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-157", - "dateofocc": "2006-06-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified bulk carrier boarded 6 Jun, Chittagong anchorage A. Nine robbers armed with long knives and steel bars boarded the vessel at forecastle. They tied up two shore watchmen, threatened them with knives, and attacked one crewmember", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-158", - "dateofocc": "2006-06-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified tanker reported attempted boarding 5 Jun, Tanjung Priok tanker anchorage. One robber was observed in the process of boarding the vessel. Alert crew raised alarm and boarding was averted (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.866666699606071, -6.058333300201298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-159", - "dateofocc": "2006-06-10", - "subreg": "97", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "JAPAN: Taiwan fishing vessel feared hijacked by the crew 10 Jun while operating off Iwo Jima. The Taiwanese fishing boat (HSING LONG), sailing near the Japanese Volcano Islands, has lost contact with the Taiwanese authorities and is believed to be hij", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [129.93333330028895, 30.816666699979464] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-246", - "dateofocc": "2004-09-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "YEMEN: An unidentified container ship reports attempt to board 26 Sep at 1255 UTC, while underway in position 12-37.5N 043-19.2E off Perim Island. Two speedboats, each with 9 men armed with guns attempted board using grappling hooks. Crew mustered an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.320000000163475, 12.625000000416378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-247", - "dateofocc": "2004-09-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 25 Sep at 2000 local time, while anchored in position 04-52-12S 116-20-36E at North Pulau Laut anchorage. Two armed persons gained access via the anchor chain but fled empty handed, when duty officer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.34333330018228, -4.87000000034277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-248", - "dateofocc": "2004-09-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was raided 23 Sep at 2350 local time, while at Tanjung Pemancingan anchorage. The intruders threatened crew with long knives. Alarm was raised and crew mustered, but the thieves were able to steal ship's stores b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.323611099731238, -3.207777800178121] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-249", - "dateofocc": "2004-10-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 3 Oct at 2250 UTC, at Lagos outer anchorage. Duty watchman was distracted by flashing light from a small fishing boat on the port side. When watchman went to investigate, a larger boat came alongside to star", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-136", - "dateofocc": "2005-03-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAITS:Pirates armed with guns and knives boarded a bulk carrier underway. They held master as hostage and stole ship's cash and escaped. No injuries to crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.743333300397182, 3.115000000045882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-250", - "dateofocc": "2004-10-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BANGLADESH: At least 8 fishing trawlers were attacked and looted 4 Oct at noon local time. The trawlers had sought shelter from a developing weather system when they were attacked by about 40 persons in 3 speedy trawlers near the fairway buoy, 100 km s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.966666699689029, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-251", - "dateofocc": "2004-09-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified chemical tanker was boarded 26 Sep at 0530 local time while anchored in position 30-06N 047-55E at Khor Al Zubair. Four persons armed with automatic rifles stole ship's stores and fled (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.916666700262681, 30.100000000149635] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-252", - "dateofocc": "2004-10-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 3 Oct at 0400 local time, while anchored in position 00-33N 117-41-48E at Tanjung Bara. Six persons armed with knives gained access via the hawse pipe, threatened duty seaman, stole his walkie-talki", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.696666700235028, 0.549999999778549] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-253", - "dateofocc": "2004-10-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: The tug (ERNA), attacked off N. E. Indonesia 2 Oct (see below), was again attacked 3 Oct off Medan, Sumatra, as it \"limped\" back to Singapore following the first attack. In the second attack the tug's navigating equipment was further damaged", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-254", - "dateofocc": "2004-10-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: The tug (ERNA) was attacked 2 Oct at 1820 local time, while underway towing a crane barge in position 04-46N 098-41E. Eight persons in a fast fishing boat fired at the bridgedestroying windows, radio and navigating equipment. Four persons", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-255", - "dateofocc": "2004-09-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: An unidentified Tuvalu-registered tug was boarded 30 Sep at 1900 local time, while underway towing a crane barge in position 03-27.6N 099 47.2E. The thieves broke glass in the ports, stole equipment and documents, and left taking the maste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.786666699772809, 3.459999999755723] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-256", - "dateofocc": "2004-10-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: An unidentified tug and barge report attempt to board 8 Oct at 1002 local time, while underway in position 00-18.67N 104-29.36E in the Riau Strait. Six masked men in a speedboat came alongside, attempting to board, but in the maneuver the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.489444399813863, 0.318611100219982] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-132", - "dateofocc": "2005-04-17", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship reported an attempted robbery 17 Apr at 0500 local time while at wharf, Tg. Priok port. A robber mingled with stevedores and tried to steal equipment. Duty crew prevented theft (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.893333300191387, -6.098333299555065] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-133", - "dateofocc": "2005-04-16", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship reported an attempted robbery 16 Apr at 2230 local time while at wharf, Tg. Priok port. A robber mingled with stevedores and stole equipment. Duty crew recovered the equipment and robber escaped empty hande", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.893333300191387, -6.098333299555065] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-134", - "dateofocc": "2005-04-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 12 Apr at 0200 local time in position 06-02.24S 106-55.68E, Jakarta anchorage. Armed robbers attempted to enter the engine room. Alert crew raised alarm and robbers escaped in a speedboat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.710555599714041, -6.037222200298061] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-135", - "dateofocc": "2005-04-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIAArmed robbers boarded a bulk carrier and attempted to enter engine room. Alert crew raised alarm and robbers escaped in a speedboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.928055600337245, -6.037222200298061] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-137", - "dateofocc": "2005-04-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified bulk carrier was boarded 22 Apr at 2350 local time, in position 29-37N 048-45.7E, Umm Qasr anchorage. Three robbers, armed with guns and a knife, boarded the vessel using hooks attached to ropes. They took several crewmembers hosta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.761666700438411, 29.616666699580946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-138", - "dateofocc": "2005-04-24", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified container ship was approached 24 Apr at 1050 local time, while underway in position 02-48.56N 101-03.0E. A speedboat approached the container ship and altered course to port, but then suddenly increased speed and head", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.049999999881038, 2.809444400338691] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-139", - "dateofocc": "2005-04-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 23 Apr at 1950 UTC, while at Belawan anchorage. One robber, armed with a long knife, boarded a tanker at forecastle, while another robber climbed up the anchor chain. Duty seaman challenged the robbers and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-140", - "dateofocc": "2005-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 22 Apr at 0500, while underway in position 00-27.1S 105-09.0E, off Lingga Islands. Pirates, armed with guns, then ordered the crew to sail the tin-laden ship to Pasir Gudang port, in Malaysia's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.149999999743841, -0.451666700280839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-141", - "dateofocc": "2005-04-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-MAKASSAR STRAIT:An unidentified bulk carrier was boarded 18 Apr at 1915 local time in position 01-20S 116:57E, Balikpapan outer roads. Two robbers boarded the vessel at the forecastle from two unlit fishing boats. They stole two lifeboats and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.949999999765737, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-142", - "dateofocc": "2005-04-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA:An unidentified tug was boarded 16 Apr at 0535 local time in position 01-13.6S 117-00.7E, Balikpapan outer roads. Masked robbers, armed with long knives, stole one life raft and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.011666700172441, -1.226666699563964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-143", - "dateofocc": "2005-04-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified bulk carrier was approached 25 Apr at 0315 local time, while underway in position 07-15.4N 108-20.4E. Persons in two fishing boats attempted to board the carrier by tying ropes to ship's side. Attempt foiled (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.339999999694101, 7.256666700188816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-144", - "dateofocc": "2005-05-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 02 May at 0215 local time, during STS cargo operations at Lagos anchorage. Two robbers, armed with knives, threatened the duty officer, tied his hands and legs, and gagged his mouth. The robbers tri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-331", - "dateofocc": "2005-10-26", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: An unidentified tanker was approached 26 Oct at 1810 local time, while underway in position 06-09N 053-45E, approximately 250 NM off the east coast of Somalia. Five speedboats reportedly flashed lights at the vessel and gave chase.One bo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.750000000060083, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-332", - "dateofocc": "2005-10-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was fired upon 27 Oct at 0836 local time, while underway in position 08-41.565N 115-43.911E, Lombok strait. Pirates, armed with guns, fired upon the vessel from a speedboat. The bridge window was destroyed b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.731944400017824, 8.692777799827581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-333", - "dateofocc": "2005-10-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 27 Oct between 0001 and 0100 local time, while anchored in position 01-59.6N 118-08.7E, off Muara Pantai, east Kalimantan, Indonesia. Robbers boarded the vessel during cargo operations. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.144999999907782, 1.993333300126437] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-334", - "dateofocc": "2005-10-28", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA: Bulk carrier boarded and robbed 28 Oct between 1200 and 1600 UTC, while anchored in position 21-25N 108-24E, Fangcheng OPL anchorage. Robbers boarded the vessel via the anchor chain. They broke padlocks off forward store lockers and stole ships", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.40000000007376, 21.416666699855341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-335", - "dateofocc": "2005-10-23", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA: An unidentified tanker was boarded and robbed 23 Oct at 1800 UTC, while anchored at Zhanjiang no. 2 anchorage, China. Robbers boarded the vessel via hawse pipe. They broke open forward locker and stole ships stores. Several small fishing boats", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.508333300357776, 21.091666700272015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-336", - "dateofocc": "2005-10-30", - "subreg": "21", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "EL SALVADOR: An unidentified yacht was broken into 30 Oct at 0130 local time, while at anchor in Bahia del sol. Four armed robbers broke into the skippers cabin. Duty crewmember noticed them and raised alarm, the robbers then jumped overboard and lef", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.883333300204356, 13.264999999969405] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-337", - "dateofocc": "2005-11-07", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified Thai-flagged general cargo ship was hijacked 07 Nov at 0600 UTC, while underway off the east coast of Somalia. Once hijacked, the captors forced the ship to anchor 04-28N 048-01E near the Somali coastline, Pirates have since d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.016666699996108, 4.466666700071642] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-338", - "dateofocc": "2005-11-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified RORO came under attack 06 Nov while underway, in position 02-29.3N 048:28.2E, off the east coast of Somalia. Pirates armed with machine guns and rocket launchers fired upon the ship. The master took evasive maneuvers, increased", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.469999999925335, 2.488333300335853] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-339", - "dateofocc": "2005-11-05", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: M/V (GREAT MORNING ) reported being chased by a suspicious craft for two hours on 05 Nov at 1200 UTC while underway, in position 04-26N 054-14E, 320 NM off the east coast of Somalia. When the ship approached the craft, it suddenly increased s", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.233333299729452, 4.433333300277297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-340", - "dateofocc": "2005-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CRUISE SHIP", - "descriptio": "SOMALIA: Cruise ship (SEABOURN SPIRIT) came under fire 05 Nov at 0225 UTC, while underway in position 02-59N 048-01E, 70 NM from the east coast of Somalia. Six heavily armed pirates in two boats chased the cruise ship, while firing with rocket launche", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.016666699996108, 2.983333299645892] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-160", - "dateofocc": "2006-06-16", - "subreg": "24", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: Unidentified general cargo ship boarded and robbed 16 Jun at 0540 UTC at Magdalena river, Barranquilla. A robber armed with a knife boarded the vessel at anchor. He stole a life raft and safety equipment and escaped in a boat, waiting with a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.756666700332119, 10.958333300420861] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-161", - "dateofocc": "2006-06-12", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Unidentified general cargo ship reported suspicious approach, 12 Jun at 1930 UTC while underway in position 15-23.7N 041-30.7E . A, white-hulled, speedboat doing over 18 kts approached the vessel. Alert crew raised alarm and master", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.511666699979116, 15.395000000407038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-162", - "dateofocc": "2006-06-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Unidentified bulk carrier boarded and robbed 20 Jun, at 0310 UTC at Lagos Roads anchorage. Three robbers armed with guns and knives boarded the vessel from forecastle. They took hostage a duty A/B and held him at gunpoint. They lowered ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-163", - "dateofocc": "2006-06-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF OMAN: Unidentified chemical tanker reported gun assault and attempted boarding 4 Jun at 0630 UTC, while underway in position 25-40.0N 057-04.0E. Three armed pirates in a, high speed fiber glass, boat with a green hull followed the vessel, whi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.066666700153917, 25.666666700217661] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-164", - "dateofocc": "2006-06-24", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: Passenger vessel boarded and robbed 24 Jun at 0900 local time, while underway near the mouth of the Moruca River. Master observed an approaching speedboat equipped with 200hp engines, became suspicious, and increased speed but could not outrun t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.999999999764043, 7.666666699635527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-165", - "dateofocc": "2006-07-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Bulk carrier (ISLAND OASIS) reported attempted boarding 2105 UTC, while underway in position 05-17.0N 098-01.5E. Duty officer observed a vessel on radar trailing their ship, at a standoff of 6km for 20 minutes. When the suspicious", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.025000000300338, 5.283333299810181] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-166", - "dateofocc": "2006-07-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Landing craft boarded and robbed 02 Jul while underway near Langsa, north Sumatra. Pirates stole cash and personal belongings from the crew and escaped, no crew injured. The landing craft was under UN charter carrying tsunami relief cargo (", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.999999999917293, 4.583333299877495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-167", - "dateofocc": "2006-06-28", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Tanker reported two suspicious vessels 28 Jun at 0550 UTC, while underway in position 03-29.8N 100-09.9E. Two 12-15m vessels with shiny grey hulls followed the tanker at a distance of 500m. Crew mustered and activated fire hoses, a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.16500000035154, 3.496666699779439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-168", - "dateofocc": "2006-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Bulk carrier boarded 28 Jun at 0300 local time, while anchored in position 03-18.5N 112-55.3E, Bintulu anchorage. Two robbers boarded the vessel from an unlit boat. Duty officer raised alarm and crew mustered. Upon seeing crew alertness, ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.921666699923321, 3.308333300128538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-169", - "dateofocc": "2006-06-26", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHINA: Bulk carrier boarded 26 Jun at 1830 local time, while at anchor in Huangpu port. Two robbers entered the masters cabin. Master raised alarm, crew apprehended the robbers, and then handed them to the police (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.45000000010225, 23.091666700336702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-170", - "dateofocc": "2006-06-28", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded and robbed 28 Jun at 0115 local time, while anchored in position 05-28.7N 105-17.5E, Panjang anchorage. Three robbers, armed with long knives, entered the engine room and stole a substantial quantity of engine spares (I", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.291666699757457, 5.478333299919882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-171", - "dateofocc": "2006-06-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "HOANG SA ARCHIPELAGO: Vietnamese fishing vessel boarded and robbed 27 Jun, while at anchor seeking shelter from a typhoon. Robbers stole 25 drums of fuel, 4 tons of dried squid, 10 bottles of water, and 18 empty buckets. After receiving the informatio", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.27500000008672, 16.95000000012908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-154", - "dateofocc": "2005-04-28", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified refrigerated cargo ship was boarded 28 Apr in the evening, while at Port Au Prince anchorage. Robbers, armed with long knives, stole ships stores and escaped. Earlier on 27 Apr, robbers boarded another vessel and stole ship's st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40416670017288, 18.572222200040585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-257", - "dateofocc": "2004-09-06", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports suspicious approach 6 Sep at 0945 local time, while underway in position 02-39N 101-17E off the Indonesian coast. A dark hulled boat approached and then stopped nearby, before paralleling the ship's cou", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.283333300216839, 2.649999999576664] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-258", - "dateofocc": "2004-10-16", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified general cargo ship was boarded 16 Oct at 1000 UTC, while anchored in position 03-52.4N 077-05.4W at Buenaventura. Ten thieves boarded using long poles with hooks, broke into forecastle locker, and stole ship's stores. Alarm r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.089999999566658, 3.873333300331183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-259", - "dateofocc": "2004-10-23", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports suspicious approach 23 Oct at 0240 UTC, while underway in position 05-54N 096-19E off the northern tip of Sumatra. Four boats with armed persons inside were repelled, when crew mustered with activated f", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.316666699849407, 5.899999999906584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-260", - "dateofocc": "2004-10-23", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports suspicious approach 23 Oct at 1130 local time, while underway in position 02-57S 107-18E 3 miles west of Mendanau Island, Gelasa Strait. Six armed persons wearing masks and black clothing approached in a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.300000000307989, -2.949999999884994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-261", - "dateofocc": "2004-10-30", - "subreg": "24", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified bull carrier was boarded 30 Oct at 0140 local time while anchored at Maracaibo. A single man gained access via the anchor chain but fled in a waiting boat when duty seaman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.60416669960739, 10.622222199648604] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-262", - "dateofocc": "2004-10-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 31 Oct at 0145 UTC while at berth 13, Lagos. A group tried to steal from the ship's cargo of rice, but fled when duty officer raised alarm and crew mustered, firing flares. Port police responded to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.393055600141111, 6.437499999598003] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-263", - "dateofocc": "2004-10-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship was boarded 28 Oct at 0320 local time, in position 06-41.7S 039-27.3E in the outer roads at Dar es Salaam awaiting berthing. Three of about 15 persons in a long boat, armed with knives, boarded at the forecastl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.454999999764198, -6.695000000424272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-264", - "dateofocc": "2004-10-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reports approach 28 Oct at 0950 UTC, while underway in position 12-33.0N 045-14.7E. Three boats crossed ship's bow and attempted to come alongside, whereupon master began evasive maneuvers. The crew mustered", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.244999999978404, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-265", - "dateofocc": "2004-10-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: The cargo lighter (AL-SAMIT-3) was boarded 31 Oct at 1900 local time in Chittagong outer anchorage, as it proceeded to a lightering job. About 20 persons attacked the lighter in the outer anchorage and stole rope, tents, gas cylinders, mobi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-266", - "dateofocc": "2004-10-31", - "subreg": "72", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG tanker was boarded 31 Oct at 2150 UTC, while anchored at Santan (Tanjung Santan). One man boarded from a 10 meter wooden boat with green hull and white upperworks. A man lowered a liferaft into the water but jumped overb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.083333300390279] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-267", - "dateofocc": "2004-10-31", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 31 Oct at 0230 local time, while anchored at Banjarmasin. Six persons tried to gain access via the anchor chain, but fled when alarm was raised (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-268", - "dateofocc": "2004-10-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Oct at 1945 local time, while anchored in position 00-00.02S 117-36.09E. Six persons armed with knives attacked and injured a crew member, but fled empty handed when crew mustered (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.602499999959946, -0.000555599905056] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-269", - "dateofocc": "2004-10-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified refrigerated cargo ship reports attempt to board 27 Oct at 0145 UTC, while underway in position 01-45N 102-40E. Five persons, dressed in black clothes and in two speedboats, approached from starboard quarter. Master raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.666666700009841, 1.750000000177067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-270", - "dateofocc": "2004-10-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 27 Oct at 0145 local time, at Dumai anchorage. Two persons boarded via the poop deck but jumped overboard and fled empty handed, when duty seaman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.479166700252449, 1.691666699824509] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-145", - "dateofocc": "2005-04-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BANGLADESH: Eleven fishing trawlers were attacked 23 Apr in Majherchar in Borhanuddin upazila, in the Meghna estuary. At least eleven fishermen were injured during the attack. Police and fishermen report that over 50 fishing trawlers have been looted,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.400000000391003, 21.499999999691624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-146", - "dateofocc": "2005-04-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified barge was boarded 30 Apr at 1230 local time while under tow, in position 08-07.24N 076-43.33E off Trivandrum, SW coast of India. Two robbers stole stores. Earlier, four robbers in a boat made two attempts to board at 0630 and 0", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.722222199717805, 8.120555599815077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-147", - "dateofocc": "2005-04-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified bulk carrier was boarded 22 Apr at 2350 local time in position 29-37N 048-45.7E, Umm Qasr anchorage. Three robbers, armed with guns and a knife, boarded the vessel using hooks attached to ropes. They took several crewmembers host", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.761666700438411, 29.616666699580946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-148", - "dateofocc": "2005-04-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "ANDAMAN SEA: Thai F/V (RATTANAKORN 5) was boarded and robbed, but rescued by authorities 30 Apr while fishing off the southern town of Satun, Thailand. Five men, armed with two M-16s, three AK-47s and 1,200 rounds, boarded the fishing vessel, but not b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.033333299951551, 6.68333329967561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-149", - "dateofocc": "2005-04-30", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was approached 30 Apr at 2300 local time, while underway in position 00-24S 118-12E, Makassar Staits. Master raised alarm after detecting three unlit fishing boats approaching his vessel. Crew mustered an", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.200000000030968, -0.400000000387081] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-150", - "dateofocc": "2005-04-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 30 Apr at 2030 local time, while underway in position 02-49.70S 105-54.90E, Bangka Straits. Six robbers, armed with long knives and guns, fled empty handed after master raised alarm, switched on de", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.915000000312659, -2.828333299997894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-151", - "dateofocc": "2005-04-29", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Unidentified bulk carrier boarded and robbed 29 Apr at 0315 local time at Taboneo anchorage, Banjarmasin, Indonesia. Two robbers, armed with knives, boarded at forecastle. They broke into forepeak locker, stole ship's stores, and were about", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-152", - "dateofocc": "2005-04-30", - "subreg": "93", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified tug was approached 30 Apr at 2300 local time, while underway towing a manned crane barge in position 08-22.7N 107-14.2E. Two small unlit high speed craft approached tug. One craft disappeared from radar screen but th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.236666699698958, 8.378333300283487] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-153", - "dateofocc": "2005-05-05", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: An unidentified bulk carrier was boarded 05 May at 0135 local time, while at Port Au Prince anchorage. Duty officer raised alarm after robbers, armed with long knives, boarded the vessel. Robbers escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40416670017288, 18.572222200040585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-155", - "dateofocc": "2005-05-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship was boarded 09 May at 0445 local time, while at anchor in Dar Es Salaam. Duty officer raised alarm after robbers boarded the vessel. Robbers jumped overboard and escaped in a boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-156", - "dateofocc": "2005-05-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified RO/RO vessel was boarded 10 May at 0430 UTC in position 13-05.7N 080-21.0E, Chennai anchorage, India. Five robbers boarded at the stern and attempted to steal ship's stores. Alert crew raised alarm and robbers escaped empty hand", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-157", - "dateofocc": "2005-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified tanker was approached 05 May at 2320 local time, while underway in position 21-16N 091-31E, 60 NM SSW of Chittagong. One fishing boat came close to starboard quarter and persons inside attempted to board. Master took evasi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.516666700053918, 21.2666667002552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-341", - "dateofocc": "2005-10-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified tanker was boarded and robbed 31 Oct at 1900 local time at Basrah oil terminal, Alfa anchorage, Iraq. Three armed robbers boarded the tanker and tied up two crewmembers, and took three crewmembers hostage. The robbers proceeded to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.816666699662278, 29.233333299820288] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-342", - "dateofocc": "2005-11-14", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAITS OF HORMUZ:At approximately dusk local time yesterday (aftrenoon EST) Sunday Nov 13, 2005 , five small boats (est 20 footers) traveling in excess of 30 knots in a V formation approached the stern of CAPE DOUGLAS traveling inbound Straits of Ho", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.499999999924228, 26.608333300072616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-343", - "dateofocc": "2005-11-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified tanker was boarded 19 Nov at 2000 local time while anchored in position 10-19N 075-32W in Cartagena Bay. Four thieves boarded via the forecastle, broke padlock on locker, and stole ships safety equipment and stores, despite th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-344", - "dateofocc": "2005-11-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified bulk carrier was boarded 20 Nov at 0345 local time, while at Umm Qasr anchorage off No. 2 buoy. Five heavily armed robbers boarded via the starboard quarter, took hostage 2 crew on deck. Robbers then went to the bridge, where they", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.674999999648662, 29.708333299903074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-345", - "dateofocc": "2005-11-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: An unidentified bulk carrier was boarded 19 Nov at 2200 UTC, while anchored in position 29-43.4N 048-37.5E off No.5 buoy. Three robbers armed with machine guns and pistols boarded at bridge deck and took 2nd officer hostage.They forced him to ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.624999999781949, 29.723333299773174] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-346", - "dateofocc": "2005-11-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 24 Nov at 0430 local time, while at Lagos anchorage, 15 nm from port. Ten robbers, armed with knives, boarded the vessel via the stern from a speedboat, during heavy rain. They threatened duty A/B and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-347", - "dateofocc": "2005-09-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: An unidentified tug was boarded 03 Sep at 0400 local time while at Total jetty, Douala. Three robbers armed with knives and spears boarded the offshore tug. They confronted duty A/B and bosun The robbers stole ships property and escaped (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.670833300030779, 4.037499999700231] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-348", - "dateofocc": "2005-11-20", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: LPG tanker was boarded 20 Nov at 0600 local time, while anchored in position 08-7S 117-35.2E Bontang anchorage. Robbers stole two life rafts and escaped. There were numerous fishing craft in the vicinity (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.586666699988655, -8.116666700443318] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-349", - "dateofocc": "2005-11-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Container ship boarded and robbed 24 Nov during the early morning, while anchored in position 20-38.1N 106-52.6E, Haiphong anchorage. Robbers stole ships stores and port authorities were informed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.87666670011896, 20.635000000288699] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-350", - "dateofocc": "2005-12-06", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified tanker reported being chased 06 Dec while underway in position 12-01N 050-35E. The vessel reported seeing individuals in speedboats armed with machine guns and other weapons. The master contacted the owners and requested assis", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.583333299566448, 12.016666699731218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-351", - "dateofocc": "2005-11-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Taiwanese fishing vessel (FENG JUNG No 16) reported hijacked 30 Nov. The longliner was reportedly fishing under the legal protection of the Somali fishery cooperation. The fishing vessel had three Taiwanese and 12 foreign crewmembers. The So", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.05833329955226, 4.654444399647446] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-352", - "dateofocc": "2005-12-01", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 01 Dec at 1745 local time, while anchored in position 01:42.3S 116:38.5E, Adang Bay anchorage. Five robbers, armed with guns and knives, boarded the vessel via poop deck and stole a life raft. D/O r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.641666700079554, -1.704999999876179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-172", - "dateofocc": "2006-07-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "LANDING CRAFT", - "descriptio": "MALACCA STRAITS:Twelve pirates in a fishing boat approached a landing craft carrying U.N. Tsunami Relief Cargo. Four pirates boarded and demanded money. Master gave them some cash. Then the remaining eight pirates came on board and stole diesel fuel. Pir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.213333300126521, 4.640000000027726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-173", - "dateofocc": "2006-06-27", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "JAMAICA: Fishermen operating in the vicinity of the Pedro Cays say they are being attacked, by heavily armed men who mount early morning attacks, per 27 Jun reporting. One of the affected fisherman told the media that he is now scared to fish in the ar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.869444399722852, 17.895833300139373] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-174", - "dateofocc": "2006-07-04", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: LPG tanker boarded, robbed 04 Jul at 1450 UTC, while preparing to depart from Texaco berth. One robber boarded the vessel and stole ships equipment. Perpetrator escapedin a motorboat that was waiting with four accomplices (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.188888899808319, 6.755555599946319] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-175", - "dateofocc": "2006-07-04", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Containership reported attempted boarding 04 Jul at 0430 UTC, while anchored at Santos anchorage no. 3. Two robbers attempted to board the vessel via the anchor chain. Alert crew raised alarm and boarding was averted. Port control informed (I", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.337499999568138, -24.081944399915585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-176", - "dateofocc": "2006-07-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: Bulk carrier boarded and robbed 01 Jul at 0330 local time, while at Bonaberi berth no 52, cement berth, Douala port. Three armed robbers boarded the vessel and threatened acrewman with knives. They stole ships stores and escaped. Port contr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.693055600434775, 4.068055599690751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-177", - "dateofocc": "2006-07-09", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Containership reported two suspicious craft 09 Jul at 0750 UTC, while underway in position 12-28N 045-10E. Two 10m turquoise colored speedboats, manned with three persons each, followed the containership. Ship increased speed, raised ala", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.166666700398594, 12.466666700330336] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-178", - "dateofocc": "2006-07-09", - "subreg": "55", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ROMANIA: Bulgarian ferry boarded and robbed 09 Jul, Danube River, Galatz port. During a passport review, when the crew and passengers had to leave the vessel, thieves came aboard and broke the windows of two cars and stole money, cloths, and a dog. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [28.050000000218233, 45.449999999701731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-179", - "dateofocc": "2006-07-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ROMANIA: Bulgarian ferry boarded and robbed 09 Jul, Danube River, Galatz port. During a passport review, when the crew and passengers had to leave the vessel, thieves came aboard and broke the windows of two cars and stole money, cloths, and a dog. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-180", - "dateofocc": "2006-07-09", - "subreg": "71", - "hostility_": "pirates", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAITS of MALACCA:On Sunday night (7-9-06), two UN-chartered ships carrying aid to Indonesia's tsunami-struck Aceh province were boarded in the same area by pirates, who stole money and equipment but left the crew unharmed. The crew aboard the Japannese", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [95.250000000053205, -5.550000000148941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-181", - "dateofocc": "2006-07-07", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EASTERN MEDITERRANEAN: General cargo vessel (MOON LIGHT) was struck by a probable missile 14 Jul, while underway approximately 35km off the coast of Lebanon. All 12 crewmembers, one with serious injuries, were rescued by a nearby merchant vessel owned", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.574999999742033, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-182", - "dateofocc": "2006-07-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA: Container ship boarded 16 Jul at 0225 local time, while at Luanda anchorage. Four robbers in a wooden boat, armed with knives, boarded the vessel at forecastle. They threatened a crewmember with knives and broke open paint store padlock. The cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.266666699996506, -8.766666699609971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-183", - "dateofocc": "2006-07-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Tug boarded and robbed 15 Jul at 1200 local time, while underway in position 05-16.00S 106-07.80E, enroute to Batam from Merak. Six pirates, armed with pistols, approached the tug, which was towing a barge. Four pirates boarded the tug and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.129999999649613, -5.266666699946427] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-271", - "dateofocc": "2004-10-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 26 Oct at 1925 UTC, while at Dumai anchorage. Three persons gained access, but fled when crew sounded alarm and mustered ((MB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.479166700252449, 1.691666699824509] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-272", - "dateofocc": "2004-10-26", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports suspicious approach 26 Oct at 0905 local time, while underway in position 01-50.0N 097-31.2E off Aceh Province. Four grey-green colored boats approached from port bow, while another four approached fro", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.519999999578033, 1.833333300013351] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-273", - "dateofocc": "2004-11-06", - "subreg": "22", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified tanker was boarded 6 Nov at 0345 UTC, while at Callao anchorage. A single thief gained access at the forecastle and escaped, with ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-274", - "dateofocc": "2004-11-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: The South-Korean-flag cargo ship (AMAZAN), which had arrived 7 Nov at Chittagong for scrap, was looted at about 1900 local time, by a gang of about 100 persons of whom 5 were arrested (INFO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-275", - "dateofocc": "2004-11-08", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Duty officer of an unidentified tanker noticed approach by 3 suspicious boats 8 Nov at 0300 local time, while underway in position 01-36.0S 117-01.6E off Balikpapan. Masked men in each of the boats were attempting to board via the starboard", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.391666699879011, -1.599999999886279] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-276", - "dateofocc": "2004-11-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports boarding at starboard poop deck 7 Nov at 0105 local time, while underway in position 05-06-00S 117-23-30E off Sunda Island, Java Sea by one man from a speedboat (containing 4 persons dressed in black and a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.391666699879011, -5.100000000449143] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-277", - "dateofocc": "2004-11-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 5 Nov at 0410 local time, while at Balikpapan anchorage, by robbers armed with long knives. They broke into forecastle locker and stole ship's stores, before escaping when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.240555599602772, -1.272222199599867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-278", - "dateofocc": "2004-11-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reports attempt to board 5 Nov at 0005 local time, while at Taboneo-Banjarmasin (Banjarmasin) anchorage. Three persons armed with knives attempted to gain access via anchor chain, but fled when crew sounded alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-279", - "dateofocc": "2004-11-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: An unidentified tug, towing an oil rig was attacked 3 Nov at 1900 local time, while underway in position 05-02N 099-11E off Belawan. Three identical fishing boats followed the tug and one approached opening fire causing damage, to navigation", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.183333300418724, 5.033333299577237] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-280", - "dateofocc": "2004-11-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 3 Nov at 1815 UTC, while anchored in position 01-34S 117-13E at Balikpapan. Three persons armed with long knives took duty seaman hostage, stole two life rafts, and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.216666699895768, -1.566666699916709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-281", - "dateofocc": "2004-10-30", - "subreg": "24", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: An unidentified bull carrier was boarded 30 Oct at 0140 local time, while anchored at Maracaibo. A single man gained access via the anchor chain but fled in a waiting boat, when duty seaman raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.583333299554909, 10.633333299938215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-282", - "dateofocc": "2004-11-12", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: An unidentified supply vessel reports attempt to board 12 Nov at 0730 local time, while underway in position 03-45.5N 008-59.5E. When 6m long speedboat with 6 persons approach, supply ship's master increased speed and boat abandoned chase (I", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.991666700150517, 3.758333299828337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-283", - "dateofocc": "2004-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 11 Nov at 2230 local time, while at Chittagong anchorage by six persons armed with knives. The six stole ship's stores and fled, when crew raised alarm. Master informed coast guard which dispatched", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-284", - "dateofocc": "2004-11-09", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 9 Nov at 0400 local time, while at Balikpapan coal terminal. Three persons gained access but jumped overboard and escaped in a speedboat, when crew sounded alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.813888900258917, -1.25555560042676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-285", - "dateofocc": "2004-11-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 3 Nov at 1815 UTC, while anchored in position 01-34S 117-13E at Balikpapan. Three persons armed with long knives took duty seaman hostage, stole two life rafts and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.216666699895768, -1.566666699916709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-158", - "dateofocc": "2005-05-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 10 May at 0850 local time, while at anchor in Jakarta. Six robbers boarded the tanker from two fishing boats. They broke into aft locker and stole ships equipment. Robbers escaped in an easterly direction", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.891666699989059, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-159", - "dateofocc": "2005-05-04", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 04 May at 2025 UTC, while underway in position 01-46.3S 117-07.2E, Makassar Straits. A speedboat with five individuals came along side the vessel and one pirate boarded using hooks attached to a rope.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.891666699989059, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-160", - "dateofocc": "2005-05-04", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reported an attempted boarding 04 May at 2255 local time while underway in position 01-23.07S 117-06.57E, Makassar Straits. Pirates in a six meter blue and black hull colored speedboat attempted to board the tanker at", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.109444399628387, -1.384444400298946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-161", - "dateofocc": "2005-05-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified vessel was approached 03 May at 0700 local time, while anchored at Tg. Priok outer roads. Six boats approached the vessel. Six robbers, armed with steel bars,boarded the vessel from two of the boats. Two other boats remaine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.958333299928199, -5.96666669987917] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-162", - "dateofocc": "2005-04-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The unidentified ship boarded and hijacked 10 Apr at 1200 UTC while underway, in position 00-50S 047-36E, off the eastern coast of Somalia was freed 28 Apr according to 5 May reports. The ship, an LPG tanker proceeding empty to its next load", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.600000000265936, -0.833333300189679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-163", - "dateofocc": "2005-05-13", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified general cargo ship reports being approached 13 May at 0110 local time, while underway in position 05-13N 098-06E, by an unlit 7m boat carrying armed persons. The duty officer undertook evasive maneuvers but the boat", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.099999999650777, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-164", - "dateofocc": "2005-05-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 14 May at 0215 local time, while at Dumai anchorage. Three robbers armed with knives gained access at the poop and entered the engine room.Duty crew raised alarm but the robbers escaped with ship's stores (I", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.464444400233162, 1.688888900020743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-165", - "dateofocc": "2005-05-18", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified tanker was boarded and robbed 18 May at 0325 local time, while at Callao anchorage. Robbers boarded the tanker at the forecastle, stole ship's stores, and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-166", - "dateofocc": "2005-05-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified RO/RO vessel was boarded 10 May at 0430 UTC in position 13-05.7N 080-21.0E, Chennai anchorage, India. Five robbers boarded at the stern and attempted to steal ship's stores. Alert crew raised alarm and robbers escaped empty hand", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.350000000200851, 13.095000000242692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-167", - "dateofocc": "2005-05-21", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified product tanker reports being approached 21 May at 0330 local time, while underway in position 05-34.5N 099-51.0E, 21nm NW of Penang Island. A craft approached the tanker at over 20 kts. When craft came within 0.5 nm", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.850000000349496, 5.575000000323257] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-168", - "dateofocc": "2005-05-24", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified general cargo ship was boarded 24 May at 1000 UTC in position 17-52.7N 076-47.1W, Kingston outer anchorage. Five robbers threatened duty A/B with a knife and tied him up. A/B managed to escape and raised alarm. Robbers broke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.785000000109903, 17.878333300141037] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-169", - "dateofocc": "2005-05-18", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified tanker was boarded and robbed 18 May at 0325 local time, while at Callao anchorage. Robbers boarded the tanker at the forecastle, stole ship's stores, and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-170", - "dateofocc": "2005-05-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IVORY COAST: An unidentified general cargo ship was boarded 19 May at 0150 local time, while at Abidjan anchorage. Robbers, armed with long knives, boarded the vessel via the anchor chain. They overpowered and tied up the duty A/B and robbed him of hi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.034999999780666, 5.269444399716804] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-353", - "dateofocc": "2005-11-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 30 Nov at 0710 local time, while anchored in position 06-00.6S 106-54E, Tanjung Priok anchorage. Robbers entered accommodations, stole safety equipment and escaped. Master tried to contact port co", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.010000000361629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-354", - "dateofocc": "2005-12-02", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified LPG tanker reported attempt to board 02 Dec, while underway in position 10-19N, 108-50E, off Vietnam. Persons in a fishing boat attempted to board the vessel via grappling hook. Master altered course to prevent boardin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.833333299876415, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-355", - "dateofocc": "2005-12-03", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: An unidentified tanker was boarded 3 Dec Callao, at anchorage area no. 12, by an armed robber. Robber threatened duty seaman with a gun and stole ship stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.147222200142551, -12.027777800229558] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-356", - "dateofocc": "2005-12-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN-SOMALIA: An unidentified general cargo ship reports being chased 11 Dec at 0810 local time. While underway in position 13-07N 049-13E, persons in a small speedboat attempted to board. Boarding was averted, when master increased speed and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.216666700394683, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-357", - "dateofocc": "2005-12-12", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship reports being chased by an unidentified fishing trawler 12 Dec at 0200 UTC, while underway in position 04-50.5S 048-00.0E. Cargo ship undertook evasive maneuvers; however, trawler came as close as 1.4 nm unti", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, -4.841666699730354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-358", - "dateofocc": "2005-12-11", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports approach 11 Dec at 2000 local time, while anchored in position 01-55S 117-14E, Senipah, Indonesia. An unlit boat approached close to thestern. Crew alerted terminal via VHF, raised alarm, and directed searchl", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.233333299968194, -1.916666699883081] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-359", - "dateofocc": "2005-12-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: An unidentified tug was boarded 8 Dec at 0430 local time while anchored, in position 05-58.4S 105-58.6E., at Tanjung Gerem Merak. Eight persons, armed with long knives tied up motorman and stole engine spares. They escaped to a waiting speed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.9766666998201, -5.97333330033797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-360", - "dateofocc": "2005-12-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 8 Dec at 0330 local time, while anchored in position 05-54S 105-59E at Merak. One person armed with a long knife boarded but fled empty handed to a waiting boat with accomplices, when crew raised ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.9833333002789, -5.900000000115256] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-361", - "dateofocc": "2005-12-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 Dec at 2010 local time while underway, in heavy rain in position 03-17S 116-24E, off Tanjung Mangkok, North Sebuku Island. Two persons armed with long knives stole forward liferaft and were in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.400000000332511, -3.283333299954165] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-362", - "dateofocc": "2005-12-06", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 6 Dec at 0520 local time in heavy rain, while at Bontang anchorage. A single robber stole ships stores and escaped with accomplices, in a waiting boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.586666699988655, 8.116666700234646] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-1", - "dateofocc": "2005-12-07", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship was hijacked 07 Dec off Hobyo, central east coast of Somalia. Hijackers have demanded ransom for release of 11 crewmembers and ship (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.55000000043151, 5.333333299676895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-2", - "dateofocc": "2005-12-16", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified container ship detected a suspicious craft 16 Dec at 2227 local time, while underway in position 03-01.9N 051-17.7E, off the east coast of Somalia. Master notices the craft on radar and took evasive maneuvers to avoid collisio", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.295000000039181, 3.031666700209598] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-3", - "dateofocc": "2005-12-12", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship reports being chased by an unidentified fishing trawler 12 Dec at 0200 UTC, while underway in position 04-50.5S 048-00.0E. Cargo ship undertook evasive maneuvers but trawler drew closer to 1.4 nm, until aban", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, -4.841666699730354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-4", - "dateofocc": "2005-12-15", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified bulk carrier reported a suspicious approach 15 Dec at 2040 local time, while underway in position 12-12.8N 046-10.8E. An unlit white speedboat doing over 25kts came close to the vessel and persons inside asked the master", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.180000000273935, 12.213333300043303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-5", - "dateofocc": "2005-12-15", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship was boarded 15 Dec at 0100 local time, while anchored at Dar Es Salaam outer anchorage. One robber boarded the vessel, via grappling hook, and removed the hawse pipe cover, allowing three of his accomplices to b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.752777800351225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-184", - "dateofocc": "2006-07-13", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Bulk carrier reported attempted boarding 13 Jul at 1020 UTC, in position 10-12S 112-15E, 105nm south of Java Island, Indonesia. Six boats (two with white hulls and four with black hulls) approached the vessel from the stern. Each boat ha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.249999999703618, -10.200000000344289] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-185", - "dateofocc": "2006-06-21", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Chemical tanker boarded and robbed 21 Jun at 0300 local time while at berth b1, Godau port (Tayninh Province). Three robbers in an unlit boat boarded the vessel at the stern. Crew member on duty raised alarm and crew mustered. Robbers stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.400000000106104, 11.283333300004244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-186", - "dateofocc": "2006-07-07", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: Container ship boarded, robbed 07 Jul at 2345 local time while at Punta Guanta anchorage. Robbers boarded the vessel and stole cargo from two containers. Master informed authorities (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.574999999742033, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-187", - "dateofocc": "2006-07-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO: Bulk carrier boarded and robbed 24 Jul at 0200 local time, while anchored 1.5 nm off the breakwater, Pointe Noir. Robbers boarded the vessel at the anchor by using hooks. They stole ships stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.822777800297501, -4.781666700250014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-188", - "dateofocc": "2006-07-21", - "subreg": "57", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA: Containership boarded and robbed 21 Jul at 0205 local time, while anchored in position 08-45.9S 013-16.6E, Luanda Bay Anchorage. One robber boarded the vessel, broke forward store padlock, and stole ships stores. Ships motion sensors sent sig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.276666699610075, -8.764999999582926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-189", - "dateofocc": "2006-07-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Tanker boarded and robbed 23 Jul at 0015 local time, while at Chittagong Alfa anchorage. Ten robbers, armed with long knives, boarded the vessel at forecastle, attacked the shore watchman, and tied him up. Duty officer raised alarm, crew m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-190", - "dateofocc": "2006-07-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUB BOAT", - "descriptio": "INDONESIA: Tug boarded 18 Jul at 0345 local time, while at Telok Banten, Merak. Four armed robbers boarded the tug at anchor. Alert crew mustered and robbers left empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.250000000408932, -5.949999999981969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-191", - "dateofocc": "2006-06-18", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "SAINT. LUCIA: Yacht boarded, crew assaulted, and robbed 18 Jun, while moored outside Rodney Bay Marina (reported 02 Aug). Perpetrators swam from shore to the yacht. The male crewmember was severely beaten and the female crewmember was raped. Perpetrato", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.96249999970388, 14.07500000014852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-192", - "dateofocc": "2006-07-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Containership boarded and robbed 30 Jul at 2115 local time, while at Chittagong outer anchorage b. Three robbers, armed with knives, boarded the vessel at the stern and stole ships stores. Alert crew raised alarm and robbers jumped overboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-193", - "dateofocc": "2006-07-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Tanker reported three attempted boardings 28 Jul, while at Chittagong outer anchorage b. Three robbers boarded a tanker using long poles with hooks. Alert crew activatedfire hoses and repelled boarders. Master reported this was the third", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-194", - "dateofocc": "2006-07-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING BOATS", - "descriptio": "STRAIT OF MALACCA: Two fishing boats attacked and three Thai crewmembers kidnapped 27 Jul, at approximately 0100 local time, 67 nm from Langkawi. Five armed pirates on a fishing boat stopped the two Malaysian registered fishing boats and attacked them.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.766666699646237, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-195", - "dateofocc": "2006-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robbed 26 Jul at 0200 local time, while at Belawan anchorage. Three robbers, armed with long knives, boarded the vessel at forecastle and stole ships stores. All crew chased robbers, who jumped into the water and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-196", - "dateofocc": "2006-08-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "NIGERIA: Anchor Handling/Supply Tug (NORTHERN COMRADE) boarded and four crewmembers kidnapped late 08 Aug while off the coast of Nigeria. Officials identified the hostages as two Norwegian and two Ukrainian workers. One of the Norwegian captives is re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.283333299842525, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-197", - "dateofocc": "2006-08-08", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "VENEZUELA: Stolen engines taken from Guayaguayare fishermen on 08 Aug were recovered by Venezuelan military officers in the coastal town of Perdanales. Police have identified three ofthe thieves who raided the fishing depot near the Guayaguayare seawal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.983333299931587, 10.150000000268903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-286", - "dateofocc": "2004-11-20", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified tanker was boarded 20 Nov at 1040 UTC, while anchored at Port Esquivel. Three persons from an unlit speedboat stole ship's stores and fled, when duty officer raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.074999999696615, 17.758333300281038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-287", - "dateofocc": "2004-11-24", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified general cargo ship was boarded 17 Nov at 0850 UTC, while anchored in position 06-58N 058-02W in Georgetown Roads. Thieves stole ship's stores and escaped in a high speed boat, when duty officer raised alarm. Port control infor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.033333299701269, 6.966666699702841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-288", - "dateofocc": "2004-11-26", - "subreg": "26", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: An unidentified container ship was boarded 26 Nov at 0715 UTC, while anchored in position 17-51.8N 076-46.7W, Kingston outer anchorage. One person gained access at the forecastle using a grappling hook. Crew raised alarm and intruder escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.778333299826386, 17.863333300270995] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-289", - "dateofocc": "2004-11-24", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified refrigerated cargo ship was boarded 24 Nov at 0100 local time, while at Georgetown anchorage maneuvering with pilot on board. Intruders broke into mast house but escaped empty handed, when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.174999999714885, 6.80694440033983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-290", - "dateofocc": "2004-11-22", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL:An unidentified container ship reports attempt to board 22 Nov, while anchored in position 32-13.6S 051-58.2W at Rio Grande do Sul. Persons in a small craft attempted to board from port quarter, but were driven off when crew mustered and directe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-51.969999999797494, -32.226666699667192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-291", - "dateofocc": "2004-11-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "NIGERIA: An unidentified refrigerated cargo ship was boarded 28 Nov at 0145 local time, while underway off buoy 19, Escravos River. Five persons armed with machine guns took watchman hostage and beat him. The intruders fired shots at crew, stole cash", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.94999999974101, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-292", - "dateofocc": "2004-11-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 25 Nov at 2345 local time. While at Lagos anchorage, fifteen robbers armed with guns and long knives, took duty seaman hostage. Duty officer raised alarm and crew mustered in locked accommodation, but robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-293", - "dateofocc": "2004-11-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified LPG tanker was boarded 23 Nov at 0425 local time, while at Kandla anchorage. Three persons stole ship's property and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-294", - "dateofocc": "2004-11-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 19 Nov at 0530 local time at berth No. 1, New Mangalore Port by Robbers who stole ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [74.82083329993435, 12.930555600123512] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-295", - "dateofocc": "2004-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified bulk carrier was boarded 11 Nov at 2230 local time while at Chittagong anchorage, by six persons armed with knives. The six stole ship's stores and fled when crew raised alarm. Master informed coast guard which dispatched a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-296", - "dateofocc": "2004-11-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: An unidentified tug towing a barge was fired on and boarded 27 Nov at 0910 UTC, while underway in position 05-02N 098-28E off Aceh Province. Assailants opened fire with machine guns from a fishing boat, kidnapped the Captain and Chief Offic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.466666700413555, 5.033333299577237] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-297", - "dateofocc": "2004-11-27", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified LPG tanker reports being followed 27 Nov at 0310 local time while underway in position 01-46N 102-39.4E, by an unlit speedboat from which persons attempted to board. Crew directed searchlights and sounded whistle and boat mo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.656666700396215, 1.766666700074268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-298", - "dateofocc": "2004-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded 19 Nov at 0015 local time at its berth, Dumai port. Two persons armed with long knives were confronted by the chief Officer, who was injured when he ordered them to disembark. The robbers escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.724999999794079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-13", - "dateofocc": "2005-12-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 27 Dec at 0400 local time, while at Tg. Bara inner anchorage, East Kalimantan. Robbers boarded the vessel at forecastle. They tried to steal ships stores but alert crew raised alarm and robbers escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.72833330017761, 0.551666699805651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-299", - "dateofocc": "2004-12-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified tanker was boarded 2 Dec at 0130 local time, while anchored in Lagos Roads. Twelve persons armed with guns, knives, and axes approached in speedboats. They boarded and rushed the bridge, despite the second officer shining searc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-300", - "dateofocc": "2004-12-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 1 Dec at 1410 UTC while berthed at Kochi oil terminal, Cochin. Robbers armed with knives took ship's sores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.2699999995653, 9.971666700056289] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-171", - "dateofocc": "2005-05-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified general cargo ship was boarded 29 May at 0015 local time in position 06-45S 039-20E, No. 2 anchorage, Dar Es Salaam. Three robbers, armed with machetes, boarded the vessel via the hawse pipe. They stole ship's stores and esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.749999999648139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-172", - "dateofocc": "2005-05-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TUG BOAT", - "descriptio": "GULF OF ADEN: An unidentified tug reported a suspicious approach 28 May at 1835 local time, while underway in position 12-29N 044-57E. A speedboat approached the tug, which was towing two barges. When the speedboat came within 5 meters, crew fired roc", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.950000000135219, 12.483333300402762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-173", - "dateofocc": "2005-05-24", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: An unidentified RO/RO was approached 24 May at 1100 UTC, while underway in position 15-19.5N 041-32.5E. Persons in two boats attempted to come alongside the vessel. Master raised alarm and increased speed. Attempt was aborted (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.541666699719315, 15.325000000413752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-174", - "dateofocc": "2005-05-30", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified general cargo ship was approached by a suspicious craft 30 May at 1720 UTC, while in position 04-00.50N 099-36.20E. The vessel sighted a 5m long craft with a white hull. When the craft came within two miles, it incr", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.603333300378324, 4.008333300061224] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-175", - "dateofocc": "2005-05-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 30 May at 1615 UTC, while underway in position 03-12N 105-24E, 14nm off Anambas island. Five pirates, armed with high-powered guns and long knives, boarded the vessel. Duty A/B at poop deck sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.399999999976785, 3.19999999990921] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-176", - "dateofocc": "2005-05-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDONESIA: An unidentified yacht was boarded 05 May at 1030 local time while at anchor near 02-46.064N 106-12.285E, NW bay of Ayerabu island of Anambas islands. Eight robbers, armed with AK-47 machine guns, ordered the crew to remain below deck. They", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.204722200223841, 2.767777799883277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-177", - "dateofocc": "2005-06-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier reported an attempted boarding 06 Jun at 1535 UTC, while underway in position 02-23N 046-07E, off Mogadishu. Three pirates, armed with automatic weapons, opened fire on the vessel from a white speedboat. The near", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.116666699664904, 2.383333300345896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-178", - "dateofocc": "2005-05-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified general cargo ship was boarded 22 May at 1500 local time, while underway in position 03-42N 48-16E. Pirates beat up the 21 crewmembers and locked them in a room. The pirates hijacked the vessel and have demanded ransom for rel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.266666700229052, 3.700000000375042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-179", - "dateofocc": "2005-05-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: Crude oil tanker (NORD MILLENNIUM) was boarded 31 May at 0230 local time, while anchored in position 29-27N 048-56E, (deep water anchorage A) south of Basra oil terminal. Persons, armed withAK-47 rifles, tried to enter the bridge claiming to be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.933333300367451, 29.450000000083662] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-180", - "dateofocc": "2005-06-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker was boarded 01 Jun at 2000 local time, while underway in position 04-15N 100-18E, off Pangkor island. Eight pirates, armed with automatic weapons and long knives, fired warning shots, before boarding the 1,104", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.300000000081639, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-181", - "dateofocc": "2005-05-31", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA: Per 31 May article, Indonesia will not pay ransom for the release of three Indonesian crewmen kidnapped off the tug BONGGAYA 91, back on 30 Mar (see ONI WWTTS message dated 06 Apr 05 Para 5.K.13. for details on this incident). A spokesperson", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.999999999697138, 4.583333299877495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-6", - "dateofocc": "2005-12-15", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified bulk carrier had an attempted boarding 15 Dec at 0145 local time, while anchored in position 06:44.7S 039:20.2E, Dar Es Salaam OPL anchorage. Seven persons in an unlit boat approached the vessel. Two persons attempted to boar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.336666699931243, -6.745000000290986] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-7", - "dateofocc": "2005-12-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker (STEADFAST) is suspected of being hijacked as of 19 Dec, while enroute from Palembang, Indonesia to Singapore. An IMB special alert dated 20 Dec reports the tanker lost contact with their vessel as of 19 Dec. The tanker depa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.683333300211586, 2.333333299579863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-8", - "dateofocc": "2005-12-16", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "JAMAICA: An unidentified Yacht was boarded 16 Dec at 0630 UTC, while anchored off Kingston harbor. Five robbers, armed with assault rifles, boarded the yacht from a 25 ft canoe with an outboard motor. They took substantial equipment at gunpoint and es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-9", - "dateofocc": "2005-12-26", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 26 Dec at 0230 local time, while anchored at Bontang anchorage. Eight robbers armed with long knives boarded the vessel at forecastle. Robbers stole ships stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.500000000098225, 0.091666699592906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-10", - "dateofocc": "2006-01-02", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified tanker reported a suspicious approach 02 Jan at 0733 UTC, while underway in position 13-48N 049-48E. Three speedboats, with 3 or 4 persons onboard, followed the tanker. Master altered course and boats moved away. Later,", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.799999999797478, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-11", - "dateofocc": "2005-12-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified container ship was boarded 29 Dec at 1800 local time, while anchored in position 21-40.3N 088-00.9E, Sagar anchorage. Two robbers boarded the vessel while awaiting berthing with pilot onboard. Duty A/B raised alarm and robbers e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.015000000363329, 21.671666700344758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-12", - "dateofocc": "2006-01-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker was boarded 02 Jan at 0400 local time, while at Teluk Semangka anchorage. Three robbers, armed with long knives, boarded a tanker at the poop deck. Duty A/B raised alarm, crew mustered, and robbers escaped empty hande", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.600000000310615, -5.533333300251741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-14", - "dateofocc": "2006-01-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Support vessel (LIBERTY SERVICE) boarded 11 Jan, while underway approximately 7 nm off the coast of Bayelsa State. An estimated 40 armed men, traveling in three canoes, forced their way aboard the vessel and abducted four western expatriates.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.249999999872955, 4.316666699572124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-198", - "dateofocc": "2006-08-11", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Bulk carrier was boarded and robbed 11 Aug at 1910local time while anchored in Callao anchorage No. 12. The bosuns store was forced open. C/O raised alarm and alerted crew.Robbers escaped in their boat empty handed. Port authorities were inform", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.149999999946317, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-199", - "dateofocc": "2006-08-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF OMAN: Containership reported suspicious approach12 Aug at 0830 local time while underway in the Gulf of Oman, approximately 25 NM South of the Iranian coast. Ten to twelve individuals in a wooden hulled (brown) boat with white superstructure ap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.268333299887786, 24.989999999741542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-200", - "dateofocc": "2006-08-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robbed 04 Aug at 2030 UTC at Teluk Semangka Anchorage, Indonesia. Eight robbers armed with knives boarded the tanker. They entered the engine room and tied up and assaulted two duty crewmembers. Robbers stole generator s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, -5.583333300118511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-201", - "dateofocc": "2006-08-11", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: Containership boarded and robbed 11 Aug at 2255 local time while anchored in Manila South harbor anchorage. Eight robbers armed with guns boarded and ransacked the forward locker. Alert cadet on forcastle sighted a boat near the bulbous b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.966666699792199, 14.566666700128451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-202", - "dateofocc": "2006-08-22", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "GUINEA: Integrated Tug and Barge (ITB) boarded and robbed 22 Aug at 0200 UTC while anchored in position 09-25.25N 013-44.30W, 2.5 NM South of Conakry, Guinea Sea Buoy. Two or more persons boarded vessel and stole deck items. They came alongside in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.738333300233819, 9.419999999696699] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-203", - "dateofocc": "2006-08-17", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "TRINIDAD: Sailing Vessel (VESLA) was boarded and robbed 17 Aug between 0230 and 0300 Local Time while at anchor in front of Peake Yacht Services, Chaguaramas Bay. According to the report,an aluminum dinghy coming from Fishermans Village near Cruise Inn,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.641666700308178, 10.679999999575557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-204", - "dateofocc": "2006-08-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 27 Aug at 0045 local time while underway in position 13:15.5N 047:13.2E. Two speedboats approached the bulk carrier. Crew mustered and took anti piracy measures. Fifteen minutes later boats move", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.219999999660047, 13.258333299685887] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-205", - "dateofocc": "2006-08-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "VIETNAM: Fishing boats report being attacked and boarded 24 Aug at southern Kien Giaung province. Men armed with AK-47 rifles attacked and boarded the fishing boats from a speedboat. The fishing boats were being directed into Cambodian waters but were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.000000000111356, 9.999999999769386] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-206", - "dateofocc": "2006-08-29", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "VIETNAM: Fishing boat reports being attacked and robbed29 Aug near Bong Bay Island off of central Da Nang city. According to a local source, a group of unidentified foreign men launched a surprise attack on the Vietnamese fishing boat and stole approxi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.21666669960473, 16.083333299799733] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-207", - "dateofocc": "2006-08-21", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship boarded and robbed 21 Aug at 0044 local time in position 24:08.3S 046:17.2W, Santos anchorage no. 4. Seven robbers armed with guns boarded at the forecastle. They took hostage two watchmen and entered accommodation. D/O raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.286666699600289, -24.138333300390286] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-208", - "dateofocc": "2006-08-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: Tanker boarded and robbed 30 Aug at 0215 local time at Tema Roads. Five robbers armed with knives boarded via the anchor chain. They stole ships stores and walkie-talkie from duty a/b. Another a/b raised alarm; crew mustered and proceeded to f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.016666700242467, 5.628611100094929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-301", - "dateofocc": "2004-12-04", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 4 Dec at 1235 local time, while anchored in position 06-02.9S 106-53.3E, Tanjung Priok. One person armed with long knives threatened the Chief officer and bosun, before entering the engine room and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.888333299934914, -6.048333299688352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-302", - "dateofocc": "2004-12-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship reports attempt to board 1 Dec at 1330 UTC, while underway in position 03-16N 105-04E. When crew detected approach they mustered, activated fire hoses, and ship began evasive maneuvering, whereupon the attempt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.066666699907557, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-303", - "dateofocc": "2004-12-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified tanker reports attempt to board 1 Dec at 0130 local time, while at Dumai anchorage. Six persons armed with guns and long knives tried to gain access at the stern but fled, when alarm was sounded (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.724999999794079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-304", - "dateofocc": "2004-11-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 28 Nov at 1915 UTC, while anchored in position 03-12.01S 116-21.27E, at North Pulau Laut anchorage. Ten robbers gained access via the hawse pipe and stole a large quantity of ship's stores and escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.354444399572571, -3.201666700144983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-305", - "dateofocc": "2004-12-03", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PAPUA NEW GUINEA: The coastal freighter (FALLON) was attacked 3 Dec by pirates, who approached from astern in a dinghy. The vessel was attacked while underway between Karkar Island (4-34S 145-56E) and Madang (5-14S 145-46E). The pirates boarded the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [145.85000000007085, -4.900000000082912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-306", - "dateofocc": "2004-12-09", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: A Jamaican source claimed 9 Dec that container ships delayed, at Kingston by congestion, are being victimized by theft. A Marine Police spokesman denied that any thefts had been reported, but the source stated that a container ship of Hamburg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.800000000012346, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-307", - "dateofocc": "2004-12-11", - "subreg": "24", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: An unidentified general cargo ship noted suspicious approach 11 Dec at 0054 local time, by a pilot vessel. This was noted shortly after the ship had dropped its outward pilot at Cartagena. Crew rushed aft and found a grappling hook on the rail", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.555555600221567, 10.424999999985516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-308", - "dateofocc": "2004-11-24", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUYANA: An unidentified refrigerated cargo ship was boarded 24 Nov at 0100 local time, while at Georgetown anchorage maneuvering with pilot on board. Intruders broke into mast house but escaped empty handed, when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.17333329968784, 6.805555599813033] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-309", - "dateofocc": "2004-12-08", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Watchmen aboard an unidentified bulk carrier, at berth 8 Dec at Lagos, discovered that protective bars, covering the rudder trunk opening under the ship's stern, had been cut away. Master reports two boats, with 7 to 9 men each, followed the sh", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-310", - "dateofocc": "2004-12-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: An unidentified container ship was boarded 8 Dec at 0015 UTC, while anchored at Dar es Salaam. Two persons armed with knives took duty seaman hostage, stole ship's property,and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-311", - "dateofocc": "2004-12-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN: Yacht (LILI MARLEEN) was fired on 12 Dec at 1031 UTC, while underway 20 miles off the Yemen coast in position 13-33.6N 048-12.6E. Persons in two orange launches, with five persons each, opened fire on the yacht which radioed for help. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.210000000078765, 13.55999999981259] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-312", - "dateofocc": "2004-12-11", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified supply ship reports approach 11 Dec at 1130 local time by an unknown fishing boat, while underway In position 23-07-14N 068-26-16E. When the fishing boat tried to come alongside, the supply ship altered course and increased spee", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.437777800379251, 23.120555600300179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-313", - "dateofocc": "2004-12-13", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 13 Dec at 0235 local time, while anchored at Balikpapan. Robbers armed with daggers, swords and guns forced the anti-piracy patrol to retreat in the accommodation for their safety. The robbers then b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.240555599602772, 1.272222200290514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-182", - "dateofocc": "2005-06-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: An unidentified general cargo ship was boarded 12 Jun at 0145 UTC, at Takoradi anchorage. Three armed persons gained access at the forecastle and stole ship's stores, before escaping in a boat. Master informed port control who sent official to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.737499999744614, 4.897222200070473] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-183", - "dateofocc": "2005-06-10", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified supply boat reports being followed 10 Jun at 0820 local time by 5 persons wearing yellow raincoats in a 20-foot blue fiberglass craft, while the supply boat was underway in position 03-55.1N 07-08E, 20 miles SW of the Bonny Riv", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.133333300274728, 3.918333299941423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-184", - "dateofocc": "2005-06-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified refrigerated cargo ship reports attempt to board 7 Jun at 0120 local time, while anchored in position 04-12.3N 006-57.3E, at the Bonny River anchorage. Five persons armed with machine guns tried to board using grappling hooks", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.955000000062114, 4.205000000198027] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-185", - "dateofocc": "2005-06-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship was boarded 24 May at 2359 local time, while anchored in the vicinity of the Bonny River Fairway Buoy, Onne. Persons armed with guns boarded the ship, beat up crew, and fired some shots before stealing ship's cas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.993055600437401, 4.218333300041024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-186", - "dateofocc": "2005-05-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified container ship was boarded 24 May at 2110 local time, while anchored in position 04-12.6N 006-55.6E, off the Bonny River Fairway Buoy, Onne. One crew member was injured by a gunshot and the robbers escaped with ship's cash, bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.926666700349017, 4.20999999955518] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-187", - "dateofocc": "2005-06-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The bulk carrier (TIGRIS) reported an attempted boarding 06 Jun at 1535 UTC, while underway in position 02-23N 046-07E, off Mogadishu. Three pirates, armed with automatic weapons, opened fire on the vessel from a white speedboat. The nearby", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.116666699664904, 2.383333300345896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-188", - "dateofocc": "2005-06-10", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: An unidentified container ship reports being followed 10 Jun at 1130 local time, while underway in position 19-48N 069-19E, 95 nm off the Indian Coast of Gujarat. Six dark colored boats, each about 20m long, without fishing nets and each", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.316666699875555, 19.799999999726595] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-215", - "dateofocc": "2006-09-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded and robbed 10 Sep at 0250 local time, at Chittagong anchorage. Eight robbers armed with knives in four boats boarded at the stern, as the ship was preparing to anchor. Crew confronted robbers but they stole ships store", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-189", - "dateofocc": "2005-06-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: An unidentified tanker was hijacked 13 June at 2100 UTC, while underway off Langkawi Island. Ten armed pirates boarded from a speedboat. One crew member managed to escape in the pirates' boat, landed at Langkawi, and notified police", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.583333300251752, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-190", - "dateofocc": "2005-06-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 7 Jun at 2350 local time, at Kota Baru anchorage by 5 persons armed with long knives. The robbers tied up the duty seaman and escaped with a life raft, when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.083333299721232, 3.450000000142154] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-191", - "dateofocc": "2005-06-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified general cargo ship was boarded 7 Jun at 2130 UTC, while at Belawan anchorage. Six persons armed with long knives were frightened off in their speedboat, when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-192", - "dateofocc": "2005-06-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA: Two of three kidnapped crew from the tug (BONGGAYA 91) were recovered 12 Jun in a police operation, on southern Jolo Island. One other crew member remains in the hands of the suspected Muslim guerillas. The 3 were kidnapped on 30 Mar (see O", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.999999999697138, 4.583333299877495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-193", - "dateofocc": "2005-06-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "Malacca Straits:Three small crafts from a big mother fishing vessel came close to a general cargo ship underway. People in the boat attempted to board the ship at stern. Master raised alarm, took evasive manoeuvres,sounded shhip's whistle, and fired rock", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.973333300438867, 5.041666699887855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-15", - "dateofocc": "2006-01-07", - "subreg": "62", - "hostility_": "MERCHANT VESSEL", - "victim_d": "SUSPICIOUS APPROACH", - "descriptio": "GULF OF ADEN: An unidentified chemical tanker reported a suspicious approach 07 Jan at 0635 UTC, while underway in position 13-43N 049-09E. One 15 meter yellow speedboat doing 21 kts approached the tanker. Master raised alarm, sounded whistle, increa", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.149999999731449, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-16", - "dateofocc": "2006-01-07", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified chemical tanker reported a suspicious approach 07 Jan at 0440 UTC, while underway in position 13-58.6N 049-20.8E. Four 15 meter white boats doing 15 kts approached the tanker. Master raised alarm, increased speed, and to", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.346666699868251, 13.976666700442138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-17", - "dateofocc": "2006-01-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: A Sri Lankan Navy Fast Attack Craft was destroyed by an explosive rigged fishing vessel 07 Jan in the early morning, while conducting a routine patrol off the eastern port city of Trincomalee, near Foul Point. Twelve sailors were reported ki", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [81.333333300336051, 8.5333333001401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-18", - "dateofocc": "2006-01-12", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: An unidentified general cargo ship reported a suspicious approach 12 Jan at 1815 local time, while underway in position 06-30N 056-20E. An unidentified craft approached the cargo ship. Master increased speed and altered course. Suspicio", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.333333300426887, 6.500000000105899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-19", - "dateofocc": "2006-01-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified product tanker was boarded 15 Jan at 2200 local time, while anchored at the Dumia anchorage. Five robbers boarded the tanker at the stern. Alert crew mustered and robbers escaped empty handed in their boat (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.712500000052216] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-20", - "dateofocc": "2006-01-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 13 Jan at 1848 UTC, while anchored in position 06-02.46S 106-53.27E, Tg. Priok anchorage. Two robbers, armed with long knives, boarded the vessel at the stern from an unlit boat. Duty officer raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.887777800408628, -6.041111099878492] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-21", - "dateofocc": "2006-01-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified container ship was boarded 11 Jan at 0500 local time while at JICT terminal pier No1, Jakarta. Four robbers boarded the vessel at the stern by climbing emergency towing wire. They entered the engine room via steering gear fla", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.091666699995585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-22", - "dateofocc": "2006-01-15", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PHILIPPINES: The fishing vessel (MAN CHUN YI) came under fire 15 Jan in the morning hours, while underway between Batan Islands and Babuyan Islands, in the Bashi Channel. Five individuals in military style uniforms fired dozens of shots at the vessel,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.999999999761826, 21.499999999691624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-23", - "dateofocc": "2006-01-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier reported attempted boarding 20 Jan at 0310 local time, while in position 06-09N 003-15E, Lagos anchorage. Five robbers in a wooden boat attempted to board using a hook, attached to a long pole. Alert crew thwarted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.249999999775923, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-24", - "dateofocc": "2006-01-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: The (AL MANARA) falsely reported being Hijacked 22 Jan by pirates armed with guns, while underway in position 02-48N 048-36E. A Coalition warship responded to the distress call and determined it was issued by the master as a result of a dispu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.600000000298223, 2.766666700106555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-25", - "dateofocc": "2006-01-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier reported being chased 20 Jan at 0700 local time, while underway in position 05-25.1N 052-34.6E, 213nm east of Somali coast. Two speedboats, operating from a mother ship gave chase. One boat had three men with mach", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.576666700071655, 5.418333300439599] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-26", - "dateofocc": "2006-01-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:An unidentified hopper dredger reported an attempted boarding 21 Jan at 1810 UTC, while underway in position 15-50N 041-45E. Persons in several speedboats attempted to board. D/O raised alarm, crew mustered, directed searchlights, and speedboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.749999999672013, 15.833333299566789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-209", - "dateofocc": "2006-09-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: General cargo ship boarded and robbed 04 Sep at 0325 local time at Chittagong anchorage a. Six robbers armed with long knives boarded the ship from the bow. They broke forecastle and stole ships stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-210", - "dateofocc": "2006-09-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: General cargo ship boarded 03 Sep between 2100 and 2400 local time at Chittagong anchorage a. Robbers boarded twice from the stern and bow. Alert crew mustered and robbers jumped overboard and escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-211", - "dateofocc": "2006-09-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BANGLADESH: Fishing trawler reportedly taken over by mutineers 02 Sep while operating off Coxs Bazar. According to a survivor, six reported newly hired crewmembers turned mutinous and killed seven crewmembers. The bodies of the seven others, including", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.966666699753716, 21.420000000084769] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-212", - "dateofocc": "2006-08-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier reported being boarded and robbed 31 Aug at 0615 local time at Tanjong Priok Roads. Four robbers entered the engine room via funnel by cutting the grills on the funnel door. They stole engine spares and escaped in a boat waitin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-213", - "dateofocc": "2006-09-01", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "TRINIDAD: Fishing raft fired on 01 Sep at San Fernando by gunmen in a white boat. Two brothers and their cousin left Bay Shore aboard a Styrofoam raft and sailed to Kings Warf to fish. The teens were forced to jump off the raft and swim to shore when g", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.471666699682146, 10.2833332999719] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-214", - "dateofocc": "2006-09-12", - "subreg": "57", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Small boat attacked and boarded 12 Sep at 0200 UTC, by gunmen in the Niger Delta. According to industry sources, the US supply vessel was boarded by gunmen shooting sporadically and looking for valuables. One Nigerian worker was killed and tw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.266666699770099, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-216", - "dateofocc": "2006-09-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Container ship approached 07 Sep at 0240 local time in position 22-12.68N 091-43.1E, at Chittagong anchorage. Ten persons in an unlit boat came alongside and attempted to board. D/O raised alarm, crew mustered, and boat moved away (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.718333299723099, 22.211388899589508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-217", - "dateofocc": "2006-09-14", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "SIERRA LEONE: Tug was boarded and robbed 14 Sep at 2230 UTC, in position 08-29.8N 013-12.50W, 4nm north of Queen Elizabeth II berth 4 in Freetown. Two robbers, armed with knives in a boat, boarded the tug from stern while at anchor. Robbers attempted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.208333300027846, 8.496666699941159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-218", - "dateofocc": "2006-09-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Container ship reports attempted boarding 17 Sep at 0330 local time, at Chittagong anchorage c. Eight armed robbers approached ship. Alert crew mustered and sounded the whistle. Upon seeing crew alertness, robbers aborted attempted boardi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-219", - "dateofocc": "2006-09-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier approached 16 Sep at 0200 local time, in position 22-16.94N 091-43.08E, at Chittagong anchorage a. Four robbers in a small motorboat approached ship at stern, during cargo operations. Three robbers jumped off the boat and clu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.282222199683929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-220", - "dateofocc": "2006-09-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier reported being boarded and robbed 31 Aug at 0615 local time, at Tanjong Priok Roads. Four robbers entered the engine room via funnel, by cutting the grills on the funnel door. They stole engine spares and escaped in a boat, wai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.47833330032654, 1.684722199865462] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-221", - "dateofocc": "2006-09-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: Sri Lankas navy and the Tamil Tiger rebels engage in a pre-dawn naval battle, 02 Sep off Point Pedro on the islands northern tip. The Tamil Tiger were attempting to proceed towards the Kankasanthurai harbor but were successfully stopped, by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.266666700364624, 9.916666699933103] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-222", - "dateofocc": "2006-09-21", - "subreg": "22", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Container ship boarded and robbed 21 Sep at 2005 local time, at position 12-01S 077-13.5W in Callao Roads anchorage no 12. A robber boarded a container ship, while port authorities boarded for formalities. D/o raised alarm but the robber threw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.230555599803608, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-314", - "dateofocc": "2004-12-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: The Singapore-flag tug (SURYA WIRA 1) was boarded 10 Dec at 230 local time,while underway in position 00.5 27.00S, 103 43.00E. Ten pirates armed with guns cut thetug's barge adrift and landed ten of the tug's crew at Jambi, before sailing aw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.97861109963327, -5.450000000415457] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-315", - "dateofocc": "2004-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: The chemical tanker (JACKSON) was boarded 19 Nov at 0015 local time, at its berth Dumai port. Two persons armed with long knives were confronted by the chief Officer, who was injured when he ordered them to disembark. The robbers escaped wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-316", - "dateofocc": "2004-12-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: An unidentified bulk carrier reports unauthorized intrusion 8 Dec at 0150 local time, while at Berth 1, Sandakan. Two persons wearing boiler suits and helmets, resembling those worn by the crew, attempted to board via the anchor chain. Duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.066666700328028, 5.833333300142726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-317", - "dateofocc": "2004-12-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified refrigerated cargo ship was boarded 16 Dec at 0455 local time, while anchored in position 06-17.8N 003-21.3E at Lagos Roads. One of 4 persons in an unlighted boat gained access via grappling hook and threatened duty crew. Ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.354999999765823, 6.296666700409617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-318", - "dateofocc": "2004-12-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 16 Dec at 0200 local time at Lagos anchorage. Thieves boarded at forecastle and stole ship's stores. Port control notified and advised master, to leave anchorage (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-319", - "dateofocc": "2004-12-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified chemical tanker was boarded 15 Dec at 0210 local time, at Lagos anchorage by thieves who stole ships stores. Port control notified, but did not respond (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-320", - "dateofocc": "2004-12-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified refrigerated cargo ship was subject to attempted boarding by four persons, in an unlighted boat 13 Dec at 0420 local time. This happened just after coming to anchor in, position 06-17.8N 003-21.3E, Lagos Roads (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.354999999765823, 6.296666700409617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-321", - "dateofocc": "2004-12-19", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: An unidentified chemical tanker reports attempt to board 19 Dec at 0940 local time, while underway in position14-35N 050-20E. Master increased speed and began evasive maneuvers, when approached by four speedboats with four persons each.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.33333330023288, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-322", - "dateofocc": "2004-12-19", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN-ARABIAN SEA-SOCOTRA: An unidentified yacht reports it was chased 19 Dec by a craft with the appearance of a dhow, while underway in position 11-29N 059-55E, 350 nm ESE of Socotra Island. Yacht's skipper altered course and undertook evasiv", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.916666699751431, 11.483333300370418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-323", - "dateofocc": "2004-12-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA-MALACCA STRAIT: Tug (ENA SOVEREIGN) was fired upon and boarded 15 Dec at 2150 local time, while underway in position 05-59N 098-56E. Twenty persons, armed with machine guns, in two fishing boats fired on the tug, which was towing a barge. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.93333330018578, 5.983333299742867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2004-324", - "dateofocc": "2004-12-17", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA-MALACCA STRAIT: An unidentified container ship reports attempt to board 17 Dec at 2330 local time, while underway in position 03-54N 099-54E. When an unlighted boat approached, crew activated fire houses, switched on lights and began evasive", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.900000000248554, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-2", - "dateofocc": "2004-12-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING BOAT", - "descriptio": "BANGLADESH: Pirates killed one crewman and injured 10 others in a 24 Dec attack, which also sank their trawler (MAHMUDA) ,about 70 km, off the Patharghata Coast. The pirates also robbed the trawlers (NIZAM) and (MUSTAFA), when they came to the aid of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.966666699689029, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-1", - "dateofocc": "2004-12-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Nigerian militants on 25 Dec seized a Danish-operated supply vessel, which supports Shell Oil operations in the Niger Delta's Bayelsa State at Ekeremore. Fifteen Nigerians in the crew were released but a single Croatian was held hostage (INFO)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.080000000146242, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-3", - "dateofocc": "2004-12-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 27 Dec at 0230 local time, while anchored at Samarinda. Three persons boarded during cargo operations but jumped overboard and fled empty handed in a speedboat, when crew raised alarm (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.183333300101481, -0.483333300223364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-194", - "dateofocc": "2005-06-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 13 Jun at 0500 local time, about five nm south-southwest of Lagos lighthouse. Two robbers were spotted on the poop deck cutting ropes and throwing them overboard to a wooden boat, where five men were wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-195", - "dateofocc": "2005-06-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified vessel was boarded 13 Jun at 0300 local time, while drifting about 15 nm off the coast of Lagos Roads. The robbers, armed with knives and machetes, seriously injured the watchman on the poop deck. Despite his injuries, the wat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-196", - "dateofocc": "2005-06-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: An unidentified bulk carrier was boarded 17 Jun at 0240 local time while anchored six nm from fairway bouy, Lagos anchorage. Six robbers, armed with guns and knives, came alongside the bulk carrier in a speedboat. Four robbers boarded, held d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.411111099665732, 6.365833299577616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-197", - "dateofocc": "2005-06-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: The offshore processing tanker (JAMESTOWN) was boarded 12 Jun at 1100 local time, 10 miles off the coast of Warri. Reports of up to 50 Nigerian hijackers, (carrying machine guns and knives) ordered a halt to oil production, barricaded the heli", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.299999999739669, 4.069999999568608] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-198", - "dateofocc": "2005-06-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CAMEROON: An unidentified general cargo ship was boarded 14 Jun at 0430 local time, while berthed at port Douala. Four armed robbers assaulted the duty crewman and forced him to open the Bosun store. A cadet on rounds came to forecastle and he, along", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.550000000069588, 3.891666700255371] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-199", - "dateofocc": "2005-06-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: An unidentified tanker was boarded 16 Jun at 0115 local time, while discharging cargo at Jawahar deep terminal. Two robbers tried to steal ship's stores from poop deck, but duty crewman noticed them and raised the alarm. Robbers escaped empty h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [72.94166669965557, 18.950000000193711] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-200", - "dateofocc": "2005-06-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: M/T (PREMPUTLI) was boarded 15 Jun at 0315 local time, while anchored at Basra oil terminal 'B'. Three robbers, armed with machine guns and long knives, boarded the tanker via forecastle. Alert crewman raised alarm. Robbers stole ship's propert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.833333299734704, 29.649999999550516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-201", - "dateofocc": "2005-06-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: M/T (NEPLINE DELIMA) was hijacked 13 June at 2100 UTC, while underway off Langkawi Island. Ten armed pirates boarded from a speedboat. One crew member managed to escape in the pirates' boat, landed at Langkawi and notified police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.583333300251752, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-202", - "dateofocc": "2005-06-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier reported an attempted boarding 19 Jun at 2030 local time, while underway in position 02-03N 119-20E. The pirates attempted to board at the poop deck from a speedboat. Master took evasive maneuvers, raised alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.333333299766309, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-203", - "dateofocc": "2005-06-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded 17 June at 0300 local time in position 03-12S 116-20E, while at Tanjung Pemancingan anchorage. Ten robbers, armed with long knives boarded at the forecastle. They tied up duty watchman and threatene", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.333333299669334, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2005-204", - "dateofocc": "2005-06-15", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTH CHINA SEA: An unidentified general cargo ship reported an attempted boarding 15 Jun at 1800 UTC, while underway in position 01-59N 104-45E. Three unlit craft approached a general cargo ship underway and came within one cable at port bow. Duty o", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.749999999910756, 1.983333299613548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-27", - "dateofocc": "2006-01-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "THAILAND: An unidentified yacht at anchor was hijacked by robbers 14 Jan at Racha Yas Island, off Phuket. Subsequently it was located on 19 Jan (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.485277800188612, 7.616666699768814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-28", - "dateofocc": "2006-01-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified bulk carrier was boarded and robbed 17 Jan at 0245 local time, at the Tg. Bara anchorage. Three robbers boarded, threatened a watchman with a knife, and took him as a hostage. When watchman did not respond to calls on walkie-", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.72833330017761, 0.551666699805651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-29", - "dateofocc": "2006-01-31", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: A container ship (SAFMARINE ZAMBEZI) was boarded and robbed while berthed at the Tecondi Container Terminal at the port of Santos, Brazil per 31 Jan reporting. According to the report, thieves arrived alongside in a motorboat and stevedore acco", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.291666699856762, -23.962500000305965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-30", - "dateofocc": "2006-01-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: An unidentified bulk carrier was fired upon 27 Jan at 0645 local time, while underway in position 11-55.0N 051-19.0E, off Cape Guardafui, Somalia. Five pirates armed with machine guns and rocket launchers in a speedboat fired at the bulk carri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.316666700192798, 11.916666699997791] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-31", - "dateofocc": "2006-01-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified general cargo ship boarded and robbed 28 Jan at 2315 local time at Chittagong 'B'anchorage, Bangladesh. Robbers boarded the ship at forecastle and stole ship's stores. Duty crew raised alarm and robbers escaped. Port control", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-32", - "dateofocc": "2006-01-25", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: An unidentified container ship was chased 25 Jan at 0152 UTC, while underway in position 13-27.6N 042-59.0E. An unlit speedboat chased the container ship. Boat increased speed to 35 knots and came within 1.5 nm. Ship altered course", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.983333300040101, 13.460000000079162] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-33", - "dateofocc": "2006-02-04", - "subreg": "22", - "hostility_": "pirates", - "victim_d": "merchant vessel", - "descriptio": "PERU: An unidentified bulk carrier was boarded and robbed 4 Feb at 2010 local time, at Callao anchorage. Three robbers armed with long knives and iron bars boarded at forecastle. C/O raised alarm and crew mustered. Robbers stole forward life raft and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-34", - "dateofocc": "2006-01-29", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ECUADOR: An unidentified container ship was boarded and robbed 29 Jan at 1936 local time, at inner Guayaquil anchorage. Four robbers armed with guns and iron bars boarded, broke open two containers and stole cargo. Shore-guards onboard fired warning sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.44722220033924, -2.725000000035095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-35", - "dateofocc": "2006-01-27", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE: Korean fishing vessel (MUJIN-5) was boarded on 27 Jan at approximately 2200 local time, while trawling off Yeliboya, per 1 Feb reporting. Thirteen armed pirates aboard a dug out canoe and dressed in military clothing, approached the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.466666699672032, 8.900000000003615] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-36", - "dateofocc": "2006-01-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: An unidentified product tanker was approached by a boat at port bow 31 Jan at 0030 local time, while underway at Chittagong Alpha anchorage area. Crew went forward to investigate;.In the meantime, four robbers boarded at poop deck. They thre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-37", - "dateofocc": "2006-02-02", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: An unidentified container ship detected a craft by radar 2 Feb at 0130 UTC while underway at port, bow in position 19-38.8N - 039-04.0E. D/O altered course to starboard and the craft also altered course, increased speed, and tried to come clos", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [39.066666699571783, 19.646666699897025] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-38", - "dateofocc": "2006-02-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: An unidentified chemical tanker was boarded and reported an attempted robbery 5 Feb at 0745 UTC, while anchored in position 01-20.7S - 116-58.9E at Balikpapan anchorage. Four robbers in a yellow speedboat approached the tanker. Two robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.981666700432243, -1.345000000296238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-223", - "dateofocc": "2006-09-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship boarded 19 Sep at 0300 local time in position 24-07.7S 046-18.2W, Santos anchorage no. 4. Three masked robbers armed with guns boarded and held a duty crew hostage. They took his walkie talkie and freed him at 0420 local time a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.303333299672659, -24.12833329987734] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-170", - "dateofocc": "2008-04-24", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "BRITISH VIRGIN ISLANDS:Yacht boarded, robbed 24 Apr 08, Nanny Cay Boatyard. The vessel was robbed of a cell phone and a computer. It is not known if the vessel was secured or not (Operator: safetyandsecuritynet.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.500000000391594, 18.166666700424742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-224", - "dateofocc": "2006-09-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship boarded 19 Sep at 0215 local time, in position 24-07S 046-21W, at Santos anchorage area no. 4 Brazil. Seven robbers armed with guns, in six meter long blue hull boat, boarded and held hostage one of two watchmen. Other watchman", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.35000000020932, -24.116666700061444] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-225", - "dateofocc": "2006-09-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship boarded 19 Sep at 0200 local time, in position 24:05.1S 046:21.5W Santos outer anchorage no. 3. Robbers boarded and broke seals on 16 containers on deck but escaped empty handed. Port control informed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.358333299795845, -24.085000000294201] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-226", - "dateofocc": "2006-09-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker boarded and robbed 11 Sep at 2355, in position 06-19.5N 003-25.0E at Lagos outer roads. Two robbers boarded during STS operations. Alert crew mustered but robbers stole ships stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.416666700172584, 6.325000000122714] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-227", - "dateofocc": "2006-09-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Container ship approached 24 Sep at 1012 local time, while underway near Moyapura in Hugli River, Kolkata, India. One boat with four persons carrying grappling hooks approached. Crew mustered and boat moved away (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.136666700250373, 22.416666699887685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-228", - "dateofocc": "2006-09-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: LPG tanker boarded and robbed at Dar Es Salaam outer anchorage. Five robbers boarded ship at forecastle deck. D/o raised alarm, activated SSAS, crew mustered and secured accommodation doors from inside. Robbers stole ship stores and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.327777800094339, -6.747222199844373] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-229", - "dateofocc": "2006-09-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded 23 Sep at 0440 local time, at Chittagong anchorage a. Eight robbers in a boat approached and two robbers boarded at stern. Alert crew raised alarm and crew mustered with bars. After 10 minutes, robbers jumped into the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-230", - "dateofocc": "2006-09-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH:Container ship reports attempted boarding 20 Sep at 1750 UTC, in position 22-09.57N 091-44.77E at Chittagong anchorage. Eight robbers in an unlit boat attempted to board from the stern, by using hooks and ropes. Alert duty crew raised alarm a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.746111099909911, 22.159444400020163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-231", - "dateofocc": "2006-10-01", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship boarded 01 Oct at 0523 UTC, in position 24-05.5S 046-21.5W, Santos anchorage no. 4. Eight robbers wearing black clothes came alongside the container ship at port side and one robber boarded. Duty officer raised alarm, sounded whi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.358333299795845, -24.091666699678399] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-232", - "dateofocc": "2006-10-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Oilfield supply vessels attacked 02 Oct, in Cawthorne Channel, Rivers state, Niger Delta. At least three soldiers protecting the convoy were killed, when about 70 gunmen in speedboats attacked the barges carrying fuel and other supplies, to s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.100000000305158, 4.458333299761023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-233", - "dateofocc": "2006-10-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Bulk Carrier reported attempted boarding 2 Oct, while underway in position 15-24.85N 066-21.62E. Two fishing boats came close to the bulk carrier and persons inside tried to board. Vessel increased speed and boats stopped following. (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.360277799936568, 15.414166700432418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-234", - "dateofocc": "2006-09-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Bulk Carrier boarded and robbed 24 Sep, Visakhapatnam anchorage, India. Robbers stole engine spares. The incident was reported to authorities (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.319444400307361, 17.658333299648291] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-235", - "dateofocc": "2006-10-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded 01 Oct at 0300 local time, in position 05-52.8S 106-04.15E, Sulfindo Jetty. Four robbers in a motorboat approached the bulk carrier, at port quarter during cargo operations, and three robbers boarded. Duty officer raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.069166700068138, -5.87999999998874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-236", - "dateofocc": "2006-10-05", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "TRINIDAD AND TOBAGO: Fishing vessel (MISS SUCILLA II) attacked, fisherman shot dead 5 Oct just after midnight, off the west coast between Cedros and Changuanas. The fishing vessel was approached by another boat with no lights. The fishermen cut the ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.500000000294563, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-264", - "dateofocc": "2007-10-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "NIGERIA:Product tanker boarded 10 Oct 07 at 2202 local time, Bonny Island anchorage. Three robbers armed with long knives boarded the vessel. They seized an AB while on his routine anti-piracy rounds and tied him up. However, before the robbers tied up t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.183333300141442, 4.483333300144011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-265", - "dateofocc": "2007-10-24", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 24 Oct 07 at 0730 UTC, while underway in position 14-05.0N - 054-44.5E. The vessel was approached by a fishing boat on the starboard beam asking to trade water for fish. When the vessel declined the suspic", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.741666699606583, 14.083333299735045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-266", - "dateofocc": "2007-10-22", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 22 Oct 07 at 0350 UTC while underway in position 12-32N - 045-24E. Initially, seven boats were following the vessel and the vessel managed to out maneuver five of the boats. Two boats continued following t", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.399999999835018, 12.533333300269476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-267", - "dateofocc": "2007-10-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "SOMALIA:General cargo vessel (JAIKUR II) fired upon 21 Oct 07 at 1250 local time while underway approximately 60NM off the coast near Baraawe, (100NM south of Mogadishu). The master sent out a distress call to the UN World Food Program (WFP) Somalia, cla", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.633333300138474, 0.433333300147979] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-268", - "dateofocc": "2007-10-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "SOMALIA:General cargo vessel (ALMARJAN) hijacked 17 Oct 07 at 1830 local time, approximately 10-20NM from Mogadishu port after departing bound for Mombasa, Kenya. According to the owners of the ship, the last message they received from the ships master w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.349999999968304, 2.033333300379581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-269", - "dateofocc": "2007-10-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOMALIA:Bulk carrier reported being fired upon 18 Oct 07 at 1000 UTC while underway in position 03-45N - 051-30E, 200NM off the Somali coast. At 3NM two small speedboats disguised as fishing vessels, each carrying four armed men approached the vessel, on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.499999999762508, 3.750000000241755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-270", - "dateofocc": "2007-10-18", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SOMALIA:Vessel reported suspicious approach 18 Oct 07, 0805 local time in position 03-54.34N 050-37.9E, 155 miles off the Somali coast. One white colored speedboat approached directly towards the vessel from astern. Two Somali gunmen onboard the ship fir", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.631666700130154, 3.905555600348748] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-271", - "dateofocc": "2007-10-14", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SOMALIA:Vessel reported suspicious approach 14 Oct 07 at 2335 UTC in position 00-36.7N 050-20.1E, 312NM off Mogadishu. The ship was traveling at 19.2kts when the second officer spotted a target on the radar. The target was three points on the port bow ab", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.335000000259924, 0.611666700185253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-92", - "dateofocc": "2008-03-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER VESSEL", - "descriptio": "INDIA:Tanker (FANTASY I) boarded 28 Mar 08 (according to IMB) 29 Mar 08 (according to ReCAAP ISC) at approximately 0200 local time while in position 22-47.18N 70-04.63E, Kandla outer anchorage. Upon anchoring at the outer anchorage, Kandla tower informed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.077222199714242, 22.786388900305099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-93", - "dateofocc": "2008-02-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "INDIA:General cargo ship (THIANJIN) boarded, bandits apprehended 20 Feb 08 at 0930 local time, while at anchorage in position 08-45.08N 078-16.3E, port Tuticorin, per 02 Apr 08 reporting. Three fishing boats approached the vessel. Two groups of men board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [78.271666699657089, 8.751388899855669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-94", - "dateofocc": "2008-03-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH:Bulk carrier boarded, robbed 24 Mar 08 at 0230 local time at Chittagong TSP jetty. Four robbers armed with long knives boarded the vessel during discharging operations. Fearing injuries, the crew on anti-piracy watch retreated into accommodati", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.599999999890201, 22.416666699887685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-95", - "dateofocc": "2008-02-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "BANGLADESH:Container vessel (KOTA TEGAP) boarded, robbed 13 Feb 08 at 0315 local time in position 22-25N 091-36E, port of Chittagong, per 02 Apr 08 reporting. Twelve robbers armed with knives and a revolver boarded the vessel from the aft. The robbers ov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.599999999890201, 22.416666699887685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-96", - "dateofocc": "2008-03-17", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "PASSENGER VESSEL", - "descriptio": "PHILIPPINES:Passenger vessel attacked by criminals posing as passengers, crewmembers killed 17 Mar 08 at 0230 local time, while enroute Cagbalite, Miuban and Balisen, Polilio Island. A passenger boat with ten passengers including five crewmembers was ret", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.383333299730111, 15.833333299566789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-97", - "dateofocc": "2007-12-01", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PHILIPPINES:Container ship (OM AESTATIS) boarded 01 Dec 07 at 2200 local time, while anchored at position 14-33.6N 120-55.6E, North Harbour, Manila, per 12 Mar 08 reporting. Six robbers, armed with pistols, boarded the vessel using grapnels while it was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.926666700438432, 14.559999999844933] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-98", - "dateofocc": "2008-04-06", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker Vessel", - "descriptio": "NIGERIA:Tanker reported suspicious approach 06 Apr 08 at 2000 UTC while in position 05-17.7N 004-43.03E, 92NM southeast of Lagos. An unlit speedboat approached the vessel from the stern. The alarm was raised and SSAS alarm activated. The speedboat fired", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.717222199830871, 5.295000000350171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-99", - "dateofocc": "2008-04-02", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Refrigerated Cargo Ship", - "descriptio": "CONGO:Refrigerated cargo ship boarded, robbed 02 Apr 08, Boma anchorage. Two robbers boarded the vessel. They broke the seal to the cargo compartment and commenced stealing the cargo. The duty watchman noticed some cargo on deck and raised the alarm. Upo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-100", - "dateofocc": "2008-04-08", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Container ship boarded, robbed 08 Apr 08 at 0247 local time, Dar es Salaam anchorage no. 6. Anti-piracy watchman sighted one robber near the boson store. Upon sighting the watchman, the robber jumped overboard and escaped in a waiting boat. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-258", - "dateofocc": "2008-07-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:Tanker (BERGER SISAR) hijacked 26 Jul 2008, Bonny River. According to a military spokesman, around six armed militants attacked the tanker, shooting two civilians and abducting eight crewmembers. The two civilians were wounded, but did not die in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-259", - "dateofocc": "2008-07-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Unknown Vessel", - "descriptio": "CAMEROON:Vessel boarded, robbed 8 Jul 2008, while in position 03-46N 009-19E, approximately 27NM southwest of the port of Douala. The vessel was bound for the port of Douala when gunshots were heard around 0200. The crew went outside and observed a local", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.316666699733844, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-260", - "dateofocc": "2008-07-19", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Container ship boarded 19 Jul 2008, while drifting at position 06-39S 039-25E, Dar es Salaam roads. The duty watchman onboard noticed a robber on the forecastle deck. The alarm was raised and ship's whistle sounded. The robber escaped. A ten-met", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.416666700437474, -6.649999999914712] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-261", - "dateofocc": "2008-07-26", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:Chemical tanker boarded 26 Jul 08, at 0330 local time, at Belawan Anchorage. Three to four robbers boarded an anchored chemical tanker, via the anchor cable. Upon seeing the robbers, the master raised the alarm. Seeing the alert crew, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-262", - "dateofocc": "2008-07-22", - "subreg": "91", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:Container ship boarded, robbed 22 Jul 08,while anchored at position 14-33N 120-55E, Manila Outer Anchorage. Twelve robbers armed with knives boarded a container ship at anchor. They stole ship¿s stores and property and escaped. The crew was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-263", - "dateofocc": "2008-07-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA:Yacht (MUSTANG SALLY) witnessed altercation, perpetrators arrested 28 Jul 08 during mid-afternoon, Porlamar. Three armed men entered the marina on foot while the driver waited out front. The police noticed the three walking down the dock and or", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.850000000325622, 10.949999999935017] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-264", - "dateofocc": "2008-08-06", - "subreg": "57", - "hostility_": "UNKNOWN", - "victim_d": "UNKNOWN", - "descriptio": "NIGERIA:Nigerian Navy (NN) engages in gun battle with militants 6 Aug 08 Cawthorne Channel, 10NM off Port Harcourt. The NN shot dead an unspecified number of militants and destroyed two boats in an encounter. A naval patrol vessel was on routine patrol w", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-265", - "dateofocc": "2008-08-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SOMALIA:Tug (YENAGOA OCEAN) hijacked 4 Aug 08, 0500 local time, near Bosasso. The vessel traveled to an unknown destination. Pirates are reportedly demanding 1 million USD. The vessel had a crew of nine Nigerians (Operator, IMB, LM: thisday.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 11.266666699931818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-266", - "dateofocc": "2008-08-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:Bulk carrier (GEM OF KILAKARAI) fired upon 8 Aug 08 at 0515 UTC (Operator) 0345 UTC (IMB) while underway in position 13-11N 049-55E, 85NM northwest of Caluula. Pirates in two white speedboats, armed with guns and rocket propelled grenade lau", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.916666700327369, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-115", - "dateofocc": "2007-05-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NIGERIA: Pipe-laying vessel attacked and personnel kidnapped 25 May off the coast of the southern state of Bayelsa. Suspected militants in two speedboats fired shots, during the abduction. Four Britians, three Americans and one South African were repo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.616666699704126, 4.416666700204928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-267", - "dateofocc": "2008-08-02", - "subreg": "63", - "hostility_": "UNKNOWN", - "victim_d": "UNKNOWN", - "descriptio": "SRI LANKA:Sri Lankan Navy raids LTTE camp 2 Aug 08, evening, Iranathivu Island. Sri Lanka Navy's Rapid Action Boats Squadron (RABS) and Special Boats Squadron (SBS) destroyed an LTTE make-shift camp, destroying one LTTE boat, killing four LTTE cadres and", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.750000000001592, 9.750000000435818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-106", - "dateofocc": "2007-05-12", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "LIBERIA: Refrigerated cargo vessel (TAHOMA REEFER) reportedly overtaken by pirates and towed away12 May, while docked in Monrovia. The vessel ran into engine problems and docked in Monrovia for four days, while it awaited mechanical help. Two fishing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.766666699674659, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-107", - "dateofocc": "2007-05-15", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: Fishing trawlers (MUVUNO I) and (MAVUNO II) hijacked 15 May at 0900UTC while underway in position 01:20N-049:00E, approximately 200NM from the East Central Coast. Ten pirates, fivided into two groups of five, boarded each vessel and reportedl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.000000000131308, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-108", - "dateofocc": "2007-05-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo vessel (IBN YOUNUS) reported being fired upon 14 May at 1530 local time while underway in position 01:19.62N-048:51.92E, approximately 190 NM off the East Central Coast. The vessel observed one white speedboat with three men, armed with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.865277800076797, 1.326944399838851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-109", - "dateofocc": "2007-05-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Merchant vessel hijacked 10 May, approximately 12 miles north of Mogadishu. Armed pirates have hijacked the merchant vessel and ,reportedly, anchored it 400 km north of Mogadishu, near Hobiyo. Little detail is known about the incident; howeve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.341666700381779, 2.02499999989368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-110", - "dateofocc": "2007-05-09", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "MALAYSIA: Vessel boarded and robbed 9 May in the evening, while at 3BSP 4 berth in position 05-01.03N 118-21.13E, Lahad Datu Port. Several stevedores stole the ship's property during discharging operations. The master reported to agents but no action", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.352222200083816, 5.017222199930472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-111", - "dateofocc": "2007-05-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Product tanker boarded 7 May at 0200 local time, while at berth in position 01-16.081S 116-48.560E, Balikpapan Pertamina Jetty No. 2. Three robbers armed with long knives boarded the loaded product tanker via the forecastle, while waiting f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.809444400428106, -1.268055600168623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-112", - "dateofocc": "2007-05-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Product tanker boarded and robbed 5 May at 0300 local time, in position 03-55.35N 098-46.79E, Belawan Anchorage. Five robbers armed with knives and crowbars boarded the product tanker, using hooks via the anchor chain. They broke the padlo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.779722199781361, 3.922500000096704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-113", - "dateofocc": "2007-05-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "INDIA:Seven robbers armed with knives boarded a tanker, at Visakhapatnam Anchorage, via the poop deck. Duty AB contacted the bridge. All crew went into the accommodation, closed all doors, and then the master raised the alarm. The robbers jumped overboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.366666700195026, 17.638333300421095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-114", - "dateofocc": "2007-05-16", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker reported suspicious approach 16 May at 0125 local time, while drifting at Fairway Buoy RACON B, Bonny River. Watch officer noticed three boats on radar, at a range of one mile. When the boats came within two cables from the ship, watch", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.002777800375441, 4.205555600448406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-116", - "dateofocc": "2007-04-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker boarded and robbed at 4 Apr at 0200 local time, while at berth in Lagos (per 22 May reporting). Robbers broke open the paint store and stole from the ships stores. The alarm was raised and the authorities were informed. The master sus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-117", - "dateofocc": "2007-04-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: General cargo ship boarded and robbed 24 Apr at 0245 local time, while anchored 2.2 miles from Tema Port breakwater. Robbers armed with knives boarded the general cargo ship. They tied up the duty AB and took his walkie talkie. The robbers sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.01666669955182, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-101", - "dateofocc": "2008-04-15", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 15 Apr 08 at 0600 UTC while underway in position 14-35.8N 050-55.7E, 67NM southwest of Qishn, Yemen. Three speedboats approached the vessel, crossing the bow several times. The vessel altered its course an", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.928333300175666, 14.596666699868649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-102", - "dateofocc": "2008-04-14", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 14 Apr 08 at 1622 UTC while underway in position 15-17N 052-23E, 41NM east southeast of Qishn, Yemen. Four suspicious crafts were approaching the vessel from the port bow at a distance of 3NM. The vessel c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.383333300164281, 15.283333300133563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-103", - "dateofocc": "2008-04-12", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Container Ship", - "descriptio": "GULF OF ADEN:Container ship reported suspicious approach 12 Apr 08 at 0511 UTC while underway in position 14-33.6N 050-32.2E, 81NM east of Al Mukalla, Yemen. Two suspicious crafts traveling at 17kts approached the vessel. The master took evasive maneuver", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.53666669975388, 14.559999999844933] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-104", - "dateofocc": "2008-04-09", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 09 Apr 08 between 1720-1745 UTC/2020-2040 local time while underway in position 13-57.5N 051-13.1E, approximately 125NM southeast of Al Mukalla, Yemen. A suspicious craft was picked up on radar approximate", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.218333299762378, 13.958333299618573] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-105", - "dateofocc": "2008-04-08", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker Vessel", - "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 08 Apr 08 at 0700 UTC while underway in position 14-30N 051-52E, 56NM south of Qishn, Yemen. Suspicious boats approached and circled the vessel three times in 20 minutes. At first, one boat circled the ves", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.866666699626023, 14.500000000364594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-106", - "dateofocc": "2008-04-07", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 07 Apr 08 at 0900 local time while underway in position 15-06N 052-55E, 74NM southeast of Qishn, Yemen. One fishing boat approached the vessel. The boats showed white flags and asked for food. The vessel a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.9166667004244, 15.099999999664533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-107", - "dateofocc": "2008-04-05", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious boat 05 Apr 08 at 0800 UTC, while underway in position 14-19.8N 050-16.0E, 60NM southeast of Al Mukalla, Yemen. An unidentified speedboat with a white hull, transporting three to four persons, was traveling from th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.26666670029374, 14.329999999738561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-108", - "dateofocc": "2008-03-31", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Fishing vessel", - "descriptio": "GULF OF ADEN:Fishing vessel boarded, skiffs stolen 31 Mar 08 while in position 12-10N 052-10E, Abd Al-Kuri Island, Yemen. Pirates armed with guns attacked and boarded the vessel. They shot and injured the master on his left shoulder, stole three zodiac b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.166666699725624, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-171", - "dateofocc": "2008-04-02", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "MARTINIQUE:Yacht boarded, robbed 2 Apr 08 in the evening, Anes Mitan. The vessel was robbed while the crew slept (Operator: safetyandsecuritynet.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.999999999828731, 14.500000000364594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-109", - "dateofocc": "2008-04-05", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "INDIA:Product tanker (SAMPURNA SWARAJYA) boarded, robbed 05 Apr 08 at 0330 local time while at anchorage in position 09-57.1N 076-04.8E, Port of Kochi. Six robbers armed with knives boarded the vessel at the forecastle using hooks and ropes. The crewmemb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.079999999712072, 9.951666699929774] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-110", - "dateofocc": "2008-04-02", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:Container ship boarded, robbed 02 Apr 08 at 0500 local time, Chittagong anchorage B. Robbers boarded the vessel. They broke the aft store padlock and stole ship¿s stores. The port authority and ships in vicinity were informed by VHF (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.599999999890201, 22.416666699887685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-112", - "dateofocc": "2008-04-13", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:Chemical tanker (MONALISA) boarded, robbed 13 Apr 08 at 0355 local time while underway in position 03-16.18N 105-26.68E, off Pulau Jemaja. While en route from Pasir Gudang, Malaysa to Nhabe, Vietnam, five pirates armed with long knives in a spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.444722199911496, 3.269722200226965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-111", - "dateofocc": "2008-04-17", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:Chemical tanker (UBT BAY) boarded, robbed 17 Apr 08 at 0155 local time while awaiting berth in position 03-56.31N 098-46.14E, Belawan Anchorage. Four robbers armed with knives boarded the vessel at the forward part of the ship from a small boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.768888900066599, 3.938611099743468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-113", - "dateofocc": "2008-04-13", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:Bulk carrier boarded, robbed 13 Apr 08 at 0205 local time while underway in position 03-13N 105-26E, off Pulau Mangkai. Twelve pirates in a speedboat, armed with guns, swords, and iron bars approached the vessel. The master raised the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.433333299946355, 3.216666699806353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-114", - "dateofocc": "2008-01-20", - "subreg": "97", - "hostility_": "Unknown", - "victim_d": "General Cargo Ship", - "descriptio": "EAST CHINA SEA:General cargo ship (CAPTAIN USKOV) reported missing, last located 20 Jan 08 at 0330 local time, 221NM east of Port Shanghai, per 14 Apr 08 reporting. The vessel departed Nakodka, Russia for Hong Kong, China on 15 Jan 08 with a cargo of ste", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.533333300326603, 31.083333300284835] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-115", - "dateofocc": "2008-04-14", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:Bulk carrier boarded 14 Apr 08 at 0340 local time, Lagos anchorage. Five robbers armed with knives boarded the vessel. They took one crewmember hostage, tied his hands and feet and injured another crewmember. The alarm was raised and the crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-116", - "dateofocc": "2008-04-21", - "subreg": "62", - "hostility_": "Pirate Hijacking", - "victim_d": "Cargo Dhow", - "descriptio": "SOMALIA:Cargo Dhow (AL-KHALEEJ) hijacked, rescued, pirates apprehended 21 Apr 08, approximately 5NM off Port Bossaso. The vessel was sailing from Dubai, UAE to Bossaso when seven pirates posing as thirsty fishermen came alongside the vessel asking for dr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.183333299701019, 11.366666699665245] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-117", - "dateofocc": "2008-04-21", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "VLCC Tanker", - "descriptio": "GULF OF ADEN:VLCC tanker (TAKAYAMA) fired upon 21 Apr 08 at 0110 UTC (reported by IMB), 0230 UTC (reported by operator), while underway in position 13-00N 049-07E, approximately 240NM east of Port of Aden, Yemen. Five speedboats chased and opened fire at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.116666699761936, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-118", - "dateofocc": "2008-04-20", - "subreg": "61", - "hostility_": "Pirate Hijacking", - "victim_d": "Fishing Vessel", - "descriptio": "GULF OF ADEN:Fishing vessel (PLAYA DE BAKIO) hijacked 20 Apr 08 at 1300 local time/1100UTC, 215NM off the coast of Somalia. The vessel was reportedly seized in international waters while fishing for tuna by four pirates armed with grenade launchers. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.516666699659652, 5.10000000024047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-251", - "dateofocc": "2006-10-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Chemical tanker boarded 18 Oct, at 2000 local time in position 22:12.10N-091:40.50E, Chittagong b anchorage, Bangladesh. Robbers boarded the chemical tanker and stole from the ship's stores. Authorities were informed and promised to send a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.67500000013996, 22.201666699651412] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-252", - "dateofocc": "2006-10-18", - "subreg": "63", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Chemical tanker boarded 18 Oct, at midnight local time in position 22-12.10N 091-40.50E, Chittagong b anchorage, Bangladesh. During routine rounds, the crew on the chemical tanker spotted a robber onboard and chased him. The robber jumped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.67500000013996, 22.201666699651412] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-253", - "dateofocc": "2006-10-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded 9 Oct, at 0755 local time in position 06-44S 039-20E, Dar es Salaam pilot station, Tanzania. Six robbers boarded the container ship and stole goods from two containers (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.733333299750996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-254", - "dateofocc": "2006-10-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "SRI LANKA: Suspected LTTE attempted to launch seaborne suicide attack on Dakshina Naval base,18 Oct 0745 local time, Galle. The suspected LTTE boats tried to enter the Naval base, by mingling in with local fishing vessels. A Sri Lankan Navy Spokesman s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.213888899794767, 6.028333300252484] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-255", - "dateofocc": "2006-10-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "SRI LANKA: Sri Lanka navy destroys LTTE boats 20 Oct, off N Jaffna peninsula. The Sri Lankan navy destroyed two Tigers of Tamil Eelam LTTE boats off a northern island, killing all six rebels. The latest clash took place near the government-controlled", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.983333300337392, 9.683333299772585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-256", - "dateofocc": "2006-10-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "SRI LANKA: Sri Lankas Navy sank a suspected Liberation Tigers of Tamil Eelam (LTTE) trawler along the islands northwest coast, 15 Oct. The suspected LTTE trawler was flying a Sri Lankanflag and was transporting a large shipment of arms cargo off the Ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [81.316666700263681, 8.3166666997015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-257", - "dateofocc": "2006-10-18", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PHILIPPINES: Pirates kill fishermen 18 Oct, approximately 0500 local time, off the southern Philippine province of Zamboanga del Sur. A group of pirates attacked eight fishermen in Malabago bay in the early morning killing four fishermen. The fisherme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.450000000425575, 7.816666700134988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-259", - "dateofocc": "2006-10-25", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "TRINIDAD/TOBAGO: Fishing vessel was boarded and robbed, crewmember shot, 25 Oct, off Palo Seco, Pt Erin. The fisherman was shot in the abdomen by pirates, who plundered his boat. The fisherman was able to make a call that night on his cell phone, that", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.645833299739422, 10.055555600142952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-260", - "dateofocc": "2006-11-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "NIGERIA: Oil-prospecting ship boarded, two crewmembers kidnapped 2 Nov, Bayelsa Niger Delta. The hostages were kidnapped by armed attackers from an oil industry ship, off the coast ofNigerias southern state of Bayelsa. The gunmen came in six boats, in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.005555600146863, 4.066666700238557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-261", - "dateofocc": "2006-10-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Chemical tanker boarded and robbed 25 Oct, at 0515 local time, Dar es Salaam anchorage. Robbers boarded the chemical tanker via anchor chain. The robbers stole from the ships stores and escaped. The masters attempt to contact port control w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-262", - "dateofocc": "2006-11-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:In the evening of 1 NOV 06 at 19:30, when the office was calling the ship the Master declared that the ship is hijacked by 6 armed Somalia citizens. They instructed the Master to sail in direction to the next en-route north destination in Somali", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.733333299968933, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-118", - "dateofocc": "2007-05-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo dhow (AL AQEEQ) hijacked 24 May at 1700 local time near Mogadishu. No additional information is available at this time (SAP, LM).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-119", - "dateofocc": "2007-05-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo vessel (VICTORIA) attacked 19 May in the afternoon, while underway, 60NM off the coast. Pirates attacked the UN World Food Program (WFP) chartered vessel, while it was enroute to Kismayo from Merca. The Jordanian-registered vessel sent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.500000000435477, 0.66666670030844] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-120", - "dateofocc": "2007-05-25", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Tanker (KUDAM) reported attempted boarding 25 May at 0315 UTC, while anchored in position 1-19.3N 104-16.3E, approximately 3NM southwest of Pulau Mungging. The tanker was approached by one small boat with eight men, who attempted boarding fr", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.271666699598597, 1.321666699731622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-121", - "dateofocc": "2007-05-09", - "subreg": "92", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TUGBOAT", - "descriptio": "PHILIPPINES: Tug reported attempted boarding 9 May at 1800 local time, while underway in position 07-47N 120-21E, Sulu Sea. Fifteen armed pirates wearing face masks in a speedboat approached the tug, as it was towing a barge. The speedboat closed to", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.349999999695797, 7.783333300340701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-122", - "dateofocc": "2007-01-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: LPG tanker boarded and robbed 7 Jan at 2145 local time, while at berth in position 02-59.1S 104-05.2E, Pertamina Jetty 4, Plaju (per 22 May reporting). Three robbers in a motorboat boarded the LPG tanker. They were noticed by the duty AB an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.086666700001786, -2.984999999881609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-123", - "dateofocc": "2007-05-08", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Container ship boarded and robbed 8 May at 1343 local time in position 10-15.6N 107-04.9E Vung Tau anchorage, Ho Chi Minh Port. Five robbers boarded the container ship via the anchor and broke open the forecastle store. They were spotted by th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.081666699842344, 10.259999999615957] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-124", - "dateofocc": "2007-05-25", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: Tanker reported attempted boarding 25 May at 0315 local time, while underway in position 01-19.3N 104-16.3E. Robbers in a speedboat tried to board the tanker from the stern. Upon seeing the robbers, the anti-piracy watch keeper inf", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.271666699598597, 1.321666699731622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-125", - "dateofocc": "2007-05-23", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Product tanker boarded, robbed 23 May at 0310 local time, while at anchor in position 10-15.30N 107-05.06E, Vung Tau. Duty crew spotted robbers boarding the vessel and informed the D/O, who raised the alarm and mustered the crew. The robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.084444399821336, 10.255000000258804] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-126", - "dateofocc": "2007-05-22", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "THAILAND: Tanker hijacked 22 May while underway in position 07-45N 102-02E, Gulf of Thailand. At the time of the incident, the tanker was transporting 100,000 liters of fuel oil to supply fishing vessels at sea. A pirate, who was reportedly a former", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.033333300016238, 7.750000000371131] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-127", - "dateofocc": "2007-05-21", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN CRAFT", - "descriptio": "SOMALIA: Tanker reported suspicious approach 21 May at 2300 local time, while underway in position 07-08N 054-36E. An unidentified small craft followed the tanker from a distance of 7 miles. The tanker altered its course and increased its speed to d", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.599999999592967, 7.133333300274728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-128", - "dateofocc": "2007-05-20", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA: General cargo ship reported suspicious approach 20 May at 0330 local time, while underway in position 02-55N 046-04E, 300NM from the coast. The vessel observed an unlit craft at a distance of 3 miles. When called on VHF they replied that they", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.066666699798191, 2.916666699706752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-272", - "dateofocc": "2007-10-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "INDIA:Product tanker boarded, robbed 18 Oct 07 at 0200 local time in position 22-49.0N 070-04.5E at Kandla outer Tuna buoy. Robbers boarded the vessel unnoticed and stole items from the crews smoking room. The incident was reported to port control so the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.075000000160856, 22.81666669972077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-273", - "dateofocc": "2007-10-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA:Bulk Carrier boarded, robbed 10 Oct 07 at 0130 local time in position 17-03.5N 082-27.7E, Kakinada anchorage. Three robbers boarded the vessel via the stern using grappling hooks. The duty AB spotted them and informed the officer on watch. The alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.461666699639693, 17.058333300348352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-274", - "dateofocc": "2007-10-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "BANGLADESH:General cargo vessel boarded, robbed 12 Oct 07, TSP Jetty, Chittagong port. Five robbers boarded the vessel from the stern. They stabbed the duty watchman and stole from the ships stores. The duty officer raised the alarm and the robbers esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-275", - "dateofocc": "2007-10-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SHATT AL ARAB:Container ship boarded, robbed, shots fired 16 Oct 07 at 0145 local time while underway in position 30-06N 048-24E, inside Shatt Al Arab River. The vessel was approached by a speedboat while enroute to Khoramshahr Port in Iran. The duty AB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.399999999932049, 30.100000000149635] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-276", - "dateofocc": "2007-10-19", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CONTAINER VESSEL", - "descriptio": "STRAIT OF MALACCA:Container vessel reported suspicious approach 19 Oct 07 at 0600 local time while underway in position 04-07.4N 099-52.0E, northwest of Pulau Perak. The duty officer on the vessel saw the beams of flashlight on deck. As no crewmembers we", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.866666700278984, 4.12333329966475] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-277", - "dateofocc": "2007-10-17", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PHILIPPINES:Container ship boarded, robbed 17 Oct 07 at 0230 local time at Manila anchorage. Robbers boarded the vessel and stole the forward life raft and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.920000000154914, 14.553333299561359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-278", - "dateofocc": "2007-10-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "Indonesia:A seaman spotted several robbers on the forecastle when he was sent forward to look for the duty O/S who was not responding to calls on the radio. The robbers had caught and tied up the duty O/S. Alarm raised and crew alerted. On hearing the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.79500000022631, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-279", - "dateofocc": "2007-10-21", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN:While underway, a chemical tanker was warned by vessels ahead of her about unlit boats that had failed in approaching them. The master of the chemical tanker rased the alarm, mustered the crew on the bridge and briefed them. The target boats", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.216666700362339, 13.233333300202162] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-280", - "dateofocc": "2007-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN:An undesignated distress was received from a chemical tanker underway. Thereafter, there has been no communication with the tanker. The owners and the piracy reporting center have been unable to contact the vessel. Information from the coali", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.399999999996737, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-281", - "dateofocc": "2007-10-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BRAZIL:(Santos Outer Roads Anchorage) Robbers armed with guns boarded a container ship and fired their guns at the approaching crew members. For safety, crew members locked themselves in a safer place. Robbers opened 8 reefer containers and stole cargo c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.333333300312177, -24.166666699928157] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-282", - "dateofocc": "2007-10-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "NIGERIA:(OFF LAGOS APAPA LIGHTERING AREA) Two robbers boarded a product tanker during STS operation at anchor. They tied up two crew members and stole cash and valuables from one crew. During encounter one seaman received minor injury. Master activated s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-283", - "dateofocc": "2007-10-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "SOMALIA:The North Korean-flagged general cargo vessel (DAI HONG DAN) infiltrated on the evening of 29 Oct while in port Mogadishu. An allegedly corrupt security detachment hired by a Mogadishu shipping agent boarded the vessel prior to its departure from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.799166699566968, 2.192777800067006] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-119", - "dateofocc": "2008-04-16", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 16 Apr 08 between 0600-1000 local time while underway in position 14-26N 050-30, 87NM southwest of Qishn, Yemen. Five speedboats, with three persons on each boat, chased the ship. The vessel took eva", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 14.433333299701417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-120", - "dateofocc": "2008-04-16", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker Vessel", - "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 16 Apr 08 at 0640 UTC while underway in position 14-02.0N 050-35.9E, 104NM southwest of Qishn, Yemen. The ship was approached and trailed by two 15-meter boats. One boat had three persons on it with a yell", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.598333300335867, 14.033333299868332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-264", - "dateofocc": "2006-11-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Bulk Carrier (VEESHAM I) hijacked 1 Nov and freed 7 Nov, Central East Coast. The vessel departed El Maan 1 Nov at 1300, en route to Dammam, Saudi Arabia with a cargo of charcoal. The vessel missed its 1900 check-in call, at 1930 the office ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.733333299968933, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-303", - "dateofocc": "2007-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "BEIRA PORT, MOZAMBIQUE:0400 LT: Robbers boarded a container ship at berth and stole ship's stores amid tight anti piracy watches. The ship had shore security personal deployed by the port security. In addition, there were armed security guards on the sho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.833333300181266, -19.820555600312218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-121", - "dateofocc": "2008-04-06", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Civilian Yacht", - "descriptio": "ERITREA:Yacht reported suspicious approach 06 Apr 08 at 1315 (not specified UTC or local time), while underway in position 16-36.42N 39-18.06E, 79NM northeast of Asmara. The vessel was headed towards Difnein Island at 7.5-8kts. A large Eritrean fishing b", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [39.301111099684249, 16.606944400297039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-122", - "dateofocc": "2008-04-11", - "subreg": "91", - "hostility_": "Pirate Boarding", - "victim_d": "General Cargo Ship", - "descriptio": "PHILIPPINES:General cargo ship boarded, robbed 11 Apr 08 at 1550 UTC while at anchorage in position 14-31.1N 120-50.3E, Manila Bay. Three robbers armed with knives boarded the vessel via the anchor cable and breaking the hawse pipe cover securing. Two-du", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.838333299621695, 14.518333299564745] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-123", - "dateofocc": "2008-04-16", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "General Cargo Vessel", - "descriptio": "INDONESIA:General cargo vessel boarded, robbed 16 Apr 08 at 0630 local time while at anchorage in position 06-01.9S 106-53.8E, Tanjung Priok. The ship¿s crew noticed robbers on board the vessel just after anchoring. The robbers had broken into the safet", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.896666700245532, -6.031666699615926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-124", - "dateofocc": "2008-04-17", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Unknown Vessel", - "descriptio": "NIGERIA:Vessel boarded 17 Apr 08 at 0455 local time while at berth at Apapa/Tin Can Island. Ten robbers in two speedboats boarded the vessel. They broke open the paint store and stole ship's stores. The alarm was raised and the ship's crew locked themsel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.390555600012874, 6.436388899821281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-125", - "dateofocc": "2008-04-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Container ship boarded, robbed 22 Apr 08 at 0315 local time, Anchorage no. 1, Dar es Salaam anchorage. Eight robbers armed with knives boarded the vessel. Before the duty watch could contact the bridge to warn them, the robbers tied them up. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-126", - "dateofocc": "2008-04-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Container ship boarded, robbed 22 Apr 08 between 1715-1855 local time, while at anchorage in position 06-41S 039-42E, 30NM off Dar es Salaam. Eight robbers armed with long knives boarded the vessel. They stole ship's stores, broke open two conta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.699999999740612, -6.683333299884282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-127", - "dateofocc": "2008-04-30", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 30 Apr 08 at 2005 local time/1605 UTC while underway in position 14-51.9N 054-14.8E, 125NM south of Port Salalah, Oman/130NM north of Socotra. Two speedboats traveling at approximately 15.5knts approached", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.246666700296544, 14.865000000201007] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-263", - "dateofocc": "2006-11-01", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARGENTINA: Merchant vessel robbed 1 Nov, Parana River, San Nicolas, Buenos Aires. The vessel was boarded by 17 pirates, who proceeded to destroy the communication equipment. The pirates also broke into the containers, taking dozens of DVD players and vi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VI" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.333333299800927, -33.333333299891763] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-265", - "dateofocc": "2006-11-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: General cargo ship (AGNES SCAN) attempted boarding 5 Nov, at 0730 UTC, while underway in position 04-09S 099-38E. Pirates in a 12 meter wooden boat, with blue hull and yellow wheelhouse, approached the general cargo ship, with an in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.633333300118466, -4.150000000283512] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-266", - "dateofocc": "2006-11-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA: LPG tanker robbed 09 Nov, at 0200 UTC in position 08-45.8S 013-16.8E, Luanda Anchorage. Two robbers in a small open boat boarded the LPG tanker, at the forecastle. The robbers broke into the bosuns store and compressor room. The alert crew r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.279999999839504, -8.763333299555825] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-267", - "dateofocc": "2006-11-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: Refrigerated cargo ship robbed 13 Nov, at 0010 UTC in position 05-36.4N 000-02.9E, Tema Outer Roads. Ten robbers armed with knives boarded the vessel, at anchor. The robbers over powered a crew member and assaulted him. However, the crew memb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.048333300184993, 5.6066667000905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-268", - "dateofocc": "2006-11-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "NIGERIA: Militants in speedboats attack oil facility 15 Nov, Lagos. Reports vary between 11 to as many as 30 armed men attacked Oporoma station, owned by a subsidiary of Royal Dutch Shell at Nun River in Bayelsa state, trying to shut down the facility.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-269", - "dateofocc": "2006-11-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Offshore Supply Vessel (SURF VIKING) fired upon mid Nov 0030 local time, while underway in position 04-00.6N 006-42.5E. The vessel was 23 miles from its destination of Bony Signal, when the ship was shot at. The vessel increased speed, turned", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.774999999822512, 4.010000000088326] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-270", - "dateofocc": "2006-11-08", - "subreg": "61", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded 08 Nov, six miles off Dar es Salaam, Tanzania. One robber boarded the container ship, waiting to embark pilot. The alert crew raised the alarm and the robber escaped empty handed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.345000000417144, -6.690000000167799] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-271", - "dateofocc": "2006-11-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier robbed 08 Nov, Kutubdia Roads, Bangladesh. Ten robbers armed with steel bars and knives in a wooden boat, boarded the bulk carrier at the stern. The robbers brokeinto the lockers and stole from the ships stores. The duty offi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 21.86666669955514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-272", - "dateofocc": "2006-10-27", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "SOLOMON ISLANDS: Yacht robbed late Oct, Bita' ama in North Malaita. Approximately four men wearing masks boarded the yacht and forced the owner to hand over a sum of money. The robbers also stole the boats Global Positioning Navigation System as well", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [160.666666700086921, -8.500000000379202] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-273", - "dateofocc": "2006-11-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA:On 11-11-2006 at 0030 LT at Bahia de Robledal, Margarita, Venezuela, three robbers armed with guns boarded a sailing yacht, at anchor. Robbers tied two crew members back to back and stole all valuable items. There were no injuries to the crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.416666699655991, 11.066666699565587] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-274", - "dateofocc": "2006-11-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN", - "descriptio": "NIGERIA: Floating Production Storage and Offloading (FPSO) vessel boarded and seven hostages were taken 22 Nov, approximately 30 miles off the coast of Nigerias Rivers State. Twenty-five foreign workers and nearly sixty Nigerians employees were aboard a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.083333300375671, 4.299999999674981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-129", - "dateofocc": "2007-05-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SOMALIA: Fishing vessel (QING ZI HAO) hijacked 16 May off the coast. The vessel set sail from Koahsiung, Taiwan in Feb 2006 and had a crew of four Taiwanese and eight Chinese sailors onboard, however the current makeup of the crew is unknown. The vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.000000000131308, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-130", - "dateofocc": "2007-04-26", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "Sprattly Islands, SOUTH CHINA SEA:Armed pirates boarded a fishing vessel and robbed it of its catch, while it was taking shelter due to engine trouble. The master informed his family; about the robbery and that another vessel was approaching it. All cont", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.916666699634447, 9.566666699966788] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-131", - "dateofocc": "2007-06-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Support vessel (SEACOR) attacked and hostages taken 2 Jun in the evening, while at anchor off Port Harcourt. Two Filipino employees, of West Africa Offshore drilling, were taken from the vessel by gunmen. The hostages were rescued four hours", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.455555599781974] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-132", - "dateofocc": "2007-05-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship reported attempted boarding 31 May at 2243 UTC, while drifting in position 06-50.2S 039-37.3E, 22NM off Dar es Salaam Pilot Station. Pirates, in two boats with ten persons in each boat, attempted to board the container ship,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.621666700160802, -6.836666700437888] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-133", - "dateofocc": "2007-06-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo vessel (DANICA WHITE) hijacked likely on 01 Jun, at an estimated distance of 205 NM off the central east coast of Somalia. The U.S. dock landing ship (CARTER HALL) had been on patrol in international waters under operational control of C", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.033333300133222, 1.833333300013351] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-134", - "dateofocc": "2007-05-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Container ship boarded and robbed 30 May at 0400 local time in position 01-18.90N 104:07.70E, Johor Anchorage. Six robbers armed with knives boarded the vessel and forced their way into the engine room, by breaking the padlocks on the doors.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.12833329955788, 1.315000000347368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-135", - "dateofocc": "2007-04-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Tanker (MAJULLAH JASMINE) boarded and robbed 21 Apr at 1930 local time, while underway in position 01-25N 104-20E, 2.5NM east of Tanjung Punggai (per 2 Jun reporting). Ten masked robbers, armed with pistols and long knives, boarded the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.333333300180527, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-136", - "dateofocc": "2007-05-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:Four armed pirates in military fatigues boarded a refrigerated cargo ship, in berth no. 4 at Port Harcourt. The pirates boarded the cargo ship via the quayside accommodation ladder, at 2120 LT. Duty AB tried to inform the D/O. The pirates assault", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.008333300158256, 4.76166669991477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-137", - "dateofocc": "2007-06-07", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:At 2240 UTC,the duty crew on an anchored tanker, at Lawi-Lawi Anchorage of Balikpapan, noticed two robbers, on the forecastle deck. The D/O on the bridge was alerted and the alarm raised. The robbers jumped overboard and escaped in a speedboat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.466666700183282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-138", - "dateofocc": "2007-06-06", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:At 0300 UTC, a bulk carrier, underway and 315 NM SE of Mogadishu, spotted a fishing vessel at about 12 NM. The fishing vessel was on a converging course with the bulk carrier. The master of the bulk carrier altered course away from the fishing ve", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.510277799886296, -1.34111109981643] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-284", - "dateofocc": "2007-10-27", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CONTAINER VESSEL", - "descriptio": "SOMALIA:Container ship reported suspicious approach, 27 Oct 07 at 1940 local time in position 00-48.8N 053-49.4E. The officer of the watch noticed a suspicious craft on radar and proceeded at 6 KTS. He altered course to starboard and the craft did the sa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.823333300282798, 0.813333299854492] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-285", - "dateofocc": "2007-10-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "MOZAMBIQUE:Container ship boarded, robbed 26 Oct 07 at 0130 local time, Nacala anchorage. Bandits boarded the vessel and stole ships stores. The vessel contacted port control but received no response (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.649999999906242, -14.550000000439979] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-286", - "dateofocc": "2007-10-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "MOZAMBIQUE:Container ship reported attempted boarding, 26 Oct 07 at 0410 local time, Nacala anchorage. Bandits in two boats attempted to board the vessel. Anti-piracy crew activated fire hoses at the boats and the bandits aborted the attempt (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.649999999906242, -14.550000000439979] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-287", - "dateofocc": "2007-10-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER VESSEL", - "descriptio": "0330 LT: Lagos, Nigeria:Three pirates armed with knives boarded a tanker drifting. They took hostage the duty A/B and O/S and tied them up. They threatened the O/S with knives on his throat and asked him to open the accommodation doors but the O/S did no", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.249999999775923, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-288", - "dateofocc": "2007-10-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Reefer Vessel", - "descriptio": "2120 LT: 15 NM off fairway bouy, Bonny Town, Nigeria:Ten robbers armed with guns boarded a reefer vessel. Alarm raised and crew mustered. Robbers escaped. Attempt to contact Bonny signal station were futile.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.838333300431543, 3.993333300191125] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-289", - "dateofocc": "2007-10-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "2315 LT: Offshore Lagos, Nigeria:Robbers armed with knives boarded a tanker at anchor. They took as hostage on AB. They tied him up and warned him not to make any attempt to escape. They stole some ship's store. Robbers then took the AB into the accommod", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.166666700036672] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-290", - "dateofocc": "2007-10-04", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker Vessel", - "descriptio": "0130 LT: Hoogli River, Sagar Roads anchorage, India:Six robbers armed with knives boarded a chemical tanker at anchor, via the poop deck. Crew raised alarm and activated anti-piracy measures. Robbers jumped overboard and escaped, with ship's stores, in t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.016666700390374, 21.666666700088285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-291", - "dateofocc": "2007-11-01", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "General Cargo Vessel", - "descriptio": "1320 LT: Malacca Straits:A small-unlit high-speed craft came close to a general cargo ship underway. Master switched on all deck lights, assembled all crew, and closed all entrances to the accomodation. Fire hoses standby and search lights directed towar", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [102.158333300132711, 1.875000000293539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-292", - "dateofocc": "2007-10-31", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "0410 LT: Dar es Salaam, Tanzania:Ten pirates in a 10m long wooden boat boarded a container ship drifting. They broke into three containers, stole ship's stores, property and escaped as soon as the crew was alerted. Port control informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.449999999669387, -6.833333300383742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-293", - "dateofocc": "2007-10-28", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "2015 LT: Chittagong anchorage, Bangladesh:Duty AB on a tanker noticed three robbers armed with knives on poop deck. He informed D/O on bridge who raised alarm and flashed the Aldis lamp towards the robbers. Robbers jumped overboard and escaped. Some ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 21.666666700088285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-294", - "dateofocc": "2007-11-01", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "GUYANA:Fishing vessels attacked, robbed 01 Nov 07 at 0830 local time off the Corentyne coast. A band of armed, masked pirates raided five Guyanese fishing vessels, stripping them of their engines and other equipment before ferrying the fisher folk to Sur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.999999999731699, 7.999999999704698] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-144", - "dateofocc": "2008-05-17", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Cargo ship", - "descriptio": "0905 LT: 02-13.19N 046-49.38E, Costal waters off Somalia:Pirates boarded and hijacked a general cargo ship underway. Ship was on passage to Mogadishu, Somalia. Further details awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.823055600205635, 2.219722200327908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-295", - "dateofocc": "2007-11-08", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 08 Nov 07 at 0400 local time, while underway in position 13-48N 053-45E, north of Socotra Island. While the vessel was traveling at 16.5 KTS, an officer aboard the vessel noticed one unlit target 3NM of th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.750000000060083, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-128", - "dateofocc": "2008-04-28", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier fired upon 28 Apr 08 at 1110 UTC while underway in position 12-38N 048-47E, approximately 70NM northwest of Caluula, Somalia. The vessel was reportedly shot at with machine guns and a rocket propelled grenade by two small boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.783333299867991, 12.633333300002903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-129", - "dateofocc": "2008-04-26", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "General Cargo Vessel", - "descriptio": "GULF OF ADEN:General cargo ship reported suspicious approach 26 Apr 08 at 1045 local time while underway in position 14-30.5N 051-55.1E, 50NM off Yemen coast. Two suspicious speedboats traveling at 20kts approached the vessel. The master raised the alarm", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.918333299695064, 14.508333299951119] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-130", - "dateofocc": "2008-05-01", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 1 May 08 at 1515 UTC while underway in position 13-09N 050-22E, approximately 75NM north of Caluula, Somalia. Suspicious speedboats chased the vessel. The speedboats moved away. Vessel continued passage to", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.366666700027167, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-131", - "dateofocc": "2008-04-22", - "subreg": "63", - "hostility_": "Attempted Boarding", - "victim_d": "Research Vessel", - "descriptio": "INDIA:Research vessel reported attempting boarding 22 Apr 08 at 0430 local time, Mumbai anchorage. Four robbers in a motor boat attempted to board the vessel, however, the attempt failed due to a strict anti-piracy watch (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [72.833333299611525, 19.033333300029994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-132", - "dateofocc": "2008-04-24", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "PERSIAN GULF:Cargo vessel (WESTWARD VENTURE) reported suspicious approach, warning shots fired 24 Apr 08 at 0800 local time. The vessel was approached by two unidentified small boats. Following procedure, the vessel issued standard queries to the small b", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.549999999629222, 26.899999999686429] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-133", - "dateofocc": "2008-04-21", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Tanker Ship", - "descriptio": "VIETNAM:Tanker boarded 21 Apr 08 at 0230 UTC, Vung Tau Song Go Gia STS anchorage. Robbers boarded the vessel from the forecastle. They broke open the forward storeroom and stole ship¿s stores. The duty crew spotted the robbers and raised the alarm. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.333333299838614] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-134", - "dateofocc": "2008-04-25", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:Product Tanker (PATARAVARIN 2) boarded, robbed 25 Apr 08 at 0020 local time while underway in position 01-31.00N 104-24.50E, approximately 10NM east of Tg Penawar. The vessel was carrying a cargo of jet fuel while underway towards the port of Ph", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.408333300430286, 1.516666699841323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-135", - "dateofocc": "2008-04-27", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Refrigerated cargo ship", - "descriptio": "TOGO:Refrigerated cargo ship boarded, robbed 27 Apr 08 at 2145 UTC while at anchorage in position 06-05N 001-17E, Lome. Six armed robbers boarded the vessel via the forecastle. When spotted by the crew, the robbers jumped overboard and escaped. Ship stor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-136", - "dateofocc": "2008-05-03", - "subreg": "57", - "hostility_": "Suspected Pirates", - "victim_d": "Unknown Vessel", - "descriptio": "NIGERIA: Unidentified militants attack ship, hostages taken 03 May 08 at 1100 local time, 15NM northwest off the Bonny coast in Rivers State. Attackers in five speedboats attacked a yet to be identified ship and took the captain and the engineer hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.131666700072401, 4.663888899734729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-137", - "dateofocc": "2008-05-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk carrier", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 01 May 2008 at 1605 UTC while underway in position 14-51.9N 054-14.8E, 65NM east of Al Mukalla, Yemen. Two speedboats crossed the bow of the vessel. The alarm was raised and the crew mustered and to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.246666700296544, 14.865000000201007] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-138", - "dateofocc": "2008-04-28", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk carrier", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 28 Apr 08 at 2203 local time while underway in position 14-15.5N 050-11.8E, 145NM east of Qishn, Yemen. The vessel observed on radar three speedboats approaching at high speed. The alarm was raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.196666700300455, 14.258333299718231] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-275", - "dateofocc": "2006-11-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded 16 Nov at 0335 local time, drifting in position 06-42.5S 039:39.9E 20nm ENE from Dar es Salaam Harbor Entrance. Fifteen armed pirates in a boat approached the container ship, which was waiting for a berth. One of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.664999999743998, -6.70833330026727] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-276", - "dateofocc": "2006-10-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "PERSIAN GULF: Fishing vessel (SALIS) attacked 19 Oct (per 16 Nov reporting) near position 28-47.01N 049:28.42E, LuLu oilfield. The Saudi registered fishing vessel was attacked by three masked armed robbers with a pistol and machine gun. The robbers bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.47361109986258, 28.783611099796019] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-277", - "dateofocc": "2006-11-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded 20 Nov, at 0130 local time Dumai Inner Anchorage. Six robbers, armed with knives, boarded the bulk carrier and attempted to overcome the shore watchman, who raised the alarm. The duty officer and crew rushed to assist.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.464444400233162, 1.688888900020743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-278", - "dateofocc": "2006-11-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier robbed 15 Nov, Belawan port, Indonesia. While berthed, about seven robbers boarded the bulk carrier via the gangway, by mingling among the stevedores. They broke open the store using steel bars and stole from the ships stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.710555599714041, 3.791111100271564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-279", - "dateofocc": "2006-11-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT:In position 04-41N 098-42E at 271740Z NOV. Pirates in small boat approached a bulk carrier underway at high speed. D / O raised alarm, crew mustard, and activated fire hoses. Ship took evasive action and the attempted boarding was averte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 4.683333299610922] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-280", - "dateofocc": "2006-11-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:On 14-Nov-2006 at 0750 LT at Tg. Priok, Jakarta, three boats approached a container ship, at anchor from stern. Robbers from two boats boarded and entered engine room. Alarm was raised but robbers managed to escape with stolen engine spares (IM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.891666699989059, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-281", - "dateofocc": "2006-11-11", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZEULA: Yacht (LADY ANN) robbed 11 Nov around midnight, in position 11-01.5N 64-22.7W, Isla Margarita. Three gunmen in a small boat approached the yacht and boarded holding a couple hostage for three hours, while they ransacked the boat and stole e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.378333299605231, 11.025000000184775] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-282", - "dateofocc": "2006-11-25", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "ECUADOR: Sailing vessel (ROBINS NEST) attacked by unknown vessel 25 Nov, 80nm NW of Esmeraldas. The (ROBIN'S NEST) issued a mayday call (picked up by the (USS ROBERT G BRADLEY) and US Coast Guard Communication Area Master Station Atlantic (CAMSLANT)) re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.641666699990992, 0.997222199674582] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-283", - "dateofocc": "2006-11-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded was robbed 24 Nov, at 0400 local time in position 22:17.5N-091:43.3E Chittagong Outer Anchorage A, Bangladesh. Fifteen robbers armed with long knives boarded the bulk carrier and tied up two crewmembers. Three watchmen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.721666699777245, 22.29166669977127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-284", - "dateofocc": "2006-11-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 28 Nov at 2030 local time, while underway in position 12-25N 044-25E. The bulk carrier was underway when it detected an unlit craft on radar, at 5.5 miles off port bow. Suspicious craft closed di", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.416666699699874, 12.416666699564303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-285", - "dateofocc": "2006-11-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Bulk carrier reported attempted boarding 29 Nov at 0140 local time, while underway in position 04-41N 098-42E. The bulk carrier took evasive action to prevent boarding, in a small high powered craft tried to board at port beam. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 4.683333299610922] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-139", - "dateofocc": "2007-06-13", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Tanker reported suspicious approach 13 Jun at 0108 UTC, in position 03-05N 054-50E. Three boats approached the vessel on converging courses. As the ship altered its course, the boats adjusted their courses and continued to approach the ship.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.833333299928711, 3.083333300278639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-140", - "dateofocc": "2007-06-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded 10 Jun at 0522 local time in position 06-00.6S 106-53.2E, Jakarta anchorage. A few fishing boats diverted the attention of the watch keepers, while two robbers boarded the vessel using grappling hooks. The robbers stole two", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.886666699732586, -6.010000000361629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-141", - "dateofocc": "2007-06-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker (CAPE BRINDISI) boarded 22 Jun, in the morning, 20 miles off the coast at Pennington offshore terminal. The vessel was boarded by at least three militants armed with AK-47 rifles. The attackers fired their weapons in the air and then b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.483333300176355, 4.649999999641352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-142", - "dateofocc": "2007-06-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker boarded and robbed 16 Jun, at 0140 local time, Lagos Anchorage. Robbers boarded the vessel, while it was undergoing preparations for STS operations. The robbers armed with knives tied up the aft station watchman. The D/O noticed a smal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-143", - "dateofocc": "2007-06-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 20 Jun at 1930 local time/1630 UTC, in position 13-30N 052-00E, eastern most Gulf of Aden, midway between Somalia and Yemen. When the vessel observed the unlit craft approaching from the starboard bow,", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.00000000022834, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-302", - "dateofocc": "2007-11-05", - "subreg": "93", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "SOUTH CHINA SEA:2150: One suspicious boat followed a general cargo ship at a range of 100m for about an hour. Crew mustered and fire hoses with pressurised water jet standby and action taken to prevent any boarding. Later, master informed the Piracy Repo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.700000000335081, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-144", - "dateofocc": "2007-06-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Tanker (MUJUR SAMUDRA) boarded and robbed on 23 Jun at 2145 local time, while docking near Pulau Lima. Six robbers armed with machetes and pistols boarded the vessel from a speedboat and robbed eight crewmen of their belongings and cash, res", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.400000000041416, -3.49972219964269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-145", - "dateofocc": "2007-06-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded, crewmember held hostage 25 Jun at 1820 local time in position 01-51.5S 105-02.8E, while underway off northeast Bangka Island. Approximately eleven pirates, armed with long knives and shot guns boarded the vessel. Upon detectin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.046666699781042, -1.858333299705748] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-146", - "dateofocc": "2007-06-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier reported attempted boarding 23 Jun at 0240 local time, in position 03-41S 114-26:40E, Banjarmasin Coal Loading Anchorage. The duty watchman on the vessel sighted two intruders climbing up the anchor chain and three other personn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.439999999621591, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-147", - "dateofocc": "2007-06-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Ro-Ro ship boarded and robbed 1 Jul at 0700 local time, Chittagong Anchorage. Approximately 40 robbers armed with long knives and steel bars boarded the vessel. The alarm was raised; and the crew mustered and closed all access doors. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-296", - "dateofocc": "2007-10-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "SAILBOAT", - "descriptio": "MADAGASCAR:Sailboat boarded, robbed, crewmembers assaulted 19 Oct 07 at 0200 local time, Majunga harbour. Four robbers boarded the sailboat, assaulting the skipper and taking the skippers wife hostage before trying to strangle her. Both the skipper and h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.309722200072031, -15.727777800259275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-297", - "dateofocc": "2007-09-26", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "PHILIPPINES:Vessel boarded 26 Sep 07 at 0236 local time in position 14-36.4N 120-52.05E, Vic north harbor anchorage, Manila, per 08 Nov 07 reporting. Robbers boarded the vessel from starboard side using a grappling hook. They broke the forecastle store l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.867500000160021, 14.606666700381538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-298", - "dateofocc": "2007-11-09", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER VESSEL", - "descriptio": "PERSIAN GULF:0800 LT: A suspicious craft approached a tanker, underway, from the stern. Master sounded general alarm, increased speed, crew mustered and fire hoses standby. The speed boat closed to 0.1nm, and when it noticed crew alertness, aborted appro", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.766666699827908, 28.683333300387062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-299", - "dateofocc": "2007-11-08", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CAR CARRIER VESSEL", - "descriptio": "65 NM NORTH OF SOCOTRA ISLAND, SOMALIA:0400 LT: C/O onboard a car carrier, underway, noticed an unlit boat at 3NM off the port bow with a speed of 19 kts. The boat reduced speed to match the speed of the vessel. When the craft was about 1NM off master ra", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.750000000060083, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-300", - "dateofocc": "2007-11-06", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALACCA STRAITS:2130 LT: An unidentified small watercraft approached a chemical tanker underway. OOW raised alarm, souned ship's whistle, crew mustered anddirected searchlight at the craft. The craft came within 150 meters and aborted the attempt.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.769999999875608, 3.919999999968468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-301", - "dateofocc": "2007-11-06", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA:1800 UTC: A bulk carrier underway detected an unlit suspicious craft, on radar, approaching directly twards own vessel at a speed of 19 knots. Master took all preventive measures to prevent boarding. Suspicious craft reached 0.1 NM from vesse", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.516666700015378, 22.099999999890883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-304", - "dateofocc": "2007-11-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "CAMEROON:Ambush on Cameroon military by unidentified gunmen, military personnel killed 12 Nov 07, Bakassi Peninsula. Unidentified gunmen reportedly dressed in Nigerian military uniforms and traveling in seven speedboats ambushed a Cameroon military post.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.666666699667871, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-305", - "dateofocc": "2007-11-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSELS", - "descriptio": "NIGERIA:Unidentified militants in speedboats attack jetty area, victim killed, 12 Nov 07 in the early hours, the Qua Iboe Terminal, Akwa Ibom state. Approximately 50 gunmen dressed in red attire, traveling in seven to eleven speedboats with general purpo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.999999999704698, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-306", - "dateofocc": "2007-11-12", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "ARABIAN SEA:Vessel reported suspicious approach 12 Nov 07 at 2330 local time/1930 UTC in position 20:05.3N-064:49.1E. The vessel detected on radar an unidentified unlit suspicious craft. The vessels course was 308 and traveling at 15.6kts. The suspicious", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.818333300382051, 20.088333300185525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-139", - "dateofocc": "2008-05-04", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Chemical tanker", - "descriptio": "INDIAN OCEAN: Chemical tanker fired upon 04 May 08 around 1300 UTC while underway in position 01-00N 051-30E, 300NM from the east coast of Somalia. The IMB Piracy Reporting Center received a call from the vessel owner stating the tanker was fired upon b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.499999999762508, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-140", - "dateofocc": "2008-04-29", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Container ship", - "descriptio": "BANGLADESH:Container Ship (TABAGO BAY) reported suspicious approach 29 Apr 08 at 2310 local time while at anchorage in position 22-10.16N 091-46.88E, Chittagong Port. Between 10-12 people in an engine-driven wooden boat was near the vessel. The vessel mo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.781388899582055, 22.16944439963379] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-141", - "dateofocc": "2008-04-26", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH:Container Ship (MARTHA RUSS) boarded, robbed 26 Apr 08 at 1530 local time while at berth in position 22-10.16N 091-46.88E, Chittagong Port, per 2 Jun 08 reporting. Three robbers in a small boat boarded the ship and stole part of the hawser.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.781388899582055, 22.16944439963379] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-142", - "dateofocc": "2008-04-30", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tug boat", - "descriptio": "SOUTH CHINA SEA: Tug (PU 2008) boarded, robbed 30 Apr 08 at 2330 local time while underway in position 0-22N 104-24E, south of Pulau Tioman. The vessel towing barge (PU 3306) was underway from Vietnam to Singapore when six masked men armed with long kni", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.399999999944441, 2.366666700273527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-143", - "dateofocc": "2008-05-04", - "subreg": "61", - "hostility_": "Pirate attack", - "victim_d": "Chemical tanker", - "descriptio": "2215 LT: 01-00N 051-30E: Off Somalia:Two speedboats chased a chemical tanker underway. Pirates opened fire on the tanker. Master took evasive maneuvers and increased speed. Later, the boats aborted the chase. Ship continued her passage. No reported injur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.499999999762508, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-145", - "dateofocc": "2008-05-04", - "subreg": "51", - "hostility_": "Pirates", - "victim_d": "Container ship", - "descriptio": "LIBERIA: Container ship boarded, robbed 4 May 08 at 0050 local time while at berth, Monrovia port. Three robbers armed with knives, boarded the vessel. The robbers cut and stole a reefer container of electric cables. The master tried to contact PFSO by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.801666699671273, 6.347500000377465] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-146", - "dateofocc": "2008-05-13", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Oil ship", - "descriptio": "NIGERIA: Oil ship (LOURDES TIDE) hijacked 13 May 08, evening, near Port Harcourt. The vessel, which ferries supplies for the oil company Chevron, was sailing from Onne port in Port Harcourt, Rivers State, to Escravos in Delta State when gunmen boarded a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-147", - "dateofocc": "2008-05-10", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cargo shop", - "descriptio": "NIGERIA: General cargo ship boarded 10 May 08 at 0330 local time while at berth, Tin Can port, Lagos. Alert crew raised the alarm and the robbers jumped overboard into their waiting boat and headed for another ship (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-149", - "dateofocc": "2008-05-04", - "subreg": "62", - "hostility_": "Two white speedboats", - "victim_d": "Cargo ship", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 4 May 08 at 1810 local time while underway in position 15-05.0N 051-13.0E, 46NM southwest of Qishn, Yemen. Two white speedboats reportedly chased the vessel. The vessel took evasive maneuvers", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.216666699560051, 15.083333299767389] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-150", - "dateofocc": "2008-05-10", - "subreg": "63", - "hostility_": "Suspected suicide cadres", - "victim_d": "Merchant vessel", - "descriptio": "SRI LANKA:Merchant vessel (INVINCIBLE) sank by LTTE 10 May 08 at 0230 local time, while at anchorage at the Ashroff Jetty at the eastern coastal town of Trincomalee. The LTTE said their Sea Tigers underwater naval commandos launched a pre-dawn underwater", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [81.247222199796681, 8.583333300006814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-286", - "dateofocc": "2006-11-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: General cargo ship boarded 28 Nov, at 1900 UTC Kuala Bintulu Anchorage. The general cargo ship was boarded by robbers armed with pistols, knives, and crowbars. The forecastle store was broken into and the ships stores were robbed. The robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.966666700432825, 3.23333329987878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-287", - "dateofocc": "2006-11-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:Off Port Harcourt, Nigeria -- 10 robbers armed with guns boarded an offshore processing ship. They kidnapped seven workers and left the ship. Ship reported to Nigerian authorities and they intercepted the pirate boat. The Nigerian authorities eng", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.003333299901783, 4.758333299860624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-288", - "dateofocc": "2006-12-06", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: General cargo ship boarded, robbed 06 Dec, at 2010local time while anchored in position 12:01.0S-077:12.0W, CallowOuter Anchorage No. 1. Two robbers armed with a handgun and ajungle bolo boarded the vessel at the forepart of the vessel. Theytook", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-289", - "dateofocc": "2006-12-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TOGO: Bulk carrier boarded, robbed 07 Dec, at 0300 UTC atberth in position 06:08.41N-001:17.43E, Lome port. Four robbersarmed with knives and bars boarded the vessel as it waited to commence cargo operations. They threatened three duty crewmen who ran", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.290555600214759, 6.140277800201432] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-290", - "dateofocc": "2006-12-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: General Cargo ship approached 10 Dec, at0630 UTC while underway in position 14:15N-059:44E. A grey woodenboat 15 meters long approached the vessel asking for fresh water.The master, suspecting piracy, increased speed and took evasiveaction", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.733333300357003, 14.250000000131649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-291", - "dateofocc": "2006-12-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded, robbed 07 Dec, at 0545local time in position 21:47.9N-091:4237E, Chittagong Anchorage.Duty AB spotted six robbers armed with long knives during routinerounds onboard the bulk carrier. The robbers tried to take the ABho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.711666700163676, 21.798333299764181] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-292", - "dateofocc": "2006-12-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: Oil tanker reported attempted boarding08 Dec, at 2340 local time while underway in position 01:09N-103:33E.A number of small boats approached the oil tanker while underway andattempted to board. The master took evasive action, sounded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.550000000411558, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-293", - "dateofocc": "2006-12-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Oil tanker boarded, robbed 08 Dec, at 0015local time, Lawe-Lawe Anchorage. Robbers boarded the oil tanker atanchor and forced the forecastle store open. The ships stores were stolen (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.750000000298883, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2006-294", - "dateofocc": "2006-12-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAIT: VLCC reported attempted boarding 04 Dec,at 1330 UTC in position 12:01.0S-103.30.0E, off Racon Delta. A boatapproached the VLCC underway eastbound at high speed. The masteraltered its course violently to avoid the boat. Despite numer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.15833329956439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-1", - "dateofocc": "2006-12-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "BANGLADESH: Robbers kill fisherman, injure others, 09Dec, Sondaia point, southeastern coastal district of Coxs Bazar. Asthe fishermen were approaching the shore after an evening of deepsea fishing, they came under attack by 8-10 pirates who looted thei", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.933333299959429, 21.466666699722055] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-2", - "dateofocc": "2006-12-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA: Ro-ro ship boarded, 13 Dec at 0030 UTC, in position 08:45S - 013:17E Luanda Roads. The Robbers arrived in small boats and boarded the ro-ro ship, via the anchor chain. The robbers managed to break the locks, on the forepeak store, however, not", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.283333300068875, -8.749999999712827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-3", - "dateofocc": "2006-12-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Vessel, SHEILA MCDEVITT, pursued by suspected pirates 19 Dec. Security officer, from TECO Ocean Shipping, reported the vessel SHEILA MCDEVITT was being chased by suspected pirates. The SHEILA MCDEVITT was 120 miles off the coast of Somalia wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.833333299734704, 5.500000000073555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-148", - "dateofocc": "2007-06-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Container ship robbed and items were recovered 26 Jun at 0700 local time at Chittagong `A¿ Anchorage. The vessel discovered that her aft rope locker was opened and the ship¿s stores were missing. The master informed the Coast Guard who a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-149", - "dateofocc": "2007-07-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: LPG Tanker boarded 2 Jul at 0215 local time in position 05-59S 105-56E, Merak Anchorage. The third engineer on the vessel noticed four armed robbers in the steering flat. The bridge was informed, the alarm was raised and the crew alerted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.933333300412187, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-150", - "dateofocc": "2007-06-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:At 2302 LT at Pennington, a tanker undergoing operations at a SBM was attacked by armed pirates. The pirates boarded the standby tug at the stern of the vessel and contacted the ship via VHF demanding to be let on board or they would sink the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-151", - "dateofocc": "2007-07-10", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TUG", - "descriptio": "GULF OF ADEN: Tug reported suspicious approach 10 Jul at 0245 UTC, while underway in position 12- 59N 049-17E, 67NM south of Yemen. The tug observed a dhow type-fishing vessel on her port side proceeding on a reciprocal course. The fishing vessel alte", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.283333300333823, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-152", - "dateofocc": "2007-07-08", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Container ship reported suspicious approach 8 Jul at 1842 local time, while underway in position 00-19-0N 050-45-0E, 351NM east of Kisamayo. OOW on the container ship spotted a small craft at distance of 13NM on the starboard bow. The craft", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.749999999963109, 0.316666700342125] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-153", - "dateofocc": "2007-07-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Container ship boarded and robbed 05 Jul at 2215 local time in position 22-11-00N 091- 43.50E, Chittagong anchorage B. Several low wooden boats were roaming near the vessel when one boat, near the port bow, stopped the engine and drifted t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725000000006673, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-154", - "dateofocc": "2007-05-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded 17 May at 0345 local time, Chittagong anchorage A, per 4 Jul reporting. Three robbers boarded the vessel during lighting operations. They opened the aft rope locker, stole from the ships stores, and escaped. The Coast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-155", - "dateofocc": "2007-05-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unidentified vessel boarded and perpetrators caught 03 May at 0430 local time, Chittagong Anchorage B, per 4 Jul reporting. Five robbers boarded the vessel and stole from the ships stores. When the robbers were spotted by the crew, they ju", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-156", - "dateofocc": "2007-07-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker boarded, robbed 11 July at 0500 local time in position 03-55N 098-44E, Belawan Anchorage. Duty crew spotted a robber on the forecastle deck. The OOW was informed and the alarm was raised. The robber jumped overboard and escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-157", - "dateofocc": "2007-06-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship boarded and robbed 30 Jun at 0640 local time, Jakarta outer anchorage. Approximately six armed robbers, from two boats, boarded the vessel from the port and starboard quarters. The duty AB was attacked and hit on the head wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-158", - "dateofocc": "2007-06-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker boarded and robbed 26 Jun at 0055 local time, Belawan outer anchorage. The duty AB on the vessel noticed three robbers trying to open the forward locked. The duty AB informed the OOW and ran forward; however, one of the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-307", - "dateofocc": "2007-11-08", - "subreg": "82", - "hostility_": "MUTINY", - "victim_d": "FISHING VESSEL", - "descriptio": "PAPUA NEW GUINEA:Fishing vessel (SHENG ENG 168) reported suspected mutiny, captain killed 08 Nov 07 off the northern coast. Indonesian police have arrested eight Indonesian crewmembers suspected of trying to take over a Taiwanese vessel resulting in the", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [147.999999999735678, -0.99999999968702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-308", - "dateofocc": "2007-11-06", - "subreg": "82", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOLOMON ISLANDS:Fishing vessel (QUAN YONG 168) boarded, robbed 06 Nov 07 in the evening, while at anchor, near Point Cruz. Five men armed with knives boarded the vessel and robbed the crew. The thieves stole a large amount of US currency, one satellite p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [159.958333299843503, -9.425000000161845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-309", - "dateofocc": "2007-11-17", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "VEHICLE CARRIER", - "descriptio": "GULF OF ADEN:Vehicle Carrier reported suspicious approach 17 Nov 07 at 0550 local time while underway. The vessel spotted three suspicious crafts on the starboard side and one suspicious craft on the port side at a distance of 0.4NM. The Master took all", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-310", - "dateofocc": "2007-11-11", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "VIETNAM:General Cargo Ship boarded, robbed 11 Nov 07 at 0305 local time at Phu My berth A. Robbers armed with knives boarded the vessel. The vessel informed the port security who came onboard for assistance. While proceeding towards the forecastle, two", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.000000000273076, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-197", - "dateofocc": "2007-07-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded 17 Jul at 2300 UTC, while anchored at Chittagong Anchorage B. Six robbers, armed with knives, boarded the vessel. Duty officer raised the alarm and all crew mustered. The robbers escaped without stealing anything (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-311", - "dateofocc": "2007-11-19", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:Chemical tanker boarded 19 Nov 01 at 0100 local time while underway in position 03-13.0N 105-23.0E, off Mangkai Island. Duty oiler on board the vessel noticed one pirate with a gun in hand on the poop deck. The duty officer was informed and the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.383333300079585, 3.216666699806353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-312", - "dateofocc": "2007-11-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "0345 LT: Lagos anchorage, Nigeria:Four armed robbers in a small wooden boat boarded a container ship from aft. They stole ship's store and escaped. No injuries to crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [3.353333299738779, -6.296666699718969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-313", - "dateofocc": "2007-11-21", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "0212 LT: Lagos, Nigeria (15 miles from shore):Five pirates armed with knives boarded a tanker drifting around 15 NM from shore. Duty crew spotted the pirates and informed the duty officer. Alarm raised and crew mustered. Pirates escaped with ship stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.299999999642637, 6.200000000006241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-314", - "dateofocc": "2007-11-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA:IN 03-13N 105-13E AT 181700Z NOV. DUTY OILER ON BOARD A CHEMICAL TANKER, UNDERWAY, NOTICED ANE PIRATE WITH GUN IN HAND ON THE POOP DECK. DUTY OFFICER INFORMED. ALARM RAISED, ALL CREW MUSTERED AND ALL LIGHTS SWITCHED ON. SEARCH OF THE VESS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.216666700407018, 3.216666699806353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-315", - "dateofocc": "2007-11-25", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CRUISE SHIP", - "descriptio": "ARABIAN SEA:Cruise ship (SEABOURN SPIRIT) reported suspicious approach, per 25 Nov 07 reporting, off Oman. The cruise ship's crew had grown increasingly concerned about three small fast moving skiffs closing in on their position and reported to UKMTO. Th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.499999999924228, 26.000000000286832] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-316", - "dateofocc": "2007-11-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "INDONESIA:Product tanker boarded 29 Nov 07 at 0530 local time in position 03-51N 098-48E, SBM Belawan. Duty quartermaster onboard the vessel noticed two robbers hiding under the windlass. The Duty Officer was informed and mustered the crew. The robbers j", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.799999999583463, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-317", - "dateofocc": "2007-12-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "0206Z: 06-14N 003-22E: LAGOS ANCHORAGE, NIGERIA:Two pirates, armed with guns and knives, boarded a bulk carrier drifting. The pirates tied up the aft watchmen. The forward watchman sighted the pirates, ran into the accommodation and locked all entrance d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.233333299975811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-318", - "dateofocc": "2007-11-28", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "Lagos, Africa:In what appeared to be a military launch with twelve armed robbers dressed in military fatigues approached the tanker at anchor. Nine persons boarded the vessel and ordered the master to disembark into their launch. The master refused and e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.750000000241755, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-319", - "dateofocc": "2007-12-09", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "0430LT: 06-44S 039-32E: port of Dar es Salaam, Tanzania:Pirates boarded a container ship drifting. Pirates boarded unnoticed. They broke padlocks, removed container lashing bars and stole ship's stores and cargo. On carrying out a search only footprints", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.533333300243328, -6.733333299750996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-151", - "dateofocc": "2008-05-04", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Container ship", - "descriptio": "BANGLADESH: Container ship boarded, robbed 4 May 08 at 2300 local time in position 22-12.9N 091-45.0E: Chittagong anchorage Bravo. Three robbers armed with knives boarded the vessel from the stern whilst seven robbers remained in the boat. They broke op", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.215000000393729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-152", - "dateofocc": "2008-05-10", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Chemical tanker", - "descriptio": "STRAIT OF MALACCA:Chemical Tanker (BOW CLIPPER) reported attempted boarding 10 May 08 at 1625 local time while steaming in position 05-35N 097-05E. Robbers in military camouflage attempted to board the vessel using a bamboo pole attached to a hook. The s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.084722200072804, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-153", - "dateofocc": "2008-05-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing vessels", - "descriptio": "MALAYSIA: Fishing vessels hijacked 2 May 08 at 0200 local time in position 03-48.98.3N 100-43.03.3E, 4NM off Tanjung Sauh. Two fishing boats with a crew of eight were attacked and hijacked while the crew was resting. The vessels were taken to an Indonesi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.721944399919096, 3.81611109975529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-154", - "dateofocc": "2008-05-09", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Passenger vessel", - "descriptio": "PHILIPPINES: Passenger vessel attacked, four killed 9 May 08 in off the coast of Parang town on Jolo Island. The vessel was on its way to Laminusa Island when gunmen onboard a separate boat opened fire. Four people were killed by the gunmen and eight peo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.991666700175301, 6.054166699662062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-155", - "dateofocc": "2008-05-22", - "subreg": "62", - "hostility_": "Suspicious speedboats", - "victim_d": "Yacht", - "descriptio": "Gulf of Aden:22.05.2008: 1430 UTC: 13-21.29N 048-25.96E. A speedboat crossed the bow of a yacht, underway, while two other speedboats approached from the stren. The skipper increased speed and enforced anti piracy measures to prevent boarding. After a wh", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.432499999800427, 13.354722200413732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-156", - "dateofocc": "2008-05-19", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Container ship", - "descriptio": "Gulf of Aden:19.05.2008: 1500 LT: 12-49.3N 050-36.3E: Two small speedboats approached a container ship underway from the bow. One of the speedboats had four pirates armed with automatic weapons and rocket launcher. The pirates aimed the rocket launcher t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.604999999720064, 12.821666699653861] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-157", - "dateofocc": "2008-04-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "Nigeria:Product tanker boarded 29-APR-08 in position 06-15.1N 003-22.2E, Lagos anchorage. Four robbers boarded the vessel. They stole ship's stores from aft locker. Seeing the alert crew they escaped. Lagos port control informed. Vessel weighed anchor an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.369999999635922, 6.251666699899999] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-158", - "dateofocc": "2008-05-17", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Cargo ship", - "descriptio": "Somalia:17.05.2008: 0950 LT: Position 02-13.19N 046-49.38E: Pirates boarded and hijacked a general cargo ship underway. Ship was on passage to Mogadishu, Somalia.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.822777799630785, 2.219722200327908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-159", - "dateofocc": "2008-05-17", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Cargo ship", - "descriptio": "GULF OF ADEN: General cargo ship (VICTORIA) hijacked 17 May 08 at 0905 local time while underway in position 02-13.19N 046-49.38E, 40NM off Mogadishu, Somalia. The Jordanian-flagged vessel, owned by Marwan Shipping Company, with a crew of 21, was transp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.822777799630785, 2.219722200327908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-160", - "dateofocc": "2008-05-15", - "subreg": "62", - "hostility_": "Four suspicious speedboats", - "victim_d": "Container ship", - "descriptio": "GULF OF ADEN: Container ship reported suspicious approach 15 May 08 at 0900 UTC while underway in position 13-02.6N 045-42.6E, 32NM northeast of Port Aden. Four suspicious speedboats reportedly chased the vessel. Each vessel had four people onboard. The", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.710000000447621, 13.043333300348934] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-161", - "dateofocc": "2008-05-15", - "subreg": "62", - "hostility_": "suspicious vessel", - "victim_d": "Tamker", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 15 May 08 while underway in position 15-40.8N 052-41E, approximately 59NM northeast of Qishn, Yemen. The vessel observed a high speed boat doing 24knts approaching the vessel from the port quarter. The c", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.683333300263882, 15.679999999737277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-164", - "dateofocc": "2008-05-25", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Cargo ship", - "descriptio": "Gulf of Aden:25.05.2008: 2235 LT: 13-13N 050-49E: Pirates hijacked a general cargo ship 80 nm off the coast of Somalia. Nine crewmembers are held hostage omboard. At present the vessel is 2.5 nm from the coast. Futher reports awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.816666699726966, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-4", - "dateofocc": "2006-12-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA: Chemical tanker boarded, robbed 11 Dec, at 0200 local time in position 05-37-30N 00-02-10W, Tema. Seven robbers armed with knives boarded the chemical tanker. The robbers tied up the duty ABs legs and hands and kept him at knife point. The rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-5", - "dateofocc": "2006-12-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Vessel boarded, robbed 21 Dec, at 0115 UTC in position 06:11N 003:20.1E, 13nm south of Lagos. Deck watchmen on the vessel spotted two robbers, dressed in black overalls and armed with crow bars on forward deck. The robbers broke open and robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.334999999639308, 6.183333300109098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-6", - "dateofocc": "2006-12-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAN: Tanker (MARITIME GISELA) boarded, robbed, and robber arrested 18 Dec, at 2100 local time in position 27-03.4N 056-13.5E, Merchant Anchorage, Bandar Abbas. The alarm was raised, when the master found a fire on the starboard life raft. The duty o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.225000000207615, 27.056666699570087] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-7", - "dateofocc": "2006-12-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SRI LANKA: LTTE rebels board distressed ship 23 Dec, Sri Lanka. Armed Tamil Tiger rebels boarded a distressed Jordanian merchant ship that had drifted close to the Tiger-held Mullaitivucoast, according to Sri Lanka's defense ministry; however, the LTTE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.833333299870219, 9.233333300072843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-8", - "dateofocc": "2006-12-21", - "subreg": "92", - "hostility_": "SUSPICOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: Chemical tanker approached 21 Dec, between 0335 to 0445 local time in position 05:52.80N - 119:25.50E, Sibutu Passage. Three wooden boats doing a speed of 30 knots each approached the chemical tanker, underway simultaneously from the starb", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.424999999913211, 5.879999999780068] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-9", - "dateofocc": "2006-12-18", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILIPPINES: LPG tanker attempted boarding 18 Dec, 0610 local time at Cebu Inner Anchorage. Two boats came close to the LPG tanker and personnel from one of the boats attempted to board. The alert ship crew raised the alarm and directed the water hose", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.891666699639472, 10.284999999998945] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-10", - "dateofocc": "2006-12-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONEISA: Container ship boarded 19 Dec, at 0430 local time at Pilot Ground, Jakarta Roads. Robbers armed with long knives boarded the container ship, awaiting for pilot. The robbers unlashed the starboard life raft and threw it overboard. They then j", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.816666699739358, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-11", - "dateofocc": "2006-12-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker boarded 18 Dec, 0125 local time at Belawan Outer Anchorage. The robbers boarded the chemical tanker and broke the padlocks, on the starboard side chemical equipment locker and paint room door. The security watchman reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-12", - "dateofocc": "2006-12-26", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Bulk carrier boarded and robbed 26 Dec, 1950 local time in position 12-01.2S 077-11.0W, Inner Anchorage No.1, Callao. Three robbers armed with guns and knives boarded the bulk carrier and tied up the watchman. Another watchman noticed the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.020000000169318] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-13", - "dateofocc": "2006-12-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded and robbed while underway 26 Dec, at 0200 UTC in position 07:06S-039:41E, 10nm off Dar es Salaam. Robbers in a six meter wooden fishing boat boarded the container ship, while underway in the forepart. The robbers opened", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.683333299843468, -7.099999999614511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-159", - "dateofocc": "2007-05-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:In Mogadishu, pirates attacked and seized a dhow with 14 crewmembers. The hijacked dhow remained at anchor, off Haradhere, until negotiations with the owners were completed. The dhow was released on the 21 June 2007.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-160", - "dateofocc": "2007-05-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GHANA:At a position 2.2 miles from Tema Port Breakwater, robbers armed with knives boarded a general cargo ship at anchor. They caught and tied up the Duty AB and took his walkie talkie. The robbers stole ship's stores from the forecastle store and they", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.01666669955182, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-161", - "dateofocc": "2007-07-18", - "subreg": "53", - "hostility_": "IMMIGRANTS", - "victim_d": "FISHING VESSEL", - "descriptio": "MALTA: Fishing vessel (HADJ MAHMOUD) overtaken by migrants 18 Jul, 1335 local time, 90NM southwest of Malta and 43NM from the Italian island of Lampedusa. A group of immigrants had taken over the Tunisian fishing vessel, while the vessel was traveling n", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [14.416666699628991, 35.83333330021361] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-162", - "dateofocc": "2007-07-16", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Bulk carrier reported suspicious approach 16 Jul 2007 UTC/2400 local time, in position 00-27S-049-10E. The vessel was bound south for Argentina from Socotra, when an unidentified boat attempted to close in on the vessel. The vessel altered an", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.166666699628649, -0.450000000253794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-163", - "dateofocc": "2007-07-16", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Tanker reported suspicious approach 16 Jul at 1130 UTC in position 01-46.3S 047-46.7E. A suspicious boat was sighted 5NM away from the vessel. It was 20 meters in length (Operator, IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.778333299579174, -1.771666699640036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-164", - "dateofocc": "2007-07-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Container ship boarded and robbed 12 Jul 1555 UTC Chittagong Anchorage B. Six robbers armed with knives boarded the vessel. The D/O raised the alarm and all crew mustered and chased the robbers. The robbers stole from the ships stores and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-165", - "dateofocc": "2007-06-20", - "subreg": "62", - "hostility_": "SUSPICUIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:At 1930 LT, an unlit craft approached a bulk carrier, underway from the starboard bow. The master continuously altered course; the craft also adjusted her course and speed. Later the ship spotted another unlit craft, which also started adjusting", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.353333300424083, 13.349999999832789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-166", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2115 UTC, while underway in position 12-32N 044-03E. An unlit boat, doing about 8 knots, approached the vessel on a collision course. Alert crew directed the search light towards", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.049999999836359, 12.533333300269476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-167", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2020 UTC, while underway in position 12-31N 044-12E. Two unlit boats, doing about 11.5 knots approached the vessel on a collision course. The ship took evasive maneuvers, increase", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.20000000033582, 12.51666670019705] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-168", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Container ship reported suspicious approach 20 Jul at 1200 local time, while underway in position 11-09.0N 052-46.8E, 95 NM off the NE coast of Somalia. A small, white hulled, boat about 30-50 meters long began to follow the vessel. At a dis", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.779999999767938, 11.150000000301191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-169", - "dateofocc": "2007-07-22", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: General cargo ship reported attempted boarding 22 Jul at 0300 UTC while, underway in position 06-01.4N 080-00.5E, 12 NM off the SW coast of Sri Lanka. A small white and light-blue hulled boat, with nine persons on board, attempted to board", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.008333299821061, 6.023333299996011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-170", - "dateofocc": "2007-07-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded 17 Jul at 2300 UTC, while anchored at Chittagong Anchorage B. Six robbers, armed with knives, boarded the vessel. Duty officer raised the alarm. All crew mustered. The robbers escaped without stealing anything (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-171", - "dateofocc": "2007-07-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 18 Jul at 2100 UTC, while anchored at Chittagong Anchorage B. Twelve robbers, in two small boats, armed with knives attempted to board the vessel during lightering operations. D/O raised the alarm a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-2", - "dateofocc": "2007-12-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA:Chemical tanker boarded, robbed 28 Dec 07 at 0100 UTC in position 06-20N 003-20E, Lagos anchorage. Armed robbers boarded the vessel during STS operations. With the crew involved in cargo operations, anti-piracy watches maintained only one crewmem", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-172", - "dateofocc": "2007-07-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GUYANA: Fishing vessels (MOLISSA) and (BALLIE) attacked and robbed, 27 Jul in Waini River. A six-member crew of fishing vessel (BALLIE) and fishing vessel (MOLISSA) with a crew of five, were fishing close to each other at Waini Point. It is alleged fiv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.949999999929673, 8.516666700067731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-320", - "dateofocc": "2007-12-04", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "GUYANA:Fishermen boats attacked 04 Dec 07, late evening, eastern sector. Approximately 15 boats with Berbice Fishermen on board were subject to attack by pirates. Five of the boats are reportedly missing (LM: Starbroek.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.999999999764043, 6.999999999672355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-321", - "dateofocc": "2007-12-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA:Bulk carrier boarded 12 Dec 07 at 0206 UTC while drifting, in position 06-14N 003-22E, Lagos Anchorage. Two pirates, armed with guns and knives boarded the vessel. The pirates tied up the aft watchmen. The forward watchman sighted the pirates, ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.233333299975811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-322", - "dateofocc": "2007-12-16", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "2115 UTC: 8-48.5N 13-57W: SIERRA LEONE:Eight pirates armed with AK-47 guns in military like fatigues boarded a chemical tanker underway. They stole crew personal belongings, ship's properties and escaped. No injuries to crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.950000000240721, 8.808333299856713] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-323", - "dateofocc": "2007-12-09", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Fishing Vessels", - "descriptio": "1800 LT: 16 NM off Coroni shore, Suriname:Five masked pirates armed with guns approached the fishing vessel underway. They fired several shots and ordered the crew to lie on the icebox. They then locked the crew in the fish pen. The pirates took hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.999999999667068, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-324", - "dateofocc": "2007-12-17", - "subreg": "91", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "0430 LT: Manila north anchorage, Philippines:Eight armed pirates boarded a container ship, at anchor, awaiting berthing instructions. They were spotted by the antipiracy wathc and reported to the D/O. Alarm raised and crew alerted. The pirates jumped ove", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.874999999645297, 14.586666700255023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-325", - "dateofocc": "2007-09-30", - "subreg": "91", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "1900 LT: Manila international container terminal, Manila, Philippines:During heavy rain and poor visibility, robbers boarded a container ship unnoticed via the anchor chain. They broke into the CO2 room and stole eight pieces of extension cable for the r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.887500000286536, 14.610833299812782] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-326", - "dateofocc": "2007-09-11", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "0030 LT: off Tioman island waters, Malaysia:Six pirates, in a small high-speed boat, armed with knives boarded a tanker underway. They assaulted all six crewmembers. The captain received head injuries and the crewmembers were robbed of their documents an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.300000000211014, 2.499999999976524] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-327", - "dateofocc": "2007-09-08", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "2100 LT: 3.5 NM off TG. Punggai, Kota Ttinggi, Malaysia:Seven pirates in a wooden boat, armed with guns and knives approached a tanker underway. They boarded the tanker and tied up the master and crewmembers with nylon ropes. One crew jumped overboard. P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.356666700361245, 1.446666699848038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-1", - "dateofocc": "2007-12-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PASSENGER VESSEL", - "descriptio": "NIGERIA:Passenger Vessel attacked, passenger killed 30 Dec 07 in the early hours, Bonny Channels. The vessel was traveling from Bonny Island to Port Harcourt, when it was approached by pirates who attempted to force it to stop mid-sea, but failed as the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-169", - "dateofocc": "2008-04-24", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "BRITISH VIRGIN ISLANDS:Yacht boarded, robbed 24 Apr 08, Nanny Cay Boatyard. The vessel was having work being done to it and was left unlocked. Discovery of a cell phone and US$600 was found stolen (Operator: safetyandsecuritynet.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.500000000391594, 18.166666700424742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-3", - "dateofocc": "2007-12-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OFFSHORE SUPPLY VESSEL", - "descriptio": "NIGERIA:Offshore Supply Vessel attacked, crewmembers injured 26 Dec 07 near Bonny. It was reported that two speedboats with an unknown number of assailants mounted an attack against the vessel. The Nigerian Navy was notified and diverted a nearby patrol", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-4", - "dateofocc": "2007-12-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA:Bulk carrier boarded 24 Dec 07 at 0310 UTC, berth no. 20, Apapa, Lagos. Four robbers boarded the vessel from a boat. They held one crew at knifepoint while they tried to open the bosun store. The second duty officer, while on routine security rou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-162", - "dateofocc": "2008-05-13", - "subreg": "62", - "hostility_": "Four speedboats", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 13 MAY 2008 while underway in position 12-43.1N 045-42.6E. Four speedboats, each manned by two persons, were in close proximity of the vessel, two on the port side and two on the starboard side. The M", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.710000000447621, 12.718333299866288] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-163", - "dateofocc": "2008-05-18", - "subreg": "62", - "hostility_": "Small speedboats", - "victim_d": "Tanker", - "descriptio": "OMAN: Tanker reported suspicious approach 18 May 08 while underway in position 21-07.5N 059-47.10E, 30NM off coast of Oman, 55NM northeast of Masirah Island. The vessel sighted a small speedboat trailing the vessel from the right stern, and was reportedl", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.785000000250761, 21.125000000241585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-165", - "dateofocc": "2008-05-25", - "subreg": "62", - "hostility_": "Three boats", - "victim_d": "Bulk Carier", - "descriptio": "Gulf of Aden:25.05.2008: 0610 LT: 13-25.2N 047-57.8E: Three boats closed onto a bulk carrier underway. There were four armed persons in each boat. The boats followed the bulk carrier at a distance of one cable and the armed men were heard shouting in a f", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.963333300075249, 13.419999999826018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-166", - "dateofocc": "2008-05-24", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "Gulf of Aden:24.05.2008: 1420 LT: 13-58N 050-42E: Two boats, with four armed pirates in each boat, closed onto a tanker underway. The pirates opened fire with automatic guns and RPG. One RPG round hit and damaged the port bridge wing. Evasive manoeuvres", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.700000000096338, 13.966666699929192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-167", - "dateofocc": "2008-05-23", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "Gulf of Aden:23.05.2008: 0430 UTC: 13-16.2N 049-08.7E: Four pirates armed with automatic guns and rocket launcher in a grey coloured, long speedboat approached a bulk carrier underway from the port quarter. They fired at the bridge and accommodation. Mas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.145000000374353, 13.270000000225878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-168", - "dateofocc": "2008-04-02", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "GUATEMALA:Yacht (SERENADE) boarded, robbed 2 Apr 08 at 0200 local time while at anchorage, east of village El Estor, per 24 May 08 reporting. The vessel, accompanied by two other yachts was boarded by four bandits armed with a pistol, machete, night stic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.349999999801298, 15.533333300366508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-172", - "dateofocc": "2008-04-07", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "ST LUCIA:Yacht boarded, robbed 7 Apr 08, Rodney Bay Inner Lagoon. The vessels dink was located near a supermarket access dock at night while the crewmembers were out to dinner and returned to find the cable cut. It was reported to Gros Islet Police. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.999999999828731, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-14", - "dateofocc": "2006-12-19", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Bulk Carrier reported suspicious distress call 19 Dec, off the SE coast of Somalia. According to the IMB, the incident occurred at 1932 LT, in position 00:32.6S-043:57.8E. The (SHEILA MCDEVITT) received the distress message from a vessel five", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.96333329994593, -0.543333299703704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-15", - "dateofocc": "2007-01-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Vessel attacked, robbed 16 Jan, in the evening near Bonny Island, River State. Robbers killed one foreigner and two Nigerians traveling from Port Harcourt to Bonny Island. The gunmen also critically injured six other passengers, while robbing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.191666699552684, 4.516666699938355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-16", - "dateofocc": "2007-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SMALL FERRY", - "descriptio": "NIGERIA: Small ferry attacked 15 Jan, Kula, southern Niger Delta. Western oil companies evacuated staff from three oilfields, after gunmen opened fire on a small ferry carrying 14 passengers. The gunmen killed 12 passengers and the other two are being", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.64999999970604, 4.350000000441014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-17", - "dateofocc": "2007-01-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Product tanker boarded and robbed 08 Jan at 2335 local time, while berthed at Lagos Roads. Robbers armed with guns and knives boarded the product tanker, during STS cargo operations. They attacked a crewmember, tied him up, and asked for a k", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-18", - "dateofocc": "2007-01-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NIGERIA: Patrol boat attacked, two seamen kidnapped 7 Jan, in Port Harcourt near Soku, an island in the coastal area of Rivers State. Gunmen in seven speedboats attacked the patrol boat and seized two naval officers, one of them a sub-lieutenant whose", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-19", - "dateofocc": "2007-01-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO: RoRo ship boarded and robbed 10 Jan at 2300 local time in position 05-52S 013-03.3E, Boma Anchorage, Congo River. A large group of robbers, in several boats armed with long knives and wooden sticks, boarded the vessel. The robbers tried to att", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-20", - "dateofocc": "2007-01-13", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Chemical tanker reported suspicious approach 13 Jan, while underway in position 05-12.0N 052-37.5E, 225NM off the east central coast. The United States Coast Guard Command Center (USCGCC) received reporting on the incident at 0635 UTC; howeve", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.624999999911324, 5.199999999973898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-21", - "dateofocc": "2007-01-16", - "subreg": "57", - "hostility_": "SUSPIPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Offshore Supply Vessel reported suspicious approach 16 Jan at 2300 local time, while underway in location 03-42N 007-01.5E, 31 NM off the coast. Suspicious vessel approached off port bow at speed of 14 kts. Attempts to establish radio contact", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.0250000000554, 3.700000000375042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-22", - "dateofocc": "2007-01-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded 16 Jan, at 0430 local time, about 18nm off Dar es Salaam Roads. While the container ship was drifting, the duty AB noticed some suspicious movements on the forecastle deck. The alarm was raised and the crew alerted. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-23", - "dateofocc": "2007-01-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SRI LANKA: General cargo carrier (CITY OF LIVERPOOL) attacked by LTTE 21 Jan, off the Jaffna peninsula. The vessel was leaving Point Pedro open anchorage, when it was attacked by two clusters of 15-20 rebel boats. Navy patrol boats and aircraft immedia", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.433333300037134, 9.916666699933103] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-173", - "dateofocc": "2007-07-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: General Cargo ship boarded and robbed 26 Jul at 2350 local time, in position 22-16.2N 091-49.1E Dry Dock Berth No. 2, Chittagong. Robbers from two boats boarded the vessel from the starboard side and stole from the ships stores. When spott", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.818333300355903, 22.269999999617596] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-174", - "dateofocc": "2007-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "QATAR (UAE): Three fishing vessels attacked and robbed a few days prior to 4 Jul, about 40 NM from Ruweis. In a newspaper interview, fishermen from Al Khor said sea pirates attacked their vessels and got away with their entire catch and valuables, incl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.76666669992494, 24.116666699852772] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-175", - "dateofocc": "2007-07-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker boarded, 23 Jul at 1030 local time, while at berth at Prointal, Merak. Robbers boarded the vessel unnoticed. The third engineer noticed the boat store unlocked and some electrical spares were missing. The crew was alerted a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.000000000176044, -5.883333300218112] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-176", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SHATT AL ARAB (IRAQ): Container ship fired upon 20 Jul at 0635 local time, while underway to pilot station from Khorramshahr terminal, Iran. While underway to the pilot station, with pilot onboard, the vessel passed over fishing nets. A fishermen open", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.000000000131308, 29.633333299653373] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-177", - "dateofocc": "2007-07-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOUTH CHINA SEA: Fishing vessel (HUYU 908) fired upon 26 Jul at 0730 local time, while underway in position 03-16N 105-27E, approximately 40NM west of the Anambas Islands. The Chinese fishing vessel was approached by a small rubber boat. Five men arm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.449999999843499, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-178", - "dateofocc": "2007-08-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: LPG tanker boarded, robbed 05 Aug at 0330 local time in position 06-19.29N 003-23.62E, Lagos anchorage. Two robbers armed with long knives boarded the vessel. The duty crew raised the alarm and the robbers escaped with the ship's stores. The po", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.393611099667396, 6.321388900217755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-179", - "dateofocc": "2007-07-03", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Container ship boarded, robbed 03 Jul at 1920 local time at Pier 5D, Callao port, per 6 Aug reporting. Three masked robbers armed with knives, boarded the vessel while at berth. One robber with a knife held a duty cadet whilst the other two lowe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.1433332996628, -12.043333299625942] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-180", - "dateofocc": "2007-07-16", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Container ship boarded, robbed 16 Jul at 2310 local time in Callao anchorage. Robbers boarded the vessel and within a period of ten minutes, the robbers stole from the ship's stores, even though there were four crewmembers on roving watch. The por", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-461", - "dateofocc": "2008-11-21", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "West Coast Luzon, Philippines: Three blue colored speedboats, chased a bulk carrier underway. Ship increased speed made evasive maneuvers, raised alarm and fire hoses standby. Pirates aborted the attempt after 30 minutes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.53333330013254, 16.283333300165907] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-181", - "dateofocc": "2007-08-03", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Container ship reported suspicious approach 03 Aug at 0620 UTC while underway in position 02:54N - 051:42E, 240NM off the coast. A medium-sized craft altered towards the vessel. As the master altered its course, the craft altered its directio", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.700000000128682, 2.899999999809609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-182", - "dateofocc": "2007-07-29", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Bulk carrier reported suspicious approach 29 Jul at 1020 UTC in position 00-27.5S 049-36.4E, 270NM off the coast. A suspicious craft followed the vessel underway for 4 hours. The craft failed to reply on the VHF and did not transmit any AIS dat", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.601111100107289, -0.451388899705989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-183", - "dateofocc": "2007-08-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAQ: Container ship boarded 02 Aug at 0200 local time in position 29-43.06N 048-40.1E, Umm Qasr anchorage. Robbers armed with guns boarded the vessel and opened fire with automatic weapons, which damaged the master's cabin porthole and the second offic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.668333300264464, 29.717777799990415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-5", - "dateofocc": "2007-12-11", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 11 Dec 07 at 1730 UTC in position 13-26.3N 049-46.2E, 65NM southeast of Al Mukalla, Yemen. The vessel detected a number of fast moving targets on the radar. The targets moved towards the vessel and were ne", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.77000000005728, 13.438333299925546] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-6", - "dateofocc": "2007-11-27", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CONTAINER VESSEL", - "descriptio": "SOUTH CHINA SEA:Container ship (AL MUTANABBI) reported suspicious approach 27 Nov 07 at 1430 local time, while underway in position 06-46.0N 107-50.0E, approximately 120NM North of Pulau Laut, Indonesia, per 02 Jan 08 reporting. Two small wooden boats we", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.833333299844071, 6.76666670023593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-7", - "dateofocc": "2007-11-05", - "subreg": "71", - "hostility_": "SUSPECTED PIRATE", - "victim_d": "OIL TANKER", - "descriptio": "MALAYSIA:Oil Tanker (EURYDICE) boarded, suspect apprehended 05 Nov 07 while at anchorage in position 01-14.23N 103-30.76E, approximately 1.5NM off Tanjung Piai, Johor, per 02 Jan 08 reporting. The ship master informed the Singapore and Malaysian authorit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.512777799962237, 1.2372222002939] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-8", - "dateofocc": "2007-12-25", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded, crewmember assaulted, 25 Dec 07 at 0715 UTC in position 01-09.1S 117-13.7E, Samarinda anchorage. The duty crew noticed robbers on the poop deck. As the crewmember shouted to alert the rest of the crew, the robbers, who had", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.228333299711721, -1.151666700213582] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-9", - "dateofocc": "2007-12-23", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TUG AND TOW", - "descriptio": "INDONESIA:Tug (MAKMUR ABADI-I) towing barge (MAKMUR ABADI-V) hijacked, 23 Dec 07, near Bilang-Bilangan Island, off East Kalimantan coast. While sailing from Tanjung Redep, East Kalimantan, to Surabaya East Java with a cargo of crude palm oil, the tug and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [124.449999999558599, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-10", - "dateofocc": "2007-10-19", - "subreg": "72", - "hostility_": "PIRACY", - "victim_d": "WORKBOAT", - "descriptio": "INDONESIA:Workboat (ANCHOR 2) noticed missing 19 Oct 07 at 0100 local time while being towed by the tug (SM V) in position 06-03.1S 115-32.84E, approximately 120NM North of Bali, per 18 Dec 07 IMB reporting. On 19 Oct 07, the ship master on board the tug", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.547222200096598, -6.051666699742498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-11", - "dateofocc": "2008-01-14", - "subreg": "22", - "hostility_": "PIRACY", - "victim_d": "TRANSPORT VESSEL", - "descriptio": "COLOMBIA:Vessel transporting tourists robbed, six passengers kidnapped, 14 Jan 08, late in the afternoon shortly after landing near Nuqui. The six hostages belonged to a group of 19 people taking a boat trip on the Atrato river in the west of the country", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.266666699576945, 5.716666700336873] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-12", - "dateofocc": "2008-01-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GHANA:Chemical Tanker boarded 08 Jan 08 at 0055 local time at Tema anchorage. Three robbers, armed with knives, boarded the vessel via the forecastle. The Duty A/B spotted the robbers who tried to catch him. Luckily, the A/B managed to escape. The Duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.033333299624246, 5.616666699704126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-173", - "dateofocc": "2008-03-30", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "ST. VINCENTS AND GRENADINES:Yacht boarded, robbed 30 Mar 08 at Bequia Princess Margaret Beach. The vessel was robbed of cash while the crew was off the vessel at dinner (Operator: safetyandsecuritynet.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.500000000294563, 13.250000000099305] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-174", - "dateofocc": "2008-04-20", - "subreg": "25", - "hostility_": "PIRATE THEFT", - "victim_d": "YACHT", - "descriptio": "ST. VINCENTS AND GRENADINES:Yacht boarded, robbed 20 Apr 08 at Young Island Cut. The crew returned from dinner to find a 10 hatch opened (not locked when left) and 20 Euros and 5 EC missing. It is assumed that a small kid may have entered the space (Op", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.250000000061675, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-175", - "dateofocc": "2008-03-28", - "subreg": "25", - "hostility_": "PIRATE THEFT", - "victim_d": "YACHT", - "descriptio": "ST. VINCENTS AND GRENADINES:Yacht boarded, robbed 28 Mar at Young Island Cut. The crew discovered that US$700 was missing when paying for the mooring. It is assumed that it was stolen the night before while off the boat to dinner due to the hatch being c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.250000000061675, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-176", - "dateofocc": "2008-04-01", - "subreg": "24", - "hostility_": "PIRATE", - "victim_d": "YACHT", - "descriptio": "COLOMBIA:Yacht boarded 1 Apr 08, Isla Fuerte. A perpetrator boarded the vessel. The noise awoke the crew and chased the perpetrator off (Operator: safetyandsecuritynet.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.249999999647457, 9.249999999969987] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-177", - "dateofocc": "2008-04-29", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "VENEZUELA:Yacht (MOON GODDESS) boarded 29 Apr 08 at 2145 local time while at anchorage at Puerto Santos, four miles east of Carupano Port, per 24 May 08 reporting. They heard banging and the noise of a pirogue hitting the boat followed by men yelling and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.216666700156793, 10.616666699865846] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-178", - "dateofocc": "2008-05-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "NIGERIA:Product tanker boarded 27 May 08 at 0545 local time, while at anchorage offshore Lagos. Four robbers armed with knives boarded the vessel. They lowered a hose into Cargo Tank No. 1 and started to discharge cargo into the boat. The duty crew spott", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-179", - "dateofocc": "2008-06-03", - "subreg": "62", - "hostility_": "PIRATE ATTACK", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN:Container ship fired upon 3 Jun 08 at 0705 UTC while underway in position 12-43.8N 049-51.5E, 73NM off the Somali coast. The vessel was approached by two boats armed with a rocket launcher and guns firing at the vessel. Warship assistance wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.858333300150036, 12.730000000406278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-452", - "dateofocc": "2008-11-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: Refrigerated cargo ship reported being fired upon on 16 Nov 08 at 0430 UTC while at anchor in position 04:08N-006:50E, Bonny outer road. Robbers in a speedboat circled the ship four times and then left. There was no injury to the crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.83333330017507, 4.133333300177696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-180", - "dateofocc": "2008-06-01", - "subreg": "63", - "hostility_": "PIRATE ATTACK", - "victim_d": "PRODUCT TANKER", - "descriptio": "GULF OF ADEN:Product tanker reported suspicious approach 1 Jun 08 at 0610 UTC while underway in position 13-20N 097-37E, approximately 23NM from the Yemen coast. Two suspicious boats were observed ahead of the vessel. The boats crossed the vessels bow an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [97.616666699981408, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-181", - "dateofocc": "2008-05-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 28 May 08 at 1200 UTC while underway in position 13-43N 048-50E, 21NM off the Yemen coast. Four suspicious wooden/plastic high-speed boats with gray hulls, about 15 meters long with four persons in each bo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.833333299734704, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-24", - "dateofocc": "2007-01-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NORTHERN PERSIAN GULF: Unspecified vessel attacked, robbed 22 Jan, off Bubiyan island. The pirates allegedly shot and killed one Iranian crewman and injured another before escaping, with merchandise from the vessel. Kuwaiti Coast Guard responded to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.533333299635046, 29.70000000031655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-25", - "dateofocc": "2005-01-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded and robbed 19 Jan, between 0001-0400 local time in position 03-13.6S 116-25.0E, Pulau Laut NPLCT Anchorage. The robbers boarded via anchorage chain, broke into the forward store, and stole from the ships stores. The port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.416666700229598, -3.226666699628652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-26", - "dateofocc": "2007-01-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robbed 18 Jan, at 1815 UTC in position 06:15.07S-108:26.78E, Balongan Anchorage. Two robbers armed with steel bars boarded a tanker and entered the engine room. They stole generator spares and escaped through the engine r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.446388900035572, -6.251111099858292] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-27", - "dateofocc": "2007-01-16", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Bulk carrier boarded, robbed 26 Dec, 1950 local time in position 12-01.2S 077-11.0W, Inner Anchorage No.1, Callao. Three robbers armed with guns and knives boarded the bulk carrier and tied up the watchman. Another watchman noticed the robbers an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.196111100232599, -12.029166699681753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-28", - "dateofocc": "2007-01-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NIGERIA: Cargo ship (BACO LINER 2) boarded, vessel and crew of 24 Filipino nationals reportedly held hostage 20 Jan, on Chanomi Creek while en route to Warri. Per 23 Jan reporting, the Philippine foreign affairs undersecretary was under the impression", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.408333299926653, 5.558333300426114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-29", - "dateofocc": "2007-01-28", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vehicle carrier approached 28 Jan, at 0610 UTC in position 11-20.0N 065-09.9E. The vehicle carrier was underway when it received a call on VHF ch.16, from a small craft asking for fresh water. The craft closed in to 2nm from the starboar", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.152500000377131, 11.333333299870958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-30", - "dateofocc": "2007-01-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "TANZANIA: Vessel attacked, robbed 29 Jan, at 0030 local time, while at berth in Dar-es-Salaam. Despite having three crew keep deck watch, supplemented with five local watchmen, robbers boarded the vessel and held a knife to the throat of a shore watchm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-31", - "dateofocc": "2007-01-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SRI LANKA: Container ship sustained blast damage 27 Jan, at 0530 local time in position 07-01.38N 079-39.22E, Colombo Roads. At 0530, a guard at a lighthouse spotted three vessels in a restricted zone. According to a military spokesman, as the boats ap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.653611100173123, 7.023055600177543] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-32", - "dateofocc": "2007-01-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robbed 26 Jan, at 0330 local time in position 06-12.64S 108-26.01E, Balongan Anchorage. The robbers boarded the vessel via a small boat. The tanker had a life raft stolen, while it was at anchor. Local police and port s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.43361109971886, -6.210555600078919] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-184", - "dateofocc": "2007-08-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded, robbed 05 Aug at 0255 local time in position 00-01.3N 117-35.1E, Bontang anchorage. Seven robbers armed with guns, knives, crowbars and steel pipes boarded the vessel. They held the duty AB at gunpoint and tied him up. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.58499999996161, 0.021666699599621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-185", - "dateofocc": "2007-06-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "INDONESIA: Yacht reported attempted boarding 02 Jun at 1535 local time while underway in position 02:18N ¿ 107:04:48E, Anambas Islands, per 05 Aug reporting. Four pirates in aspeedboat approached the vessel. When the suspicious boat was nearly alongs", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.079999999815243, 2.299999999610293] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-186", - "dateofocc": "2007-07-16", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "PAPUA NEW GUINEA: Yacht (STAP ISI) boarded 16 Jul at 0100 local time in Madang Harbor anchorage. A gang of 3 thieves boarded the vessel. The yachtsman awoke to one of the men pressing the blade of a machete against his neck. Another thief attacked the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [145.830555600194657, -5.203333300411941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-187", - "dateofocc": "2007-08-12", - "subreg": "18", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CRUISE SHIP", - "descriptio": "UNITED STATES: Cruise ship reported suspicious approach 12 Aug 07 at 1130 local time, while docked at Long Beach Cruise Terminal. The coast guard received a report that a suspicious boat was within the 100-yard security zone around a cruise ship. The", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-118.333333299942637, 33.783333300282209] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-188", - "dateofocc": "2007-08-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DEM. REP. CONGO: Refrigerated cargo ship boarded and robbed 05 Aug 07 at 0119 local time, Ango-Ango, Matadi port anchorage. Armed robbers in two canoes boarded the vessel and threatened the deck watchman with a knife and chased him; luckily the watchma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [12.483333300402762, -5.816666700278972] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-189", - "dateofocc": "2007-08-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker reported attempted boarding 05 Aug 07 at 0225 UTC in, position 06-18.6N 003-23.9E, Lagos anchorage. A boat with six robbers approached the vessel from the stern. The watchman on duty spotted the robbers trying to board the ship by hoo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.398333300248339, 6.310000000252614] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-190", - "dateofocc": "2007-08-11", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Refrigerated cargo ship reported suspicious approach 11 Aug 07 at 1200 UTC, while underway in position 01-13N 052-38E. A trawler reportedly attempted to intercept the vessel. The ship altered its course and the trawler altered onto a collisi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.633333300397169, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-191", - "dateofocc": "2007-08-07", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SOMALIA: Vessel reported suspicious approach 07 Aug 07 at 1910 UTC while underway, in position 01-24S 050-45E. A suspicious boat crossed the bow of the vessel from starboard to port side. There was no data found on AIS. The boat altered its course a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.749999999963109, -1.400000000419425] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-192", - "dateofocc": "2007-07-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Barge boarded and crewmen kidnapped 13 Jul 07, in the evening. The vessel was carrying steel billets from Penang, Malaysia to Belawan, Indonesia, when ten gun-toting pirates boarded and attacked the Malaysian vessel. The master and th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.500000000415469, 4.500000000041211] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-193", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2115 UTC, while underway in position 12-32N 044-03E. An unlit boat, doing about 8 knots, approached the vessel on a collision course. Alert crew directed the search light towards", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.049999999836359, 12.533333300269476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-194", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 20 Jul at 2020 UTC, while underway in position 12-31N 044-12E. Two unlit boats, doing about 11.5 knots approached the vessel on a collision course. The ship took evasive maneuvers, increase", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.20000000033582, 12.51666670019705] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-13", - "dateofocc": "2008-01-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL SERVICE VESSEL", - "descriptio": "NIGERIA:Oil service vessel (LIBERTY) attacked by gunmen, 14 Jan 08, while underway near Aker base, Bonny River. The vessel was attacked while in route to the (MYSTRAS) platform. Eyewitness accounts said that a passing boat suddenly opened fire. Crewmembe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.783333300243669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-14", - "dateofocc": "2008-01-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "NIGERIA:Product tanker (GOLDEN LUCY) suffered explosion 11 Jan between 0600 and 0700 local time while docked in Port Harcourt. The fire is reported to have spread quickly and the tanker was moved away from facilities and beached on the opposite side of t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.783333300243669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-15", - "dateofocc": "2008-01-04", - "subreg": "57", - "hostility_": "ATTEMPTED BOARDING", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA:Bulk carrier reported attempted boarding 04 Jan 08 at 1740 UTC in position 06-16.2N 003-22.7E, 7.5M off Lagos anchorage. Four armed robbers in a small rubber boat attempted to board the vessel using a grappling hook. The duty crew raised the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.378333300121767, 6.269999999999527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-16", - "dateofocc": "2007-12-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA:Bulk Carrier boarded, 31 Dec 07 at 0340 UTC, Berth no. 20, Apapa, Lagos. Two armed robbers boarded the vessel during cargo operations using a long stick with a hook. Two more robbers remained in a speedboat. The duty watch keeper spotted them an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-17", - "dateofocc": "2007-12-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "NIGERIA:Product tanker boarded, robbed 21 Dec 07 at 0100 UTC in position 06-16.1N 003-18.3E, Lagos anchorage. Two robbers armed with knives boarded the vessel from the port quarter, while the duty watch keeper was on the starboard side. The robbers held", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.30499999989911, 6.268333299972426] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-18", - "dateofocc": "2007-12-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL INDUSTRY BARGE", - "descriptio": "NIGERIA:Oil Industry Barge destroyed, bystanders killed 19 Dec 07, Okrika. Nigerian gunmen attacked the vessel, a jetty and a government building, briefly capturing 18 Filipino crew and fighting with troops. The attacks were reportedly in retaliation for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.083333300407958, 4.733333300376955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-19", - "dateofocc": "2008-01-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER VESSEL", - "descriptio": "NIGERIA:Tanker (RIO BRAVO) boarded, robbed 06 Apr 07 at 0200 local time, while at berth, Lagos, per 01 Jan 08 reporting. Robbers boarded the vessel and broke open the paint storage and stole ship's stores. The alarm was raised and authorities informed. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-20", - "dateofocc": "2008-01-07", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MOZAMBIQUE:Chemical tanker boarded, robbed 07 Jan 08 at 0235 local time while at berth No. 5, Beira. A duty seaman onboard the vessel noticed one robber on the forecastle deck. The duty officer was informed and the crew alerted. When confronted, the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.833333300181266, -19.84999999980198] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-21", - "dateofocc": "2008-01-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIA:Chemical tanker boarded, robbed 07 Jan 08 at 0556 local time while at anchorage in position 16-59.8N 082-26.7E, Kakinada roads. Seven robbers in a 12 meter open boat approached the vessel. One robber boarded the vessel using a grappling hook and ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.444999999742549, 16.996666699766365] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-22", - "dateofocc": "2008-01-04", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "VIETNAM:Container ship boarded, robbed 04 Jan 07 at 0920 local time in position 20-51.8N 107-07.4E, Vinh Ha Long inner anchorage, Haiphong. Seven robbers, armed with knives, in a wooden boat came alongside the vessel during anchoring operations. They sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.123333300297759, 20.86333330036797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-23", - "dateofocc": "2008-01-10", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER VESSEL", - "descriptio": "SINGAPORE STRAIT:Tanker reported suspicious approach 10 Jan 08 at 2155 local time while underway in position 01-05.6N 103-34.5E, Phillip Channel. At a distance of 1NM, a small craft, with its searchlights on, started impeding the safe passage of the vess", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.574999999895283, 1.093333299827577] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-182", - "dateofocc": "2008-05-28", - "subreg": "62", - "hostility_": "PIRATE HIJACKING", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:Cargo ship (LEHMANN TIMBER) hijacked 28 May 08 at 1040 UTC while underway in position 13-09N 048-58E, 56NM south of the Yemen coast. The vessel was attacked by four heavily armed pirates. Lehmann GmbH shipping company said in a statement tha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.966666700161738, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-183", - "dateofocc": "2008-05-27", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 27 May 08 at 0748 UTC while underway in position 14-04.30N 049-23.72E, 28NM off the Yemen coast. A suspicious speedboat, with about five persons, was noticed proceeding towards the vessel at the starboard", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.39527780028277, 14.071666699919092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-34", - "dateofocc": "2007-01-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship chased 21 Jan, at 2025 UTC in position 03-38.7N 099-30.0E, 16nm off Kuala Tanjung. Several unlit fishing boats approached the container ship while underway. The master, suspecting piracy, increased speed and started taking", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.500000000415469, 3.645000000251855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-184", - "dateofocc": "2008-01-01", - "subreg": "63", - "hostility_": "SUSPICIOUS APPRAOCH", - "victim_d": "YACHT", - "descriptio": "SRI LANKA:Yacht (MOONFLOWER) reported suspicious approach Jan 08, approximately 85NM off the coast, per 2 Jun 08 reporting. The vessel initially spotted a boat about 4 miles away. Next to it were 2-3 smaller boats, not showing on radar. As soon as the v", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.000000000299224, 7.999999999704698] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-185", - "dateofocc": "2008-06-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA:Chemical tanker (RED WING) boarded, robbed 4 Jun 08 2030 local time while underway in position 02-36N 105-09E, approximately 75NM off the coast of Cape Tenggaron. Seven robbers armed with knives and bars boarded the tanker from a wooden speed bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.149999999743841, 2.599999999709951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-186", - "dateofocc": "2008-05-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA:Tug (CATHAY 5) boarded, robbed 27 May 08 at 0315 local time while underway in position 01-06N 103-45E, off Helen Mar Reef. The vessel was towing barge (CSF 2301) when it was boarded by four robbers armed with a small knife and parang. The tug m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.749999999878412, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-187", - "dateofocc": "2008-04-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship (RAYS) boarded 28 Apr 08 at 0225 local time, Belawan Anchorage, per 2 Jun 08 reporting. Six robbers armed with knives and sticks boarded the vessel using ropes. The crew confronted them, raised the general alarm and activa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-188", - "dateofocc": "2008-06-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SECURITY VESSEL", - "descriptio": "NIGERIA:Security vessel (SEACOR MACOR) attacked 10 Jun 08, early morning off Akwa Ibom State, Addaks Anthan oilfield OML123, off Qua Iboe river. The vessel, owned by Canada's Addax Petroleum Company, was attacked by unidentified armed militants in two sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.750000000371131, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-189", - "dateofocc": "2008-06-08", - "subreg": "57", - "hostility_": "PIRATES ATTACK", - "victim_d": "OIL SUPPLY VESSEL", - "descriptio": "NIGERIA:Oil supply vessel ALTRA G attacked on 8 JUN 2008 at 1145 local time, in oilfield OML126, approximately 22NM offshore the Nigerian coastline, south of Bonny. The vessel was traveling from Calabar area to Onne when unidentified gunmen in two speedb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-33", - "dateofocc": "2007-01-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Oil tanker boarded 22 Jan, at 1800 UTC in position 01:42N - 101:29E, at Dumai anchorage. The duty officer of the oil tanker at anchorage raised the alarm and alerted the crew, when he noticed one robber on board and another attempting to boar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-35", - "dateofocc": "2007-01-30", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VENEZUELA: Container ship boarded 30 Jan, 1945 local time in position 10-15.4N 064-42.5W, Bahia de Pozuelos, Puerto la Cruz. Two robbers boarded a container ship at anchor. The duty crew spotted the robbers and informed the duty officer on the bridge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.70833330034435, 10.256666700285848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-36", - "dateofocc": "2007-02-02", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "FISHING VESSEL", - "descriptio": "ARABIAN SEA: General cargo ship approached 02 Feb, at 1100 local time in position 10-40N 062-07E. The general cargo ship was underway when it received a call, on VHF from a craft, advising she is a Korean fishing vessel asking for fresh water. The M", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.11666670018235, 10.666666699732559] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-37", - "dateofocc": "2007-01-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded and robbed 29 Jan, 0030 local time while at berth in Dar es Salaam. Despite active anti-piracy measures, the vessel was boarded by robbers armed with knives. They took one of the watchman hostage, placed a knife to his", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-38", - "dateofocc": "2007-01-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship boarded and robbed 27 Jan, 2310 UTC in position 02-03S 106-54E, Tg. Priok anchorage. Armed robbers boarded the vessel at anchor, from the stern. They broke open the steering room door and entered the engine room via a waterti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -2.049999999586078] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-39", - "dateofocc": "2007-02-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "NIGERIA: Tug boarded while underway 8 Feb, at 1950 local time in position 05-23.4N 005-11.7E, vicinity of Forcados River. Five heavily armed pirates in a speedboat boarded a tug while underway. The pirates ordered the master to drop the anchor and for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.194999999717425, 5.389999999827182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-40", - "dateofocc": "2007-01-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CONGO: Container ship boarded, robbed 6 Jan, at 0107 local time while berthed at Boma Anchorage, Congo River. The robbers boarded a container ship waiting for berth at Matadi. The alert crew noticed the robbers, raised the alarm, and tried to obstruct", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-41", - "dateofocc": "2007-02-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Product tanker reported attempted boarding, 8 Feb at 2130 local time in position 02:00.44N-045:20.7E, 1.5nm off Mogadishu. Five pirates armed with guns attempted to board the product tanker at anchor. The master raised the alarm, and the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.344999999711831, 2.007222200219871] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-42", - "dateofocc": "2007-02-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIA: Tug boarded 15 Feb, 0815 local time, in position 12-05N 080-10.7E. Pirates, in a fishing vessel, approached the tug towing a floating crane underway. The tug tried to take evasive maneuvers, but the pirates managed to board the unmanned floati", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.178333300447093, 12.083333299670358] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-43", - "dateofocc": "2007-02-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier boarded, attempted robbery 14 Feb, at 0415 local time, in position 22-16.2N 091-43.7E, Chittagong Anchorage. Robbers boarded the bulk carrier and attempted to steal from the ships stores and ropes. As the ropes were secured on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.728333300236045, 22.269999999617596] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-195", - "dateofocc": "2007-07-22", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA: General cargo ship reported attempted boarding 22 Jul at 0300 UTC, while underway in position 06-01.4N0 80-00.5E, 12 NM off the SW coast of Sri Lanka. A small white and light-blue hulled boat, with nine persons on board, attempted to board", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.008333299821061, 6.023333299996011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-196", - "dateofocc": "2007-07-20", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Container ship reported suspicious approach 20 Jul at 1200 local time, while underway in position 11-09.0N 052-46.8E, 95 NM off the NE coast of Somalia. A small, white hulled, boat about 30-50 meters long began to follow the vessel. At a dis", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.779999999767938, 11.150000000301191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-462", - "dateofocc": "2009-12-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel hijacked in 10-50N 060-00E at 060630 UTC Dec. Mariners are advised to stay clear of this high risk area for the next 24-48 hours. caution advised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.999999999587715, 10.833333300304446] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-198", - "dateofocc": "2007-07-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 18 Jul at 2100 UTC, while anchored at Chittagong Anchorage B. Twelve robbers, in two small boats and armed with knives, attempted to board the vessel during lightering operations. D/O raised the ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.741666699903817, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-199", - "dateofocc": "2007-08-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DEM. REP. CONGO: Refrigerated cargo ship boarded and robbed 15 Aug 07 0130 UTC, in position 05-51S 013-24E at anchorage. Eight robbers armed with knives boarded the vessel. They stole cargo from the ships stores and escaped. No injuries to crew. Att", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [12.500000000299906, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-200", - "dateofocc": "2007-08-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Container ship boarded and robbed 18 Aug 07 0135 local time, at Tuticorin anchorage. Robbers boarded the vessel, stole from the ships stores, and escaped in a boat. The duty AB raised the alarm and the crew mustered. The coast guard was informe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [78.250000000402736, 8.750000000403475] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-201", - "dateofocc": "2007-08-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Chemical tanker reported suspicious approach 13 Aug 07, River Mooring No. 3, Chittagong anchorage. Suspects in country boats reportedly approached the vessel. The boats were noticed going under the hull near the stern. The suspects were c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-202", - "dateofocc": "2007-08-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Chemical tanker boarded 13 Aug 07 0355 local time, in position 03-55.5N 098-46.5E, Belawan Outer roads at anchorage. Four robbers armed with wooden sticks boarded the vessel, broke into the forward locker, and attempted to steal from the s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.775000000099737, 3.925000000224941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-203", - "dateofocc": "2007-07-21", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Container ship boarded and robbed 21 Jul 07 0115 local time, in position 10-12.6N 107-07.1E, Ho Chi Min City Outer anchorage. Five robbers armed with knives in a small boat boarded the vessel. The duty crew raised the alarm and the crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.118333300041286, 10.209999999749186] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-204", - "dateofocc": "2007-08-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "MALACCA STRAITS:Ten pirates armed with fire arms boarded a tug, in position 04-14-18N 099-04-42E, towing a barge laden with steel billets. T he pirates damaged all communication equipment, stole the crews personal belongings, and ship's documents. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.078333300428767, 4.238333300167596] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-205", - "dateofocc": "2007-08-25", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: Chemical tanker boarded 25 Aug 07, 0300 UTC, Conakry anchorage. Approximately 30 robbers armed with guns boarded the vessel. The crew locked all access to the ship and attempted to contact local authorities for help but failed to get a respons", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.729999999747974, 9.46527779988179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-206", - "dateofocc": "2007-08-23", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Container ship reported suspicious approach 23 Aug 07, 0555 UTC while underway in position 00-58N 050-48E. The vessel spotted a suspected pirate boat at a range of 10NM. The boat suddenly increased its speed and headed for the vessel. The v", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.799999999829822, 0.966666700408098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-207", - "dateofocc": "2007-08-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Product tanker boarded and robbed 22 Aug 07, 1650 UTC in position 01-04.1N 103-30.4E, Karimun STS anchorage. Eight robbers armed with knives boarded the vessel. They held three duty crewmen and tied them up. The robbers broke open the eng", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.506666699929042, 1.068333300343852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-24", - "dateofocc": "2008-01-09", - "subreg": "57", - "hostility_": "MILITANT ATTACK", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NIGERIA:M/V (BOURBON) fired upon 09 Jan 08 while underway in the Bonny River. Police stated gunmen suspected to be militants attacked a vessel operated by an oil service company, InterOil, in Nigeria's oil producing Niger Delta region, wounding three cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.086666699562784, 4.718333299607536] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-25", - "dateofocc": "2008-01-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "ANGOLA:General cargo ship boarded, robbed 14 Jan 08 at 0144 local time in position 08-42.9S 013-18.8E, Luanda anchorage. Two robbers boarded the vessel from a small boat. They broke open the forecastle paint store and stole ship's stores. The robbers wer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.313333299809074, -8.712499999587919] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-26", - "dateofocc": "2008-01-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "INDIA:Tug and barge boarded, robbed 16 Jan 08 at 1345 local time while underway in position 16-58.17N 082-24.26E, Kakinada OPL. Pirates in a small craft came alongside the vessel towing a barge. They stole ship¿s stores. The alert crew raised the alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.404444400138345, 16.969444400005216] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-27", - "dateofocc": "2008-01-31", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Civilian Yacht", - "descriptio": "ST. VINCENT AND THE GRENADINES:Yacht (CHAKITA) boarded, robbed 23 Dec 2007, Chateaubelair, NW anchorage. Three robbers, armed with machetes and a gun, boarded the vessel with a married couple onboard. They demanded entry into the hatch which resulted in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.250000000061675, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-28", - "dateofocc": "2008-01-31", - "subreg": "22", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "PERU:Bulk carrier boarded, robbed 31 Jan 2008 at 1955 local time while in position 12-01.8S 077-11.8W, Callao anchorage. Four robbers armed with long knives boarded the vessel. The robbers tied up the duty crew and stole their personal belongings. They", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.196666699583659, -12.029999999782945] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-29", - "dateofocc": "2008-01-22", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Fishing vessels", - "descriptio": "SURINAME:Fishing vessels attacked, robbed 22 Jan 2008, off the coast of Coronie. Five pirates attacked the crews of 10 fishing boats in the Atlantic Ocean and robbed them of their engines, fish and fish glue. Three of the boats had returned to the Number", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.200000000033242, 6.066666700303244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-30", - "dateofocc": "2008-01-28", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Civilian Yacht", - "descriptio": "BRAZIL:Yacht (NIRVANA 3) boarded, crewmembers assaulted, robbed late Nov 2007 at 0200, while at anchorage of the Sao Luis Yacht Club, per 28 Jan 2008 reporting. The vessel carrying a husband and wife couple was anchored alone at the mooring when it was b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.308333299864501, -2.529999999925337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-31", - "dateofocc": "2008-01-28", - "subreg": "24", - "hostility_": "Suspicious Approach", - "victim_d": "Civilian Yacht", - "descriptio": "BRAZIL:Yacht (NIRVANA 3) reported suspicious approach late 2007, probably Dec at 0600 near Abrolhos Islands, approximately 87NM from the coast, per 28 Jan 2008 reporting. A small fishing boat with four men on board reportedly chased the vessel. The vesse", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.683333300019797, -18.016666700133953] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-32", - "dateofocc": "2008-01-27", - "subreg": "51", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "MOROCCO:Container ship reported suspicious approach 27 Jan 2008 at 2105 local time, while at berth, Agadir port. Three persons in divers suites, without cylinders, swam to the vessel. The ships watchmen saw the divers and raised the alarm. The suspected", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.621666700298647, 30.420000000375808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-33", - "dateofocc": "2008-01-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "IVORY COAST:Bulk carrier boarded, robbed 30 Jan 2008 at 0145 local time, Abidjan inner anchorage. Two robbers boarded the vessel. They stole ship's store and escaped. The port authorities were informed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.030000000423513, 5.331666700373887] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-34", - "dateofocc": "2008-02-01", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "NIGERIA:Container ship boarded 01 Feb 2008 at 0315 UTC, Berth Tin Can No. 4, Lagos port. Three robbers boarded the vessel and broke into the forward paint locker. The duty officer raised the alarm and the robbers escaped in a waiting boat. Nothing was st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-481", - "dateofocc": "2010-11-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "ARABIAN SEA: Pirate action group sighted in 10-30N 059-04E at 230105Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.066666700218605, 10.500000000235218] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-190", - "dateofocc": "2008-06-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:Chemical tanker boarded 7 Jun 08, Lagos tanker berth. Robbers boarded the vessel from the outboard side. They attempted to open a cargo tank. The duty AB spotted him and the robber immediately jumped overboard and escaped. At the time of the inci", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-191", - "dateofocc": "2008-06-12", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "NIGERIA:Fishing trawler (MAREENA 1) boarded, robbed, crewmember killed, 13NM off the coast, early 2008, per 12 Jun 08 reporting. The vessel was boarded by nine heavily armed men in a speedboat who shot dead the boats cook. The pirates stole everything th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.249999999808267, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-192", - "dateofocc": "2008-05-27", - "subreg": "57", - "hostility_": "Terrorist Attack", - "victim_d": "Shell Oil Facility", - "descriptio": "NIGERIA:MEND claims responsibility for attack on Shell facility, soldiers reportedly killed 26 May 08 at 0100 local time, Awoba flow station in Degema Local Government Area of Rivers State. According to the MEND, they successfully sabotaged another major", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.733333300441643, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-193", - "dateofocc": "2008-05-22", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Unknown Vessel", - "descriptio": "NIGERIA:Nigerian security forces reportedly foiled attack on maintenance crew at Royal Dutch Shell 22 May 08, Niger Delta oilfield. The crew was on its way to the Alakiri oilfield in Okrika district of Rivers state when it was attacked by gunmen, who wer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.089999999792212, 4.730000000147584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-194", - "dateofocc": "2008-06-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MILITARY BOAT", - "descriptio": "CAMEROON:Military boat hijacked 9 Jun 08, Bakassi Peninsula, Gulf of Guinea. Suspected pirates have conducted an attack on a Cameroonian military patrol. Out of nine Cameroonian military officers who were on board the boat conducting a docking maneuver,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.750000000403475, 4.833333300110382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-195", - "dateofocc": "2008-06-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "REFRIGERATED CARGO SHIP", - "descriptio": "CONGO:Refrigerated cargo ship reported attempted boarding 5 Jun 08 at 0415 local time, Poine Noire Anchorage. Two robbers in a canoe approached the vessel. One robber attempted to board the ship with a long pole attached with a hook. As the robber reache", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.883333300203503, -4.733333299686308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-196", - "dateofocc": "2008-06-09", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:Cargo ship reported suspicious approach at 0510 UTC while underway in position 13-04N 047-08E, 31NM off the coast of Yemen, per 9 Jun reporting. One suspicious speedboat traveling at a speed of approximately 20kts reportedly attempted to app", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.133333299769617, 13.066666699630275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-197", - "dateofocc": "2008-06-03", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 3 Jun 08 at 1640 local time/1340 UTC while underway in position 13-16N 047-20E, 21NM off the coast of Yemen. A white speedboat with four persons onboard crossed the front of the vessel at approximately two", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.333333300135848, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-198", - "dateofocc": "2008-06-12", - "subreg": "63", - "hostility_": "LTTE", - "victim_d": "NAVY OUTPOST", - "descriptio": "SRI LANKA:LTTE attacks Navy outpost 12 Jun 08 at 0125 local time, Erukkalampiddi, Mannar Island. A group of Sea Tigers arrived in six boats and launched the attack. The sailors defended their post effectively, causing the attackers to withdraw with their", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.866666699632219, 8.999999999737042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-200", - "dateofocc": "2008-05-29", - "subreg": "63", - "hostility_": "UNKNOWN", - "victim_d": "UNKNOWN", - "descriptio": "SRI LANKA:Sri Lankan military sinks LTTE vessels 29 May 08, off the northern coast. Sri Lanka¿s military sank three to four Tamil Tiger rebel boats in a pre-dawn attack and stated that eight rebels and one soldier was killed, and two soldiers were wound", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.249999999568104, 9.833333300272102] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-44", - "dateofocc": "2007-02-15", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "RED SEA: Yacht reported suspicious approach 15 Feb, at 0935 local time in position 13-27N 043-02E, 15 miles northwest of Al Mukha. A 40-meter yacht sighted two small fishing crafts underway, carrying five persons each. One craft moved 200 miles ahead o", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.033333299906872, 13.449999999566217] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-45", - "dateofocc": "2007-02-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker boarded and robbed 3 Feb, 0245 local time in position 06-03.0N 003-25.5E, Lagos Roads. Five pirates, armed with guns, boarded the tanker drifting 20 miles off the breakwaters. The pirates threatened the duty AB, at forward station by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.424999999759109, 6.050000000406101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-46", - "dateofocc": "2007-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: UN-chartered aid cargo ship hijacked 25 Feb, at 0603 UTC in position 11-50N 051-35E, off the northeastern coast near Bargal. Suspected Somali pirates, armed with AK-47 rifles and rocket-propelled grenade launchers, intercepted the M/V ROZEN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.583333299598792, 11.83333330033679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-47", - "dateofocc": "2007-02-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded 18 Feb, 0100 local time, in position 06-16.2S 108-27.7E at SM Balongan. Four robbers armed with knives boarded the tanker, discharging at a SBM. They entered the engine room. They were noticed by the duty oiler, who inform", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.461666699581201, -6.270000000208199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-48", - "dateofocc": "2007-02-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN SHIP", - "descriptio": "NIGERIA: Ship boarded, robbed 27 Feb, at 0415 local time approximately 5NM off Lagos. Two robbers armed with knives boarded the ship, via the stern. They threatened the watch keepers with knives and stole two mooring ropes. The alarm was raised. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.351666700435771, 6.317777800312854] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-49", - "dateofocc": "2007-02-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Ship boarded, robbed 26 Feb, at 0315 local time in position 06-37.4S 039-32.0E, drifting off Dar es Salaam port. Ten pirates, armed with long knives, boarded the ship from the bow. The pirates tied up the duty AB and asked for ship's store", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.533333300243328, -6.623333300403942] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-50", - "dateofocc": "2007-02-28", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "OMAN: Motor yacht reports suspicious approach 28 Feb, at 0945 UTC in position 21-11.47N 059-33.70E, 51NM northeast of Ras Hilf Masirah. The yacht was contacted on VHF by a passing vessel asking for a weather report and the number of crew on board. Su", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.561666700427963, 21.191111099755062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-51", - "dateofocc": "2006-02-12", - "subreg": "62", - "hostility_": "YACHT", - "victim_d": "SUSPICIOUS APPROACH", - "descriptio": "GULF OF ADEN: Sailing yacht reports suspicious approach 12 Feb, at 0920 local time. While underway, the crew onboard one of the Blue Water Rally group yachts (GYPSY MOTH IV) spotted a small boat, approaching a 53 foot ketch. The Captain tightened the", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.313888900292, 12.449722199858343] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-52", - "dateofocc": "2007-02-28", - "subreg": "22", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU:28 Febuary 2007 at 1500 UTC in position 06-53.06S 81-43.08W, 50NM off Islas Lobos De Afuera, west coast of Peru, a chemical tanker underway detected a small craft at 3NM range on radar on Port Bow. Craft was stationary but started crossing to STBD", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.718055599757633, -6.884444400027178] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-208", - "dateofocc": "2007-08-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: General cargo ship boarded and robbed 18 Aug 07, 0300 local time in position 03-54.47N 098-46.68E, Belawan anchorage. Robbers boarded the vessel and held one AB hostage. They stole from the ships stores and escaped. The AB was released un", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.778055599579034, 3.907777799902135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-209", - "dateofocc": "2007-08-02", - "subreg": "72", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Product tanker boarded 02 Aug 07, 0100 local time, while at berth at Shell Jetty,Sandakan, Sabah. An unknown person boarded the vessel via the gangway. The crew spotted him and chased him. The intruder ran towards the forecastle, jumped ove", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.058333300017352, 5.791666699687312] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-210", - "dateofocc": "2007-08-24", - "subreg": "71", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Product tanker reported missing crewmember 24 Aug 07, 0055 local time in position 03-55.3N 098:46.56E, Belawan anchorage. The vessel waiting at berth, maintained an anti-piracy watch on the forecastle, main deck, and poop deck. The ABs on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.776111099876459, 3.921666699995569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-211", - "dateofocc": "2007-08-27", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "JAMAICA: General cargo ship boarded and robbed 27 Aug 07 in the evening, Kingston outer anchorage. Robbers boarded the vessel unnoticed. They broke into containers and storerooms and stole the ships cargo and stores. They also entered the superstruct", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.776666699624059, 17.881666700195183] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-212", - "dateofocc": "2007-08-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GUYANA: Fishing boat hijacked and robbed 27 Aug 07, Waini River. Five robbers armed with guns boarded the vessel and robbed the crew of their catch of fish. The robbers also stole from the ships stores. They took the crew as hostages to another fishin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.949999999929673, 8.516666700067731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-213", - "dateofocc": "2007-08-23", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EGYPT: General cargo ship boarded 23 Aug 07, 2210 local time, Port Said. Robbers from five boats boarded the vessel during mooring maneuvers, despite prevention attempts by the master and crew. The robbers tried to force open and gain access into stor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.31666669957832, 31.249999999782119] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-214", - "dateofocc": "2007-08-29", - "subreg": "72", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier reported suspicious approach 29 Aug 07 0530 local time, while underway in position 02-30S 118-30E, Makassar Straits. Three white speedboats, traveling at 17kts, approached the vessel from the port and starboard side. The D/O r", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.500000000130626, -2.500000000185196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-215", - "dateofocc": "2007-08-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Container ship reported attempted boarding 28 Aug 07 1030 local time, while underway in position 06-06.9N 098-30.7E. Ten armed men in a speedboat, attempted to board the vessel. Due to the ships higher speed, the pirates could not b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.511666700023852, 6.115000000142857] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-105", - "dateofocc": "2007-05-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Bulk carrier boarded and robbed 3 May at 0315 local time, while berthed in position 01-11.7S 116-46.8E, Balikpapan Port. Robbers boarded the bulk carrier, while the crew and officers were busy, during the carrier's final stages of cargo op", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.780000000038967, -1.194999999796721] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-216", - "dateofocc": "2007-08-21", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PHILLIPINES: Container ship boarded 21 Aug 07 2200 local time, in position 14-35N 120-57E, Manila anchorage. Two robbers armed with long knives boarded the vessel via the anchor chain. The hawse pipe cover, which was installed and secured by three wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.949999999895113, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-217", - "dateofocc": "2007-09-04", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Container ship boarded and robbed 04 Sept 07, at 0001 local time Callao anchorage. Robbers boarded the vessel, tied up the watchman, stole from the ships stores, and from the crews personal effects. The local authorities and agents were informed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-218", - "dateofocc": "2007-09-09", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo Vessel reported suspicious approach 09 Sept 07, at 0850 UTC in position 01-30.N 050-12.5E. The suspicious vessel was at a distance of 7.5NM, bearing 335 degrees, with a speed of about 12kts and a course of 170 degrees. Closest Point of", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.208333300116408, 1.49999999994418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-35", - "dateofocc": "2008-01-18", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "NIGERIA:Tanker boarded, robbed 18 Jan 2008 at 0353 local time, 3NM off Lagos. Robbers boarded the vessel during STS cargo operations, stole ship's stores and escaped. No injuries to crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-36", - "dateofocc": "2008-01-31", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cement Carier", - "descriptio": "EQUATORIAL GUINEA:Cement carrier boarded, robbed 31 Jan 2008 at 0615 local time while underway in position 03-12N 008-36E, 15NM southwest of Bioko Island. Ten armed persons in military clothing boarded the vessel. The intruders identified themselves as N", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.599999999904014, 3.19999999990921] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-37", - "dateofocc": "2008-01-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "General Cargo", - "descriptio": "ANGOLA:General cargo ship boarded, robbed 23 Jan 2008 at 0620 local time in position 08-46.2S 013-16.4E, Luanda inner anchorage. Robbers boarded the vessel and broke open the forward paint locker, and stole ship's stores unnoticed. A search was conducted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.273333299555986, -8.769999999839342] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-38", - "dateofocc": "2008-02-01", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "Product Tanker", - "descriptio": "GULF OF ADEN:Product tanker fired upon 01 Feb 08 at 1510 local time while underway in position 12-55N 051-23.6E. A small wooden fast boat with four men onboard was observed approaching the vessel. The alert crew put their piracy attack plan in place, loc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.393333299745507, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-39", - "dateofocc": "2008-02-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tug Boat", - "descriptio": "GULF OF ADEN:Tug (SVITZER KORSAKOV) hijacked 01 Feb 08 at 1400 UTC while underway in position 12-57N 051-24E. An unknown number of Somali pirates attacked and hijacked the vessel, taking its crew of six hostage. All crewmembers are reportedly unharmed an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.400000000029081, 12.949999999999704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-203", - "dateofocc": "2008-06-07", - "subreg": "73", - "hostility_": "PIRATE ATTACK", - "victim_d": "LIVESTOCK CARRIER", - "descriptio": "INDONESIA:Livestock carrier fired upon 7 Jun 08 at 1000 local time while underway in position 03-18.5N 125-05.8E, vicinity of Kepulauan Sangir. Pirates in a speedboat chased and opened fire on the vessel in ballast enroute to Australia. The master took e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.096666700294577, 3.308333300128538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-40", - "dateofocc": "2008-01-26", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "SOMALIA:Fishing vessel reported hijacked 26 Jan 08, near the village of Seyla, off the Puntland coast. The vessel was reportedly hijacked by six unidentified heavily armed gunmen and taken to Eyl. The spokesman of a group of gunmen who reportedly hijacke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.500000000403134, 11.399999999634815] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-41", - "dateofocc": "2008-02-02", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "SOUTH CHINA SEA:Bulk carrier reported suspicious approach 02 Feb 08 at 0030 local time while underway in position 05-09N 106-51E. Two unlit white-hull speedboats, about five meters long, approached the vessel (IMB).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.849999999708871, 5.150000000107184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-42", - "dateofocc": "2008-02-06", - "subreg": "22", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "PERU:Container ship boarded 06 Feb 08 at 0052 local time at Anchorage no. 1, Callao. Robbers boarded the vessel from a small boat. The duty crew spotted them. The alarm was raised and the crew mustered. The robbers escaped and the authorities were inform", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-43", - "dateofocc": "2008-02-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Security Vessel", - "descriptio": "NIGERIA:Security vessel (PATIENCE) boarded, robbed 11 Feb 08 at Buoy 35, Bonny Channel. The vessel, belonging to the Elf Petroleum Nigeria Limited, was boarded by unknown gunmen and reportedly threw a crewmember overboard. The crewmember was later rescue", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-44", - "dateofocc": "2008-01-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:Product tanker boarded 30 Jan 08 at 2130 UTC in position 06-17.62N 003-24.7E, Lagos anchorage. Four robbers armed with handguns and knives boarded the vessel. The alert crew raised the alarm and the crew mustered. The robbers stole ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.411666699916111, 6.293611100031001] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-45", - "dateofocc": "2008-02-14", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Ship boarded, robbed 14 Feb 08 at 0341 local time while drifting in position 06-43.5S 039-43.8E, 20NM off the coast. Three pirates boarded the vessel from a small wooden boat equipped with an outboard engine. The ship was awaiting berthing instr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.73000000038013, -6.725000000164414] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-199", - "dateofocc": "2008-06-02", - "subreg": "63", - "hostility_": "SRI LANKAN NAVY", - "victim_d": "INDIAN FISHERMEN", - "descriptio": "SRI LANKA:Indian fishermen shot by Sri Lankan Navy 2 Jun 08 2300 local time, near Katchativu. Sri Lankan navy allegedly shot dead an Indian fishermen while he was fishing in a motorized boat along with three others. Police said the fishermen, who suffere", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.283333300404649, 9.283333299939557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-202", - "dateofocc": "2008-06-04", - "subreg": "93", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CONTAINER SHIP", - "descriptio": "MALAYSIA:Container ship reported suspicious approach 4 Jun 08 at 2220 local time while underway in position 03-05.3N 104-31.3E, 60NM off the coast. A small boat approached the vessel from astern at a distance of 1.7NM. The master raised the alarm, increa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.521666699831485, 3.088333299635792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-204", - "dateofocc": "2008-06-03", - "subreg": "71", - "hostility_": "PIRATE BOARDING", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:Container ship boarded 3 Jun 08 at 2000 UTC, while underway in position 03-24N 105-31E, off Anambas. Eight pirates armed with long knives and bars boarded the vessel. The pirates stole the crew¿s cash and property and escaped. No injuries to c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.516666699607356, 3.40000000027544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-205", - "dateofocc": "2008-06-19", - "subreg": "57", - "hostility_": "Pirate Kidnapping", - "victim_d": "Oil Supply Vessel", - "descriptio": "NIGERIA:Oil supply vessel (SOLAR TIDE II), American citizen kidnapped 19 Jun 08, 25NM west of the Pennington River entrance. The kidnapping came after a militant group in speedboats launched an attack on the Bonga flow station. After the attack, the gunm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-206", - "dateofocc": "2008-06-13", - "subreg": "63", - "hostility_": "Pirate Boarding", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:Container ship boarded, robbed 13 Jun 08 at 2354 local time while in position 22-13.8N 091-44.3E, Chittagong Outer Roads Anchorage 'B'. Six robbers in a long wooden boat with an outboard engine boarded the vessel. They stole ship's stores and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.738333299849671, 22.230000000263828] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-207", - "dateofocc": "2008-06-07", - "subreg": "93", - "hostility_": "Pirate Boarding", - "victim_d": "General Cargo Ship", - "descriptio": "VIETNAM:General cargo ship boarded, robbed 13 Jun 08 at 0230 local time while in position 20-53.84N 107-15.66E, Port Campha Inner Anchorage. Robbers in a small boat boarded the vessel. They stole ship's stores from the forecastle deck and escaped. The du", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.261111099831567, 20.897222199688599] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-201", - "dateofocc": "2008-06-09", - "subreg": "73", - "hostility_": "PIRATE ATTACK", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "CELEBES SEA:IMB reported livestock carrier (HEREFORD EXPRESS) fired upon 7 Jun 08 at 1000 local time while underway in position 03-18.5N 125-05.8E, vicinity of Kepulauan Sangi, Indonesia. ReCAAP ISC reported the same incident occurred on 9 Jun 08 at 1454", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [124.555000000447876, 3.899444399591516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-53", - "dateofocc": "2007-03-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ANGOLA: General cargo ship boarded, robbed, 9 Mar at 0335 local time at Luanda Inner Anchorage. Two robbers boarded the general cargo ship forward. They tied up the duty AB and snatched his walkie-talkie and tried to open the hawse pipe cover plate nut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.268055600348021, -8.763888899806204] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-54", - "dateofocc": "2007-03-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN BOAT", - "descriptio": "NIGERIA: Policemen killed, robbed, 12 Mar at approximately 1400 local time in Rivers State. The policemen were escorting a boat belonging to the Nigerian Liquidified Natural Gas (NLNG) to Bonny Island when the boat ran into an ambush laid by alleged pi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.100000000305158, 4.283333299777837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-55", - "dateofocc": "2007-03-08", - "subreg": "63", - "hostility_": "PIRATE", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Chemical tanker boarded, 8 Mar at 0345 local time in position 21-39.95N 088-01.05E, Sagar Anchorage. One robber boarded the chemical tanker at poop deck. The Duty Officer noticed the robber, raised the alarm, and the crew mustered. The robber jum", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.017499999592246, 21.665833300162376] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-56", - "dateofocc": "2007-03-12", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Heavy Lift vessel reported suspicious approach 12 Mar, while underway in position 12-42N 056-44E, east of Socotra, Yemen. A suspicious fishing vessel kept calling on VHF-16 to the heavy lift vessel and asking them to keep clear of their", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.733333300259972, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-57", - "dateofocc": "2007-03-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Port of Mogadishu mortared 18 Mar, Somalia. More than 15 persons were wounded, after unknown gunmen fired a barrage of mortars, at Mogadishu international seaport and surrounding neighborhoods. Three mortar rounds reportedly hit inside the po", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-58", - "dateofocc": "2005-03-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "RESEARCH SHIP", - "descriptio": "SUDAN: Research vessel fired upon 11 Mar, at 1929 local time while underway in position 18-29.02N 038-19.26E, within territorial waters off the southern coast of Sudan. Fifteen men in a 12 m wooden boat armed with AK-47s approached the research ship,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [38.321111099778477, 18.483611100272299] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-59", - "dateofocc": "2007-03-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "RESEARCH SHIP", - "descriptio": "SUDAN: Research vessel fired upon 12 Mar at 1305 local time, while underway in position 18-27.4N 038-17.8E, within territorial waters off the southern coast of Sudan. Men in a wooden boat armed with AK-47s approached the research vessel, which was con", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [38.296666699645812, 18.456666700011453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-60", - "dateofocc": "2007-03-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Product tanker reported attempted boarding, 12 Mar at 0410 local time in position 06-14.2S 108-26.5E, Balongan anchorage. Robbers armed with knives, in an unlit boat, approached the product tanker at anchor and threw a line onboard the ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.441666700353949, -6.236666700238629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-61", - "dateofocc": "2007-03-15", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Container ship boarded and robbed 15 Mar at 1640 UTC, while anchored in position 10-14.4N 107-04.8E, 5NM south of Vung Tau. The robbers boarded the vessel at the forecastle deck. The ships stores were stolen (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.079999999815243, 10.240000000388704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-62", - "dateofocc": "2007-03-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIA: Rig boarded 22 Mar at 0705 UTC while under tow by two tug boats, in position 08-43.0N 076-14.0E, off the southwest coast. Three pirates, in two speedboats, boarded the rig and started preparing to transfer equipment from the rig to their speedb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.233333300440904, 8.716666700433905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-63", - "dateofocc": "2007-03-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded 21 Mar at 1855 UTC , in position 01-41.20N 101-27.90E, Dumai port. Three robbers armed with knives boarded the tanker from port quarter. They entered the accommodation. The Master raised the alarm and the authorities were i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.464999999584222, 1.686666699568036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-64", - "dateofocc": "2007-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker (AI MARU) boarded 14 Mar at 1630 local time, while underway in position 01-07.29N 105-03.66E, approximately 30NM east of Pulau Bintan. The tanker was approached by two speedboats with ten men. The men were dressed in camouflage and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.061111100300025, 1.121388899689862] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-219", - "dateofocc": "2007-08-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "SRI LANKA: Yacht (FLYING GERMANIA II) reportedly attacked 18 Aug 07 at 0750 local time, while underway in position 05-22.58N 78-9.75E, 78 miles southwest of the coast as of 12 Sept 07 reporting. The vessel reported being chased and attacked by a numbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [78.162500000411171, 5.376388900308598] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-220", - "dateofocc": "2007-09-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robber apprehended 09 Sept 07 at 0030 local time, in position 06-15.43S 108-27.23E, Balongan anchorage. Two robbers boarded the vessel and broke into the store locker and stole ships property. They tried to lower the sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.453888900420282, -6.257222199891487] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-48", - "dateofocc": "2008-02-08", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Oil Tanker", - "descriptio": "INIDIA:Oil Tanker boarded 08 Feb 08 at 0030 local time, Kandla anchorage. The duty watchman on the vessel noticed robbers on the forecastle. Upon seeing the alert crew, the robbers jumped overboard and escaped. The padlock of the forecastle store was bro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.03333330015937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-221", - "dateofocc": "2007-09-09", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "SINGAPORE: Yacht (DILAN) reported suspicious approach 09 Sept 07 at 1145 local time, in position 01-54.1N 106-31.49E, 48NM southeast of Pulau Repong. The vessel reported two speedboats carrying an unknown number of men onboard and that were believed t", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.524722199550695, 1.901666699804309] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-222", - "dateofocc": "2007-09-11", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PAPUA NEW GUINEA: Vessel (NOSY) boarded, robbed, skipper missing per reporting 11 Sept 07, in the evening, near Fergusson Island in Milne Bay Province. The captain of the vessel is believed to have jumped overboard while the crew was hospitalized after", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [150.583333300102481, -8.366666699776886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-223", - "dateofocc": "2007-09-13", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: General cargo ship boarded and robbed 13 Sept 07 at 0550UTC, in position 18-33.9N 072-23.0W, Port-au-Prince. Robbers, armed with knives, boarded the vessel unnoticed. The ships general alarm sounded and the crew mustered. The robbers jumped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.565000000230725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-224", - "dateofocc": "2007-07-13", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship (HS DISCOVERER) boarded and robbed 13 Jul 07 at 0320 local time, Santos, per 7 Sept 07 reporting. Four pirates, armed with guns and knives and wearing black masks, came on board and threatened forward security watchman. One boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.333333300312177, -23.966666699561927] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-225", - "dateofocc": "2007-07-21", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BRAZIL: Container ship (HS BERLIOZ) boarded and robbed 21 Jul 07 at 0245 local time, approximately 11 miles offshore Santos, per 7 Sept 07 reporting. Two crew on deck patrol reported to the bridge, via radio, that they sighted two robbers wearing ski m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.333333300312177, -23.966666699561927] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-226", - "dateofocc": "2007-07-11", - "subreg": "36", - "hostility_": "ATTEMPTED BOARDING", - "victim_d": "MERCHANT VESSEL", - "descriptio": "UNITED KINGDOM: Bulk Carrier (BROADGATE) attempted boarding and arrest made 11 Jul 07 at 1650 local time, Liverpool per 7 Sept 07 reporting. The second officer on the gangway watch saw two men coming up the gangway, dressed as stevedores. When the dut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "I" - }, - "geometry": { - "type": "Point", - "coordinates": [-2.983333299854564, 53.416666699990913] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-46", - "dateofocc": "2008-02-04", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "General Cargo", - "descriptio": "TANZANIA:General cargo ship boarded 04 Feb 08 at 0330 local time, Dar es Salaam anchorage area 4. Twelve robbers in a speedboat approached the vessel and two of the robbers boarded the vessel. The alert crew raised the alarm, SSAS was activated and the p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-47", - "dateofocc": "2008-02-11", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 11 Feb 08 at 0540 UTC while in position 13-38.5N 050-22.0E, approximately 70NM off the coast of Yemen. Two suspicious vessels, one with a blue hull, and the other with a red hull, and both with a whi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.366666700027167, 13.641666700345866] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-49", - "dateofocc": "2008-01-29", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Civilian Yacht", - "descriptio": "SRI LANKA:Yacht (COBRA) reported suspicious approach 29 Jan 08 while underway in position 06-00.8N 082-01.9E, 130nm East of Galle. A red fishing boat with five men onboard approached the vessel. The crew fired shots in the air and the suspicious craft mo", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.031666700066467, 6.013333300382385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-50", - "dateofocc": "2008-02-17", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "General Cargo Vessel", - "descriptio": "MALAYSIA:General cargo ship boarded, robbed 17 Feb 08 at 0540 local time while in position 05-48N 118-05E, Berth no. 2, Sandakan port. The duty crew on board the vessel reported that a boat approached from the port bow. One robber was noticed on the fore", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-51", - "dateofocc": "2008-01-20", - "subreg": "97", - "hostility_": "UNKNOWN", - "victim_d": "MV CAPTAIN USKOV", - "descriptio": "The \"MV CAPTAIN USKOV\" departed Nakhodka, Russia for Hong Kong, China on the 15-JAN-2008 with a cargo of 4,535.45 mt steel coils. Communication with the ship was lost since 20-JAN-2008, 0300LT. The last radio contact was in position 31-40N 125-28E, 221 N", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.466666700387464, 31.666666700411668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-52", - "dateofocc": "2008-01-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SINGAPORE PORT OPERATION CONTROL CENTER:THERE WAS A REPORT OF PIRACY ATTACK ON 19-JAN-2008 0354Z AT 01-44.91S 108-00.09E (KARIMATA STRAIT). MARINERS ARE ADVISED TO TAKE PRECAUTION AND INCREASE LOOK OUT FOR SUSPICIOUS SMALL FAST MOVING CRAFT APPROACHING T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.001388899692927, -1.748611100034225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-53", - "dateofocc": "2008-02-01", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "VLCC Kasagisan", - "descriptio": "STRAIT OF MALACCA:VLCC (KASAGISAN) reported suspicious approach 01 Feb 08 at 0940 while underway in position 04-00N 099-35E, per 02 Apr 08 reporting. Six small boats were sighted in close proximity to the vessel. The ship master and crew activated the fi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.583333300251752, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-54", - "dateofocc": "2008-02-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "NIGERIA:General cargo ship boarded, robbed 21 Feb 08 at 0330 local time in position 06-26.3N 003-23.5E, Apapa berth no. 12, Lagos. Two robbers managed to board the vessel in spite of armed navy guards being onboard. The robbers forced open the forecastle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.391666699789539, 6.438333299699138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-55", - "dateofocc": "2008-02-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NIGERIA:Vessel reported attempted boarding 21 Feb 08 at 2340 local time while in position 06-18.4N 003-20.4E, Lagos anchorage. Just before watch change over, the forward duty watchman heard the engine of a motor boat approaching on the portside. He immed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.339999999895781, 6.306666700023186] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-56", - "dateofocc": "2008-02-27", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CIVILIAN YACHTS", - "descriptio": "INDIAN OCEAN:Yachts reported suspicious approach 27 Feb 08 at 0700 UTC/1100 local time, while in position 13-05.6N 057-49.44E, 197NM east of Socotra Island, Yemen. The three vessels were approached by a 60-70ft long liner with at least 16 people on board", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.823888899763176, 13.093333300215647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-208", - "dateofocc": "2008-04-29", - "subreg": "73", - "hostility_": "Pirate Boarding", - "victim_d": "Civilian Yacht", - "descriptio": "INDONESIA:Yacht (CARILLON) boarded, robbed in late April at 0030 while at anchorage in position 07-15.5S 131-23.9E, Pulau Ungar, western side of Tanimbar Islands, per 14 Jun 08 reporting. Two or three men boarded the vessel armed with knives or machetes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [131.398333299891192, -7.258333299700496] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-209", - "dateofocc": "2008-06-18", - "subreg": "26", - "hostility_": "Pirate Boarding", - "victim_d": "Vehicle Carrier", - "descriptio": "HAITI:Vehicle carrier boarded, robbed 18 Jun 08 at 0530 local time while at anchorage in position 18-34.2N 072-24.2W, Port Au Prince anchorage. Robbers boarded the vessel via the anchor chain. They stole ship's stores from the forward station and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40333330024697, 18.569999999587878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-210", - "dateofocc": "2008-06-19", - "subreg": "57", - "hostility_": "unknown", - "victim_d": "Oilfield Production Unit", - "descriptio": "NIGERIA:MEND reportedly attacks Bonga oilfield production unit 19 Jun 08, oilfield OML 212, approximately 63NM offshore. According to a Nigerian Navy spokesman, three people were kidnapped from a private security vessel during the attack. MEND reportedly", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.500000000008868, 5.750000000306443] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-211", - "dateofocc": "2008-06-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "Private Yacht", - "descriptio": "GULF OF ADEN:Privately owned yacht attacked, passengers kidnapped 23 Jun 08, coastal town of Lasqorey. Four foreign tourists (French and Germans) were cruising in the Gulf of Aden when they reportedly ran out of gas. An official said the foreigners were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.250000000331909, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-212", - "dateofocc": "2008-06-21", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 21 Jun 08 at 0610 local time while underway in position 13-08.7N 048-03.7E, approximately 50NM south of Yemen. Two wooden speedboats approached the vessel. One boat crossed the bow, and the other waited on", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.061666699606405, 13.145000000109405] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-213", - "dateofocc": "2008-06-21", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "GULF OF ADEN:Cargo vessel reported suspicious approach 21 Jun 08 at 1015 UTC while underway in position 13-24.2N 048-17.9E, approximately 34NM south of Yemen. One speedboat with at least three persons onboard approached the vessel from the starboard quar", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.298333300171521, 13.403333299928875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-214", - "dateofocc": "2008-06-17", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 17 Jun 08 at 0730 local time/0430 UTC while underway in position 13-29N 048-50E, 34NM south of Yemen. The vessel encountered six suspicious small crafts, with three men in each, converging towards the vess", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.833333299734704, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-215", - "dateofocc": "2008-05-21", - "subreg": "72", - "hostility_": "Pirate Hijacking", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:Product tanker BLUE OCEAN-7 hijacked on 21 MAY 2008, recovered 19 JUN 2008, Makassar Strait. Approximately ten armed pirates boarded and hijacked the vessel transporting crude palm oil from Bone Manjing, Indonesia to Malaysia. After six hours,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.249999999930083, 0.499999999911836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-216", - "dateofocc": "2008-06-13", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Catamaran", - "descriptio": "DOMINICA:Catamaran boarded, robbed 13 Jun 08 at approximately 1030 local time while moored, Roseau. After the passengers turned in for the evening they woke up and discovered all their cash had been removed from their wallets. The incident was reported t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.383333299764672, 15.283333300133563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-65", - "dateofocc": "2007-03-15", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "VIETNAM: Container ship boarded and robbed 15 Mar at 1640 UTC, while anchored in position 10-14.4N 107-04.8E, 5NM south of Vung Tau. The robbers boarded the vessel at the forecastle deck. The ships stores were stolen (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.079999999815243, 10.240000000388704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-482", - "dateofocc": "2010-11-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "ARABIAN SEA: Pirate action group in 13-33N 059-16E at 240350Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.266666699685459, 13.550000000198963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-66", - "dateofocc": "2007-03-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Product tanker reported attempted boarding, 12 Mar at 0410 local time in position 06-14.2S 108-26.5E, Balongan anchorage. Robbers armed with knives, in an unlit boat, approached the product tanker at anchor and threw a line onboard the ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.441666700353949, -6.236666700238629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-67", - "dateofocc": "2007-03-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Product tanker boarded 31 Mar, at 0100 local time in position 06-14.4N 003-14.4E, 12NM southwest of Lagos. The robbers, armed with knives, boarded the product tanker at forecastle anchor using grappling hooks. They successfully cut mooring r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.240000000162297, 6.240000000259329] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-68", - "dateofocc": "2007-03-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL RIG", - "descriptio": "NIGERIA: Oil rig (BULFORD DOLPHIN) boarded and worker kidnapped 31 Mar at 0400 local time, 40 NM off the coast of Nigeria. The gunmen first targeted a support vessel, moored to the Bulford Dolphin rig. The gunmen overpowered the crew, then climbed onto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.666666699603184, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-69", - "dateofocc": "2007-04-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo dhow (MSV SAHIBA) attacked 5 Apr in the afternoon, while underway in territorial waters off the port of Kismayo. Gunmen in speedboats opened fire on the Indian flagged dhow, but then experienced engine troubles allowing the dhow time to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.566666700134647, -0.416666700284225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-70", - "dateofocc": "2007-04-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo dhow (M/V NISHAN) attacked 3 Apr in the evening, while anchored outside the port of Mogadishu. Gunmen in two boats approached the UAE registered vessel and opened fire. The captain contacted the port authorities, who sent in speedboats", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-71", - "dateofocc": "2007-04-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo dhow (M/V NIMATULLAH) hijacked 1 Apr, in the evening, while anchored outside the port of Mogadishu. The UAE registered dhow was hijacked, while awaiting clearance to enter the port of Mogadishu. Sources report that the vessel was seized", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-72", - "dateofocc": "2007-03-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: General cargo ship boarded 29 Mar 0200 local time in position 03:14N-112:58E, at Bintulu general cargo anchorage. Five robbers, armed with knives, boarded the general cargo ship. The second officer spotted them and raised the alarm and alert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.966666700432825, 3.23333329987878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-73", - "dateofocc": "2007-03-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALACCA STRAIT: Bulk carrier reported attempted boarding 28 Mar at 0707 UTC, while underway in position 04-40.0N 099-15.5E. Four men in a 15 meter speedboat with a grey wooden hull were observed drifting across the vessels course line. The speedboat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.258333299769106, 4.666666700437816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-74", - "dateofocc": "2007-03-25", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING BOAT", - "descriptio": "GUYANA: Fishing vessel boarded and robbed 25 Mar at 2330 local time, at the mouth of the Pomeroon River. Five robbers armed with guns, in a speed boat, boarded the fishing vessel and opened fire. They then ordered the fishermen to lie down on the deck", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.750000000430475, 7.666666699635527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-75", - "dateofocc": "2007-04-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Containership robbed, 5 Apr after 2130 local time in position 06-36S 039-36E, 23NM east of Dar Es Salaam entrance channel. The duty officers did not notice any suspicious boat movement on the radars, while drifting off the coast, awaiting be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.600000000007185, -6.600000000047999] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-166", - "dateofocc": "2009-04-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDIAN OCEAN: Yacht (TANIT) hijacked 4 Apr 09, approximately 350NM of Ras Hafun in northeast Somalia. The vessel was boarded and hijacked and reportedly sailing toward Puntland. Further details surrounding the hijacking are still unclear at this time an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.183333299798051, 9.633333299905871] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-76", - "dateofocc": "2007-04-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker reported attempted boarding, 8 Apr at 2300 local time in Lawi-Lawi, Balikpapan Anchorage. Robbers attempted to board a tanker through the hawse pipe, which was secured. The anti-piracy watches were being maintained by crew forward, a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.833333300135109, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-227", - "dateofocc": "2007-03-12", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SIERRA LEONE: Oil Tanker (ATROPOS) boarded and robbed 12 Mar 07 at 0200 local time in position 08-44.60N 013-51.20W, 40NM off Freetown per 7 Sept 07 reporting. Pirates armed with machine guns and knives boarded the vessel, stole cash and valuables and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.853333299837345, 8.7433333001199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-228", - "dateofocc": "2007-09-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Chemical tanker boarded 12 Sept 07 at 0350 local time, Bonny River anchorage. Five robbers, in two motor boars, armed with guns and knives boarded the vessel, from the bow using ropes and hooks. The duty crew spotted the robbers and raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-229", - "dateofocc": "2007-06-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Chemical tanker (SILVIA) boarded and robbed, 09 Jun 07 0400 local time, three miles away from jetty outer roads of Lagos, per 7 Sept 07 reporting. While alongside the jetty, pending shifting to another berth for discharge of cargo, the ship wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.249999999775923, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-230", - "dateofocc": "2007-02-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker (BOW BAHIA) boarded 09 Feb 07 at 0230 local time in position 06-15.00N 003-15.00E, Lagos Roads, per 19 Sept 07 reporting. The bridge security guard observed three robbers boarding on port side aft, during bunkering operations at barge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.249999999775923, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-231", - "dateofocc": "2007-05-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA: Container ship (LISSY SCHULTE) reported containers broken into 17 May 07 at 0036 local time, Mombasa port inner anchorage, per 7 Sept 07 reporting. While making the second round, the deck watchman noticed two containers on Bay #2 open with broke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.645833299718618, -4.063888899744143] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-232", - "dateofocc": "2007-06-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship (ASIAN TRADER) boarded, 30 Jun 07 at 0635 local time, outer cargo ship anchorage, Jakarta, per 19 Sept 07 reporting. While waiting to berth, more than six robbers boarded the ship from two small boats from port and starboard q", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.216666700439362, -5.38333329975228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-233", - "dateofocc": "2007-04-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Container ship (LONDON TOWER) boarded 24 Apr 07 at 1930 local time, in position 03-56.50N 098-45.70E, Belawan Roads, per 19 Sept 07 reporting. The duty watch detected three robbers on the forecastle deck and warned the officer on watch. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.76166670025674, 3.941666700122084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-234", - "dateofocc": "2007-09-12", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:At 850 UTC, a container ship underway sighted a suspicious craft, at a distance of 7.5nm with a speed of 12knots. Ship took evasive manoeuvres to avoid craft but craft altered course and tried to approach the ship. The ship increased speed, alter", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.208333300116408, 1.599999999677607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-235", - "dateofocc": "2007-09-14", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:Deck crew onboard a tanker, at Lagos anchorage at 0330UTC, carrying out STS operations noticed two small boats in the vicinity. Suddenly one of the boats with three persons on board approached the ship. The OOW was informed, alarm raised, and cre", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-236", - "dateofocc": "2007-09-14", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:At 0216 LT, the deck watchman on an anchored tanker noticed a fast boat, with 3-4 robbers, approaching from astern. One robber was seen holding a pole with a hook attached to it. The OOW was informed, alarm raised,crew mustered, and port control", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.354999999765823, 6.275000000256] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-57", - "dateofocc": "2008-02-24", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CIVILIAN YACHT", - "descriptio": "INDIAN OCEAN:Yacht reported suspicious approach 24 Feb 08, while in position 11-55N 061-27.93E, 411NM east of Socotra Island, Yemen. The vessel reported seeing a 60ft fishing vessel behaving quite aggressively, towing fenders. The vessel eventually moved", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.46666670011632, 11.916666699997791] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-58", - "dateofocc": "2008-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONISIA: 29-JAN-2008: 0415 LT: PULAU LAUT ANCHORAGE:Four robbers, armed with knives, boarded a bulk carrier at anchor. Duty crew confronted them, but that did not stop the robbers from stealing stores. 2/O raised alarm, ship's wistle sounded and crew m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.899999999607928, 4.783333300243669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-59", - "dateofocc": "2007-12-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "Container Ship", - "descriptio": "NIGERIA:Container ship (MAERSK VYBORG) boarded, robbed 30 Dec 07, while at berth, Onne port container terminal. Eight armed men boarded the vessel at the bow and moved to the accommodation area, shooting out the windows. The crew reportedly sent distress", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.033333299641924, 4.733333300376955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-60", - "dateofocc": "2008-03-02", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "MOZAMBIQUE:Tanker boarded 02 Mar 08 at 0045 local time Nacala Bay anchorage. Robbers in three boats boarded the vessel. They were in the process of lowering ship's stores when duty crew spotted the robbers. The alarm was raised and the crew mustered. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.666666699803386, -14.541666699954135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-61", - "dateofocc": "2008-03-05", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 05 Mar 08 at 0824 local time/0524 UTC while underway in position 13-46.5N 049-24.5E, approximately 40NM off the coast of Yemen. The vessel was approached on its starboard side by four open skiffs, doing 17", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.408333299550918, 13.775000000048863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-62", - "dateofocc": "2008-03-02", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Semi-Submersible Heavy Lift Ship", - "descriptio": "INDIAN OCEAN:Semi-submersible heavy lift ship reported suspicious approach 02 Mar 08 at 0237 UTC while underway in position 04-40.2N 057-38.9E, 500NM off the coast of Somalia. While at a distance of 5NM, a drifting orange painted dhow with white stanchio", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.648333300428931, 4.669999999767924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-63", - "dateofocc": "2008-03-05", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tug Boat", - "descriptio": "RED SEA:Tug reported suspicious approach 05 Mar 08, while underway in position 15-08N 042-14E, 40NM west of Al Hudaydah, Yemen. The suspicious craft traveling at a speed of 27kts, came from Jabal Zubayr Island towards the tug towing a crane barge. The su", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.233333300240702, 15.133333299634103] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-64", - "dateofocc": "2008-01-29", - "subreg": "73", - "hostility_": "Pirates", - "victim_d": "Civilian Yacht", - "descriptio": "PAPUA NEW GUINEA:Yacht (RAPTOR) boarded 29 Jan 08 in the early morning, Wewak port, per 03 Mar 08 reporting. The crew of four heard unknown voices and discovered that they were boarded from both sides of the vessel by three bandits, armed with a gun, mac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [143.645000000282835, -3.57166670023787] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-217", - "dateofocc": "2008-06-28", - "subreg": "57", - "hostility_": "Attempted Boarding", - "victim_d": "Bulk Carrier", - "descriptio": "GHANA:Bulk carrier reported attempted boarding 28 Jun 08 at 2145 UTC, Takoradi Anchorage. One robber, armed with a long knife, attempted to climb onboard the vessel via the anchor chain. The alert duty watchman saw the robber and informed the duty office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.816666700149653, 4.883333299977096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-218", - "dateofocc": "2008-06-26", - "subreg": "57", - "hostility_": "Pirate Hijacking", - "victim_d": "Passenger Boats", - "descriptio": "NIGERIA:Passenger boats hijacked, passengers killed 26 Jun 08, Bonny. Four vessels were traveling from Bonny en route Port Harcourt when they were attacked in mid-sea by unidentified gunmen. The gunmen robbed all the passengers and reportedly killed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-219", - "dateofocc": "2008-06-30", - "subreg": "61", - "hostility_": "Attempted Boarding", - "victim_d": "Supply Vessel", - "descriptio": "KENYA:Supply vessel reported attempted boarding 30 Jun 08 at 0200 local time, Berth No. 12, Mombasa. The alert crew onboard the vessel, spotted a robber using a rope attached with a hook to gain access to their vessel from the offshore side. As soon as t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.666666699771042, -3.983333299886851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-220", - "dateofocc": "2008-05-04", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:Container Ship (MT HUDSON) reported suspicious approach 4 May 08 at 2255 local time while in position 22-12.9N 091-46.88E, Chittagong Anchorage B, per 1 Jul 08 reporting. Suspected robbers came alongside the ship in an engine-driven wooden boa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.781388899582055, 22.215000000393729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-221", - "dateofocc": "2008-06-26", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Container Ship", - "descriptio": "BURMA:Container ship reported suspicious approach 26 Jun 08 at 0345 local time while at anchorage, Yangon. Six suspicious men in a speedboat attempted to come alongside the vessel. The alert crew raised the alarm and directed the search light towards the", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [96.133333299555659, 16.816666700426083] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-222", - "dateofocc": "2008-06-29", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Tug Boat", - "descriptio": "MALAYSIA:Tug (WECOY 6) boarded 29 Jun 08 at 0130 local time while in position 02-30.6N 104-14E, 10NM south of Pulau Tioman. The vessel, towing barge (CAKRAWALA) was boarded by six men armed with long knives and an axe from a long white speedboat with twi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.2333333004471, 2.50999999959015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-223", - "dateofocc": "2008-06-24", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "LNG Tanker", - "descriptio": "INDONESIA:LNG Tanker reported suspicious approach 24 Jun 08 at 1805 local time while underway in position 01-26.0N 104-36.8E, North of Bintan island. The Duty AB onboard the vessel reported three small suspicious boats at a distance of about 250 meters o", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.613333300153613, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-224", - "dateofocc": "2008-05-09", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:Container ship (KOTA RAJIN) boarded, robbed 9 May 08 at 0350 local time while berth in position 06-57S 110-26E, Port of Semerang, per 1 Jul 08 reporting. Two unknown persons were found in the ships engine room. The alarm was raised and both per", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.433333300108018, -6.950000000014313] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-225", - "dateofocc": "2008-06-14", - "subreg": "28", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CIVILIAN YACHT", - "descriptio": "NICARAGUA:Yacht (FAIRSKY) reported suspicious approach 14 Jun 08, Mosquito Coast. A couple was approached by a 24ft centre console boat with seven men on board. They spoke in Spanish, however the couple did not. The yacht (NATURAL SELECTION), who was ac", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.700000000440582, 14.500000000364594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-226", - "dateofocc": "2008-07-08", - "subreg": "24", - "hostility_": "PIRATE BOARDING", - "victim_d": "SAILBOAT", - "descriptio": "VENEZUELA:Sailboat boarded 8 Jul 08 at 2300 local time, Porlamar, Margarita Island. One female crewmember and a baby were on board at the time. The woman was blindfolded with a towel and tied up with duct tape. The intruder went through and searched for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.850000000325622, 10.949999999935017] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-227", - "dateofocc": "2008-07-04", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHTS", - "descriptio": "VENEZUELA:Yachts boarded, some robbed 4 Jul 08 at 1830 and 2030, while at anchorage, Porlamar, Margarita Island. The first boat was boarded by three men while the owner was on board. He heard noises and woke up and saw the perpetrators leave quickly. Not", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.850000000325622, 10.949999999935017] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-77", - "dateofocc": "2007-03-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker (AI MARU) boarded 14 Mar at 1630 local time, while underway in position 01-07.29N 105-03.66E approximately 30NM east of Pulau Bintan. Ten heavily armed pirates intercepted and boarded the product tanker in two navy grey fiberglass spee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.061111100300025, 1.121388899689862] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-78", - "dateofocc": "2007-01-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SRI LANKA:On 21 January in Kankasanthurai Harbour of the Northern Jaffna Peninsula of Sri Lanka, pirates in an explosive-laden boat rammed a general cargo ship after leaving the harbour. The hull of the ship was damaged and it was towed back to the harbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.099999999967963, 9.599999999936301] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-79", - "dateofocc": "2007-04-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:During the evening hours, off the port of Mogadishu, pirates hijacked an anchored dhow, outside the deep waters of Mogadishu port. Further details are being awaited. Latest information received indicates the vessel was released on 6 April 2007 an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.34083329955655, 2.249999999743579] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-80", - "dateofocc": "2007-04-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Product tanker reported attempted boarding 11 Apr while underway, in position 15-14N 052-25.8E. The tanker reported that two speedboats doing a speed of 18 knots were chasing the vessel with the intent to board. The tanker reported the spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.429999999801566, 15.23333330026685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-81", - "dateofocc": "2007-04-12", - "subreg": "62", - "hostility_": "MERCHANT VESSEL", - "victim_d": "SUSPICIOUS APPROACH", - "descriptio": "GULF OF ADEN: RO/RO vessel reported suspicious approach 12 Apr, at 0600 UTC in position 15-13N 052-57E. The suspicious speedboat was doing approximately 20 knots and was steering in various directions. At one point it proceeded on an apparent collisio", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.95000000039397, 15.216666700194423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-82", - "dateofocc": "2007-04-13", - "subreg": "63", - "hostility_": "MERCHANT VESSEL", - "victim_d": "SUPICIOUS APPROACH", - "descriptio": "ARABIAN SEA: Bulk carrier reported suspicious approach 13 Apr, at 1500 UTC while underway in position 11-57N 060-23E, 350NM East of Socotra Island, Yemen. A speedboat traveling at 20 kts was sighted on radar, at a distance of 8NM. Anti-piracy measure", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.383333300422976, 11.949999999967361] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-83", - "dateofocc": "2007-04-14", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel reported suspicious distress call 14 Apr, at 0430 UTC coming from position 17-25N 57-55E. A call on Ch 16 coming from a fishing vessel, sounding like (FAJA), declared they had no water and was asking for the vessel, in sig", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.9166666996868, 17.416666699726022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-84", - "dateofocc": "2007-04-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIA: Barge boarded and robbed 13 Apr at 0900 local time, while under tow in position 08-20N 076-32E, approximately 36 NM WSW of Trivandrum. Reportedly 100 pirates, some believed to be fishermen, were armed with long knives and boarded the barge. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.533333299641242, 8.333333299773926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-85", - "dateofocc": "2007-03-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Containership boarded 29 Mar, at 0300 local time at Chittagong Roads. Two robbers using grappling hooks with ropes boarded the container ship from a small boat near the stern. The alarm was raised by the deck watchmen. The deck watchmen w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-86", - "dateofocc": "2007-04-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker boarded and robbed 6 Apr, at 0345 local time at Dumai Anchorage. The tanker at anchor was boarded by two robbers, who entered the engine room via the open sky light. The crew in the engine room noticed the two robbers and when they tr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.464444400233162, 1.688888900020743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-237", - "dateofocc": "2007-09-14", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker reported suspicious approach 14 Sept 07 at 0330 UTC in position 06-18N 003-22E, Lagos anchorage. Deck crew onboard the vessel carrying out STS operations noticed two small boats in the vicinity. Suddenly one of the boats with three pe", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-238", - "dateofocc": "2007-09-14", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker reported suspicious approach 14 Sept 07 at 0216 local time in position 06-16.5N 003-21.3E, Lagos anchorage. The deck watchman on the vessel noticed a fast boat, with 3-4 robbers, approaching from astern. One robber was seen holding a p", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.354999999765823, 6.275000000256] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-239", - "dateofocc": "2007-09-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA: Fishing vessel hijacked 20 Sept 07 at 1715 local time, in position 10-46.7N 046-43.3E, 110NM west of Berbera. Pirates hijacked the vessel and anchored it near the village of Raas Shula. All crew including the four Somali security guards have", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.721666700120636, 10.778333300181259] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-240", - "dateofocc": "2007-09-19", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Bulk carrier reported suspicious approach 19 Sept 07 at 0430 UTC in position 010-33.6N 051-41.5E. A blue-hulled vessel with a white superstructure and two masts was drifting, at a distance of 11.5NM from the vessel. The ship altered its cours", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.691666699642838, 1.560000000323839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-241", - "dateofocc": "2007-09-17", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Bulk carrier reported two suspicious approaches 17 Sept 07 at 0250 UTC, while underway in position 02-27.1N 051-56.0E. The vessel sighted the suspicious craft drifting, on the port bow, at a range of 12NM. The boat suddenly increased its spee", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.933333299565163, 2.451666700136855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-242", - "dateofocc": "2007-08-18", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "SRI LANKA: Yacht (FLYING GERMANIA II) reportedly attacked 18 Aug 07, at 0750 local time, while underway in position 05-22.58N 78-9.75E, 78 miles southwest of the coast as of 12 Sept 07 reporting. The vessel reported being chased and attacked by a numb", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [78.162500000411171, 5.376388900308598] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-243", - "dateofocc": "2007-09-12", - "subreg": "61", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: Cargo Vessel reported suspicious approach 12 Sept 07, at 0850 UTC in position 01-30.0N 050:12.5E. The suspicious vessel was at a distance of 7.5NM, bearing 335 degrees, with a speed of about 12kts and a course of 170 degrees. Closest Point o", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.208333300116408, 1.49999999994418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-244", - "dateofocc": "2007-09-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "SIERRE LEONE: Two fishing vessels report coming under attack 23 Sept 07, 18NM off Freetown, Sierra Leone. The distress call was reportedly made by a local agent of a fishing vessel known as LIAN RUN 24, which is licensed to operating in Sierra Leones E", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.200000000441264, 8.46666670020096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-65", - "dateofocc": "2008-03-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER SHIP", - "descriptio": "NIGERIA:Tanker boarded, robbed 02 Mar 08 at 2315 local time while in position 06-18.3N 003-20.54E, Lagos light house anchorage. Two robbers armed with knives attacked, injured, and robbed the duty watchman onboard the vessel. Another watchman nearby info", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.342222200348488, 6.304999999996141] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-66", - "dateofocc": "2008-03-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "INDIA:Vessel boarded 05 Mar 08 at 0105 UTC while in position 22-49.5N 070-02.5E, Kandla anchorage. Upon anchoring at the outer anchorage, Kandla tower informed the master that the security level II was being maintained in the outer anchorage area. Keepin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.041666700191286, 22.825000000206614] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-67", - "dateofocc": "2008-03-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BANGLADESH:Cargo ship boarded, robbed 04 Mar 08 at 0100 local time at the Chittagong Ruby cement jetty. Three robbers armed with long knives boarded the cargo ship while it was at berth. They assaulted and injured a shore-based security guard by cutting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-68", - "dateofocc": "2008-03-09", - "subreg": "91", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER SHIP", - "descriptio": "PHILIPPINES:Tanker reported suspicious approach 09 Mar 08 at 1045 local time while in position 18-03.7N 119-55.44E, off Luzon. The vessel was passing a group of 15 fishing vessels. When about 1.5NM off, three boats left the group and approached the tanke", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.923888899703002, 18.061666700434841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-69", - "dateofocc": "2008-03-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "INDONESIA:Vessel boarded, robbed 08 Mar 08 at 0400 local time, Jetty no. 106, Belawan port. Unauthorized persons diverted the attention of the duty crew and shore watchmen, while three other robbers armed with long knives boarded the vessel from offshore", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.710000000362982, 3.791666699622624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-23", - "dateofocc": "2011-01-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-48N 059-49E at 1039Z on 03 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.816666700018004, 15.799999999597219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-70", - "dateofocc": "2008-03-04", - "subreg": "73", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:A bulk carrier underway was approached from a distance of 3 - 4 mils by about 15 - 20 speed boats at speeds of 30 - 40 knots from all directions. Some came as close as 5 meters from the vessels' stern. Vessel raised alarm, increased speed, crew", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [124.306666700241976, 3.286666699799639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-71", - "dateofocc": "2008-03-13", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "GUYANA:Fishing vessel boarded, robbed, 13 Mar 08, 0830 local time, Bertice River. A boat came up alongside the fishing vessel while it was moored in the Bertice River. Two men, one armed with a cutlass, and the other a gun, jumped onto the vessel and imm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.516666700062387, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-72", - "dateofocc": "2008-03-12", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug Boats", - "descriptio": "NIGERIA:Vessel, two tugboats boarded, crew kidnapped, 12 Mar 08, 1250 local time, Calabar River, Rivers State. Suspected pirates, armed in three speedboats, seized one vessel and two tugboats along with six crewmembers while the vessel and tugs were tran", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-73", - "dateofocc": "2008-03-04", - "subreg": "57", - "hostility_": "Attempted Boarding", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:Bulk carrier reported attempted boarding, 4 Mar 08, 1830 local time, Tincan Island, Lagos. Armed robbers in a speedboat attempted to board the bulk carrier while underway in pilotage waters. The second officer on duty, while astern, alerted the b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-74", - "dateofocc": "2008-03-19", - "subreg": "57", - "hostility_": "Pirate attack", - "victim_d": "Passenger Boats", - "descriptio": "NIGERIA:Passenger boats attacked, 19 Mar 08, along the Bonny Channel near Dawes Island, Rivers State. Militants in two speedboats attempted to rob passenger boats by firing shots but were foiled when Nigeria's Joint Military Task Force (JTF) intervened.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-228", - "dateofocc": "2008-06-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "SAILBOAT", - "descriptio": "VENEZUELA:Sailboat boarded, robbed 28 Jun 08 between 0200 and 0400 while at anchorage, Pampatar, Margarita Island. Five armed men boarded the vessel and tied up the owner for the next two hours while they went through the boat and stole all valuables. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.850000000325622, 10.949999999935017] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-229", - "dateofocc": "2008-06-29", - "subreg": "57", - "hostility_": "SUSPECTED MILITANTS", - "victim_d": "HOUSEBOAT", - "descriptio": "NIGERIA:Houseboat attacked, security operatives killed 29 Jun 08 in the early hours, Oloma area of Rivers State. Suspected militants attacked a houseboat owned by Shell and reportedly killed two security operatives from the boat. The Nigerian military ho", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-230", - "dateofocc": "2008-07-06", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "BAB-EL-MANDEB:Vessel reported suspicious approach 6 Jul 08 at 0745 UTC/0945 local time while underway in position 12-34.3N 043-25.6E, off Perim Island, Yemen. A wooden boat with a blue hull and about 10-15 persons on board approached the vessel from port", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.426666700180419, 12.571666700320236] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-90", - "dateofocc": "2007-04-11", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EGYPT: General cargo ship boarded 11 Apr, Egypt mooring buoy, Port Said. While the crew was busy in mooring operations at the mooring buoy, robbers boarded the general cargo ship using a hook ladder, from a mooring boat. The robbers lowered the gangwa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.299999999681177, 31.266666699679263] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-231", - "dateofocc": "2008-07-09", - "subreg": "63", - "hostility_": "UNKNOWN", - "victim_d": "UNKNOWN", - "descriptio": "SRI LANKA:Sri Lanka Air Force (SLAF) attack LTTE flotilla 9 Jul 08 at 0800 local time, off Mullaittivu coast. An LTTE boat was destroyed in the attack, Air Force Spokesperson Wing Commander Janaka Nanayakkara said, added that a few other vessels were als", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.833333299870219, 9.233333300072843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-232", - "dateofocc": "2008-07-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER VESSEL", - "descriptio": "BANGLADESH:Tanker boarded 6 Jul 08 at 0135 local time while at anchorage in position 21-48N 091-42E, Kutubdia Island. Two robbers using a rope and hook boarded the vessel. boat, which had four other robbers and escaped. No injuries to crew. Nothing repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 21.799999999791282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-233", - "dateofocc": "2008-07-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM:Container ship boarded 1 Jul 08 at 0330 local time, while at anchorage, Nha Be River, Ho Chi Minh. Three robbers boarded the vessel and broke into the forward locker. The alert anti-piracy watch keepers raised the alarm. The robbers jumped overbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.70000000010873, 10.749999999568843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-234", - "dateofocc": "2008-07-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER VESSEL", - "descriptio": "VIETNAM:Tanker boarded, robbed 1 Jul 08 at 0230 UTC while in position 10-15N 107-07E, Vung Tau Anchorage. Robbers boarded and stole ship stores from the forward locker. Anti-piracy watch keepers spotted the robbers and raised the alarm. Robbers escaped w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-235", - "dateofocc": "2008-07-05", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "VENEZUELA:Yacht boarded, robbed 5 Jul 08, while underway, 10 miles from Puerto Santos. A couple was approached by six men in a battered, unmarked pirogue speeding towards them. One man was in a military uniform. As the men approached, they fired a shot.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.533333300264133, 10.633333299938215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-236", - "dateofocc": "2008-07-01", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "VENEZUELA:Yacht boarded, robbed 1 Jul 08 at 1500 local time while in position 10-46.41N 62-16.8W, NNE of Cacao. The vessel was approached from behind by a fast pirogue-type open fishing boat with four Yamaha 75hp outboard motors. The hull was mostly dark", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.27999999983416, 10.773611099600316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-237", - "dateofocc": "2008-07-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "IVORY COAST:Chemical tanker boarded, robbed 5 Jul 08 at 0325 local time, Abidjan Anchorage. The Duty AB onboard the vessel noticed a small boat approaching from the aft. The AB informed the OOW and went to check the other side of the vessel and saw one r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.033333299753622, 5.333333299676895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-87", - "dateofocc": "2007-04-12", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "PHILIPPINES: Unidentified gunmen killed in sea clash with Philippine Marines 12 Apr, off the Southern Island of Baldatal. Three unidentified gunmen were killed during the clash. The troops recovered M-14 and M-16 rifles from the gunmen. Authorities a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.188333299555666, 5.135277799912615] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-88", - "dateofocc": "2007-04-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Containership boarded and robbed 11 Apr at 0530 UTC, while drifting in position 06-32S 039-35E, 28 miles Northeast of Dar Es Salaam. Robbers broke open two containers and stole some cargo bags before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.583333300110041, -6.533333300284085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-89", - "dateofocc": "2007-04-18", - "subreg": "24", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "COLOMBIA: Containership reported suspicious approach 18 Apr at 2320 local time, at the entrance to Cartagena. While disembarking the pilot on the port side, the vessel detected one unlit suspicious boat approaching from the starboard side, at high spee", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.583333299684284, 10.399999999602471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-91", - "dateofocc": "2007-04-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "OMAN: LPG Tanker reported attempted boarding 22 April at 0545Z while underway in position 20-38.7N 059-17.0E, approximately 20NM northeast of Masirah Island. The master reported a white speedboat with three people onboard approached the vessel from the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.283333299757885, 20.644999999902325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-92", - "dateofocc": "2007-04-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: General cargo ship reported attempted boarding 16 Apr, at 1630 local time in position 07-58.36S 116-33.01E, Bennette Bay. Robbers armed with guns in 10 speedboats fired shots and attempted to board the general cargo ship at anchor. The shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.550277799608239, -7.972777799976996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-93", - "dateofocc": "2007-04-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERA: Product tanker boarded and robbed 27 Apr at 0140 UTC, in position 06-17.0N 003:21.7E, Lagos outer anchorage. Two robbers armed, with long knives, boarded the product tanker at anchor. The alarm was raised and the crew alerted. The robbers th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.361666700049398, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-94", - "dateofocc": "2007-04-23", - "subreg": "57", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA: Tanker reported suspicious approach 23 Apr at 0115 local time, in position 06-16.6N 003-15.47E, Lagos outer port limit. The duty officer onboard the tanker at anchor noticed a tug named (CAPTAIN KOLA), approaching the vessel without reason. T", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.257777799836163, 6.276666700283045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-95", - "dateofocc": "2007-05-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FPSO VESSEL", - "descriptio": "NIGERIA: Floating Production Storage and Offloading (FPSO) vessel (MYSTRAS) attacked, hostages taken early 3 May while at anchor 55 NM off the coast from Port Harcourt, Okono Oil Field. The Italian oil firm (Eni SpA) confirmed hostages were taken from t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.333333299741582, 4.066666700238557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-245", - "dateofocc": "2007-09-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Bulk carrier reported robbery 23 Sept 07, Kutubdia anchorage, Chittagong. While carrying out anti piracy rounds, the ship's crew found the forecastle stores door lock broken and ships stores missing. Even though there were a number of shore", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.777777799677153, 22.158333300243498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-246", - "dateofocc": "2007-09-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:At 1950 LT off the port of Palembang, several pirates hijacked a tanker, enroute to Cilacap from Palembang, with a cargo of Palm Oilen. The master reported to TG. Buyut pilot station and they informed the tanker's managers. IMB piracy reporting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.766666699807956, -2.933333299987794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-76", - "dateofocc": "2008-03-05", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Seismic Support Vessel", - "descriptio": "SOMALIA:Seismic support vessel reported suspicious approach, 5 Mar 08, 0030 UTC while in position 08-32N 054-57E, approximately 250NM off the coast of Somalia. While underway, the master onboard the seismic support vessel noticed on radar one suspicious", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.949999999559338, 8.5333333001401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-77", - "dateofocc": "2008-03-09", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "TANZANIA:Container vessel boarded, robbed, 9 Mar 08, 0445 local time while in position 06-31.8S 039-51.5E, approximately 40NM off the coast of Dar Es Salaam. While drifting and awaiting pilot, the deck patrol onboard the container ship spotted one speedb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.858333299826654, -6.530000000054713] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-248", - "dateofocc": "2007-10-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:Passenger vessels boarded, robbed, and personnel injured on 3 OCT 2007 at approximately 0700 local time, Bonny channel. The pirates were said to have hidden in a mangrove and targeted four passenger boats. While some of the pirates boarded the ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.150000000171872, 4.383333300410584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-249", - "dateofocc": "2007-10-04", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF OMAN: Bulk carrier reported suspicious approach 4 Oct 07 at 1040 local time/0640 UTC, while underway in position 25-22N 058-05E, approximately 12.5 NM from the Iranian coastline. The vessel was approached by three suspicious high speed craft. T", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.083333300258687, 25.366666700118003] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-250", - "dateofocc": "2007-09-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Container ship boarded 24 Sept 2007 at 0145 local time while adrift, in position 06-36S 039-35E, Dar es Salaam. While the vessel was awaiting berth, a crewmember onboard the vessel noticed three robbers on the port side deck. The alarm was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.583333300110041, -6.600000000047999] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-251", - "dateofocc": "2007-10-07", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: General Cargo Vessel was boarded and robbed 1 Oct 07 at 2230 local time at Callao anchorage no.1. The duty crew spotted three robbers near the forecastle of the vessel. Officer of the watch raised the alarm. The ships whistle sounded and the cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-252", - "dateofocc": "2007-10-03", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GUINEA: Bulk Carrier boarded and robbed 3 Oct 07 at 0300 UTC, Conakry anchorage. Duty crew on the vessel noticed two robbers stealing from the ship stores on the forecastle. The alarm was raised and the whistle sounded. The crew mustered and directed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-253", - "dateofocc": "2007-09-29", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 29 Sept 07 at 1458 UTC while underway in position 13-52N 050-35E. The vessel noticed an unlit suspicious craft at a distance of 7.2NM via radar. The master altered course and increased speed. The suspicio", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.583333299566448, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-254", - "dateofocc": "2007-09-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "TANZANIA:Vessel boarded, robbed 30 Sept 07 at 0530 local time at 06-46.4S 039-20.9E, Dar es Salaam anchorage. During routine anti-piracy rounds, the aft duty AB discovered the forward AB tied up near the bunker station. He informed the duty officer who r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.348333299747196, -6.773333300004083] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-75", - "dateofocc": "2008-03-19", - "subreg": "57", - "hostility_": "Pirate Attack", - "victim_d": "Security Vessel", - "descriptio": "NIGERIA:Security vessel attacked, 19 Mar 08, late evening, Bonny River in the vicinity of the port of Onne, Nigeria. Around 15 unknown gunmen aboard a speedboat attacked a security vessel as it travelled along the Bonny River towards Onne, a major oil in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.066666700335588, 4.758333299860624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-78", - "dateofocc": "2008-03-18", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker Vessel", - "descriptio": "(UPDATED INFORMATION) GULF OF ADEN:Tanker reported suspicious approach, warning shots fired 18 Mar 08 at 0850 local time/0350 UTC, while underway in position 12-53.2N 050-14.7E, approximately 60NM north of Caluula, Somalia. Two white hull speedboats appr", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.245000000140124, 12.886666700289993] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-79", - "dateofocc": "2008-03-29", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SURINAME:Fishing vessel hijacked, suspected pirates apprehended 29 Mar 08 at approximately 1500 local time, Coppename River. Six fishermen were attacked while operating in the Coppename River by pirates. Six fishermen were captured and subsequently bound", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-55.916666699830785, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-80", - "dateofocc": "2008-01-21", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CIVILIAN YACHT", - "descriptio": "BRAZIL:Yacht boarded, robbed 21 Jan 08 at 0100 local time while at anchorage in position 01-27.43S 48-30.53W, 200 meters from the ferry quay, Port Belem, per 23 Mar 08 reporting. While in bed asleep, the crew of two woke up to two men with pistols to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.50888889971111, -1.457777800346378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-81", - "dateofocc": "2008-03-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GHANA:Chemical tanker boarded 23 Mar 08 at 0055 local time, Tema anchorage. Three robbers boarded the vessel. The duty crew noticed the robbers and informed the bridge. The duty officer raised the alarm and sounded the ship's whistle for crew muster. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.033333300314894, 5.566666699837413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-82", - "dateofocc": "2008-03-21", - "subreg": "57", - "hostility_": "MILITANTS", - "victim_d": "SHIPYARD", - "descriptio": "NIGERIA:Explosion at the NNS Pathfinder Shipyard, three boats and barge destroyed, causalities involved 21 Mar 08 in the early morning, Port Harcourt. At least five sailors were reported dead as a result of an explosion that tore through the naval jetty,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-83", - "dateofocc": "2008-03-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIA:Container ship boarded 19 Mar 08 at 0300 local time, Tanga anchorage. A bandit from a fishing boat boarded the vessel. The bandit jumped overboard as soon as the anti-piracy crew spotted him. The alarm was raised; the crew mustered and searched", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.100000000440673, -5.066666699580253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-84", - "dateofocc": "2008-03-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "SOMALIA:Two World Food Program boats stolen, both recovered, suspects apprehended 24 Mar 08 at midnight local time, while at anchorage, Merca. Two fiberglass boats used by the WFP to train staff members for emergency cases were stolen by unknown bandits.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.833333299605329, 1.633333299647177] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-238", - "dateofocc": "2008-07-16", - "subreg": "57", - "hostility_": "Militants", - "victim_d": "Naval Houseboat", - "descriptio": "NIGERIA:Naval Houseboat attacked 16 Jul 08 at 0200 local time, Bonny, Rivers State. The vessel was guarding oil installation facilities belonging to Shell Petroleum Development, when local sources claimed that more than 30 militants in speedboats attacke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-239", - "dateofocc": "2008-07-15", - "subreg": "57", - "hostility_": "Militants", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:Bulk carrier boarded, robbed 15 Jul 08 at 0315 local time, 0115 UTC, at Port Harcourt. The ship's captain stated that five heavily armed militants boarded the Norwegian vessel. A rescue centre spokesperson stated that there were 8-10 armed pirate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-240", - "dateofocc": "2008-07-12", - "subreg": "63", - "hostility_": "Unknown", - "victim_d": "Fishing Vessel", - "descriptio": "INDIA:Sri Lankan Navy (SLN) reportedly fired upon fishing vessel, fishermen killed 12 Jul 08, early morning, off Point Calimere. According to an injured fisherman on board the vessel at the time, two of his fellow fishermen were killed by the SLN in an", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.400000000035277, 9.833333300272102] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-241", - "dateofocc": "2008-07-11", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "General Cargo Vessel", - "descriptio": "INDONESIA:General cargo vessel boarded, robbed 11 Jul 08 at 0655 local time while in position 06-02.54S 106-53.68E, Jakarta Anchorage. Robbers attempted to board the vessel on four different occasions before finally succeeding. The robbers stole ship¿s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.894722199643638, -6.108888900318391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-242", - "dateofocc": "2008-07-08", - "subreg": "26", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "JAMAICA:Yacht (JACKAROO) reported attempted boarding 8 Jul 08, while underway, passing Point Morant. The vessel was reportedly approached from astern by two heavily armed men in a 20 ft canoe motor boat. They attempted to board on the starboard side, ben", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.416666700044061, 17.88333330039751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-243", - "dateofocc": "2008-07-13", - "subreg": "26", - "hostility_": "Pirates", - "victim_d": "General Cargo Vessel", - "descriptio": "HAITI:General cargo ship boarded, robbed 13 Jul 08 at 2040 local time while in position 18-34N 072-24W, Port Au Prince Anchorage. The duty AB on board the vessel noticed six robbers on the forecastle stealing ships stores. Ship alert was raised and the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.400000000017542, 18.566666700257827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-244", - "dateofocc": "2008-06-21", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "ST. VINCENT & THE GRENADINES:Yacht boarded, robbed 21 or 22 Jun 08 at 0100 local time, Chateaubelair, per 14 Jul reporting. Two couples and a child were victims to an armed robbery attack. Four bandits boarded the vessel armed with knives and machetes de", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.233333300164531, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-245", - "dateofocc": "2008-07-19", - "subreg": "57", - "hostility_": "Pirate Attack", - "victim_d": "Passenger Boat", - "descriptio": "NIGERIA:Passenger boat attacked by unidentified gunmen 19 Jul 08, near Obioku, Nembe, Bayelsa State. A vessel traveling to Yenagoa, the Bayelsa state capital, with reportedly seven passengers including four Joint Task Force (JTF) soldiers was reported mi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.366666700402845, 4.566666699805069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-246", - "dateofocc": "2008-07-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:Bulk carrier boarded, robbed 16 Jul 08 at 0028 UTC while in position 04-40.37N 007-06.23E, Bonny River Anchorage. Eight armed and two unarmed militants boarded the vessel via a barge alongside. They incapacitated the local security guards and ent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.10388889988559, 4.672777799571691] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-247", - "dateofocc": "2008-07-16", - "subreg": "57", - "hostility_": "Pirate Attack", - "victim_d": "Naval Houseboat", - "descriptio": "NIGERIA:Naval Houseboat attacked 16 Jul 08 at 0200 local time, Bonny, Rivers State. The vessel was guarding oil installation facilities belonging to Shell Petroleum Development, when local sources claimed that more than 30 militants in speedboats attacke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-96", - "dateofocc": "2007-03-21", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN: Yacht reported suspicious approach 21 Mar (per 1 May reporting) at 0950 local time, while underway in position 14-03.6N 04907.0E, approximately 17NM off the coast Yemen. Two suspicious vessels approached the yacht underway, at high speed.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.116666699761936, 14.060000000278421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-97", - "dateofocc": "2007-03-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Crude oil tanker (BUNGA KELANA 5) boarded and robbed at anchorage 27 Apr, at 0230 local time in position 01-18.9N 104-14.4E, approximately 4NM southwest of Pulau Mungging. Four robbers armed with long knives boarded the tanker, as it was ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.239999999831355, 1.315000000347368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-98", - "dateofocc": "2007-04-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: LNG tanker (ECHIGO MARU) boarded 25 Apr, at 1830 UTC (26 Apr 0230 local time) while anchoring in position 01-04N 103-31E, off Karimun Island. An oiler noticed four armed robbers in the steering room of the LNG tanker, during anchoring oper", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.516666700441988, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-99", - "dateofocc": "2007-04-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA: Tanker reported attempted boarding 23 Apr, at 2100 UTC in position 06-14S 108-26E, Balongan Anchorage. Five robbers in a boat attempted to board the tanker from the starboard quarter, by using a grappling hook. The duty AB spotted them an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.43333330004333, -6.233333300184484] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-100", - "dateofocc": "2007-04-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SINGAPORE STRAITS: Chemical tanker (SHOKO MARU) boarded and robbed 29 Apr at or between 0435 to 0540 local time, while at anchor in position 01:05.60N - 103:28.20E, off Karimun Island. The crewmembers discovered two boats alongside and a rope hooked on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.469999999905383, 1.093333299827577] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-101", - "dateofocc": "2007-05-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "NIGERIA: Unknown vessel (DLB CHEYENNE) attacked, hostages taken 08 May at 2300 local time 10 km off Escravos, Delta State. The attack reportedly involved almost 40 gunmen on six small vessels. Nigerian military personnel fought the attackers but could n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.94999999974101, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-102", - "dateofocc": "2007-04-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: General cargo ship reported attempted boarding 30 Apr, at 2345 UTC, while drifting in position 06-40S 039-44E, 27 miles ENE of the port, Dar es Salaam. A black hull boat with five pirates onboard attempted to board the vessel. The alarm wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.733333299710182, -6.666666699811856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-103", - "dateofocc": "2007-05-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA: General cargo ship hijacked while underway 3 May, at 0700 local time, 12 miles off Mogadishu. A group of Somali pirates armed with guns boarded the vessel. They hijacked the ship and took it to Hobiyo, (300 miles north of Mogadishu) where it", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.33333330007116, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-104", - "dateofocc": "2007-04-18", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "FISHING BOAT", - "descriptio": "THAILAND: Fishing boat hijacked and recovered 18 Apr, at 1100 local time Chebilang Bay, Satun Province. Approximately six pirates, in a small boat, attacked a fishing boat and hijacked it.All crew of eight were taken hostage and landed at Le - La Islan", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.61666670007844, 7.200000000038585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-24", - "dateofocc": "2010-12-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 18-10N 057-50E at 0623Z on 27 Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.833333300025743, 18.166666700424742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-255", - "dateofocc": "2007-10-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "INDIA:Vessel boarded, robbed 8 Oct 07, in Panaji off the Yermal coast in Udupi district of Karnataka. Unknown persons in two canoes reportedly climbed into a rented boat carrying six scientists from the Waltair-Vishkhapatnam based regional centre Nationa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [73.749999999807585, 15.500000000396938] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-256", - "dateofocc": "2007-10-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "NORTHERN PERSIAN GULF:Container vessel boarded 12 Oct 07 at 0225 local time/2225 UTC while at anchor in position 29-52.0N 048-41.4E, near No. 5 buoy at entrance to Shatt al Arab. One small boat (about 7m) came along the starboard side. Four persons were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.690277800093611, 29.866666699813891] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-257", - "dateofocc": "2007-10-07", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CONTAINER VESSEL", - "descriptio": "INDONESIA:Bulk Carrier reported suspicious approach 7 Oct 07 at 0210 local time while underway in position 01:14.2N-104:59.3E, off Bitan Islands. The alarm was raised and the ship whistle sounded. After mustering the crew, the boat moved away. The Singa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.98833329960371, 1.236666699868238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-258", - "dateofocc": "2007-10-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF OMAN: At 0640Z nine pirates armed with guns, wearing masks in three high speed crafts approached a bulk carrier underway. Master raised alarm and crew mustered on forward and aft stations. Anti-piracy measures implemented. After around two hours", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.083333300258687, 25.366666700118003] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-259", - "dateofocc": "2007-10-10", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "HAITI:Refrigerated cargo vessel boarded, robbed 10 Oct 07 between 2200 and 2300 local time, in position 18-33.4N - 072-23.1W, at sector B and sector J Port Au Prince anchorage. Three perpetrators reportedly boarded the two vessels by climbing up with lon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.385000000147443, 18.556666699744881] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-260", - "dateofocc": "2007-10-19", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MOROCCO:Chemical tanker boarded, 19 Oct 07 at 0230 local time, while at berth in Safi port. Thirty robbers armed with knives boarded the vessel. The crew confronted the robbers at the gangway and the alarm was raised. The robbers threatened the crew with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.250000000178659, 32.366666700344354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-261", - "dateofocc": "2007-10-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FPSO", - "descriptio": "NIGERIA:Floating Production Storage and Offloading FPSO (MYSTRAS) attacked, hostages kidnapped 26 Oct 07, shortly before dawn, 20 miles south of Bonny Island oil and gas export complex, Lagos. The gunmen overpowered an oil industry vessel and used it to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 4.486666700198157] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-262", - "dateofocc": "2007-10-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FPSO", - "descriptio": "NIGERIA:Floating Production Storage and Offloading (FPSO) vessels attacked, support vessel hijacked, oil workers kidnapped, 20 Oct 07 at approximately 2045 local time, off Bayelsa State. The FPSO vessels belong to Shell Petroleum Development Company of N", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.999999999640067, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-130", - "dateofocc": "2009-03-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (TITAN) hijacked 19 Mar 09 at 1430 UTC while underway in position 12-35N 047-21E. Six men in a speed boat armed with AK47s and pistols boarded and hijacked the vessel. The pirates are in control of the vessel and sailing her t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.350000000032992, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2007-263", - "dateofocc": "2007-10-18", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "NIGERIA:General cargo vessel boarded 18 Oct 07 at 0200 local time in position 04-29.2N - 007-10.7E, Bonny Inland anchorage. During heavy rain, robbers armed with long knives boarded the vessel. They tied-up the duty AB and took the OS as hostage to open", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.178333299884969, 4.486666700198157] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-85", - "dateofocc": "2008-04-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CRUISE SHIP", - "descriptio": "GULF OF ADEN:Cruise Ship (LE PONANT) hijacked 04 Apr 08 at 0948 UTC while underway in position 13-20N 050-23E, 80NM north of Caluula, Somalia. The French maritime transport company CMA-CGM and the French government confirmed that the vessel had been seiz", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.383333300099594, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-86", - "dateofocc": "2008-04-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GULF OF ADEN:Fishing vessel hijacked 02 Apr 08 at 1300 local time while in position 11-14.9N 047-15.5E, 10NM off the coast of Somalia. An offshore supply vessel picked up two small boats on radar moving towards a research vessel. The Somaliland Coast Gua", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.25833329988609, 11.248333300007573] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-87", - "dateofocc": "2008-04-02", - "subreg": "62", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 02 Apr 08 at 0220 UTC while underway in position 12-57.4N 049-04.8E, 67NM off coast of Yemen. A high speed motor boat traveling at approximately 25kts suddenly stopped approximately 1 mile off the starboar", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.07999999973822, 12.956666700283222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-88", - "dateofocc": "2008-04-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER VESSEL", - "descriptio": "GULF OF ADEN:Tanker fired upon 01 Apr 08 at 0915 local time while underway in position 13-45.81N 049-18.79E, 36NM off the coast of Yemen. The vessel was later reportedly chased by another five speedboats while in position 14-00.96N 049-42.09E, 41NM off c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.313055600223208, 13.763611100083722] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-89", - "dateofocc": "2008-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "GULF OF ADEN:Merchant ship fired upon 29 Mar 08, while underway in position 14-12.2N 050-44.8E, 66NM off coast of Yemen. Three boats with armed men onboard approached the vessel and attempted to board. The vessel began evasive maneuvers and raised the sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.74666669973368, 14.203333299595045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-90", - "dateofocc": "2008-03-31", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "INDIAN OCEAN:Vessel reported several suspicious approaches 31 Mar 08 at 1020 local time, while underway in position 06-41.7N 057-59.98E, 450NM east of the coast of Somalia. A suspicious fishing vessel was sailing on the opposite course, on the starboard", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.999722199847554, 6.6950000002156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-91", - "dateofocc": "2008-03-19", - "subreg": "63", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "TANKER VESSEL", - "descriptio": "INDIAN OCEAN:Tanker reported suspicious approach 19 Mar 08 at 0312 UTC while underway in position 10-46.8N 066-44.5E, in the Arabian Sea. The suspicious craft was detected about 6NM ahead of the vessel. The vessel altered to keep clear of the craft, howe", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.741666699994653, 10.780000000208304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-248", - "dateofocc": "2008-07-20", - "subreg": "62", - "hostility_": "Pirate Hijacking", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier (STELLA MARIS) hijacked 20 Jul 08 at 0430 local time/0011 UTC while underway in position 13:16N-050:02E, approximately 87NM northwest of Caluula, Somalia. The vessel was enroute Suez when UKMTO Dubai was alerted via INMARSAT tha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.033333300133222, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-249", - "dateofocc": "2008-07-18", - "subreg": "62", - "hostility_": "Suspisious Approach", - "victim_d": "Container Vessel", - "descriptio": "GULF OF ADEN:Container ship reported aggressive skiffs 18 Jul 08 at 0720 UTC while steaming in position 12-47.5N 051-02E, approximately 48NM north of Caluula, Somalia. Two, six meter yellow fiberglass crafts with 5-6 heavily armed men chased the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.033333300165566, 12.791666699913662] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-250", - "dateofocc": "2008-07-15", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "Chemical Tanker", - "descriptio": "GULF OF ADEN:Chemical tanker fired upon 15 Jul 08 at 1030 local time while underway in position 13-31N 049-11E, 131NM northwest of Caluula, Somalia. The vessel was enroute Red Sea to Dahej, India when the master reported two boats in vicinity at the time", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.183333299701019, 13.516666700229393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-251", - "dateofocc": "2008-07-15", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Container Ship", - "descriptio": "GULF OF ADEN:Container ship reported suspicious approach 15 Jul 08 at 0735 local time, 125NM northwest of Caluula, Somalia. Vessel was approached by two speedboats, which finally turned away (Operator, UKMTO).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.449999999831107, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-252", - "dateofocc": "2008-07-12", - "subreg": "63", - "hostility_": "unknown", - "victim_d": "unknown", - "descriptio": "INDIA:Sri Lankan Navy (SLN) reportedly fired upon fishing vessel, fishermen killed 12 Jul 08, early morning, off Point Calimere. According to an injured fisherman on board the vessel at the time, two of his fellow fishermen were killed by the SLN in an", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.833333299837875, 10.749999999568843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-253", - "dateofocc": "2008-07-22", - "subreg": "63", - "hostility_": "Unknown", - "victim_d": "Unknown", - "descriptio": "SRI LANKA:Sri Lankan Navy attacks LTTE boats 22 Jul 08 at 0130 local time, Pulmoddai. An LTTE boat was destroyed and two more were heavily damaged when the Sri Lanka Navy¿s Fast Attack Craft (FAC) engaged a cluster of LTTE boats detected. According to t", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.750000000001592, 8.249999999937643] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-254", - "dateofocc": "2008-07-20", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:Bulk carrier boarded, 20 Jul 08 at 0155 local time, 1NM from buoy no. 2, Belawan Anchorage. The duty watchman onboard the vessel noticed robbers trying to open the watertight door to the forecastle store. He immediately reported to the OOW who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-255", - "dateofocc": "2008-07-13", - "subreg": "91", - "hostility_": "Pirates", - "victim_d": "LPG Tanker", - "descriptio": "PHILIPPINES:LPG tanker boarded 13 Jul 08 at 0250 local time, Manila Quarantine Anchorage. The shore security guard noticed four robbers on the forecastle of the vessel armed with knives and pipes, while the crew was busy preparing to receive bunkers. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.983333299864626, 14.566666700128451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-256", - "dateofocc": "2008-07-23", - "subreg": "51", - "hostility_": "Pirates", - "victim_d": "Personal Craft", - "descriptio": "CANARY ISLANDS:Personal craft boarded, robbed 23 Jul 08, at Pontoon 17, Muelle Deportivo de Las Palmas. Personal craft was docked wide open at the head of pontoon number 17 with lock on the gate. Burglars boarded vessel at night while owners slept, ste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-15.416666699870007, 28.133333300054517] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-257", - "dateofocc": "2008-07-25", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tugboat", - "descriptio": "NIGERIA:Tugboat (HERKULES) hijacked 25 Jul 2008, Bonny River. The vessel was sailing to Akpo Oil Field when armed gunmen in speedboats seized the vessel and its 12-man crew. According to local reports, upon taking control of the vessel, the gunmen steere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-36", - "dateofocc": "2010-02-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 1 Feb 10 at 1150 UTC while underway in position 15-18.2N 052-32E, approximately 200NM northeast of Al Mukalla, Yemen. The captain reported being chased by a vessel and seeing a mother ship in the vicini", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.533333299764422, 15.303333300260135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-37", - "dateofocc": "2010-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship boarded 29 Jan 10 at 0300 local time while anchored in position 06-00.5S 105-56.5E, Ciwandan anchorage. Four robbers in a speedboat approached the vessel from the port quarter. One robber boarded by using a hook attached t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.941666699823429, -6.008333300334584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-38", - "dateofocc": "2010-02-05", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PERU: Bulk carrier robbed 5 Feb 10 at 1935 local time while in Callao anchorage. Robbers armed with guns boarded the vessel via the hawse pipe. The alarm was raised, but the robbers managed to steal ship's stores before escaping. The incident was report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.190000000199461, -12.02333330039869] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-39", - "dateofocc": "2010-02-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (ARIELLA) fired upon 5 Feb 10 at 0600 UTC while underway in position 13-00N 048-45E, approximately 93NM southwest of Al Mukalla, Yemen. Six armed men in a speedboat opened fire on the vessel while underway. The vessel raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.749999999898421, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-40", - "dateofocc": "2010-02-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BARGE/TUG BOAT", - "descriptio": "BAY OF BENGAL: Barge (RAPID 3312), tug (TOPNICHE 7) robbed 10 Feb 10 at 1137 local time while underway in position 20-24.61N 092-15.56E, approximately 40NM northwest of Sittwe, Burma. Two robbers in a boat named (MAYER DUAI) boarded the barge and stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [92.25944440021874, 20.410277800114329] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-41", - "dateofocc": "2010-02-06", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA: Tug (ASTA) missing, reportedly hijacked 6 Feb 10 while underway in position 02-59.4N 104-00.6E, off Pulau Tioman. The tug, towing the barge (CALLISTA) departed Singapore on 5 Feb 10. At about 0130 on 6 Feb 10, the vessel (AGENT) reported los", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.009999999724982, 2.98999999992941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-42", - "dateofocc": "2010-02-15", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "LANDING CRAFT", - "descriptio": "PORT AU PRINCE, HAITI: Robbers atempted to board an anchored landing craft. The alert master and duty crew managed to prevent the robbers from boarding the vessel. The crew and vessel safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.371666700304445, 18.582222199654211] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-43", - "dateofocc": "2010-02-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VISHAKHAPATNAM ANCHORAGE, INDIA: Three robbers using ropes and a hook boarded an anchored LPG tanker from astern. When sighted the OOW raised general alarm and duty security patrol rushed to the poop deck. Robbers escaped with stolen ship's stores. Maste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.359999999911508, 17.628333299908149] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-44", - "dateofocc": "2010-02-13", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CONAKRY, GUINEA: Pirates armed with rifles boarded a chemical tanker underway. Master raised alarm, crew locked all access doors, mustered on bridge and hide in a safe place. Pirates tried to gain entry into the locked accommodation door but were unsucce", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.533333299643516, 9.189722199914797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-45", - "dateofocc": "2010-02-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIA: Tanker boarded 14 Feb 10 at 0835 local time while anchored in Vishakhapatnam. One boat with three robbers approached the vessel from the port side. When the boat did not cross the bows the master raised the alarm. As the crew went forward to inv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.350000000297882, 17.616666700092196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-46", - "dateofocc": "2010-02-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Vessel (BARAKAALE I) fired upon 21 Feb 10 while underway in position 13-07N 047-37E, 120NM southwest of Al Mukalla, Yemen. Master reported coming under fire from at least one skiff with men onboard. During the attempted boarding, the mast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.61666670016308, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-47", - "dateofocc": "2010-02-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM: Bulk carrier boarded 24 Feb 10 at 0240 local time while anchored in Vung Tau. Three robbers boarded the vessel using ropes with hooks and attempted to enter the forecastle store. The duty crew spotted them and reported to the officer on watch w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-436", - "dateofocc": "2008-11-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 9 Nov 08 at 0940 UTC while underway in position 13-08N 047-01E. Two armed blue speedboats began pursuing the vessel. The vessels alarm was raised and all crew mustered. The speedboats then abandoned it's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.016666699963821, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-437", - "dateofocc": "2008-11-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach on 11 Nov 08 at 0715 local time while underway in position 12-45N 046-04E. The vessels bridge team detected two suspicious speedboats with three to four people armed with guns onboard each boat. Al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.066666699798191, 12.74999999963353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-438", - "dateofocc": "2008-11-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach on 14 Nov 08 at 0635 UTC while underway in position 13-21N 047-18E. The deck watch reported three small speedboats approaching from the port side approximately nine miles out with about three pe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.300000000166278, 13.349999999832789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-439", - "dateofocc": "2008-11-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon on 13 Nov 08 at 0630 local time while underway in position 13-28N 049-21E. Six pirates in a fast speedboat approached the vessel. The master raised the alarm, took evasive maneuvers, and the crew activated fire hose", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.35000000009768, 13.46666670036268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-440", - "dateofocc": "2008-11-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Oil tanker reported suspicious approach on 12 Nov 08 at 1610 local time while underway in position 12-33N 045-10E. Vessel reported being chased by four speedboats with approximately two to four pirates onboard each, armed with automatic we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.166666700398594, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-441", - "dateofocc": "2008-11-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Oil tanker reported suspicious approach on 14 Nov 08 at 0325 UTC while underway in position 12-32N 045-21E. A small boat with four persons onboard approached the tanker from 2NM away with a speed of 25kts. Master ordered rocket parachutes", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.349999999968304, 12.533333300269476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-451", - "dateofocc": "2008-11-13", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CARRIER", - "descriptio": "COLOMBIA: Cement carrier boarded and robbed on 13 Nov 08 at 1000 UTC while at anchor, Cartagena. Robbers armed with a gun and knives boarded the vessel, tied up one crewmember and stole ships stores. The coast guard boarded vessel for investigation (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.583333299684284, 10.399999999602471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-442", - "dateofocc": "2008-11-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (TANYO 8) hijacked 14 Nov 08 early morning while off the coast of Kenya. The Chinese vessel was hijacked by pirates armed with rocket launchers and automatic weapons while it was fishing off the coast of Kenya, according to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.850000000401792, -4.850000000216198] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-443", - "dateofocc": "2008-11-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 13 Nov 08 while underway in position 04-51S 044-51E, off the coast of Kenya. Master of the vessel reported to RCC Halifax that they were being chased and fired upon by pirates in a speedboat. The master increased", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.850000000401792, -4.850000000216198] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-444", - "dateofocc": "2008-11-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "REEFER VESSEL", - "descriptio": "INDIAN OCEAN: Reefer vessel fired upon 10 Nov 08 at 1005 UTC while underway in position 01-12N 050-41E, approximately 250NM off the coast of Somalia. Armed pirates in two white speedboats approached the vessel from astern. One boat approached the ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.850000000401792, 1.199999999844522] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-445", - "dateofocc": "2008-11-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BANGLADESH: Oil tanker boarded 7 Nov 08 at 2055 local time in Chittagong anchorage A. Five robbers boarded an oil tanker at anchorage. They jumped overboard with sighted by the ship¿s crew. Nothing was reported stolen and no injury to the crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-123", - "dateofocc": "2009-03-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported attempted hijacking 1 Jan 09 at 1730 local time while underway in position 14-36N 051-07E, per 18 Mar 09 reporting. Eight men in a speed boat armed with machine guns and an RPG approached the vessel. The men in the speed bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.116666699826567, 14.600000000098021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-124", - "dateofocc": "2009-03-08", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship robbed 8 Mar 09 at 1255 local time while anchored in Vung Tao. Robbers boarded the vessel unnoticed and got access into the paint locker. The ship's crew, returning to work at the forecastle, noticed a boat leaving the ship's sid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-125", - "dateofocc": "2009-03-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 22 Mar 09 at 0840 UTC while underway in position 02-26S 051-11E, approximately 395NM southeast of Mogadishu, Somalia. Seven men in two white colored speed boats chased the vessel armed with AK47s and RPGs. They op", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.18833330002218, -2.446666700089054] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-126", - "dateofocc": "2009-03-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "380 NM OFF MOGADISHIU, SOMALIA: While underway a bulk carrier was chased by two boats with pirates armed with automatic weapons and RPGs. Pirates fired upon the vessel. Vessel increased speed, made evasive maneuvers. Later, the boats aborted the attempt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.216666700427027, -2.233333300055108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-127", - "dateofocc": "2009-03-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "INDIAN OCEAN: Vehicle carrier fired upon 22 Mar 09 at 1307 UTC while underway in position 02-46S 052-11E, approximately 500NM southeast of Mogadishu, Somalia. Two speed boats with pirates armed with automatic weapons and RPGs chased and opened fire on t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.183333299798051, -2.766666700315227] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-128", - "dateofocc": "2009-03-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "INDIAN OCEAN: Dhow (AL RAFIQUEI) boarded, robbed 21 Mar 09 at 0600 local time while underway in position 04-11N 050-25E, approximately 130NM east of Hobyo, Somalia. Men in speed boats chased the dhow and then boarded it. They stole ship's stores and cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.416666699893881, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-129", - "dateofocc": "2009-03-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 20 Mar 09 at 1002 local time while underway in position 07-51S 045-04E, approximately 330NM east of Dar es Salaam, Tanzania. Five armed men in a boat chased the vessel while underway. The captain raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.075000000251691, -7.863333300156228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-131", - "dateofocc": "2009-03-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "INDIAN OCEAN: Cargo vessel fired upon 23 Mar 09 at 1740 local time while underway in position 02-28N 050-49E, approximately 215NM off the coast of Somalia. Vessel sighted a mother ship vessel ahead launching two skiffs with lengths about 6-7m. The men o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.816666699726966, 2.466666700006954] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-132", - "dateofocc": "2009-03-25", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "HAITI: Chemical tanker boarded 25 Mar 09 at 0020 local time while anchored in Port au Prince outer anchorage. A watchman onboard the vessel spotted two robbers armed with knives on the forecastle deck. The alarm was raised and the crew mustered. Upon in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40416670017288, 18.572222200040585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-133", - "dateofocc": "2009-03-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "BAB-EL-MANDEB: Vessel reported suspicious approach 20 Mar 09 at 0600 UTC while underway in position 13-42N 042-27E. Men in two speed boats armed with machine guns chased the vessel. The boats crossed the ship's bow and came onto the port side. The capt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.449999999604756, 13.699999999799104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-134", - "dateofocc": "2009-03-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 20 Mar 09 at 0600 local time while underway in position 13-07N 049-12E. A suspicious craft was sighted by a nearby tanker and approached her port bow heading towards the stern. The tanker contacted coali", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-326", - "dateofocc": "2009-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 4 Jul 09 at 1800 UTC while underway in position 14-51.3N 058-29.8E, approximately 220NM southeast of Sawqirah, Oman. The master of the vessel reported that one small boat approached the vessel dur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.496666699759487, 14.854999999688062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-327", - "dateofocc": "2009-07-12", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship robbed 12 Jul 09 at 0330 local time while anchored in position 10-16.2N 107-04.6E, Vungtau outer anchorage. Robbers boarded the vessel and stole ship's stores before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.076666699585871, 10.270000000128846] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-328", - "dateofocc": "2009-07-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "OFF TANJONG STAPA, MALAYSIA: Six robbers armed with long knives in a boat came alongside and boarded a product tanker at anchor. The robbers tied up the Master and crew members. They stole ship's and crew properties. During the incident the Malaysian Mar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.153888900191305, 1.298888899801284] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-329", - "dateofocc": "2009-07-23", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PUERTO LIMON ANCHORAGE, COSTA RICA: Two robbers in a boat boarded a container vessel at anchor. Crew noticed one robber trying to transfer stolen ship's stores into the boat. The robber escaped with stores by jumping into water. The ship and crew are saf", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.008333300126765, 9.975000000285718] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-330", - "dateofocc": "2009-07-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "75NM OFF MIRI, SARAWAK, MALAYSIA: Twelve pirates, in a seven meter long, unlit boat approached a container ship underway. They chased the ship and tried to get alongside. Alarm raised, took evasive maneuvers, alerted crewmembers and master fired rocket f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.750000000169507, 4.654999999897825] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-331", - "dateofocc": "2009-08-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BONNY RIVER PORT HARCOURT NIGERIA: Heavily armed pirates in two speedboats, seven in each boat approached and opened fired on a bulk carrier at anchor. The vessel immediately heaved anchor and proceeded to open seas for safety reasons. One crew member in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.621944399843699, 3.924444399974561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-332", - "dateofocc": "2009-07-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BRAZIL: Bulk carrier robbed 27 Jul 09 at 2355 local time while anchored in position 01-05.41S - 048-29.08W, Mosqueiro anchorage. Robbers armed with knives boarded the vessel at anchor. They tied up the watch officer's hands and stole ship's stores befor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.484722200328576, -1.090277800381671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-333", - "dateofocc": "2009-07-24", - "subreg": "37", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SWEDEN: Vessel (ARCTIC SEA) boarded 24 Jul 09 at approximately 0300 local time while underway in Swedish territorial waters. Eight to twelve armed men allegedly wearing masks and uniforms bearing the word \"police¿ boarded the vessel using a black rubbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-6.215277799760543, 48.39194440019628] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-334", - "dateofocc": "2009-08-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "GULF OF ADEN: Vessel fired upon 4 Aug 09 at 1310 UTC while underway in position 13-32N - 048-50E. Eight men in a 7-8m long, blue wooden boat armed with automatic weapons approached the vessel from the stern and opened fire. The general alarm was sounded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.833333299734704, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-336", - "dateofocc": "2009-08-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "LPG TANKER", - "descriptio": "PUNTA ARENA ANCHORAGE GUAYAQUIL, ECUADOR: Robbers approached and boarded a launch carrying six ships (LPG taker anchored) crew ashore. The 10 robbers wearing masks and armed with guns fired warning shots and boarded the boat. They stole crew personal bel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.933333299779974, -2.166666700115968] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-337", - "dateofocc": "2009-08-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: Vessel (SATURNAS) boarded, crewmembers kidnapped 3 Aug 09 while operating in the vicinity of the Escravos River in the western Niger Delta. The Lithuanian-flagged vessel came under attack by an unidentified group in a high-speed boat, according", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.07361110040523, 5.473888899913845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-338", - "dateofocc": "2009-08-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon 3 Aug 09 at 1500 UTC while underway in position 13-46.5N 050-42.3E. Ten heavily armed pirates in two boats fired upon the vessel underway. The pirates failed to board the vessel due to evasive action taken by the m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.705000000352811, 13.775000000048863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-268", - "dateofocc": "2008-07-31", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "VIETNAM:Chemical tanker boarded, robbed 31 Jul 08 at 2015 local time while in position 10-16.36N 107-02.85E, Vung Tau Anchorage. Robbers boarded the vessel. The D/O raised the alarm and the crew rushed to the forecastle. Upon seeing the crew alertness, t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.047499999946865, 10.272777799932612] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-269", - "dateofocc": "2008-07-25", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM:Bulk carrier boarded, robbed 25 Jul 08 at 2130 local time, Go Dau. Two robbers armed with long knives boarded the vessel. They broke open the padlocks to the forward store. The duty crew noticed the open stores and raised the alarm, the robbers e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.7333333000783, 10.450000000368505] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-270", - "dateofocc": "2008-08-09", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "SAILBOAT", - "descriptio": "GUATEMALA:Sailboat boarded, robbed, US passenger killed 9 Aug 08, in the evening while at anchorage, Lake Izabal. Four perpetrators armed with long machetes, boarded the vessel, possibly swimming from shore. The perpetrators assaulted the couple and dema", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-89.099999999568354, 15.433333299733704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-271", - "dateofocc": "2008-08-12", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "GULF OF ADEN:Cargo vessel (THOR STAR) hijacked 12 Aug 08 at 1418 UTC while underway in position 13-07.35N 050-10.75E, 75NM northwest of Caluula. A Yemeni naval official reportedly stated that the ship sent out a distress signal after coming under heavy f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.179166700302119, 13.122499999854654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-272", - "dateofocc": "2008-08-11", - "subreg": "63", - "hostility_": "N/A", - "victim_d": "N/A", - "descriptio": "SRI LANKA:Sri Lankan Army battle LTTE, casualties, 11 Aug 08 at 1630 local time, Adampankulam area. The Media Centre for National Security (MCNS) stated that the troops monitoring a flotilla of five to six boats of the LTTE had directed artillery attacks", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.249999999568104, 9.2999999998367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-273", - "dateofocc": "2008-08-02", - "subreg": "63", - "hostility_": "N/A", - "victim_d": "N/A", - "descriptio": "SRI LANKA:Sri Lankan Navy raids LTTE camp 2 Aug 08, evening, Iranathivu Island. Sri Lanka Navy's Rapid Action Boats Squadron (RABS) and Special Boats Squadron (SBS) destroyed an LTTE make-shift camp, destroying one LTTE boat, killing four LTTE cadres and", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.000000000234536, 7.999999999704698] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-274", - "dateofocc": "2008-08-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "INDONESIA:Product tanker boarded 06 Aug 08 at 2330 local time, Belawan port. Robbers boarded the vessel while at anchorage by climbing the anchor chain. They opened the forecastle store and attempted to steal ship¿s stores. The duty crew noticed them an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-275", - "dateofocc": "2008-08-13", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "REFRIGERATED CARGO SHIP", - "descriptio": "ECUADOR:Refrigerated cargo ship boarded, robbed 13 Aug 08 at 0130 local time, Outer Anchorage, Guayaquil. Duty watchman onboard the vessel spotted two robbers hiding behind a 40 container. They had stolen the ships stores from the paint locker and lowere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.016666700340352, -2.416666700348912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-276", - "dateofocc": "2008-08-13", - "subreg": "22", - "hostility_": "Pirates", - "victim_d": "Unknown Vessel", - "descriptio": "PERU:Ship boarded, robbed 13 Aug 08 at 0005 UTC while in position 12-00.8S 077-12.1W, Callao Anchorage. The duty crew noticed robbers boarding the vessel. The alarm was raised and the crew mustered. The robbers overpowered a duty crewmember and tied him", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.149999999946317, -12.04999999990946] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-277", - "dateofocc": "2008-08-15", - "subreg": "57", - "hostility_": "Unknown", - "victim_d": "Unknown", - "descriptio": "NIGERIA:Nigerian Navy (NN) clash with unidentified gunmen 15 Aug 08, Niger Delta, southern Rivers State. Two naval vessels were on patrol, heading to a base near a Royal Dutch Shell PLC installation when attackers in speedboats fired on their convoy, pro", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.10000000024047, 5.333333299676895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-279", - "dateofocc": "2008-08-21", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Cargo Vessel", - "descriptio": "GULF OF ADEN:Bulk cargo reported suspicious approach 21 Aug 08 at 0920 local time/0620 UTC, while underway in position 13-15.8N 048-52.8E, approximately 50NM off the Yemen coast. The vessel detected two boats. The first boat was of dark grey without a su", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.880000000271309, 13.26333329994236] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-446", - "dateofocc": "2008-11-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier boarded, robbed 5 Nov 2008 at 0300 local time in position 03:40S ¿ 114:26E, Taboneo anchorage, Kalimantan. Four robbers armed with catapults, knives, and hacksaws boarded a bulk carrier at anchor. They threatened the duty crew w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.666666699714824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-447", - "dateofocc": "2008-11-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "REEFER VESSEL", - "descriptio": "Bonny Outer Road, Nigeria: Six robbers armed with automatic weapons opened fire at a refrigerated cargo ship at anchor. Robbers in a speedboat circled 4 times around the ship and left. No injury to crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.833333299981007, 4.133333300177696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-448", - "dateofocc": "2008-11-13", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CEMENT CARRIER", - "descriptio": "Robbers armed with gun and knives boarded a cement carrier at anchor. They tied up one crewmember and stole ship's stores. Coast guard boarded vessel for investigation.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.583333299684284, 10.399999999602471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-449", - "dateofocc": "2008-11-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "Gulf of Aden: Armed pirates attacked and hijacked a chemical tanker underway. Further details are awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.714166699735927, 12.844722200334274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-450", - "dateofocc": "2008-11-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "Singapore Straits: Five pirates armed with long knives boarded a tug towing a barge underway. Pirates stole personal belongings and escaped. No injury to crew. Master informed port authority.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.868333299711367, 1.18472220029895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-453", - "dateofocc": "2008-11-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GULF OF ADEN: Fishing vessel (EKAWATNAVA 5) was hijacked on 18 Nov 08 at 0600 UTC while underway in position 14:17.15N-050:15.7E. There are twelve crewmembers onboard (IMB). UPDATE: The fishing vessel was destroyed and subsequently sunk later the same da", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.261666700037267, 14.285833300229456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-454", - "dateofocc": "2008-11-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (DELIGHT) was hijacked on 18 Nov 08 at 0600 UTC while underway in position 14:23N-051:05E. Further details on this incident are awaited (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.08333330003228, 14.383333299834646] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-455", - "dateofocc": "2008-11-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (CHEMSTAR VENUS) hijacked on 15 November at 0915 UTC while underway in position 12-51N 046-43E. At 0907 UTC the ship transmitted VHF distress call stating armed pirates were attacking their vessel. At 0910 UTC the ship transmitted t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.716666699864163, 12.850000000266277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-456", - "dateofocc": "2008-11-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 11 Nov 08 at 0415 UTC while underway in position 13-50N 049-22E. Vessel was approached parallel by one boat with five persons onboard at a speed of approximately 8 kts. A second boat approached from the north at approxima", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.366666699994823, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-457", - "dateofocc": "2008-11-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 10 Nov 08 at 1505 UTC while underway in position 13-38N 048-44E. The vessel was approached and chased by a fast boat from the starboard side that tried to position itself along the side of the v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.733333300001277, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-458", - "dateofocc": "2008-11-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 14 Nov 08 at 2134 UTC while underway in position 04-25S 048-58E. Pirates heavily armed with automatic weapons and RPGs in two speedboats chased and fired upon a container ship underway. The master increased speed,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.966666700161738, -4.4166667004136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-459", - "dateofocc": "2008-11-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "SINGAPORE STRAIT: Tug (MAJU DAYA 3) and barge (MARCOPOLO 188) boarded and robbed on 10 Nov 08 at 1730 UTC while underway in position 01:11N ¿ 103:52E, Batu Berhenti. The tug and barge were boarded by five robbers armed with parangs. The robbers took th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.866666700408359, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-135", - "dateofocc": "2009-03-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (BOW ASIR) hijacked 26 Mar 09 at 0745 UTC while underway in position 02-26S 048-11E, approximately 315NM southeast of Mogadishu, Somalia. Armed pirates boarded and hijacked the vessel. There are 23 crew members onboard. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.183333299668675, -2.433333300421339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-136", - "dateofocc": "2009-03-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (NIPAYIA) hijacked 25 Mar 09 at 1503 UTC while underway in position 01-42N 053-41E, approximately 370NM east/southeast of Hobyo, Somalia. Armed pirates boarded and hijacked the vessel while underway. Nineteen crewmember are being he", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.683333300296226, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-137", - "dateofocc": "2009-03-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "RESEARCH VESSEL", - "descriptio": "INDIAN OCEAN: Research vessel reported suspicious approach 25 Mar 09 at 0730 UTC while underway in position 00-24N 056-01E, approximately 600NM east of Mogadishu, Somalia. Two speed boats chased the vessel while underway. The boats eventually abandoned", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.016666700254859, 0.400000000178409] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-138", - "dateofocc": "2009-03-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 25 Mar 09 at 0506 UTC while underway in position 07-55S 046-52E, approximately 440NM east of Dar es Salaam, Tanzania. While underway, vessel was chased and fired upon by two speed boats from either side of the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.866666700363623, -7.916666700077087] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-139", - "dateofocc": "2009-03-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CATAMARAN", - "descriptio": "INDIAN OCEAN: Catamaran (SERENITY) hijacked Mar 09 based on 25 Mar 09 reporting while en route Madagascar from Seychelles. The vessel was transiting to Madagascar on 28 Feb 09 but had not reported its whereabouts since its departure. One of the hostages", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.266666700261396, 6.916666699836071] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-140", - "dateofocc": "2009-03-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship robbed 15 Mar 09 at 0715 local time while anchored in Chittagong anchorage. Robbers boarded the vessel and broke open the rope locker, stealing ship¿s stores. They were not spotted by the crew (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-141", - "dateofocc": "2009-03-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker reported attempted boarding 26 Mar 09 at 2220 local time while at Lagos anchorage. The vessels crew noticed a boat with several persons armed with machine guns, RPGs, and machetes attempting to climb onboard with the use of a ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-142", - "dateofocc": "2009-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker reported attempted boarding 29 Mar 09 at 2123 local time while underway in position 11-50N 044-53E. Men in a speed boat approached and attempted to board the vessel by using metal hooks and ropes. A crew member on watch hea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.883333300371362, 11.83333330033679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-143", - "dateofocc": "2009-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GERMAN NAVY TANKER", - "descriptio": "GULF OF ADEN: German navy tanker (FGS SPESSART) fired upon 29 Mar 09 at 1204 UTC while underway in position 12-57N 049-31E. Seven pirates in a skiff opened fire on the naval ship, mistaking it for a merchant vessel. Men on the ship returned fire, forcin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.516666699594964, 12.949999999999704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-144", - "dateofocc": "2009-03-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 28 Mar 09 at 1400 UTC while underway in position 12-25N 046-25E. The vessel was approached by one skiff with seven men onboard armed with AK-47s. The men in the skiff fired shots in the air upon their approach. Coalition", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.416666699764505, 12.416666699564303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-145", - "dateofocc": "2009-04-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 1 Apr 09 at 1251 UTC while underway in position 09:00N - 059:03E, approximately 340NM southeast of Socotra Island. The captain spotted a speed boat approaching the vessel at a speed of 17kts. The master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.050000000321461, 8.999999999737042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-146", - "dateofocc": "2009-04-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 1 Apr 09 at 1130 UTC while underway in position 13-50N 055:15E, approximately 90NM northeast of Socotra Island. A dhow described as having a brown hull and blue superstructure with a length of 30 meters", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.249999999658939, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-339", - "dateofocc": "2009-08-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship fired upon 16 Aug 09 at 1250 UTC while underway in position 06-17.3N 054-41.2E, approximately 320NM east of Garacad. Two skiffs launched from a mother ship chased the vessel and opened fire with automatic weapons and RP", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.686666700382716, 6.288333300098998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-340", - "dateofocc": "2009-08-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BOMA ANCHORAGE, DEMOCRATIC REPUBLIC OF CONGO: Two robbers armed with sticks boarded a refridgerated cargo ship at anchor. Duty crew spotted the robbers and raised alarm. Upon hearing the alarm, the robbers jumped in the water and escaped. Traffic control", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-280", - "dateofocc": "2008-08-21", - "subreg": "62", - "hostility_": "Hijacking", - "victim_d": "Chemical Tanker", - "descriptio": "GULF OF ADEN:Chemical tanker (IRENE) hijacked 21 Aug 08 at 0358 UTC, while underway in position 14-26.42N 049-56.46E, 45NM east of Al Mukalla, Yemen. The vessel is transporting approximately 10,000 mt of chemical / flammable cargo. There are 19 crewmembe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.941111099560715, 14.440277799660464] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-341", - "dateofocc": "2009-08-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker (KIRANA TRITYA) boarded 15 Aug 09 at 0345 local time while anchored in position 01-18.9N 104-16.19E, approximately 3NM south of Tanjong Ramunia. Three robbers climbed onboard the vessel from a small wooden fast boat on the starboard si", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.269722199895966, 1.315000000347368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-342", - "dateofocc": "2009-08-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (ELGIZNUR CEBI) fired upon 14 Aug 09 at 0320 UTC while underway in position 12-35N 047-25E. Five men armed with automatic weapons and an RPG in a speedboat opened fire on the vessel. The master conducted evasive maneuvers to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.416666699796849, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-343", - "dateofocc": "2009-08-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "KAKINADA, INDIA: Six robbers on a fishing boat approached a chemical tanker at anchor. Two of the robbers tried to board the vessel from starboard side midships using hooks. The duty officer raised alarm, sounded the foghorn and reported to the port cont", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.393333299848734, 17.041666700275925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-344", - "dateofocc": "2009-08-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 26 Aug 09 at 0829 UTC while underway in position 13-09N 048-45E. The vessel reported coming under fire by one small cargo vessel with a blue hull with 14 people onboard. The vessel changed course and managed to evade the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.749999999898421, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-345", - "dateofocc": "2009-08-26", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MOIN ANCHORAGE, COSTA RICA: Two robbers boarded a container ship by using hooks. Duty watchman alerted the master and crew. On noticing the crew robbers jumped overboard and escaped without stealing anything. Local authorities informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.083333300376523, 9.999999999769386] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-346", - "dateofocc": "2009-08-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "APAPA PORT, LAGOS, NIGERIA: Four robbers boarded a chemical tanker at berth and threatened the duty watchman with a gun. The robbers stole ship's properties and escaped by boat. Local authorities informed, no one injured.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-347", - "dateofocc": "2009-08-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIPPA ANCHORAGE, SINGAPORE STRAITS: Five robbers armed with two machine guns in a boat attempted to board a bulk carrier at anchor. The robbers used hooks attached with ropes to board the ship but were noticed by duty crew who raised the alarm. Robbers a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.61500000014837, 1.15166670000491] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-348", - "dateofocc": "2009-08-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel fired upon 27 Aug 09 at 0230 UTC while underway in position 00-08N 044-50E, approximately 140NM northeast of Kismayo, Somalia. Vessel reported coming under fire by four skiffs firing RPGs. UKMTO reported the vessel had increased spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.833333299605329, 0.133333300048321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-349", - "dateofocc": "2009-09-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DOUALA PORT, CAMEROON: Armed robbers in two skiffs approached a tanker restricted in her ability to maneuver. One skiff managed to throw a hook and line over the vessel. The alert crew raised the alarm switched on the deck lights and mustered. Seeing ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.417222199892933, 3.800555600358848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-350", - "dateofocc": "2009-09-04", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MAMONAL INNER ANCHORAGE, COLOMBIA: Robbers boarded a product tanker at anchor, unnoticed and stole ship's property and escaped. Duty crew observed the padlock of the forward store broken and raised the alarm. Crew mustered and searched the area and found", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.517222200170806, 10.325555599603092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-351", - "dateofocc": "2009-09-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOMALIA: Cargo ship fired upon 5 Sep 09 at 1610 UTC while anchored in position 02-03.8N 045-30.65E, approximately 10NM east of Mogadishu. Ten heavily armed robbers in two speedboats opened fire at the vessel while it was making repairs to the engines.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.510833300182583, 2.063333300119723] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-460", - "dateofocc": "2008-11-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "Singapore Straits:Five pirates armed with guns and knives boarded a tanker underway. They stole ship's equipment and escaped once alarm raised. No injury to crew reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.306666699595212, 1.304166699733287] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-281", - "dateofocc": "2008-08-21", - "subreg": "62", - "hostility_": "Hijacking", - "victim_d": "Bulk Cargo Vessel", - "descriptio": "GULF OF ADEN:Bulk carrier (IRAN DEYANAT) hijacked 21 Aug 08 at 0223 UTC, while underway in position 13-49.3N 050-23.9E, approximately 82NM southeast of Al Mukalla, Yemen. The vessel was fired upon and boarded, no further information. It is reported that", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.398333299969636, 13.821666699686205] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-282", - "dateofocc": "2008-08-21", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Cargo Vessel", - "descriptio": "GULF OF ADEN:Bulk cargo reported suspicious approach 20 Aug 08 while underway in position 13-37N 050-11E, 79NM southeast of Al Mukalla, Yemen (UKMTO).", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.183333299733363, 13.616666699962821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-283", - "dateofocc": "2008-08-19", - "subreg": "62", - "hostility_": "Hijacking", - "victim_d": "Chemical Tanker", - "descriptio": "GULF OF ADEN:Chemical tanker (BUNGA MELATI DUA) hijacked 19 Aug 08, 1730 local time while underway in position 12-45.2N 047-57.7E, 123NM southwest of Mukulla, Yemen. There are 39 crewmembers onboard the vessel, traveling from Indonesia to Rotterdam with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.961666699872922, 12.753333299862902] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-284", - "dateofocc": "2008-08-06", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:LPG tanker boarded, robbed 6 Aug 08 at 0400 local time while in position 00-10-19N 117-36-12E: Bontang Anchorage. The duty crew onboard the vessel spotted robbers stealing the ship¿s equipment. The alarm was raised and the crew alerted. Alertn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.603333300061081, 0.171944399949894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-285", - "dateofocc": "2008-08-24", - "subreg": "53", - "hostility_": "Pirates", - "victim_d": "Civilian Yacht", - "descriptio": "CORSICA:Yacht (TIARA) boarded, robbed 24 Aug 08 at 2340 local time, while at anchorage in position 41-30.3N 009-16E, Golfe de Porto Novo. Four armed masked men in a speedboat boarded the vessel and robbed the passengers and crew of more than 100,000 euro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [9.26666669986713, 41.504999999695599] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-286", - "dateofocc": "2008-08-24", - "subreg": "57", - "hostility_": "Pirate Hijacking", - "victim_d": "Oil Supply Vessel", - "descriptio": "NIGERIA:Oil supply vessel (BENUE) hijacked 24 Aug 08 at 1440 UTC, Bonny Channel, Rivers State. The vessel was traveling from Agbami oilfield to Onne when it was seized by unknown militants. The vessel is owned by West Africa Offshore and has a crew of ei", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-287", - "dateofocc": "2008-08-26", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "GULF OF ADEN:Cargo vessel reported suspicious approach 26 Aug 08 at 1040 local time/0740 UTC while underway in position 13-30N 048-34E, 87NM southwest of Al Mukalla, Yemen. While transiting the Gulf of Aden the vessel reported a number of suspicious boat", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.56666670032871, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-288", - "dateofocc": "2008-08-26", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 26 Aug 08 while underway near Aden, Yemen. A vessel heard an announcement on VHF Ch. 16 that another near by vessel stated that it had spotted three speedboats traveling at 22kts and getting off a reported", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.733333299871902, 12.466666700330336] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-289", - "dateofocc": "2008-08-24", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "GULF OF ADEN:Cargo vessel reported suspicious approach 24 Aug 08 at 0655 local time while underway in position 12-49N 050-30E, 52NM north northwest of Caluula, Somalia. The vessel reported a suspicious craft approaching. The suspicious craft¿s speed was", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 12.816666700296707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-290", - "dateofocc": "2008-08-23", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "Bulk Cargo Vessel", - "descriptio": "GULF OF ADEN:Bulk cargo vessel fired upon 23 Aug 08 at 1605 local time, while underway in position 14-11.3N 050-20.3E, 68NM southeast of Al Mukalla, Yemen. The master of the vessel reported that it had been fired upon and there were shots on the bridge.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.338333299589976, 14.188333299724945] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-291", - "dateofocc": "2008-08-23", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "Cargo Vessel", - "descriptio": "GULF OF ADEN:Cargo vessel fired upon 23 Aug 08 at 1708 local time/1008 UTC, while underway in position 14-16N 050-19.40E, 65NM southeast of Al Mukalla, Yemen. The master reported the vessel had been fired upon. The master raised the alarm, increased its", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.323333299719934, 14.26666670002885] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-462", - "dateofocc": "2008-11-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "Gulf of Aden: Chemical tanker (BISCAGLIA) hijacked 28 Nov 08 at 0447 UTC while underway in position 13-49N 049-44E. Information received from the owners confirmed the tanker had been hijacked. The tanker was reportedly carrying a cargo of vegetale oil wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.733333300033564, 13.816666700329051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-463", - "dateofocc": "2008-11-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 23 Nov 08 while underway in position 14:03N-049:43E. The vessel took evasive maneuvering and later reported they avoided the boarding and were safe (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.716666699961195, 14.049999999765475] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-464", - "dateofocc": "2008-11-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 23 Nov 08 while underway in position 13:59.41N-049:34.33E. The master reported two suspicious speedboats in the vicinity of the vessel. The vessel was able to contact another vessel in the area a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.571944399568963, 13.990000000285136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-465", - "dateofocc": "2008-11-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker (KIRAN DWITYA) robbed on 22 Nov 08 at 0230 local time while at anchorage in position 01-18.25N 104-12.34E, approximately 2nm south of Tanjon Ayam, Johor. The tanker was performing tank cleaning when five robbers armed with a pistol and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.205555600085063, 1.304166699733287] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-466", - "dateofocc": "2008-11-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE STRAIT: Tanker boarded and robbed on 22 Nov 08 at 0230 local time while underway in position 01:18.25N-104:18.40E. Five pirates armed with guns and knives boarded the vessel, stole the ship's equipment and escaped once alarm was raised (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.306666699595212, 1.304166699733287] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-467", - "dateofocc": "2008-11-21", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PHILIPPINES: Bulk carrier reported suspicious approach on 21 Nov 08 at 0130 local time while underway in position 16-17N 119-32E, West Coast Luzon. Three blue speedboats chased the vessel. The ship increased speed, made evasive maneuvers, raised alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.53333330013254, 16.283333300165907] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-468", - "dateofocc": "2008-11-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "Lagos Anchorage, Nigeria: Armed robbers in a small craft boarded a chemical tanker at anchor. They stole ship's property and escaped before the duty A/B raised the alarm. The craft was observed approaching another vessel. The tanker warned the vessel. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-469", - "dateofocc": "2008-11-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CRUISE SHIP", - "descriptio": "Gulf of Aden: Two pirate boats with three pirates in each boat attempted to intercept a passenger ship underway. Master sighted a gun on the second boat and later the pirates fired upon the ship. Master increased speed and the pirate boats were unable to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.728333299777148, 14.045000000408322] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-470", - "dateofocc": "2008-11-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "Gulf of Aden:Two speedboats with ten pirates armed with guns and rockets attempted to board a bulk carrier underway. Boats closed the ship's bow and quarter. Master raised alarm, took evasive maneuvers and activated fire hoses. After 25 minutes of chasin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.183333300438676, 12.333333299903302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-471", - "dateofocc": "2008-11-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "Gulf of Aden: Ten speedboats with 3 masked men in each boat cae close to an oil tanker underway. One of these boats came very close and the pirates were sighted as carrying guns. Master raised alarm and took evasive maneuvers. Pirate boats then moved awa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.433333299933963, 13.900000000165335] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-472", - "dateofocc": "2008-11-29", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "Vung Tau, Vietnam: Six robbers in a fishing boat approached a general cargo ship at anchor. Two robbers armed with knives boarded the ship. One of them threatened the duty crew with a knife while the other robber stole ship's stores. Later they jumped ov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.036666700232104, 10.268333300101801] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-473", - "dateofocc": "2008-11-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "Gulf of Aden: Armed pirates, in two speedboats approached and chased a bulk carrier underway. Master took evasive maneuvers, activated fire hoses and raised alarm. Pirates opened fire but could not board due to anti-piracy measures. Later the pirates gav", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.991666699677808, 14.195000000008463] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-147", - "dateofocc": "2009-03-30", - "subreg": "63", - "hostility_": "PIRTATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 30 Mar 09 at 1615 local time while underway in position 09:45N ¿ 058:50E, approximately 300NM southeast of Socotra Island. A speed boat approached the vessel while a mother ship was sighted further back. The men in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.833333300058086, 9.750000000435818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-148", - "dateofocc": "2009-03-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 28 Mar 09 at 1555 local time while underway in position 07-21S 046-44E, approximately 420NM east of Dar es Salaam, Tanzania. A high speed boat launched from a mother ship chased the vessel. The v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.733333299936589, -7.349999999847398] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-149", - "dateofocc": "2009-03-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "PASSENGER SHIP", - "descriptio": "INDIAN OCEAN: Passenger ship (INDIAN OCEAN EXPLORER) hijacked 27 Mar 09 while underway in position 08-30S 046-30E, approximately 420NM east of Dar es Salaam, Tanzania. Owners have confirmed that the vessel has been hijacked. Seven crewmembers are report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.499999999600789, -8.500000000379202] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-150", - "dateofocc": "2009-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN:PIRATES IN A SPEED BOAT APPROACHED AND ATTEMPTED TO BOARD A CHEMICAL TANKER UNDERWAY BY USING METAL HOOKS AND ROPES. ALERT CREW PREVENTED THE BOARDING AND INFORMED DUTY OFFICER ON BRIDGE. VESSEL MADE EVASIVE MANOEUVERES AND ESCAPED FROM THE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.884166700297271, 11.83388889968785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-151", - "dateofocc": "2009-03-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIA:A HIGH SPEED BOAT LAUNCHED FROM A MOTHER SHIP CHASED A CONTAINER SHIP. THE VESSEL INCREASED SPEED AND COMMENCED MADE EVASIVE MANOEUVRES. THE SPEED BOAT CAME AS CLOSE AS 3 CABLES TO THE SHIP BUT STOPPED, PROBABLY DUE TO ENGINE PROBLEM. SHIP CONTI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.734444399713254, -7.351944399725255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-152", - "dateofocc": "2009-03-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOMALIA:PIRATES IN A SPEED BOAT ATTACKED AND HIJACKED A CHEMICAL TANKER UNDERWAY. PIRATES ARE IN CONTRO OF THE VESSEL AND HAVE TAKEN HOSTAGE 19 CREW. PRESENTLY PIRATES ARE SAILING THE VESSEL TO AN UNDISCLOSED LOCATION IN SOMALIA. FURTHER REPORT AWAITED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.685833300424463, 1.714722199605603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-153", - "dateofocc": "2009-03-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA:A BULK CARRIER UNDERWAY WAS ATTACKED BY PIRATES IN SPEED BOATS. THE VESSEL AVOIDED THE ATTEMPT BY EMPLOYING EFFECTIVE ANTI PIRACY MEASURES. NO FURTHER DETAILS AVAILABLE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.566666700134647, 13.516666700229393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-154", - "dateofocc": "2009-04-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "M/V MAERSK ALABAMA", - "descriptio": "SOMALIA: M/V MAERSK ALABAMA, 21 CREW MEMBERS ON BOARD, BOARDED BY PIRATES IN 02-25N 051-14E AT 080430Z APR. CAUTION ADVISED. NO FURTHER DETAILS AVAILABLE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.23333329963242, 2.41666670014024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-155", - "dateofocc": "2009-03-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDIAN OCEAN:A yacht with seven crew departed from Seychelles. Pirates boarded and hijacked it. On 04 Jan 09 the master contacted the owners to inform that the yacht had been hijacked. The pirates are believed to be sailing the yacht to the Somali coast.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.00000000006662, -8.999999999945715] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-156", - "dateofocc": "2009-03-24", - "subreg": "71", - "hostility_": "THREE PIRATES", - "victim_d": "YACHT", - "descriptio": "THAILAND: Three robbers armed with knives and a hammer attacked and boarded a yacht. They assaulted and killed the skipper and threw his body overboard while in the mooring bay off the Buntang Islands. The skipper's wife was also injured. They tied her", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.233333300285437, 6.666666699603184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-157", - "dateofocc": "2009-03-26", - "subreg": "62", - "hostility_": "TWO WHITE SPEED BOATS", - "victim_d": "UKNOWN VESSEL", - "descriptio": "BAB-EL-MANDEB: Vessel reported suspicious approach 26 Mar 09 at 1828 local time while underway in position 12-38N 043-18E, per 7 Apr 09 reporting. Two white colored speed boats were sighted with five men onboard each. They approached from the port quarte", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.300000000036903, 12.633333300002903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-158", - "dateofocc": "2009-04-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier hijacked 6 Apr 09 at 0620 UTC while underway in position 12-33N 049-02E. The vessel was boarded and hijacked by pirates while underway. The vessel was reportedly carrying iron and had a crew of 24 (IMB, AP).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.033333300100878, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-159", - "dateofocc": "2009-03-20", - "subreg": "62", - "hostility_": "WHITE CRAFT", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported attempted boarding 20 Mar 09 at 0530 local time while underway in position 13-10N 049-13E, per 6 Apr 09 reporting. A white craft with blue stripes was sighted at the starboard bow heading towards the vessel. At a distance o", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.216666700394683, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-352", - "dateofocc": "2009-09-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Duty watchmen on an anchored vessel noticed a speed boat come alongside. Two robbers armed with long knives boarded. Alarm raised and crew alerted. Robbers stole ship's stores and escaped. Authorities informed but no res", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.773333299846286, 22.176666700167743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-353", - "dateofocc": "2009-09-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYASIA: Tanker (MMM KINGSTON) reported attempted boarding 14 Sep 09 at 0445 local time while anchored in position 01-18.3N 104-12.56E, approximately 2NM south of Tanjung Ayam. Six men armed with long knives attempted to board the vessel from a speed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.209444399840777, 1.304999999834422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-354", - "dateofocc": "2009-09-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "NIGERIA: Tug briefly hijacked, vessel robbed 7 Sep 09 at 0600 UTC in position 03-53.50N 006-47.50E, approximately 30NM from Port Harcourt. Nine men armed with automatic weapons in a speedboat boarded and hijacked an offshore tug. They then used the tug", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.791666699719656, 3.891666700255371] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-355", - "dateofocc": "2009-09-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier robbed 15 Sep 09 at 2200 local time while anchored in position 22-09.4N 091-47.2E, Chittagong anchorage. Twelve robbers armed with long knives boarded the vessel from the stern. They took the stern duty watchman hostage and beg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.786666700413377, 22.156666700041171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-356", - "dateofocc": "2009-09-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Vessel reported suspicious approach 16 Sep 09 at 1320 local time while underway in position 15-29N 041-34E. Vessel reported being chased by two high speed boats with approximately eight people dressed in black in each boat. The approach was ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.566666700102303, 15.483333299600474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-357", - "dateofocc": "2009-09-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker (PACIFIC HARMONY) reported attempted boarding 14 Sep 09 at 0240 local time while anchored in position 01-18.5N 104-13.8E, approximately 2NM south of Tanjung Ayam. Five men attempted to board the vessel from a boat. The duty watch raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.230000000217728, 1.30833330006385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-358", - "dateofocc": "2009-09-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: Container ship robbed 13 Sep 09 at 2150 local time while anchored in position 03-56.7N 098-46.1E, Belawan anchorage. Robbers with long knives boarded the ship while anchored. The duty watch spotted the robbers and informed the duty officer w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.76833329981622, 3.945000000351513] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-359", - "dateofocc": "2009-09-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: Cargo ship robbed 20 Sep 09 at 0815 local time while underway in position 03-59N 006-46E, Bonny River. Six armed men boarded the vessel, stealing ship's stores and cash. They ransacked the crew cabins stole personl belongings and left the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-308", - "dateofocc": "2008-09-09", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier (BRIGHT RUBY) hijacked 9 Sep 08 at 0657 UTC while underway in position 13-09N 047-57E, approximately 100NM southwest of Al Mukalla, Yemen. There are 21 crewmembers on board the vessel, eight Koreans and 13 Myanmar (IMB, UKMTO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.950000000232251, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-360", - "dateofocc": "2009-09-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (BBC PORTUGAL) fired upon 20 Sep 09 at 1545 local time while underway in position 12-49.48N 048-11.82E. One speed boat with seven armed men onboard approached the vessel. The master activated counter-piracy measures, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.196944400086579, 12.824722200207702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-361", - "dateofocc": "2009-09-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon 19 Sep 09 at 0645 UTC while underway in position 13-52N 051-07E. Approximately seven armed men in a six meter long, while colored skiff fired upon the vessel. They attempted to board the vessel but were unable to do", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.116666699826567, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-292", - "dateofocc": "2008-08-23", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown Vessel", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 23 Aug 08 at 0630 UTC while underway in position 13-16.9N 042-55.3E, 53NM north northwest of Caluula, Somalia. A white colored speedboat with five persons onboard approached the vessel. The alarm was raise", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.921666700357491, 13.281666699866548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-293", - "dateofocc": "2008-08-24", - "subreg": "63", - "hostility_": "Pirate Robbery", - "victim_d": "Chemical Tanker", - "descriptio": "INDIA:Chemical tanker boarded, robbed 24 Aug 08 at 0005 local time while at anchorage in position 16-59.7N 082-21.4E, Kakinada. Two robbers boarded the vessel. The robbers attempted to steal the fire wire and other ship stores. Upon hearing the emergency", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.356666699649793, 16.994999999739321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-294", - "dateofocc": "2008-08-20", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "INDIA:Container ship (OEL DUBAI) boarded, robbed 20 Aug 08 at 0350 local time/2130 UTC while at anchorage in position 09-55N 076-05E, Cochin. Four robbers boarded the vessel from a wooden boat and stole the 10 drums of paint from the paint locker. The sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.083333299941444, 9.916666699933103] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-295", - "dateofocc": "2008-08-12", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Vehicle Carrier", - "descriptio": "INDONESIA:Vehicle carrier boarded, robbed 12 Aug 08 at 0600 local time while at berth, Jakarta car terminal. Robbers boarded the vessel and stole spare parts of considerable value from the spare parts locker. The incident was unnoticed by the ship¿s cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.216666700439362, -5.38333329975228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-278", - "dateofocc": "2008-08-21", - "subreg": "62", - "hostility_": "Pirate Hijacking", - "victim_d": "Cargo Ship", - "descriptio": "GULF OF ADEN:Cargo ship (BBC TRINIDAD) hijacked 21 Aug 08 at 0945 UTC while underway in position 12-57.9N 048-56.7E, 107NM south of Al Mukalla, Yemen. The vessel was attacked by two fast crafts. An additional orange mother-ship was spotted during the hij", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.945000000008122, 12.964999999869804] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-296", - "dateofocc": "2008-08-12", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "DOMINICA:Yacht boarded 12 Aug 08 at 0415 local time while mooring, Roseau. Two perpetrators boarded the vessel. When an audible alarm sounded, one perpetrator jumped off the vessel, while the other attempted to hide in a small inflatable under the yacht.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.383333299764672, 15.283333300133563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-297", - "dateofocc": "2008-08-27", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "unknown", - "descriptio": "VENEZUELA:Dinghy stolen 27 Aug 08 at 1830 local time, Porlamar, Margarita Island. The owner stated that there were approximately 12 other dinghies tied to the dock when boat was stolen. He stated that he had paid the dock attendant to \"safeguard\" the boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.850000000325622, 10.949999999935017] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-298", - "dateofocc": "2008-08-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "IVORY COAST:Tanker boarded, robbed 30 Aug 08 at 2330 local time while in position 05-13N 004-02E, Port Abidjan Anchorage. The duty crew onboard the vessel spotted a robber on the poop deck. The bridge was informed and the alarm was raised. The robber jum", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.033333300444269, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-299", - "dateofocc": "2008-09-09", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "NIGERIA:Container ship boarded 9 Sep 08 at 2345 local time, Lagos anchorage. Four perpetrators boarded the vessel while drifting from the poop deck. The perpetrators hit the duty watchman causing minor head injuries and escaped with ships stores. The por", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-300", - "dateofocc": "2008-09-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug boat", - "descriptio": "NIGERIA:Tug (FULMAR LAMNACO) hijacked, sailor killed 7 Sep 08 in the early hours Sabriero River off Bonny in southern Rivers state. Nigerian militants killed one sailor and kidnapped another when they hijacked a vessel belonging to the Nigerian Unit of I", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-301", - "dateofocc": "2008-09-09", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug Boat", - "descriptio": "NIGERIA:Tug (HD BLUE OCEAN) hijacked 9 Sep 08 at 1430 local time at the entrance of Sabriero River, Delta. Unidentified gunmen hijacked the vessel with five foreign workers and eight Nigerians. Nigerian military officials were not immediately able to con", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.50000000017053, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-302", - "dateofocc": "2008-09-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply Vessel", - "descriptio": "NIGERIA:Supply vessel (POLARIS) boarded, robbed 8 Sep 08, 35NM southwest of Bonny. According to media reports, men onboard two speedboats first opened fire on the vessel. The perpetrators boarded the vessel and stole personal belongings and damaging equi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-303", - "dateofocc": "2008-08-25", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:Chemical tanker boarded 25 Aug 08 at 0030 local time while in position 06-10.7N 003-23.8E, Lagos anchorage. Robbers armed with long knives boarded the vessel and stole the ships stores. The duty crew spotted them and informed the duty officer, wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.396666700046012, 6.178333299852625] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-474", - "dateofocc": "2008-11-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Chemical tanker boarded and robbed on 26 Nov 08 at 0430 local time while at anchorage Lagos. Armed robbers boarded the tanker from a small craft, stole the ships property and escaped before the alarm was raised. The craft was seen approaching a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-475", - "dateofocc": "2008-11-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo vessel reported suspicious approach on 25 NOV 2008 while underway in 13-38N 049-06E. A single craft approximately 2 miles off the starboard side was observed by the watch and Master. The craft increased speed and approached the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.099999999864735, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-476", - "dateofocc": "2008-12-03", - "subreg": "62", - "hostility_": "PIRATE", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker fired upon 3 Dec 08 at 0419 UTC while underway in position 12-59N 047-41E. Speed boat observed approximately 2-3 NM off forward bow. The number of persons onboard the speedboat is unknown, but were carrying firearms due to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.68333330010222, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-477", - "dateofocc": "2008-11-23", - "subreg": "63", - "hostility_": "PIRATE", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIA: Indian fishing trawler (KUBER) hijacked on 23 Nov 08 probably near Jakhau. The hijackers were militants involved in the 23 Nov 08 attacks in Mumbai, India. The militants killed four crewmembers and threw their bodies overboard. The captain was kep", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.207499999762717, 22.898888899780388] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-478", - "dateofocc": "2008-11-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "WARRI RIVER, NIGERIA:SEVERAL SPEEDBOATS WITH HEAVILY ARMED MEN APPROACHED A GENERAL CARGO SHIP UNDER PILOTAGE. THEY FIRED WARNING SHOTS INTO THE AIR, ORDERED THE PILOT TO STOP THE SHIP AD DEMANDED THE GANGWAY LADDER TO BE LOWERED. THE PIRATES BOARDED THE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.37750000008532, 5.581388900031982] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-479", - "dateofocc": "2008-12-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "TEMA ANCHORAGE, GHANA:FOUR ROBBERS BOARDED A OIL TANKER AT ANCHOR. ROBBERS STOLE SHIP'S STORES AND ESCAPED WHEN NOTICED. NO INJURIES TO CREW.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-480", - "dateofocc": "2008-12-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "COTAINER SHIP", - "descriptio": "SOMALIA:TWO PIRATE SKIFFS WERE SEEN APPROACHING A CONTAINER SHIP UNDERWAY. THE 2ND MATE INCREASED SPEED, RAISED ALARM, ACTIVATED FIRE HOSES AND MUSTERED CREW ON BRIDGE. THE PIRATES FIRED UPON THE SHIP WITH GUNS AND RPG. MASTER ACTIVATED SSAS, DSC DISTRES", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.966666700097051, -6.699999999781426] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-481", - "dateofocc": "2008-12-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "TELUK JUARA, MALAYSIA:TEN ARMED PIRATES BOARDED A TUG UNDERWAY. THEY THREATENED THE MASTER AND CREW WITH KNIVES. PIRATES TIED UP THE CREW WITH ROPES AND LOCKED THEM IN A COMPARTMENT . THEY ESCAPED WITH TUG'S AND CREW CASH, DOCUMENTS AND PERSONAL BELONGIN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.316666700108158, 2.849999999942838] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-482", - "dateofocc": "2008-12-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BELAWAN, INDONESIA:ROBBERS BOARDED A CHEMICAL TANKER AT ANCHOR. THEY BROKE THE BOSUN STORE PADLOCK AND STOLE SHIP'S STORES. ATTEMPT TO CONTACT AUTHORITIES WERE FUTILE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.751944399594606, 3.934722200163037] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-483", - "dateofocc": "2008-11-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "NIGERIA:GENERAL CARGO VESSEL BOARDED 16 NOV 08 AT 1142Z WHILE UNDERWAY IN POSITION 05-34N 005-22E, WARRI RIVER, PER 9 DEC REPORTING. SERVERAL SPEEDBOATS WITH HEAVILY ARMED MEN APPROACHED THE VESSEL UNDER PILOTAGE. THEY FIRED WARNING SHOTS INTO THE AIR, O", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.366666700370558, 5.566666699837413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-160", - "dateofocc": "2009-04-02", - "subreg": "62", - "hostility_": "TWO SPEED BOATS", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 2 Apr 09 at 1300 UTC while underway in position 13-51N 051-14E. Two speed boats, blue and white in color, with three or four persons onboard approached the vessel underway at over 20 kts. The speed", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.23333329963242, 13.850000000298621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-161", - "dateofocc": "2009-04-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship hijacked 8 Apr 09 at 0430 UTC while underway in position 02-24N 051-40E, approximately 235NM southeast of Hobyo, Somalia. Four pirates in a skiff boarded and hijacked the vessel while underway. The crew of 20 onboard managed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.666666700159169, 2.400000000243097] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-162", - "dateofocc": "2009-04-06", - "subreg": "61", - "hostility_": "UNKNOWN BOAT", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel hijacked 6 Apr 09 at 0300 local time while underway in position 01-50S 055-27E, approximately 585NM off the coast of Somalia. The vessel reported being chased and then boarded by at least one boat. According to the owners of", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.45000000002517, -1.833333300222023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-163", - "dateofocc": "2009-04-05", - "subreg": "61", - "hostility_": "WHITE BOAT", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 5 Apr 09 at 1630 local time while underway in position 01-00S 056-10E, approximately 590NM off the coast of Somalia. The vessel passed a white boat with four men onboard at a speed of 4 kts. The boat inc", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.166666699855, -0.99999999968702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-164", - "dateofocc": "2009-04-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 4 Apr 09 at 0641 UTC while underway in position 09-24N 058-15E, approximately 280NM southeast of Socotra Island. Six pirates in a speed boat armed with AK-47s chased the vessel underway. The captain contacted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.249999999755971, 9.399999999570127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-165", - "dateofocc": "2009-04-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "INDIAN OCEAN: Vessel hijacked 4 Apr 09 at 0530 UTC while underway in position 02-40S 048-03E, approximately 320NM southeast of Mogadishu, Somalia. Pirates armed with automatic weapons and RPGs boarded and hijacked the vessel. There are 24 crewmembers on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.049999999965678, -2.66666669968248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-193", - "dateofocc": "2009-04-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA: Eight pirates armed with knives boarded a chemical tanker and stole crew cash and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.497222199906446, 3.416111099922205] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-167", - "dateofocc": "2009-04-02", - "subreg": "63", - "hostility_": "TWO BLUE SKIFFS", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 2 Apr 09 at 1400 UTC while underway in position 05-31N 056-32E, approximately 420NM southeast of Eyl, Somalia. Two blue skiffs were launched from a mother ship at 8NM abeam from the vessel. Each skiff had four arm", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.533333299893798, 5.516666699970699] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-168", - "dateofocc": "2009-04-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "MALAYSIA: Tug robbed 1 Apr 09 at 0510 local time while underway in position 02-30N 104-24E, approximately 6NM northwest of Pulau Aur. Five pirates with masks and armed with knives boarded the tug underway. They stole cash and personal belongings and esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.399999999944441, 2.499999999976524] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-169", - "dateofocc": "2009-03-30", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM: Bulk carrier robbed 30 Mar 09 at 0045 local time while anchored in position 10-42N 106-44E, Ho Chi Minh port. Six robbers in a wooden boat boarded the vessel from the bow. They stole ship's properties and escaped. The incident was reported to l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.7333333000783, 10.699999999702129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-170", - "dateofocc": "2009-03-25", - "subreg": "26", - "hostility_": "TWO PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "PORT AU PRINCE, HAITI:Watchman on board a chemical tanker spotted two robbers armed with knives on forecastle, robbers had tried to steal ship's shores but failed due to vigilant anti piracy watch. Port control did not respond to calls.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.66666670014763, 18.749999999827537] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-171", - "dateofocc": "2009-04-06", - "subreg": "63", - "hostility_": "SPEED BOATS", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN:A bulk carrier underway, detected on radar speed boats approaching own vessel on stbd bow/port bow at a distance or 12nm. As the speed boat increased speed and approached closer with cpa .01nm, master increased speed, all crew mustered, acti", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.250277799722539, 15.229722200361948] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-362", - "dateofocc": "2009-09-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier reported attempted boarding 19 Sep 09 at 0600 UTC while underway in position 13-54.2N 051-09.8E. Approximately six armed men in a white colored speedboat attempted to attack the vessel while it was underway with a convoy of tw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.163333299639191, 13.903333300394706] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-363", - "dateofocc": "2009-09-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker fired upon 19 Sep 09 at 0550 UTC while underway in position 13-52.10N 051-04.17E. Four men armed with machine guns in a six meter long, white colored skiff, fired upon the vessel. The master raised the alarm increased speed, took e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.069444399938902, 13.868333300398092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-364", - "dateofocc": "2009-09-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 18 Sep 09 0120 local time while underway in position 14-20.2N 049-47.1E. Men in a small boat approached the vessel and came as close as five meters. The alarm was raised and the crew was alerted. The sma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.784999999927379, 14.336666700022079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-365", - "dateofocc": "2009-09-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 16 Sep 09 at 1400 UTC while underway in position 15-20N 056-27.8E, approximately 170NM southeast of Salalah, Oman. A boat drifting on the port beam of the vessel increased speed and approached th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.463333299900512, 15.333333300000277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-366", - "dateofocc": "2009-09-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIA: Container ship robbed 18 Sep 09 at 0440 local time while anchored in position 21-41.8N 088-01.0E, Sagar road, Kolkata. While anchored robbers armed with knives boarded the vessel from the starboard side when the duty watchman was taking rounds on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.016666700390374, 21.696666699828427] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-367", - "dateofocc": "2009-09-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier robbed 22 Sep 09 at 2155 local time while anchored in Chittagong anchorage. Five robbers boarded the vessel from the stern anchor when the duty seaman spotted the suspects on his rounds. Upon encountering the robbers, the duty se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-368", - "dateofocc": "2009-09-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker robbed 18 Sep 09 at 1927 UTC while anchored in position 03-55.2N 098-45.8E, Belawan outer anchorage. Three robbers armed with long knives boarded the vessel via the forecastle by using a rope and a hook. The robbers threatened the forw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.763333299559747, 3.919999999968468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-369", - "dateofocc": "2009-09-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker (PROSPECT) robbed 19 Sep 09 at 0020 local time while underway in position 03-20.01N 105-19.50E, approximately 50NM northwest of Anambas Islands. Six men armed with knives and machetes boarded the tanker. They hit the duty officer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.324999999727027, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-370", - "dateofocc": "2009-09-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "STRAIT OF MALACCA: Report of attempted sea robbery on 26 Sep 09 at 1300 local time at position 05-48.3N 096-34.0E. Mariners advised to take precautions and increase look-out for suspicious small fast moving craft approaching their vessels. Mariners to m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [96.566666700082351, 5.805000000429629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-371", - "dateofocc": "2009-09-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CHITTAGONG ANCHORAGE BANGLADESH: Duty officer onboard a container ship arrived at poop deck and spotted one robber near entrance to rope store. When duty officer approached the robber, two other robbers armed with long knives began to chase him. He retre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725000000006673, 22.256666699774598] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-372", - "dateofocc": "2009-09-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Eight robbers armed with long knives in a small wooden fishing boat boarded a product tanker at anchor. Duty bosun sighted them and informed OOW who raised the alarm. Robbers threatened one watchman with long knives, cut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.72055560000058, 22.186944399632125] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-373", - "dateofocc": "2009-09-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Eight pirates armed with guns in two high powered speed boats attempted to board a bulk carrier underway. Master raised alarm, took evasive maneuvers, fired parachute signals, activated SSAS and contacted coalition warships for assistance.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.418611099739394, 13.192777800422789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-304", - "dateofocc": "2008-08-30", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Container ship boarded 30 Aug 08 at 0001 local time while drifting in position 06-47.4S 039-40.2E, Dar es Salaam Roads. Three perpetrators armed with knives boarded the vessel. Another three perpetrators were seen climbing up using a knotted lin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.670000000000471, -6.789999999901227] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-305", - "dateofocc": "2008-08-29", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "TANZANIA:Container ship boarded, robbed 29 Aug 08 at 2005 local time while in position 06-46.95S 039-21.68E, Dar es Salaam Anchorage. Robbers boarded the vessel. The duty crew noticed one robber on the starboard side armed with a knife. The robber threw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.361388899739438, -6.782500000415837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-306", - "dateofocc": "2008-09-07", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier (MONIMA) reported suspicious approach 7 Sep 08 at 1500 local time, while underway in position 13-06.87N 045-41E, approximately 12NM off the Yemen coast. Three speedboats reportedly chased the vessel. The Master contacted the IMB", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.683333300037532, 13.114444400118884] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-307", - "dateofocc": "2008-09-10", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 10 Sep 08 at 0125 UTC while underway in position 15-46N 053-07E. Three suspicious small boats were reportedly following the vessel. Coalition warships were urgently requested to render necessary assi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.116666699891255, 15.766666699627649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-309", - "dateofocc": "2008-09-08", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Container Ship", - "descriptio": "GULF OF ADEN:Container ship reported suspicious approach 8 Sep 08 at 0900 UTC while underway in position 12-54.2N 046-04.2E. Two suspicious speedboats crossed the bow from starboard to port at 20kts approximately 1NM away before altering course towards t", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.070000000027562, 12.903333300362362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-310", - "dateofocc": "2008-09-08", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker Vessel", - "descriptio": "Tanker reported suspicious approach 8 Sep 08 at 0655 UTC while underway in position 12-45.48N 046-05.3E. There were reportedly more than ten speedboats in the surrounding area with many personal on board. Incident was reported to coastal authority (Oper", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.088333300127033, 12.758055600268563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-311", - "dateofocc": "2008-09-08", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Unknown", - "descriptio": "GULF OF ADEN:IMB reported suspicious vessel, per 8 Sep 08 reporting. A suspicious boat was transmitting the AIS with a different call sign VRWO. The IMO and MMSI number remains unchanged and untraceable. The passing ship reported to have seen the names a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.3074999997487, 14.228888900228412] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-312", - "dateofocc": "2008-09-07", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier reported suspicious approach 7 Sep 08 at 1020 UTC while underway in position 12-46N 045:54E. Suspected pirates in two speedboats reportedly chased the vessel. The owner contacted the IMB Piracy Reporting Center (PRC) for assista", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.900000000300849, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-313", - "dateofocc": "2008-09-06", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker Vessel", - "descriptio": "GULF OF ADEN:Tanker (FRONT VOYAGER) fired upon 6 Sep 08 at 0950 UTC while underway in position 12-54.9N 047-05.1E, 39NM off the coast of Yemen. The vessel spotted a blue-hulled speedboat with five armed men onboard approximately 6NM away. The speedboat a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.084999999930005, 12.91500000000309] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-315", - "dateofocc": "2008-09-05", - "subreg": "62", - "hostility_": "ARMED PIRATES", - "victim_d": "GENERAL CARGO", - "descriptio": "GULF OF ADENGeneral cargo fired upon 5 Sep 08 at 0510 UTC, while underway in position 12-57N 047-04E, 118NM east of Aden, Yemen. The ship reportedly sighted a suspected mother-ship described as a blue tug towing a small boat about six miles off, bearing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.066666699830535, 12.949999999999704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-484", - "dateofocc": "2008-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 28 Oct 08 at 1127 local time while underway in position 12-40N 045-28E, per 10 Dec reporting. Tanker reported being approached by six speedboats with approximately three to four persons onboard each. Eac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.466666699598932, 12.666666699797247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-485", - "dateofocc": "2008-12-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 2 Dec 08 at 0400 UTC while underway in position 13-57N 049-35E. A suspicious craft was spotted on the port side at about 2 miles. Approximately 15 minutes later they were able to see 7 persons onboard in military uniforms", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.583333300433424, 13.950000000032048] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-486", - "dateofocc": "2008-12-10", - "subreg": "81", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "GULF OF ADEN: Two Yemeni fishing vessels, (FALLUJAH) and (KANA), reportedly hijacked 10 Dec 08 while underway from the Mait area near the port of Aden. According to Yemeni Coastguard, 22 men from both vessels were seized by the pirates. Seven men manage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [149.433333299570677, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-25", - "dateofocc": "2010-12-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "MOZAMBIQUE CHANNEL: Fishing vessel attacked in 14-28S 041-42E at 1934Z on 31 Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.6999999998053, -14.466666699704376] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-487", - "dateofocc": "2008-12-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN:ONE WOODEN SPEED BOAT WITH 5-6 PERSONS ARMED WITH AUTOMATIC WEAPONS AND RPG CHASED AND OPENED FIRE ON A CONTAINER SHIP UNDERWAY. PIRATES ATTEMPTED TO BOARD WITH A LADDER. MASTER TOOK EVASIVE MANOEUVRES AND CONTACTED COALITION WARSHIPS FOR AS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.283333300301479, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-488", - "dateofocc": "2008-12-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:ONE PIRATE BOAT WITH SEVEN ARMED MEN CHASED A TANKER UNDERWAY. PIRATES WERE SEEN CARRYING AUTOMATIC WEAPONS, RPG AND A WOODEN LADDER FOR BOARDING. LATER, THE BOAT ABORTED THE CHASE AND HEADED TOWARS ANOTHER VESSEL NEARBY. A NAVY HELICOPTER A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.650000000164994, 13.516666700229393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-489", - "dateofocc": "2008-12-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:EIGHT PIRATES ARMED WITH MACHINE GUNS AND RPG IN A BLUE COLOURED SPEED BOAT DOING 17 KNOTS ATTACKED A GENERAL CARGO SHIP UNDERWAY. THEY FIRED UPON THE SHIP WITH MACHINE GUNS AND ATTEMPTED TO BOARD THE SHIP TWICE USING A LADDER. CREW MANAGED", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.618055599647619, 13.535277800004394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-490", - "dateofocc": "2008-12-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CHITTAGONG 'A' ANCHORAGE, BANGLADESH:SIX ROBBERS ARMED WITH KNIVES BOARDED A TANKER AT ANCHOR. ALARM RAISED AND CREW MUSTERED. COAST GUARD BOARDED FOR INVESTIGATION . SHIP'S STORES STOLEN FROM BOSUN STORE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-491", - "dateofocc": "2008-12-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MALAYSIAN TUG", - "descriptio": "GULF OF ADEN:Tug (MASINDRA 7) and barge hijacked 16 Dec 08 at 0715 local time while underway in position 13-54N 049-39E. Owners confirmed that pirates have hijacked the tug with barge in tow. There are 11 crewmembers onboard (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.650000000197281, 13.900000000165335] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-492", - "dateofocc": "2008-12-02", - "subreg": "62", - "hostility_": "Somalian Pirates", - "victim_d": "Car Carrier", - "descriptio": "GULF OF ADEN:Car Carrier reported being fired upon on 02 Dec 08 at 1715 UTC while underway in position 13-23.2N 048-14.9E. 4 pirates in a small boat was spotted on the starboard side at about 6-7 miles. Pirates approached the vessel and fired about 20 ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.235833299663682, 13.383888900052739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-493", - "dateofocc": "2008-12-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship fired upon 12 Dec 08 at 1212 local time while underway in position 13-32N 048-37E. Eight pirates armed with machine guns and RPGs in a blue colored speed boat doing 17 knots fired upon the vessel and attempted to board t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.616666700195424, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-494", - "dateofocc": "2008-12-13", - "subreg": "62", - "hostility_": "TWO BOATS", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo ship GIBE fired upon on 13 DEC 2008 at 0300Z while underway in position 13-19N 047-58E. The GIBE reported two boats were firing small arms at it when it sent out a rescue call. Indian warship INS MYSORE sailing nearby intervened with", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, 13.316666699863219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-172", - "dateofocc": "2009-04-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: A bulk carrier underway detected on radar speed boats approaching from the starboard bow/port bow at a distance on 12 miles. The speed boats increased speed and approached closer with a CPA of 0.01 miles, master increased speed, all crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.251666700074111, 15.224444400429945] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-173", - "dateofocc": "2009-04-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BUENAVENTURA ANCHORAGE, COLOMBIA: Seven robbers armed with long knives boarded a bulk carrier at anchor during heavy rain. Duty crew saw movement at ship's store and raised alarm. Crew mustered and rushed to the location. The robbers escaped with ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, 3.824999999592194] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-174", - "dateofocc": "2009-04-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: A general cargo ship underway sighted a suspicious mother vessel which later launched two skiffs. The boats chased the vessel ad opened fire with guns and RPG. Master raised alarm, carried out evasive maneuvers and succeeded in deterring th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.466666699792938, 14.133333299601759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-175", - "dateofocc": "2009-04-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Pirates in a skiff chased and fired upon a bulk carrier underway. The vessel commenced evasive maneuvers and contacted the coalition naval forces for assisstance. A military helicopter arrived and upon sighting the aircraft the pirates abor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.216666700394683, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-176", - "dateofocc": "2009-04-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "DAR ES SALAAM ANCHORAGE, TANZANIA: While the crew kept a vigilant anti piracy watch on board a container ship, robbers boarded her and succeeded in throwing one life raft into the sea. The crew raised alarm, mustered and reported to the authorities. Vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.733333299750996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-177", - "dateofocc": "2009-04-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MOGADISHU, SOMALIA: Eight pirates armed with guns and rpgs in two skiffs, launched by a pirate mother vessel, attacked a container ship underway. Master increased speed to 22.8 knots and the skiffs followed at 23.5 knots. They approached very close and f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.738333300354725, 0.303333299775034] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-178", - "dateofocc": "2009-04-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "Either pirates armed with guns in a speed boat (blue color, plastic hull, 12 length) attacked a bulk carrier underway. Vessel took evasive maneuvers and contacted coalition warship. A coalition warship acknowledged and came to the location. The pirates a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.383333299970218, 12.266666699964162] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-179", - "dateofocc": "2009-04-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: A 35,000 ton bulk carrier M/V Irene (E.M) was hijacked by unconfirmed number of pirates on 14 Apr 09 at 0200 local while underway in position 12-51N 084-11E, approximately 100 miles south of Al Mukala, Yemen in the Gulf of Aden. The crew on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.250000000331909, 12.900000000132991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-180", - "dateofocc": "2009-04-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Six pirates armed with guns in a skiff fired upon a bulk carrier 12 Apr 09 at 0400 UTC while underway. Vessel sent distress messages and took evasive maneuvers finally prevented the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.816666699662278, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-181", - "dateofocc": "2009-04-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "GULF OF ADEN: An american-owned and Italian-flagged tug towing two barges, and operated by UAE company, was hijacked while travelling westbound through the Gulf of Aden at 1104 UTC this morning. The 16 man crew are believed to be unharmed and shipping in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.316666700031078, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-182", - "dateofocc": "2009-04-08", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA: Bulk carrier robbed 8 Apr 09 at 0200 local time while anchored in position 03:49N - 077:10W, Buenaventura anchorage. Seven robbers armed with long knives boarded the vessel at anchor during heavy rain. The duty watchman saw movements at the bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-183", - "dateofocc": "2009-04-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GULF OF ADEN: Fishing vessel (AHMED SAMARAH) hijacked 10 Apr 09 in the vicinity of Ras Kampomi off Bosaso, Somalia. Pirates attacked and hijacked the vessel with 18 crew members onboard. It is suspected they may be using the fishing vessel as a pirate m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 11.266666699931818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-184", - "dateofocc": "2009-04-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Vessel (LIBERTY SUN) fired upon 14 Apr 09 at 1810 local time while underway in position 02:42S - 046:24E, approximately 265NM southeast of Barawe, Somalia. Pirates in skiffs launched from mother ships chased a bulk carrier underway and ope", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.399999999867362, -2.69999999965205] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-185", - "dateofocc": "2009-04-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo ship (SEA HORSE) 14 Apr 09 at 1400 UTC while underway in position 02:16N - 047:37E, approximately 137NM northeast of Mogadishu, Somalia. Pirates in three skiffs chased the vessel and successfully boarded it. They hijacked the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.61666670016308, 2.26666669964078] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-374", - "dateofocc": "2009-09-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Four pirates armed with guns chased and fired upon a bulk carrier underway. Master increased speed and carried out evasive maneuvers and also contacted coalition warships. Coalition warship came to assist and the pirates aborted the attack", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.318888899681497, 13.199166700131457] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-375", - "dateofocc": "2009-09-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Pirates in a skiff chased a bulk carrier underway. Master carried out evasive maneuvers, increased speed and informed coalition warships. A coalition warship and a helicopter intervention prented the pirates to continue the attempt. No inju", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.650000000067962, 12.250000000067018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-376", - "dateofocc": "2009-09-28", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VENEZUELA: Chemical tanker boarded 28 Sep 09 at 2350 local time in position 10-16.7N 064-42.1W, Puerto le Cruz anchorage. Three robbers boarded the boat, but when the crew spotted them, they immediately jumped overboard and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.70166669988555, 10.278333299715428] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-377", - "dateofocc": "2009-09-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "NIGERIA: Supply vessel robbed 28 Sep 09 close to midnight while underway in position 04-10N 007-00E, approximately nine nautical miles off Bonny and close to the Bonny Fairway Buoy. The robbers took crew valuables (Risk Intelligence/MaRisk).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-378", - "dateofocc": "2009-09-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 28 Sep 09 at 2030 local time in position 22-14.2N 091-43.5E, Chittagong anchorage. Eight robbers in a fishing boat attempted to board the vessel when the duty AB spotted them and raised the alarm. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725000000006673, 22.236666699648083] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-379", - "dateofocc": "2009-10-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Vehicle carrier (HOEGH PUSAN) fired upon 4 Oct 09 at 1900 UTC while underway in position 01-47.2S 056-07.1E, approximately 150NM north of Seychelles. Two unlit boats chased the vessel from astern and opened fire. The master increased spee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.118333300190613, -1.786666700409455] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-380", - "dateofocc": "2009-10-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "STRAITS OF BA EL MANDAB RED SEA: A chemical tanker under way reported a suspicious, white colored skiff around 10 meters long with a high rise bow and two blue camouflaged skiffs in tow in above position. Ships are advised to be vigilant and cautious whi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.166666700333906, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-381", - "dateofocc": "2009-10-06", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GUINEA: Tanker robbed 6 Oct 09 at 2314 UTC while drifting in position 09-08.56N 014-06.06W, approximately 30NM southwest of Conakry. Men armed with automatic rifles and pistols in one boat boarded the vessel while drifting. They stole the crew's cash a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.099999999840861, 9.1427778004267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-382", - "dateofocc": "2009-10-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon 5 Oct 09 at 1759 UTC while underway in position 13-39N 050-30E. Two skiffs approached the vessel and opened fire with RPGs and automatic weapons. The master conducted evasive maneuvers and contacted coalition force", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 13.64999999993239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-383", - "dateofocc": "2009-10-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FRENCH NAVAL VESSEL", - "descriptio": "INDIAN OCEAN: French navy vessel (SOMME) fired upon 6 Oct 09 at 2119 UTC while underway in position 01-35N 050-42E, approximately 320NM east of Mogadishu, Somalia. One skiff with approximately six men onboard opened fire on the ship, likely mistaking t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.700000000096338, 1.583333299780463] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-384", - "dateofocc": "2009-10-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (ALAKRANA) hijacked 2 Oct 09 at 0345 UTC while underway in position 02-36S 048-34E, approximately 330NM southeast of Mogadishu, Somalia. Armed pirates attacked and hijacked the vessel. The vessel is currently anchored off t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.56666670032871, -2.599999999918623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-385", - "dateofocc": "2009-10-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier reported attempted boarding 3 Oct 09 at 2230 local time while anchored in position 22-00N 091-40E, Chittagong anchorage. Approximately 10 robbers in a wooden boat approached the vessel and attempted to board. The crew's alertne", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-386", - "dateofocc": "2009-10-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE STRAITS: A small boat with six robbers came alongside a product tanker at anchor from stbd side aft. Two robbers boarded the vessel and stole ship's properties. They were spotted by ship's crew who raised alarm and crew mustered. Robbers escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.175000000094542, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-202", - "dateofocc": "2009-04-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (PATRIOT) hijacked 25 Apr 09 at 0335 local time while underway in position 14-01N - 051-34E. Pirates in skiffs armed with guns attacked and hijacked the vessel. Seventeen crew members are onboard (Reuters, IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.566666700425685, 14.016666699795906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-387", - "dateofocc": "2009-10-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: A fishing vessel closed onto a general cargo vessel underway. Master increased speed ad took evasive maneuvers raised general alarm and contacted coalition warship. At distance of around 0.5 miles a white and blue hull skiff with 5 armed pi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.078888899799836, 12.263888900160396] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-314", - "dateofocc": "2008-09-06", - "subreg": "62", - "hostility_": "Pirate Attack", - "victim_d": "Tanker Vessel", - "descriptio": "GULF OF ADEN:Tanker fired upon on 6 SEP 2008 at 0705Z while underway in position 12-57.8N 47-01.6E. A white speedboat, less than 10 meters long with six persons on board approached from the port side, near the accommodation ladder. The general alarm was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.02666669957739, 12.963333299842702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-316", - "dateofocc": "2008-09-03", - "subreg": "62", - "hostility_": "SPEED BOAT", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADENContainer ship reported suspicious approach 3 Sep 08 at 0310 local time while underway in position 14-18.3N 050-34E. The vessel detected an unlit speedboat approaching the vessel approximately 2.2NM on starboard bow. As the speedboat approach", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.566666700393341, 14.305000000254836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-317", - "dateofocc": "2008-09-03", - "subreg": "62", - "hostility_": "SUSPICIOUS BOAT", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN Tanker reported suspicious approach 3 Sep 08 at 2030 UTC, while underway in position 13-44.4N 049-02.2E. The suspicious boat traveling at 14.5kts towards the vessel. Coalition forces were informed of the boats location and then the boat alt", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.036666700155024, 13.740000000052248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-318", - "dateofocc": "2008-09-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADENContainer ship (AL MANSOURAH) hijacked 3 Sep 08 at 0900 local time while underway in position 12-57.5N 047-04E, 17 miles off Al Mukalla, Yemen. The pirates reportedly sailed the vessel and anchored it off Caluula, Somalia. There are reportedl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.066666699830535, 12.958333299586229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-319", - "dateofocc": "2008-09-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier (ORSOLINA BOTTIGLIERI) fired upon 3 Sep 08 at 1450 UTC while underway in position 13-36.8N 049-13.16E approximately 40NM off the Yemen coast. Reported pirates attempted to close in on the vessel for boarding; however the vessel w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.221111100400776, 13.613333299908675] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-320", - "dateofocc": "2008-09-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "GULF OF ADENYacht (CARRE D'AS IV) hijacked 2 Sep 08 at 1853 UTC while underway in position 13-48N 050-32E, approximately 80NM north of Caluula, Somalia. The vessel reportedly departed Cocos Islands on 5 Aug 08 enroute to Aden, Yemen. There are reportedly", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.533333299699734, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-321", - "dateofocc": "2008-09-01", - "subreg": "62", - "hostility_": "SUSPICIOUS BOAT", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier reported suspicious approach 1 Sep 08 at 0600 UTC while underway in position 13-40.5N 049-08.7E. The suspicious boat was spotted on starboard bow at a distance of 3.7 miles. The vessel began evasive maneuvers. The suspicious boat", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.145000000374353, 13.675000000315435] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-194", - "dateofocc": "2009-04-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Two speed boats with five to six pirates in each boat armed with guns approached a general cargo ship on the stbd quarter at a distance of 100-150 meters. Vessel fired rocket flares at the pirate boats and contacted the coalition warship fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.791666700146266, 12.725000000149805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-322", - "dateofocc": "2008-09-01", - "subreg": "62", - "hostility_": "TWO SPEEDBOATS", - "victim_d": "LPG TANKER", - "descriptio": "GULF OF ADENLPG tanker reported suspicious approach 1 Sep 08 at 0735 local time while underway in position 12-48.5N 049-42.3E, Gulf of Aden. Two small speedboats approached the vessel from starboard side with entering ladders. A mother-ship was sighted a", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.705000000320467, 12.808333299986089] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-323", - "dateofocc": "2008-09-01", - "subreg": "63", - "hostility_": "SPEEDBOAT", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADENContainer ship reported suspicious approach at 0250 UTC, while underway in position 11-23.32N 066-22.72E, per 1 Sep 08 reporting. The vessel reported one suspicious blue fishing trawler with one speedboat. No further information (UKMTO).", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.378611100036096, 11.392222199574576] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-495", - "dateofocc": "2008-12-13", - "subreg": "62", - "hostility_": "SIX OR SEVEN SPEED BOATS", - "victim_d": "VESSEL (UNKNOWN TYPE)", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 13 Dec 08 at 0519 UTC while underway in position 14-33N 050-16E. Six or seven speed boats going approximately 20 kts with about six or seven persons onboard each boat approached the vessel and attempted", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.26666670029374, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-496", - "dateofocc": "2008-12-13", - "subreg": "62", - "hostility_": "WOODEN SPEED BOAT", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN: Container ship fired upon 13 Dec 08 at 1145 UTC while underway in position 13-43N 048-17E. One wooden speed boat with five to six persons armed with automatic weapons and RPGs chased and opened fire on the vessel. They attempted to board w", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.283333300301479, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-497", - "dateofocc": "2008-12-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (BOSPHORUS PRODIGY) hijacked 16 Dec 08 at 0904 UTC while underway in position 13-20N 047-57E. Ten pirates in two speed boats armed with automatic weapons and RPGs boarded the vessel. Three Turkish and eight Ukrainian cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.950000000232251, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-498", - "dateofocc": "2008-12-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BANGLADESH: Tanker robbed 11 Dec 08 at 0142 local time while anchored at position 22-15N 091-44E, Chittagong ¿A¿ anchorage. Six robbers armed with knives boarded the tanker. The alarm was raised and the crew mustered. The coast guard boarded for inves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-499", - "dateofocc": "2008-12-08", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TWO CARGO SHIPS", - "descriptio": "PHILIPPINES:Two cargo ships fired upon 8 Dec 08 at approximately 2330 local time in the Sultan Kudarat province in position 06-30N 124-00E. Armed bandits raided two cargo ships in the southern Philippines, wounding two sailors on board. Gunmen onboard p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.999999999858801, 6.500000000105899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-500", - "dateofocc": "2008-12-16", - "subreg": "57", - "hostility_": "TWO SPEED BOATS", - "victim_d": "TANKER", - "descriptio": "NIGERIA:OOW onboard a tanker drifting in position 03-43.3N 007-13.8E, observed two speed boats approachig it. Engines were started and crew alerted. Several bullets from automatic guns were fired towards the accommodation. The boats were white in color.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.218888900388436, 3.717500000373377] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-501", - "dateofocc": "2008-12-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "HEAVY LIFT SHIP", - "descriptio": "GULF OF ADEN:Nine pirates in two speed boats chased and successfully boarded a heavy lift ship in position 14-28N 051-36E. The pirates were on the main deck and could not enter the accommodation. Ship sent a distress message to the IMB Piracy Reporting C", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.600000000395255, 14.466666700395024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-502", - "dateofocc": "2008-12-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Tanker fired upon 16 Dec 08 at 0740 local time while underway in position 03-43N 007-13E, 41NM south of Bonny River. A crewmember on watch onboard the tanker observed two speed boats approaching. Engines were started and the crew was alerted. S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.216666699935729, 3.716666700272185] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-195", - "dateofocc": "2009-04-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Twelve pirates, in two white coloued speedboats ared with automatic wapons, chased and fired upon a bulk carrier underway. Vessel made evasive maneuvers and enforced anti piracy measures and prevented the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.666666700029793, 13.250000000099305] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-503", - "dateofocc": "2008-12-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel (ZHEN HUA 4) boarded, reported attempted hijacking 17 Dec 08 at 0424 UTC while underway in position 14-28N 051-36E. Nine pirates in two speed boats chased and successfully boarded the heavy lift ship. The pirates were on the main d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.600000000395255, 14.466666700395024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-504", - "dateofocc": "2008-12-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "GULF OF ADEN: Yacht reported suspicious approach on 17 DEC at 0935 local time while underway in position 14-24N 049-52E. Two high-speed boats converged on the yacht from port and starboard quarters at the same distance. The captain contacted UKMTO and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.866666699561335, 14.399999999731847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-186", - "dateofocc": "2009-04-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 14 Apr 09 at 1300 local time while underway in position 03:45S - 048:20E, approximately 385NM southeast of Mogadishu, Somalia. Two speed boats approached the vessel from the starboard bow at a distance of 4NM. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.333333300168192, -3.749999999551108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-187", - "dateofocc": "2009-04-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 11 Apr 09 at 1240 UTC while underway in position 00:18N - 051:44E, approximately 330NM off the coast of Somalia. Eight pirates armed with guns and an RPG in two skiffs launched from a mother ship, attacked the ves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.733333300098252, 0.300000000444982] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-188", - "dateofocc": "2009-04-12", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PHILIPPINES: Container ship robbed 12 Apr 09 at 1625 UTC in Manila. While waiting for pilot, duty crew member on routine rounds noticed robbers on the forecastle. The alarm was raised and the crew mustered, and proceeded to the forecastle to prevent any", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.983333299864626, 14.566666700128451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-189", - "dateofocc": "2009-04-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: A general cargo ship detected a speed boat approaching her at distance of seven nautical miles. Warship contacted and informed of the speed boat and mother vessel nearby. The speed boat doing a speed of 15 knots approached the vessel on the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.816666699629934, 12.850000000266277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-190", - "dateofocc": "2009-04-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "SOMALIA: A passing vessel relayed sighting of one large skiff loaded with fuel tanks towing two smaller skiffs in position 00-36S 049-14E, course 300, speed 3 knots. All vessels to remain vigilant and stay clear of the suspicious boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.233333299567732, -0.599999999853935] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-191", - "dateofocc": "2009-04-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Vessel (POMPEI) hijacked 18 Apr 09 at 0327 UTC while underway in position 02:45S - 056:48E, approximately 680NM off the coast of Somalia. Pirates in skiffs armed with automatic weapons and an RPG attacked and hijacked the vessel. Ten crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.800000000023829, -2.750000000418083] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-192", - "dateofocc": "2009-04-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "LAGOS, NIGERIA: Two motor boats with eleven robbers armed with long knives boarded a bulk carrier at berth. Robbers climbed using hooks and ropes. Robbers broke into store room and stole ship's stores. Duty officer raised alarm, crew mustered and rushed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-196", - "dateofocc": "2009-04-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DAR ES SALAAM ANCHORAGE, TANZANIA: Alert duty crew onboard a tanker at anchor saw a boat near the port quarter. The duty watchman raised alarm. On hearing the alarm ten robbers were sighted on the poop deck. The robbers jumped overboard and escaped. On i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-197", - "dateofocc": "2009-04-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SANDAKAN PORT, MALAYSIA: While at berth, two robbers boarded a container ship from a small boat during heavy rain. Alarm raised and crew mustered. Robbers jumped overboard and escaped in their boat. An inspection showed three container seals were tempere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-198", - "dateofocc": "2009-04-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (FRONT ARDENNE) reported attempted hijacking 18 Apr 09 at 1530 local time while underway in position 12:18N ¿ 046:29E. Seven armed men in a blue skiff approached the tanker from the starboard quarter. No shots were fired, but the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.483333299703645, 12.299999999933732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-388", - "dateofocc": "2009-10-11", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CONAKRY GUINEA: Nine priates armed with machine guns in a 15 meter length speed boat attempted to board a chemical tanker underway using hooks and ladders. Master raised alarm, activated DSC alert increased speed and took evasive maneuvers. Crew mustered", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.016666700004578, 9.249999999969987] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-389", - "dateofocc": "2009-10-10", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VENEZUELA: Tanker robbed 10 Oct 09 in the early morning while anchored in position 10-15.48N 064-41.5W, Puerto le Cruz anchorage. Robbers boarded the vessel and escaped with ship's stores. A crewmember discovered the theft at 0810 local time when he no", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.691666700271924, 10.2580555997381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-390", - "dateofocc": "2009-10-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "CAMEROON: Fishing vessel (ROSE III) attacked 10 Oct 09, while operating off the Bakassi Peninsula. No crewmembers were injured in the attack and the vessel was not damaged. Cameroon forces reportedly seized the men responsible for the attack (Reuters, R", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.833333300239758, 4.833333300110382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-391", - "dateofocc": "2009-10-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF OMAN: Container ship reported suspicious approach 11 Oct 09 at 1100 local time while underway in position 25-16.2N 058-14.9E, approximately 30NM southeast of Jask, Iran. A white speedboat 7 meters in length approached the vessel at a speed of 1", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.248333299728927, 25.269999999714628] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-392", - "dateofocc": "2009-10-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 7 Oct 09 at 1320 local time while underway in position 12-07N 045-26.7E. Three skiffs approached the vessel underway. The vessel increased speed, conducted evasive maneuvers, and enforced counter-piracy", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.445555599695638, 12.116666700363965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-393", - "dateofocc": "2009-10-15", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (KOTA WAJAR) hijacked 15 Oct 09 at 0237 UTC while underway in position 01-33S 054-52E, approximately 190NM north of Port Victoria, Seychelles. Owners of the vessel received a call stating that the vessel has been attacked a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.866666699723055, -1.550000000019566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-394", - "dateofocc": "2009-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (DRENNEC) fired upon 10 Oct 09 at 0359 UTC while underway in position 02-05S 055-58E, approximately 160NM north of Port Victoria, Seychelles. Vessel reported coming under fire from two skiffs, one white and one blue. A secu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.966666700388146, -2.083333299555647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-395", - "dateofocc": "2009-10-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier robbed 13 Oct 09 at 2105 UTC while anchored in position 22-10.2N 091-47.4E, Chittagong anchorage. Robbers armed with long knives boarded the vessel from the stern where one crew member was held hostage until they gained access", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.789999999743486, 22.169999999884169] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-396", - "dateofocc": "2009-10-12", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PHILIPPINES: Container ship robbed 12 Oct 09 while berthed in Pier 5, South Harbor, Manila. An undetermined number of robbers boarded the vessel and stole equipment. Port State Control Center dispatched personnel to intercept the robbers as they fled in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.966666699792199, 14.603333300327449] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-397", - "dateofocc": "2009-10-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (DE XIN HAI) hijacked 19 Oct 09 at 0815 UTC while underway in position 01-53S 060-05E, approximately 325NM northeast of Port Victoria, Seychelles. Pirates boarded and hijacked the vessel while underway. There are 25 crew memb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.083333300323318, -1.883333300088736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-398", - "dateofocc": "2009-10-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: One skiff with 5-6 armed pirates chased and fired upon a general cargo ship underway. Master increased speed carried out evasive maneuvers and, headed towards a coalition warship. The vessel had rigged barbed wires along the railing and act", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.924999999946237, 13.725000000182149] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-399", - "dateofocc": "2009-10-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker robbed 16 Oct 09 at 0300 local time while anchored at Lagos anchorage. Six robbers armed with guns boarded the vessel. They stole and transferred a cargo of oil into their boat and escaped. No injuries to the crew were reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-400", - "dateofocc": "2009-10-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOUTH CHINA SEA: Fishing vessel fired upon 14 Oct 09 at 1025 local time while underway in position 06-29N 107-43E, approximately 230NM northeast of the Anambas Islands. Men armed with machine guns in a boat chased the vessel and opened fire. The vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.716666700038218, 6.483333300208699] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-324", - "dateofocc": "2008-08-29", - "subreg": "62", - "hostility_": "SPPEDBOAT", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADENChemical tanker (BUNGA MELATI 5) hijacked 29 Aug 08 at 1400 UTC while underway in position 13-11N 046-38E, approximately 14NM off the coast of Yemen. The vessel was reportedly chased by a speedboat and requested coalition warship assistance.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.633333300203162, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-325", - "dateofocc": "2008-08-26", - "subreg": "62", - "hostility_": "SUSPICIOUS BOATS", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:Tanker reported suspicious approach 26 Aug 08 at approximately 2052 local time/1652 UTC while underway in position 12-27.29N 045-02.10E. Two suspicious small boats reportedly chased the vessel. The general alarm was raised; the crew mustered", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.034999999998604, 12.454722200114816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-326", - "dateofocc": "2008-08-26", - "subreg": "62", - "hostility_": "SUSPICIOUS VESSEL", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADENContainer ship reported suspicious approach 26 Aug 08 while underway in position 12-29.7N 044-59.44E. The vessel requested assistance. UKMTO Note: No weapons were seen and no concerted attempt to attack. CTF-150 investigated and now assess mi", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.990555599739423, 12.495000000043433] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-327", - "dateofocc": "2008-08-26", - "subreg": "62", - "hostility_": "SMALL CRAFT", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERSIAN GULF:Container ship reported suspicious approach 26 Aug 08 at 1930 local time while underway in position 25-41.3N 054-49.2E, 36NM northwest of Dubai, UAE. A small craft was sighted stationary, 4NM off the starboard bow. The small craft had a CPA", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.820000000085713, 25.688333299647184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-328", - "dateofocc": "2008-08-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "LPG TANKER", - "descriptio": "INDONESIALPG tanker boarded, robbed 30 Aug 08 at 0430 local time while at anchorage in position 00:04.8S 117:34.3E, Santan Port. Several robbers boarded the vessel at the forward mooring station. The ship¿s crew raised the alarm and the intruders esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.571666700118612, -0.080000000160908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-329", - "dateofocc": "2008-09-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SINGAPORE:Bulk carrier (STAR CAPPELLA 1) boarded, robbed 1 Sep 08 at 0305 local time while at anchorage in position 01-18.11N 104-11.58E, south of Tg Ayam, Johor. Three robbers armed with knives boarded the ship from the starboard quarter using grappling", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.199444400227151, 1.303055599956565] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-330", - "dateofocc": "2008-09-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "SAILBOAT", - "descriptio": "VENEZUELASailboat boarded, robbed, tourist killed 15 Sep 08 while at anchorage, Caraballeda. Several armed robbers boarded the vessel. The robbers killed the French tourist. Four shots were fired at the victim when he resisted the armed men on his vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.99999999999045, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-331", - "dateofocc": "2008-09-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL PIPLINE", - "descriptio": "NIGERIAEmancipation of Niger Delta (MEND) and Niger Delta Volunteer Force (NDVF) claim Shell/Agip facility attack 17 Sep 08 at 0930 local time/0830 UTC, Rumuekpe, Rivers State. According to a MEND spokesman, a major trunk crude oil pipeline, believed to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.266666699705411, 5.416666700237272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-332", - "dateofocc": "2008-09-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PIPELINE", - "descriptio": "NIGERIAMEND and NDVF claim Shell facility attack 16 Sep 08 at 2200 local time/2100 UTC Orubiri flow station. The groups claim they attacked and destroyed the Orubiri flow station. The MEND also stated that it killed all soldiers on guard at the station a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.283333299777837, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-505", - "dateofocc": "2008-12-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Vessel (WADI AL-ARAB) fired upon 25 Dec 08 at 0815 UTC while underway in position 14-13N 050-50E. Vessel reported coming under fire by a single boat. Another ship passing by alerted the IMB who then requested assistance from coalition forc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.833333299799392, 14.216666700162136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-506", - "dateofocc": "2008-12-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "Johor outer port limit Malaysia: At 0340 local time six armed robbers boarded an offshore vessel 01-18.3N 104-08.54E and stole ship's stores and properties. Authorities informed who later boarded for investigation.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.148333299684452, 1.300833299679141] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-507", - "dateofocc": "2008-12-25", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "Saigon river, Vietnam: At 0030 local time an AB stationed on forecastle deck heard some noises and he immediately conducted a search. Two robbers were seen escaping. Upon investigation store padlocks were found roken. Nothing stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.75999999958907, 10.686944399709887] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-508", - "dateofocc": "2008-12-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "Chittagong anchorage, Bangladesh: At 0340 local time duty oiler onboard a tanker spotted armed robbers ear the engine store area. The alarm was raised, crew alerted and authorities contacted. Robbers escaped with stolen engine spares.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-1", - "dateofocc": "2009-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:SIX PIRATES IN ONE WHITE COULOURED SPEED BOAT ATTEMPTED TO BOARD A BULK CARRIER UNDERWAY. THREE OF THESE PIRATES WERE ARMED WITH MACHINE GUNS AND OPENED FIRE ON THE VESSEL. MASTER CARRIED OUT EVASIVE MANOEUVRES AND CONTACTED A COALITION WARS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.701388900383222, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-2", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:PIRATES IN THREE SKIFFS ATTACKED A TANKER UNDERWAY. THEY FIRED UPON THE TANKER AND ATTEMPTED TO BOARD. MASTER RAISED ALARM, CONTACTED COALITION WARSHIPS, INCREASED SPEED AND TOOK EVASIVE MANOEUVRES. A COALITION HELICOPTER ARRIVED AND THE PI", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.650000000229625, 13.699999999799104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-3", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:PIRATES IN SPEED BOATS APPROACHED A TANKER UNDERWAY. ONE SPEED BOAT WAS SPOTTED FOUR NM AND THE OTHER TWO WERE DRIFTING SEVEN NM AHEAD OF THE TANKER. MASTER RAISED ALARM, INCREASED SPEED, TOOK EVASIVE MANOEUVRES AND CREW ACTIVATED ANTI-PIRA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.534722199954274, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-4", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:ARMED PIRATES ATTACKED AND HIJACKED A GENERAL CARGO SHIP UNDERWAY. 28 CREWMEMBERS TAKEN HOSTAGE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, 13.916666700062478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-6", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:TWO SKIFFS APPROACHED A TANKER UNDERWAY AND OPENED FIRE WITH AUTOMATIC WEAPONS. MASTER INCREASED SPEED AND MADE EVASIVE MANOEUVRES, AND SENT A DISTRESS MESSAGE VIA VHF RADIO. A WARSHIP AND A HELICOPTER WERE SENT TO ASSIST THE TANKER. UPON SE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.049999999933334, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-7", - "dateofocc": "2008-12-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:A BULK CARRIER UNDERWAY WAS CHASED AND FIRED UPON BY PIRATES IN SPEED BOAT. NAVAL WARSHIPS INFORMED AND ATTACK WAS PREVENTED. FURTHER REPORT IS AWAITED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.449999999766419, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-8", - "dateofocc": "2008-12-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "GULF OF ADEN:VEHICLE CARRIER REPORTED SUSPICIOUS APPROACH 22 DEC 08 AT 0530 LOCAL TIME WHILE UNDERWAY IN POSITION 13-44N 049-05E. AN 8 METER WHITE COLORED SKIFF APPROACHED THE VESSEL FROM THE STARBOARD BOW AT A SPEED OF APPROXIMATELY 25 KTS. THE MASTER C", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.083333299967592, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-9", - "dateofocc": "2008-12-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOUS APPROACH 27 DEC 2008 AT 1450 LOCAL TIME WHILE UNDERWAY IN POSITION 13-52N 049-27E. A SUSPICIOUS BOAT APPROACHED THE VESSEL FROM THE STARBOARD QUARTER APPROXIMATELY 3 MILES AWAY AT A SPEED OF 25 KTS. THE ALARM WAS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.449999999831107, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-10", - "dateofocc": "2008-12-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "VESSEL (S VENUS)", - "descriptio": "GULF OF ADEN:VESSEL (S VENUS) REPORTED BEING FIRED UPON 31 DEC 08 AT 1330Z WHILE UNDERWAY IN POSITION 13-09N 047-29E. A FRENCH FRIGATE IN THE VICINITY INTERCEPTED THE PIRATES AFTER RESPONDING TO THE DISTRESS CALL FROM THE VESSEL (MSCHOA, AFP,IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.483333299735989, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-11", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOUS APPROACH 1 JAN 09 AT 0755 LOCAL TIME WHILE UNDERWAY IN POSITION 14-23N 051-14E. THE VESSEL WAS APPROACHED BY THREE SPEED BOATS THAT BEGAN FOLLOWING THE VESSEL.. THE VESSEL INCREASED SPEED AND THE BOATS EVENTUALLY D", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.23333329963242, 14.383333299834646] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-12", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL FIRED UPON 1 JAN 09 AT 1530 LOCAL TIME WHILE UNDERWAY IN POSITION 13-53N 049-29E. FOUR ARMED MEN IN A SPEED BOAT APPROACHED THE VESSEL AND BEGAN FIRING. THE VESSEL CONDUCTED EVASIVE MANEUVERS AND THE PIRATES ABORTED THEIR ATTEMPT.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.483333299800677, 13.883333300268191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-199", - "dateofocc": "2009-04-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker fired upon 18 Apr 09 at 0745 UTC while underway in position 12:14N ¿ 045:45E. A 20 meter black hull boat with a black sail was spotted. Once the boat was astern, it launched a white hull skiff which proceeded towards the t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.749999999801389, 12.233333300169818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-200", - "dateofocc": "2009-04-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GULF OF ADEN: Fishing dhow hijacked 5 Apr 09 in position 10:40N - 045:00E. The dhow reported being hijacked by approximately 20 pirates. On or about 22 Apr 09, a private security team from Puntland rescue the crew members and release the dhow. Two pirat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.00000000000199, 10.666666699732559] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-201", - "dateofocc": "2009-04-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "SOUTH CHINA SEA: Tug (PROSPAQ T1) hijacked 7 Apr 09 at 2035 local time while underway in position 04:48N - 106:34E, approximately 60NM north of Anambas Islands. While en route from Singapore to Vietnam, 12 pirates armed with two hand guns and knives boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.566666700405733, 4.800000000140813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-203", - "dateofocc": "2009-04-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship fired upon 25 Apr 09 at 0600 local time while underway in position 14-00N - 051-31E. Two small speed boats with five persons armed with guns approached the vessel. When they were approximately three cables away from the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.516666699659652, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-204", - "dateofocc": "2009-04-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported coming under pirate attack at 1050 UTC on 27 APR 09 in position 13-10N 056-37E. A white colored wooden speed boat 10-12m in length was launched from mothership and traveled at a speed of 23 knots toward the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.616666699554798, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-205", - "dateofocc": "2009-04-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (GNA) hijacked 26 Apr 09 at 1130 UTC while underway in position 13-25N - 047-24E. The vessel was attacked and hijacked by approximately 14 pirates. The tanker was later taken back by Yemeni forces (AFP, IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.399999999899705, 13.416666699596647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-206", - "dateofocc": "2009-04-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "PASSENGER VESSEL", - "descriptio": "Pirates in a skiff attacked and fired upon a passenger vessel underway. The attempted boarding was unsuccessful due to vessels evasive maneuvers and the armed security team onboard the vessel. Vessel sustained light damages.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.666666700288488, -1.283333299889478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-207", - "dateofocc": "2009-04-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported being fired upon at 0704 UTC on 28 APR 09 in position 13-50N 056-26E 44 miles north by northwest of the incident reported on the 27 APR 09. Two skiffs were reportedly launched from mothership and fired upon the ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.433333300160314, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-208", - "dateofocc": "2009-04-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker robbed, crew members kidnapped 20 Apr 09 at 2030 local time while underway in position 04-00N - 006-07E, approximately 50NM southwest of Onne. Eight pirates in a speed boat wearing masks and armed with guns fired upon the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.116666700169958, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-209", - "dateofocc": "2009-04-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 28 Apr 09 at 0630 UTC while underway in position 12-31N - 046-07E. One blue colored speed boat with six armed men onboard approached the vessel and opened fire with automatic weapons. The vessel conducted evasive maneuver", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.116666699664904, 12.51666670019705] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-401", - "dateofocc": "2009-10-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: RoRo vessel (JOLLY ROSSO) fired upon 22 Oct 09 at 0415 UTC while underway in position 03-45.28S 046-43.24E, approximately 320NM southeast of Kismayo, Somalia. Men armed with automatic weapons and RPGs in two skiffs opened fire on the vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.720555600343914, -3.754722200132051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-402", - "dateofocc": "2009-10-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "570 MILES SE OF MOGADISHU, SOMALIA: Pirates armed with automatic weapons and rpgs in skiffs opened fire on a bulk carrier underway. The pirates boarded, took hostage 26 crewmembers and hijacked her. The vessel is now under the control of the pirates and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.583333299631136, -4.150000000283512] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-403", - "dateofocc": "2009-10-21", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "35 MILES N OFF CONAKRY, GUINEA: Eight pirates in a small black hull boat approached a general cargo ship underway. D/O raised alarm, took evasive maneuvers and increased speed. As the boat approached at a distance of 150 meters, crew noticed one pirate w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.199999999574288, 9.216666700000417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-404", - "dateofocc": "2009-10-25", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "HAIPHOG ANCHORAGE, VIETNAM: Robbers boarded an anchored container ship from the forecastle and stole ship's stores before escaping. Local authorities informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.880000000348389, 20.641666699672896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-405", - "dateofocc": "2009-10-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "475 MILES SOUTH OF MOGADISHU, SOMALIA: Six pirates armed with machine guns in a white plastic hull speedboat, chased a container ship underway. Ship raised alarm, adopted anti-piracy preventive measures and increased to maximum speed. At a distance of ab", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.166666700398594, -6.128333300194583] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-406", - "dateofocc": "2009-10-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (CAP ST. VINCENT) fired upon 27 Oct 09 at 1020 UTC while underway in position 01-25N 050-41E, approximately 330NM east of Mogadishu, Somalia. The vessel reported being chased and fired upon by two skiffs with approximately", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.683333300199195, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-407", - "dateofocc": "2009-10-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "INDIAN OCEAN: Sailing vessel (LYNN RIVAL) hijacked 23 Oct 09 while underway approximately 60NM west of Port Victoria, Seychelles. The vessel was bound for Tanzania when it dispatched an emergency distress signal on 23 Oct, and then lost contact (AP, AFP", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.355555599866875, -4.580833299957931] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-408", - "dateofocc": "2009-10-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship robbed 19 Oct 09 at 2106 local time while anchored in position 22-10.7N 091-43.3E, Chittagong anchorage. Approximately 25 robbers in three wooden boats armed with long knives approached the vessel from astern. Fifteen of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.721666699777245, 22.17833330037007] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-409", - "dateofocc": "2009-10-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (THAI UNION 3) hijacked 29 Oct 09 at 0247 UTC while underway in position 01-55S 055-53E, approximately 165NM north of Port Victoria, Seychelles. Armed pirates in two skiffs approached the vessel from both sides. The vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.883333299827768, -1.916666699883081] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-410", - "dateofocc": "2009-11-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "450 MILES FROM SEYCHELLES: A merchant vessel reported coming uder attack at 1213 UTC on 02 Nov 09 in position 07-55S 047-40E, approximately 450 miles from Seychelles. Two skiffs with 5-6 persons on board fired at the vessel with AK-47's, damaging the por", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.666666700029793, -7.916666700077087] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-411", - "dateofocc": "2009-11-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "320 MILES EAST OF MOMBASA, KENYA: A bulk carrier is under attack at 0800 UTC on 02 Nov 09 in position 03-44.1S 045-41.3E by armed pirates in skiffs with rpgs and automatic rifles. Ships area advised to be extra cautious.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.688333300294005, -3.734999999681008] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-412", - "dateofocc": "2009-10-26", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "NICARAGUA: Sailing vessel (BLU INTERLUDE) robbed 26 Oct 09 at 0700 local time while underway in position 15-04.7N 082-55.1W, approximately 14NM off Cabo Gracias a Dios. While sailing along the Nicaraguan banks, the vessel was flagged down by a green pa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.918333300006964, 15.078333300410236] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-333", - "dateofocc": "2008-09-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PIPELINE", - "descriptio": "NIGERIA:MEND attack two oil installations 15 Sep 08 Bakan, Rivers State. The MEND claimed responsibility for sabotaging a pipeline operated by Shells Nigeria unit and Chevron operated oilfield. However, a military spokesman dismissed MEND's claims, sayin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.416666700237272, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-334", - "dateofocc": "2008-09-08", - "subreg": "57", - "hostility_": "SUSPICIOUS BOAT", - "victim_d": "CONTAINER SHIP", - "descriptio": "NIGERIAContainer ship boarded 8 Sep 08 at 0500 local time, Tincan Island container terminal, berth no. 4, Lagos. The Duty AB onboard detected a suspicious boat. Upon checking, he discovered one robber had already boarded. There were six more persons in t", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.385555599756401, 6.168611099914528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-335", - "dateofocc": "2008-09-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "GULF OF ADEN:General cargo vessel hijacked 18 Sep 2008 at 0618 UTC while drifting in position 14-12N 050-08E, 40NM off Yemen coast. The vessel reportedly had engine problems and was later reported to have been hijacked by seven to eight pirates (Operator", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.133333299866649, 14.200000000264936] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-336", - "dateofocc": "2008-09-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADENChemical tanker reported suspicious approach 18 Sep 08 at 0730 UTC while underway in position 13-57N 049-34E. Suspected pirates were reportedly following the vessel before moving away. The ship and crews are reportedly safe and the vessel is", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.566666700360997, 13.950000000032048] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-337", - "dateofocc": "2008-09-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADENChemical tanker (STOLT VALOR) hijacked 15 Sep 08 at 1047 UTC/1316 local time, while underway in position 13-33N 049-09E, 60NM south of Al Mukalla, Yemen. There are approximately 15 pirates onboard and 22 crewmembers held hostage. The crew con", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.149999999731449, 13.550000000198963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-338", - "dateofocc": "2008-09-15", - "subreg": "62", - "hostility_": "BLUE SPEEDBOAT", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 15 Sep 08 at 1453 UTC while underway in position 13-38.87N 048-59.0E. The duty officer onboard the vessel noticed a possible red mother-ship releasing speedboats. The blue speedboat had approximately six pirate", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.983333300234165, 13.635555600312728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-339", - "dateofocc": "2008-09-13", - "subreg": "62", - "hostility_": "GREEN AND WHITE WOODEN BOAT", - "victim_d": "TANKER", - "descriptio": "GULF OF ADENTanker (GOLDEN ELIZABETH) reported suspicious approach 13 Sep 08 at 0845 local time/0445 UTC while underway in position 13-32.5N 048-47.5E. A suspicious green and white wooden boat, 7-10 meters long traveling at approximately 20kts had a crew", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.791666700178553, 13.541666699713119] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-340", - "dateofocc": "2008-09-11", - "subreg": "62", - "hostility_": "25 SPEEDBOATS", - "victim_d": "GENERAL CARGO", - "descriptio": "GULF OF ADENGeneral cargo vessel reported suspicious activity 11 Sep 08 at 0600 local time/0300 UTC while underway in position 12-38.3N 045-39.0E. The vessel reported approximately 25 speedboats in the vicinity in position 12-35.9N 045-35.3E (UKMTO, Oper", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.650000000067962, 12.638333300259376] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-341", - "dateofocc": "2008-09-11", - "subreg": "62", - "hostility_": "BLUE SPEEDBOAT", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier reported suspicious approach 11 Sep 08 at 0925 UTC while underway in position 13-17N 047-36E. A blue speedboat with three masked men onboard reportedly followed the vessel at full speed. The speedboat was initially stationary bef", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.600000000265936, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-342", - "dateofocc": "2008-09-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADENChemical tanker reported attacked 11 Sep 08 at 1335 UTC, while underway in position 12-24N 045-23E, off Yemen coast. A failed piracy attack was reported by the vessels Master. Naval helicopters from UKMTO promptly arrived and chased the pirat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.383333299937874, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-343", - "dateofocc": "2008-09-10", - "subreg": "62", - "hostility_": "SPEEDBOAT", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier fired upon 10 Sep 08 at 0343 UTC while underway in position 12-39.4N 048-23.0E. One speedboat chased and fired at the vessel. The vessel took evasive actions and contacted the IMB Piracy Reporting Centre for assistance. They duty", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.383333300034906, 12.656666700183621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-344", - "dateofocc": "2008-09-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO", - "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 9 Sep 08 at 1513 UTC while underway in position 13-24N 048-20E. Eight pirates in a skiff reportedly chased the vessel. They fired upon the vessel and attempted to board. The Master contacted the coalition warsh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.333333300168192, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-13", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL FIRED UPON 2 JAN 09 WHILE UNDERWAY IN POSITION 13-07N 047-27E. VESSEL REPORTED COMING UNDER ATTACK BY PIRATES. THERE IS NO FURTHER INFORMATION TO PROVIDE AT THIS TIME.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.449999999766419, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-14", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "VESSEL (BLUE STAR)", - "descriptio": "GULF OF ADEN:VESSEL (BLUE STAR) HIJACKED 2 JAN 09 AT 0715 LOCAL TIME WHILE UNDERWAY, APPROXIMATELY 50 NM SOUTHWEST OF AL MUKALLA, YEMEN. FIFTEEN ARMED PIRATES OVERTOOK THE VESSEL AFTER THE SHIP EXITED THE RED SEA, THE VESSEL WAS CARRYING A CARGO OF 6,00", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.233333299600076, 14.116666700428652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-15", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL FIRED UPON 2 JAN 09 AT 727 LOCAL TIME WHILE UNDERWAY IN POSITION 13-11N 047-32E. ONE SPEED BOAT WAS SPOTTED 4 NM AWAY ON THE STARBOARD QUARTER, APPROACHING WITH A SPEED OF 17 KTS. ANOTHER TWO WERE 7 NM AHEAD DRIFTING. THE BRIDGE AND E", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.533333299602702, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-16", - "dateofocc": "2008-12-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "UNKNOWN VESSEL", - "descriptio": "MALAYSIAVessel robbed 12 Dec 08 at 0340 local time while anchored at position 01-18N 104-08E, Johor outer port limit. Six armed robbers boarded the offshore support vessel and stole ship¿s stores and properties. Authorities were informed and later board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-17", - "dateofocc": "2008-12-28", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PERU:Bulk carrier boarded 28 Dec 08 at 1950 local time while anchored at position 12-01.9S 077-11.1W, Callao anchorage. Ten robbers took hostage one duty crew and tied his hands and legs. Robbers stole ship's stores, property and escaped. Port control wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183611099591417, -12.019166700068126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-18", - "dateofocc": "2008-12-26", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "BRAZIL:Yacht robbed 26 Dec 08 while anchored at position 12-53.05S 038-41.15W, Bahia de Todos Os Santos. Two armed robbers boarded the yacht and assaulted the two crew members. Robbers stole ship's properties, cash and crew properties before escaping. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.687500000175135, -12.884722199896714] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-19", - "dateofocc": "2009-01-03", - "subreg": "22", - "hostility_": "ONE PIRATE", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA:Bulk carrier boarded 03 Jan 09 at 0305 local time while anchored at position 03-49.6N 077-09.4W, Buenaventura anchorage. One robber was sighted near the forward cargo compartment. Master raised alarm and mustered ship's crew. Master reported to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.151111099723039, 3.818333300207939] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-20", - "dateofocc": "2009-01-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:ARMED PIRATES IN FOUR BOATS ATTACKED AND HIJACKED A PRODUCT TANKER UNDERWAY. INFORMATION INDICATES THE VESSEL HAS BEEN TAKEN TO EYL. 15 CREWMEMBERS TAKEN HOSTAGE. FURTHER DETAILS ARE AWAITED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.166666700398594, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-21", - "dateofocc": "2009-01-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:A MERCHANT VESSEL REPORTED COMING UNDER FIRE WHILE UNDERWAY IN POSITION 12-24.5N 044-57.7E AT 0810Z ON 13 JAN 2009, APPROXIMATELY 21 NM SSW OF ADEN, YEMEN. ATTACK SKIFF WAS DISCRIBED A BLACK ZODIAC-TYPE APPROXIMATELY 6 METERS IN LENGTH WITH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.951944400013076, 12.401388900018674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-22", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:TANKER (SEA PRINCESS II) HIJACKED 2 JAN 09 AT 0829 UTC WHILE UNDERWAY IN POSITION 13-07N 047-27E. VESSEL REPORTED COMING UNDER ATTACK BY PIRATES. THE TANKER IS NOW ANCHORED AT EYL, SOMALIA. THERE IS NO FURTHER INFORMATION TO PROVIDE AT THIS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.866666699593679, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-23", - "dateofocc": "2009-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:CARGO SHIP REPORTED SUSPICIOUS APPROACH 2 JAN 09 AT 1240 LOCAL TIME WHILE TRANSITING THE GULF OF ADEN. THE SHIP DISCOVERED TWO BLUE SPEED BOATS FOLLOWING IT AT 1240 LOCAL TIME. THE MASTER CONTACTED THE IMB AND TWO COALITION WARSHIPS NEARBY A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.749999999898421, 13.616666699962821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-24", - "dateofocc": "2009-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:TANKER (DONAT) REPORTED ATTEMPTED BOARDING 4 JAN 09 WHILE UNDERWAY. TEN PIRATES IN A SPEED BOAT ATTEMPTED TO BOARD THE VESSEL WHILE UNDERWAY. ACCORDING TO THE SHIP'S MASTER, THE CREW OF THE TANKER MANAGED TO DEFEND THEMSELVES BY USING FIRE-F", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.866666699593679, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-25", - "dateofocc": "2009-01-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOS APPROACH 7 JAN 09 AT 1330 UTC WHILE UNDERWAY IN POSITION 12-30N 043-47E. THE MASTER REPORTED TWO SUSPICIOUS BOATS FOLLOWING THE VESSEL. NO FURTHER INFORMATION WAS PROVIDED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.783333299706271, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-210", - "dateofocc": "2009-04-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel fired upon 29 Apr 09 at 1550 local time while underway in position 01-40S - 047-12E, approximately 280NM southeast of Barawe, Somalia. Five men armed with automatic weapons in a white colored speed boat approached the vessel from th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.200000000432851, -1.666666699650136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-211", - "dateofocc": "2009-04-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel fired upon 28 Apr 09 at 0704 UTC while underway in position 13-49N - 056-30E, approximately 380NM northeast of Caluula, Somalia. Two skiffs were launched from a mother ship and fired two RPGs at the bridge and missed. Automatic weap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.499999999924228, 13.816666700329051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-212", - "dateofocc": "2009-04-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (NS COMMANDER) fired upon 27 Apr 09 at 1050 UTC while underway in position 13-10N - 056-37E, approximately 320NM east of Caluula, Somalia. One speed boat with three armed men approached the vessel and ordered it to stop. The captain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.616666699554798, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-213", - "dateofocc": "2009-04-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "PASSENGER SHIP", - "descriptio": "INDIAN OCEAN: Passenger ship (MELODY) fired upon 26 Apr 09 at 1942 UTC while underway in position 01:17S ¿ 055:40E, approximately 480NM east of Hobyo, Somalia. Six men in a small white speed boat attacked and fired upon the ship. An armed security onbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.666666700288488, -1.283333299889478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-214", - "dateofocc": "2009-04-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TANZANIA: Tanker robbed 21 Apr 09 at 0510 local time while anchored in position 06-46S - 039-21E, Dar es Salaam anchorage. Alert duty crew member onboard saw a boat near the port quarter and raised the alarm. On hearing the alarm, 10 robbers were sighte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.349999999774298, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-215", - "dateofocc": "2009-04-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MALAYSIA: Container ship boarded 21 Apr 09 at 0345 local time while in Sandakan port. While at berth, two robbers boarded the vessel from a small boat during a heavy rain. The alarm was raised and the crew mustered. The robbers jumped overboard and esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-216", - "dateofocc": "2009-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SOUTH CHINA SEA: Container ship robbed 22 Apr 09 at 2145 local time while underway in position 03-10N - 105-28E, approximately 30NM west of the Anambas Islands. Five pirates armed with long knives in a boat boarded the vessel. They attacked the captain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.466666699740642, 3.16666669993964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-217", - "dateofocc": "2009-04-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker robbed 20 Apr 09 at 1841 UTC in position 03-24N - 105-29E, approximately 30NM northwest of the Anambas Islands. Eight pirates armed with knives boarded the vessel and stole cash before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.483333299813069, 3.40000000027544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-218", - "dateofocc": "2009-05-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: A merchant vessel reported coing under pirate attack at 0430 UTC on 01 May 09 in position 03-05S 053-19E approximately 180 miles northwest of Seychelles. Vessel first observed mothership with 2 high speed boats in the distance, and after 30", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.316666700257485, -3.083333299587991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-219", - "dateofocc": "2009-05-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Another merchant vessel reported coming under attack at 0530 UTC on 01 May 09 in position 04-52S 060-06E approximately 250 miles east of Seychelles. Vessel first sighted pirates about 11 miles away bearing 120 degrees. After about 20 minute", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.100000000220518, -4.866666700113399] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-249", - "dateofocc": "2011-05-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "AROUND 183 MILES OFF COMOROS: Four pirates in a skiff chased and fired upon a vehicle carrier underway. Master raised alarm, increased speed and took evasive maneuvers resulting in the pirates aborting the attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.743333300255472, -9.410000000291745] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-220", - "dateofocc": "2009-04-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ALPHOUSE ISLAND: Two speed boats the first, white hull and black stripes with 6-7 pirates and the second boat with white hull and 3-4 pirates chased a container ship and fired automatic weapons and rpg. The vessel sustained damages to it's stbd side acco", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.533333299732078, -7.766666699577627] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-413", - "dateofocc": "2009-10-26", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ECUADOR: Container ship robbed 26 Oct 09 at 2222 UTC while underway in position 02-30S 080-04W, Guayaquil. Five men armed with guns and knives boarded the vessel underway. They broke open containers, stole goods, and escaped in their boat. The coast gu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.066666700207065, -2.500000000185196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-414", - "dateofocc": "2009-10-25", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GUINEA: Bulk carrier robbed 25 Oct 09 at 1500 local time while anchored in position 09-25.4N 013-43.3W, approximately 6NM south of Conakry. Five robbers armed with guns boarded the vessel and stole ship's stores and crewmembers¿ personal belongings.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.721666700161393, 9.423333299926071] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-415", - "dateofocc": "2009-10-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA: Bulk carrier robbed 30 Oct 09 at 2125 UTC while anchored in position 06-08.16N 003-27.68E, Lagos anchorage. Nine armed men in a speedboat boarded the vessel and opened fire. They took all the crewmembers hostage. They assaulted the crew and da", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.461111100431765, 6.135833300370621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-416", - "dateofocc": "2009-10-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker robbed 30 Oct 09 at 2015 local time while underway in position 06-10N 003-33E, Lagos anchorage. Six men armed with guns and knives in a speedboat boarded the vessel as it was drifting. The master raised the alarm, activated SSA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.549999999875581, 6.166666700036672] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-417", - "dateofocc": "2009-10-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon 31 Oct 09 at 1530 UTC while underway in position 13-26N 049-42E. Two skiffs chased and opened fire on the vessel. They attempted to board, but due to effective counter piracy measures, the two skiffs aborted the at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.700000000064051, 13.433333299669073] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-418", - "dateofocc": "2009-11-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (JO CEDAR) fired upon 2 Nov 09 at 1213 UTC while underway in position 07-55S 047-40E, approximately 530NM southeast of Mombassa, Kenya. One skiff with five armed men onboard chased the vessel and opened fire while two more", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.666666700029793, -7.916666700077087] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-419", - "dateofocc": "2009-11-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (HARRIETTE) fired upon 2 Nov 09 at 0810 UTC while underway in position 03-34.3S 045-40.1E, approximately 270NM southeast of Kismayo, Somalia. Two skiffs with six armed men in each boat chased and fired upon the vessel. The me", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.668333300167433, -3.57166670023787] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-420", - "dateofocc": "2009-10-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (AVEL VAD) fired upon 31 Oct 09 at 0831 UTC while underway in position 01-29N 051-38E, approximately 370NM east of Mogadishu, Somalia. Two blue skiffs, 5-6 meters long, opened fire on the vessel. They aborted the attack aft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.633333300364825, 1.483333300047036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-421", - "dateofocc": "2009-10-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (ARTZA) fired upon 31 Oct 09 at 0730 UTC while underway in position 02-00N 050-10E, approximately 290NM east of Mogadishu, Somalia. Three skiffs opened fire on the vessel. A security team onboard the vessel returned fire in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.166666699660993, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-422", - "dateofocc": "2009-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "690 MILES SOUTH OF MOGADISHU, SOMALIA: Pirates have attacked and hijacked a bulk carrier underway. Further information awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.091388899573985, -9.672500000266496] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-423", - "dateofocc": "2009-11-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CIWANDAN ANCHORAGE, INDONESIA: Four robbers in a small boat boarded a bulk carrier at anchor from the stern. The robbers tied up one duty AB and took the other one at knife point to the engine room. The robbers stole engine spares and escape. No injuries", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.939999999796385, -6.010000000361629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-424", - "dateofocc": "2009-11-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: A small speedboat was sighted at a distance of four miles by a general cargo ship underway. When the boat passed the port beam of the ship it immediately changed course and approached the ship from astern. Duty officer raised alarm contacte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.934999999559864, 13.713333299642159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-425", - "dateofocc": "2009-11-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "CHENNAI ANCHORAGE, INDIA: Four robbers in a boat attempted to board an anchored chemical tanker from the forecastle. Duty crew sighted the robbers and raised the alarm. All crew mustered and rushed to the location. On seeing the crew alertness, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.358333299787432, 13.081666700399694] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-345", - "dateofocc": "2008-09-13", - "subreg": "61", - "hostility_": "THREE WHITE SPEEDBOATS", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEANGeneral cargo vessel hijacked 18 Sep 08 at 0200 UTC while underway in position 02-21.49N 050-52.02E, 236NM off Somali coast. No further information (IMB, Operator).", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.869999999823051, 2.363611099894911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-346", - "dateofocc": "2008-09-13", - "subreg": "63", - "hostility_": "THREE WHITE SPEEDBOATS", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEANFishing vessel (LE DRENNEC) fired upon 13 Sep 08 at 0500 UTC while underway in position 02-10N 054-37E, 427NM off Somali coast. Three white speedboats, possibly from a mother-ship, fired rockets and tried to close onto the vessel. The master", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.61666670038943, 2.166666699907296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-347", - "dateofocc": "2008-09-11", - "subreg": "63", - "hostility_": "TUNA BOAT", - "victim_d": "TRAWLER", - "descriptio": "INDIAN OCEANTrawler (PLAYA DE ANZORAS) reported suspicious approach 11 Sep 08 during nightfall, 415NM off Somali coast. The tuna boat reacted quickly and headed out to sea, and the suspected pirates followed it for a while but eventually moved away. No s", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.61666670038943, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-348", - "dateofocc": "2008-09-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "INDIAGeneral cargo vessel (KINSHIP PROSPERITY) boarded 13 Sep 08 at 0320 local time while at anchorage in position 09-57.7N 076-15.8E, Port of Kochi. Two robbers dressed in local attire boarded the vessel from a speedboat while 10 other men waited in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.252222199891492, 9.95194439978053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-349", - "dateofocc": "2008-09-09", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAMContainer ship reported attempted boarding 9 Sep 08 at 0200 local time, Vung Tau anchorage. The duty AB onboard the vessel, noticed one perpetrator attempting to board via the anchor chain. The crew was alerted. Upon seeing the alert crew, the per", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.000000000208388, 10.166666700166047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-350", - "dateofocc": "2008-09-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIABulk carrier boarded, robbed 6 Sep 08 at 0240 local time, Tanjung Bara anchorage. Robbers boarded the vessel via the forecastle and stole ship¿s stores. The alarm was raised and the crew mustered. The robbers escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.452222199752555, -2.536666700208912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-351", - "dateofocc": "2008-09-07", - "subreg": "71", - "hostility_": "15 PIRATES", - "victim_d": "TUG", - "descriptio": "MALAYSIATug hijacked 7 Sep 08 at 2030 local time off Tioman Island. Approximately 15 pirates armed with long knives boarded and hijacked the tug towing a barge. The vessel was traveling from Singapore to Thailand in ballast. The pirates landed the seven", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.499999999710212, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-352", - "dateofocc": "2008-09-19", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "VENEZUELA General cargo ship boarded 19 Sep 08 at 2145 local time while in position 10-16.3N 064-34.3W, 2nm north of Guanta port, Venezuela. Five robbers broke into the forecastle store and stole ship's stores and property. The ships alarm was raised and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.571666700411924, 10.271666700155947] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-353", - "dateofocc": "2008-09-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADENTanker (GENIUS) hijacked on 26 Sep 08 while underway in position 13-32N 048-26E, 30 NM off Yemen. The attack was reported to the shipping company by the ship's captain by radio shortly before the pirates boarded the vessel. The pirates fired", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.433333299901619, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-354", - "dateofocc": "2008-09-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier (GREAT CREATION) hijacked on 18 Sep 08 at 0618 UTC while in position 14-13.0N 049-59.0E, Gulf of Aden. About eight pirates armed with guns boarded the vessel. The vessel was drifting due to engine problems and had requested assis", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.983333300266509, 14.216666700162136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-355", - "dateofocc": "2008-09-16", - "subreg": "62", - "hostility_": "SPEED BOAT", - "victim_d": "BULK CARGO SHIP", - "descriptio": "GULF OF ADENBulk cargo ship reported suspicious approach on 16 Sep 08 at 0830 UTC while in position 12-28N 44-53E, 20nm miles southwest from Aden, Yemen. A speed boat with five armed pirates approached and attempted to board the vessel. The master raised", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.883333300371362, 12.466666700330336] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-356", - "dateofocc": "2008-09-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "INDIAN OCEANRoll-on/roll-off cargo vessel (FAINA) hijacked 25 Sep 08 at 1600 local time while in position 02-01N 050-40 E, approximately 280NM east of Mogadishu, Somalia. Three pirate boats attacked the ship. Pirates, armed with automatic weapons, then b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.666666700126825, 2.016666700307155] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-26", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:VESSEL (BLUE STAR) HIJACKED 1 JAN 09 AT 0715 LOCAL TIME WHILE UNDERWAY IN POSITION 13-55N 047-58E. FIFTEEN ARMED PIRATES OVERTOOK THE VESSEL AFTER THE SHIP EXITED THE RED SEA. THE VESSEL WAS CARRYING A CARGO OF 6,000 TONS OF FERTILIZER WITH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, 13.916666700062478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-27", - "dateofocc": "2009-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:FIVE PIRATES, IN A SPEED BOAT, ARMED WITH MACHINE GUNS ATTEMPTED TO BOARD A TANKER UNANOEUVRES AND CONTACTED A COALITION WARSHIP. WITHING 15 MINUTES A HELICOPTER ARRIVED AT THE LOCATION. THE SPEED BOATS MOVED AWAY ON SEEING THE HELICOPTER .", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.250000000331909, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-28", - "dateofocc": "2009-01-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:ARMED PIRATES IN FOUR BOATS ATTACKED AND HIJACKED A PRODUCT TANKER.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.166666700398594, 12.916666700030135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-29", - "dateofocc": "2009-01-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "KIUNGA, KENYA:HEAVILY ARMED PIRATES IN A SPEEDBOAT, PRESUMED TO BE FROM SOMALIA, CAME ALONGSIDE A FISHING VESSEL AT ANCHOR, THEY BOARDED THE VESSEL AND TIED UP ALL CREWMEMBERS. THEY STOLE CASH, SOME VALUABLE EQUIPMENT AND FORCED THREE CREWMEMBERS INTO TH", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.485277800143876, -1.74944440013536] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-30", - "dateofocc": "2009-01-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY TANKER", - "descriptio": "BONNY RIVER NIGERIA:SUPPLY VESSEL (BOURBON LEDA) HIJACKED 4 JAN 09, SUBSEQUENTLY RELEASED 7 JAN 09 WHILE TRANSITING ALONG THE BONNY RIVER, NIGER DELTA. THE VESSEL AND ITS NINE CREW MEMBERS WERE HIJACKED BY AN UNKNOWN NUMBER OF GUNMEN AS IT WAS MAKING ITS", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.249999999905299, 3.833333300078039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-31", - "dateofocc": "2009-01-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:TANKER REPORTED SUSPPICIOUS APPROACH 14 JAN 09 AT 1645 LOCAL TIME WHILE UNDERWAY IN POSITION 13-02N 046-41E. ONE FISHING BOAT WAS DETECTED ON STARBOARD BOW TOWING A SMALL SKIFF WITH A SPEED OF 7 KTS. THE FISHING BOAT REDUCED SPEED AND THE DU", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.683333300069876, 13.033333299835988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-32", - "dateofocc": "2009-01-14", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "SAILBOAT", - "descriptio": "ST. LUCIA:SAILBOAT ROBBED WHILE ANCHORED IN SOUFRIERE BAY, 14 JAN 09 REPORTING. WHILE OWNERS WERE OUT, ROBBERS BROKE THE LOCK AND BOARDED THE SAILBOAT. A LAPTOP, JEWELRY, AND A VIDEO CAMERA WERE REPORTED STOLEN.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.033333299798301, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-33", - "dateofocc": "2008-11-08", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "ST. VINCENT AND THE GRENADINES:YACHT ROBBED 8 NOV 08 WHILE ANCHORED IN PORT ELIZABETH, BEQUIA, PER 14 JAN 09 REPORTING. WHILE OWNERS WERE AWAY, ROBBERS BROKE IN AND STOLE A SUBSTANTIAL AMOUNT OF MONEY AND A CELL PHONE. THE POLICE WERE CONTACTED AND A REP", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.266666699958819, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-76", - "dateofocc": "2009-02-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "HO CHI MINH CITY, VIETNAM: Robbers boarded a bulk carrier moored to mooring buoys. They stole ship's stores, opened the hose pipe cover ad escaped thru the hose pipe. Incident reported to police but no result.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-34", - "dateofocc": "2009-01-06", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PERU: Bulk carrier boarded 06 jan 2009 at 1945 local time while anchored at 12-01S 077-13W, Callao. Five robbers boarded the bulk carrier at anchor. Duty crew noticed the robbers trying to break the forepeak store hatch and raised the alarm. on hearing t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.216666699710231, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-35", - "dateofocc": "2009-01-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU:Container ship robbed 09 Jan 2009 at 0130 utc while anchored in position 12-01S 077-12W, callao anchorage no. 1. crew member onboard spotted armed robbers lowering ship's stores. two of the robbers tried to attack the crew member but he managed to r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-36", - "dateofocc": "2009-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "LOME ANCHORAGE, TOGO:SEVEN, ARMED ROBBERS IN A MOTOR BOAT ATTEMPTED TO BOARD A BULK CARRIER AT ANCHOR. DUTY OFFICER RAISED ALARM AND CREW PREPARED FIRE HOSES. UPON SEEING CREW ALERTNESS THE ROBBERS ABORTED THE ATTEMPTED ATTACK. PORT CONTROL INFORMED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.251666699738337, 6.09361109966477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-37", - "dateofocc": "2009-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "Lome anchorage, togo:Four robbers in a motor boat attempted to board a bulk carrier at anchor. Duty officer raised alarm and crew activated fire hoses. Upon seeing crew alertness the robbers aborted the attempt. Master heaved up anchor and proceeded to o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.251666699738337, 6.09361109966477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-38", - "dateofocc": "2009-01-12", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "RORO SHIP", - "descriptio": "PORT AU PRINCE ANCHORAGE, HAITI:THREE ROBBERS IN A SMALL BOAT APPROACHED A RORO SHIP AT ANCHOR. ONE OF THE ROBBERS ATTEMPTED TO BOARD VIA SIDE RAMP. DUTY A/B SHOUTED AT THE ROBBER AND RAISED ALARM. THE ROBBER JUMPED OFF THE RAMP AND ESCAPED WITH HIS ACCO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.466666699781399, 18.600000000227396] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-39", - "dateofocc": "2009-01-10", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "FORTALEZA PORT, BRAZIL:FOUR ROBBERS IN A BOAT APPROACHED A PRODUCT TANKER AT BERTH. ONE OF THE ROBBERS BOARDED THE TANKER USING A HOOK ATTACHED TO A ROPE. DUTY A/B NOTICED THE ROBBER AND RAISED ALARM. THE ROBBER JUMPED OVERBOARD AND ESCAPED WITH HIS ACCO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.416666700296616, 6.066666700303244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-221", - "dateofocc": "2009-05-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "960 MILES OF MOGADISHU, SOMALIA: Pirates in two small boats armed with automatic guns attacked a bulk carrier underway. Duty officer raised alarm ad crew locked all access spaces. 1st boat attempted to board the ship using ladder ad the 2nd boat fired up", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.066666700250948, -4.733333299686308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-222", - "dateofocc": "2009-05-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "MOGADISHU, SOMALIA: Armed pirates attacked and hijacked a general cargo ship underway. Additional information awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, 4.199999999941554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-223", - "dateofocc": "2009-05-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (ARIANA) hijacked 2 May 09 at 0230 UTC while underway in position 07-19S - 052-11E, approximately 245NM southwest of Port Victoria, Seychelles. Armed pirates attacked and hijacked the vessel while underway. Twenty four crewmem", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.183333299798051, -7.316666699877828] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-224", - "dateofocc": "2009-05-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "560 MILES SOUTHEAST OF MOGADISHU, SOMALIA: A pirate mother vessel and two high speedboats were observed at a distance of six miles from a tanker underway. Master altered course and the boats started chasing the tanker. Master raised alarm, sent distress", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.199999999630506, -6.11666670037863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-225", - "dateofocc": "2009-05-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SANDAKAN ANCHORAGE, MALAYSIA: A fisherman offering fresh fish approached on the stbd side of a container ship at anchor. While four robbers in a speedboat approached from the port side of the vessel and attempted to board. Alert crew saw the robbers and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.116666700194742, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-226", - "dateofocc": "2009-05-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYSIA: Four robbers in a fishing boat approached a chemical tanker at berth. While crew members were busy at the manifold, the robbers boarded the tanker using hook attached to a rope. Several crewmembers saw unidentified persons on forecastle deck an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.000000000305363, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-250", - "dateofocc": "2011-05-15", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SAMARINDA ANCHORAGE, INDONESIA: Robbers boarded an anchored bulk carrier via the hawse pipe. They broke open the bosun store padlock and stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.283333299834908, -1.166666700083624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-227", - "dateofocc": "2009-05-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 6 May 09 at 0910 UTC while underway in position 13-34N - 048-38E. Armed men in a skiff fired shots at the vessel while underway. The captain conducted evasive maneuvers, and in doing so, caused the pirate skiff to capsize", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.633333300267793, 13.566666700096107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-228", - "dateofocc": "2009-05-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (VICTORIA) hijacked 5 May 09 at 1304 UTC while underway in position 13-24N - 049-22E. Pirates boarded and hijacked the vessel while underway. Eleven crewmembers are currently onboard (IMB, Bloomberg).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.366666699994823, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-229", - "dateofocc": "2009-05-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel (MICHAEL S) fired upon 5 May 09 at 0444Z while underway in position 13-09N - 049-08E. Four men onboard a boat opened fire on the vessel with an RPG. An Italian frigate in the vicinity arrived to provide assistance and the vessel was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.133333299834305, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-230", - "dateofocc": "2009-05-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: Vessel reported attempted boarding 5 May 09 at 0930 local time while underway in position 02-38S - 053-49E, approximately 155NM northwest of Port Victoria, Seychelles. Eight pirates in two speed boats armed with automatic weapons approache", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.816666699823998, -2.633333299888193] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-231", - "dateofocc": "2009-05-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 1 May 09 at 1100 local time while underway in position 08-04S - 057-11E, approximately 220NM southeast of Port Victoria, Seychelles. Vessel reported being chased for approximately 20 minutes after the su", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.18333329995977, -8.066666699677285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-232", - "dateofocc": "2009-04-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 30 Apr 09 at 1224 UTC while underway in position 04-01S - 059-33E, approximately 250NM east of Port Victoria, Seychelles. Eight pirates in two speedboats armed with guns and RPGs chased the vessel. The master rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.549999999887916, -4.016666699681195] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-233", - "dateofocc": "2009-04-30", - "subreg": "61", - "hostility_": "PRIATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (JOLLY SMERALDO) fired upon 30 Apr 09 at 0350 UTC while underway in position 00-36N - 050-08E, approximately 250NM off the coast of Somalia. Pirates armed with automatic weapons in a skiff chased the vessel and opened fire. The capt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.133333299866649, 0.599999999645263] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-426", - "dateofocc": "2009-11-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Six pirates armed with automatic weapons and rpg in a skiff fired upon a general cargo ship underway. Master raised alarm contacted coalition warship, increased speed and took evasive maneuvers. The pirates attempted to board the ship using", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.19166669994695, 12.625000000416378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-427", - "dateofocc": "2009-11-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (BW LION) fired upon 9 Nov 09 at 0830 UTC while underway in position 01-09S 061-35E, approximately 420NM northeast of Port Victoria, Seychelles. Several men in two skiffs armed with assault rifles and RPGs chased and opened fire on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.583333299922174, -1.150000000186481] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-428", - "dateofocc": "2009-11-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (NELE MAERSK) fired upon 10 Nov 09 at 0200 UTC while underway in position 00-43.7S 061-57.8E, approximately 455NM northeast of Port Victoria, Seychelles. Men in two skiffs armed with assault rifles and RPGs chased and opene", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.963333299628687, -0.716666700383882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-359", - "dateofocc": "2008-09-21", - "subreg": "61", - "hostility_": "THREE SPEED BOATS", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEANBulk carrier (CAPT STEFANOS) hijacked 21 Sep 08 at 0310 UTC while underway in position 02-30.0N 051-59.5E, 250 nm off Somali coast. Four pirates in three speedboats boarded a bulk carrier underway. They took hostage the 19 crewmembers compose", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.991666699742495, 2.499999999976524] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-429", - "dateofocc": "2009-11-06", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "VENEZUELA: Sailing vessel (JUPITER) reported suspicious approach 6 Nov 09 at 1700 local time while underway between positions 10-55N 065-00W (Isla la Tortuga) and 11-00N 064:30W (Isla de Margarita). A skiff painted in bright colors with three men onbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.999999999958106, 10.916666699965447] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-430", - "dateofocc": "2009-11-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 5 Nov 09 at 0648 UTC while underway in position 13-42.8N 050-56.1E. A small speedboat was sighted at a distance of 4NM. When the boat passed the port beam, it immediately changed course and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.934999999559864, 13.713333299642159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-431", - "dateofocc": "2009-11-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (THEOFOROS I) fired upon 5 Nov 09 at 0333 UTC while underway in position 13-10N 049-11E. According to Greek authorities, the crewmembers activated high-pressure fire hoses against the attackers until a Turkish warship arrived", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.183333299701019, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-432", - "dateofocc": "2009-11-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (FILITSA) reportedly hijacked 11 Nov 09 at 0200 UTC while underway in position 00-35S 062-40E, approximately 500NM northeast of Port Victoria, Seychelles. According to the owners, pirates boarded the vessel and all communicat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.666666699615575, -0.583333299956792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-433", - "dateofocc": "2009-11-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (FELICITAS RICKMERS) fired upon 10 Nov 09 at 0430 UTC while underway in position 06-33S 048-14E, approximately 500NM southeast of Kismayo, Somalia. The vessel reported being under attack by two skiffs. Shots were fired, but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.233333300434765, -6.550000000181285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-434", - "dateofocc": "2009-11-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Cargo ship (JOLLY ROSSO) reported suspicious approach 13 Nov 09 at 0720 UTC while underway in position 11-26S 043-42E, approximately 15NM east of Comoros. Men in two small skiffs armed with guns chased the vessel. The master raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.699999999869988, -11.433333299813057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-435", - "dateofocc": "2009-11-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: General cargo ship fired upon 13 Nov 09 at 0446 UTC while underway in position 00-42S 047-58E, approximately 220NM southeast of Mogadishu, Somalia. Men in a white skiff armed with guns chased and opened fire on the vessel while underway.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, -0.699999999587362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-436", - "dateofocc": "2009-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (DELVINA) hijacked 5 Nov 09 at 0426 UTC while underway in position 09-40.36S 045-05.48E, approximately 690NM south of Mogadishu, Somalia. The owners reported the vessel came under attack and was boarded by pirates (AFP, IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.091388899573985, -9.672777799942025] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-357", - "dateofocc": "2008-09-23", - "subreg": "61", - "hostility_": "SMALL BOATS", - "victim_d": "USNS VESSEL", - "descriptio": "INDIAN OCEANUSNS (JOHN LENTHALL) reported suspicious approach 23 Sep 08 while underway off the central east coast of Somalia. Despite defensive measures to deter them from approaching, the small boats continued to approach the ship. An embarked security", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-358", - "dateofocc": "2008-09-21", - "subreg": "61", - "hostility_": "NINE SMALL BOATS", - "victim_d": "DRY CARGO SHIP", - "descriptio": "INDIAN OCEANDry cargo ship reported suspicious approach 21 Sep 08 while underway in position 01-27N 052:15E. The vessel reported being followed by eight to nine small boats (IMB).", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.249999999561908, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-360", - "dateofocc": "2008-09-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEANTanker fired upon 20 Sep 08 at 1700 UTC while in position 02-37N 051-25E, 250 nm east of the Somali coast. Three pirates armed with machine guns and RPG in a white-colored fast boat chased and fired upon the ship. The ship's master increased", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.416666699926225, 2.616666699607094] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-361", - "dateofocc": "2008-09-18", - "subreg": "61", - "hostility_": "SPEEDBOAT", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEANBulk carrier (CENTAURI) hijacked 18 Sep 08 at 0250 UTC while underway in position 02-22.22N 050-55.26E, 250nm east of Mogadishu, Somalia. Five armed pirates in a speedboat attacked the carrier. 25 crewmembers were taken hostage (IMB)..", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.923888900169572, 2.372777800306665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-362", - "dateofocc": "2008-09-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TANZANIA:Tanker robbed 18 Sep 08 at 0045 UTC while drifting in position 06-40S 039-35E, 18nm east of Dar es Salaam, Tanzania. Six pirates boarded the tanker, broke forward store, and stole ship's stores. Alarm was raised and crew was mustered. Pirates ju", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.583333300110041, -6.666666699811856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-363", - "dateofocc": "2008-09-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIAContainer ship robbed 20 Sept 08 at 0030 local time while in position 06-41.1S 039-26.2E, Dar es Salaam anchorage. 16 pirates in a 15-meter long boat armed with knives boarded the ship. The pirates gained access to the ship via the forecastle dec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.436666699664727, -6.684999999911327] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-364", - "dateofocc": "2008-08-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIA:Container ship boarded 30 Aug 08 at 0001 local time while drifting in position 06-47.4S 039-40.2E, Dar es Salaam Roads. Three perpetrators armed with knives boarded the vessel. Another three perpetrators were seen climbing up using a knotted lin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.670000000000471, -6.789999999901227] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-365", - "dateofocc": "2008-08-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "TANZANIAContainer ship boarded, robbed 29 Aug 08 at 2005 local time while in position 06-46.95S 039-21.68E, Dar es Salaam Anchorage. Robbers boarded the vessel. The duty crew noticed one robber on the starboard side armed with a knife. The robber threw a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.351666699801342, -6.769166699673519] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-366", - "dateofocc": "2008-09-15", - "subreg": "62", - "hostility_": "RED SPEED BOATS", - "victim_d": "GENERAL CARGO VESSEL", - "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 15 Sep 08 at 1453 UTC while underway in position 13-38.87N 048-59.0E. The duty officer onboard the vessel noticed a possible red mother-ship releasing speedboats. The blue speedboat had approximately six pirate", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.983333300234165, 13.635555600312728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-40", - "dateofocc": "2009-01-15", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VUNGTAU ANCHORAGE, VIETNAM:Two robbers boarded a bitumen tanker at anchor. Duty a/b noticed the robbers and raised the alarm. The ship's whistle was sounded and crew mustered. Upon hearing the alarm, robbers jumped into the water and escaped with the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.067222200397907, 10.235833300233367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-41", - "dateofocc": "2009-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "LAGOS OUTER ANCHORAGE, NIGERIA:10 ROBBERS ARMED WITH GUNS AND KNIVES BOARDED A TANKER AT ANCHOR. THEY ATTACKED THE CAPTAIN, ROBBED CASH AND VALUABLES AND ESCAPED. AUTHORITIES INFORMED.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.083333300343327, 5.349999999574038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-42", - "dateofocc": "2009-01-12", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "HAITI: RORO vessel reported an attempted boarding 12 Jan 09 at 0340 local time, while anchored at Port Au Prince. Three robbers in a small boat approached the ship at anchor. One of the robbers attempted to board via side ramp. The duty officer shouted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40416670017288, 18.572222200040585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-43", - "dateofocc": "2009-01-10", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BRAZIL: Tanker robbed 10 Jan 09 at 2300 local time while at berth in Fortaleza port. Four robbers in a boat approached a product tanker at berth. One of the robbers boarded the tanker using a hook attached to a rope. A duty crewmember noticed the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.533333300419656, -3.716666699581538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-44", - "dateofocc": "2009-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "TOGO: Bulk carrier reported an attempted boarding 15 Jan 09 at 0145 UTC while anchored in position 06-05N 001-15E, Lome anchorage. Seven armed robbers in a motor boat attempted to board the vessel at anchor. The duty officer raised the alarm and the cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-45", - "dateofocc": "2009-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "TOGO: Bulk carrier reported an attempted boarding 15 Jan 09 at 0235 UTC while anchored in position 06-05N 001-15E, Lome anchorage. Four robbers in a motor boat attempted to board the vessel at anchor. The duty officer raised the alarm and the crew activ", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.287222200160613, 6.139999999626582] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-46", - "dateofocc": "2009-01-18", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL, TANKER, TUG", - "descriptio": "NIGERIA: Loading vessel (LAMNALCO WAXBILL), tanker (FRONT CHIEF), tug boat attacked 18 Jan 09, early morning at a crude loading platform in the Bonny oil terminal, owned by Shell and the Nigerian National Petroleum Corporation. According to sources, Nig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-47", - "dateofocc": "2009-01-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Tanker (MEREDITH) attacked 21 Jan 09, early morning while underway in the Bonny Fairway Buoy in the Niger Delta. Heavily armed assailants riding in four speedboats hit the tanker with dynamite at around dawn as it was in transit to Port Harcour", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-48", - "dateofocc": "2009-01-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CABLESHIP", - "descriptio": "NIGERIA: Cable ship (VIKING FORCADOS) fired upon 13 Jan 09 while underway in the Niger Delta. Gunmen reached the ship on two or three swift boats and managed to climb aboard its deck but were unable to get inside. Crew members barricaded themselves in t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-49", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 1 Jan 09 at 0730 local time while underway in position 14-21N 050-34E. One skiff with six pirates approached the vessel underway. Owners contacted the IMB Piracy Reporting Centre for assistance. Du", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.566666700393341, 14.349999999865133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-50", - "dateofocc": "2009-01-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "KENYA: Fishing vessel robbed 8 Jan 09 at 0030 local time while anchored at position 01-44S 041-29E, Kiunga. Heavily armed men in a speedboat came alongside the fishing vessel at anchor. They boarded the vessel and tied up all crewmembers. They stole cas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.483333300441302, -1.733333299589276] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-51", - "dateofocc": "2009-01-15", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VIETNAM: Tanker robbed 15 Jan 09 at 0415 local time while anchored in position 10-14N 107-04E, Vungtau outer anchorage. Two robbers boarded the tanker while anchored. A duty crewmember noticed the robbers and raised the alarm. The ship's whistle was sou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-234", - "dateofocc": "2009-04-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 30 Apr 09 at 0224 UTC while underway in position 07-46S - 051-32E, approximately 290NM southwest of Port Victoria, Seychelles. A speed boat with 6-7 persons onboard and a second speed boat with 3-4 persons onboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.533333299732078, -7.766666699577627] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-235", - "dateofocc": "2009-04-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (JOLLY SMERALDO) fired upon 29 Apr 09 at 1250 UTC while underway in position 01-40S - 047-12E, approximately 245NM southeast of Mogadishu, Somalia. Pirates armed with automatic weapons chased and fired upon the vessel. The captain c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.200000000432851, -1.666666699650136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-255", - "dateofocc": "2009-05-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Pirates in two skiffs attempted to board a tanker underway. The tanker took evasive maneuvers, fired rocket flares and contacted warship for assistance. Later, pirates aborted the attempt and returned to the mother vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.083333299935248, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-236", - "dateofocc": "2009-04-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (SIDER LION) robbed 23 Apr 09 at 0405 local time while underway in position 03-13N - 105-29E, approximately 30NM northwest of the Anambas Islands. They entered the second officer¿s cabin and held him hostage before proceed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.483333299813069, 3.216666699806353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-237", - "dateofocc": "2009-05-05", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "HAITI: General cargo ship boarded 5 May 09 at 0330 local time while anchored in Port au Prince. Robbers boarded the vessel via the forecastle. Due to crew alertness, they aborted the attempt and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.40416670017288, 18.572222200040585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-238", - "dateofocc": "2009-05-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Vessel fired upon 13 May 09 at 1310 UTC while underway approximately 115NM south of al Mukalla, Yemen. The vessel reported being fired upon with RPGs from two skiffs. Coalition forces nearby arrived and provided assistance (Operator).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.4333332997399, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-239", - "dateofocc": "2009-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 10 May 09 at 0715 UTC while underway in position 12:33N ¿ 043:26E. Two speed boats with approximately 13 persons onboard approached the vessel¿s starboard quarter at high speed. The master raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.4333332997399, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-240", - "dateofocc": "2009-05-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (MARATHON) hijacked 7 May 09 at 1105 UTC while underway in position 13:43N ¿ 050:35E. Armed pirates in skiffs attacked, boarded, and hijacked the vessel with reportedly eight Ukrainian crew members onboard (Reuters, IM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.583333299566448, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-241", - "dateofocc": "2009-05-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:Bulk carrier fired upon 7 May 09 at 0930 UTC while underway in position 13:04N ¿ 049:00E. Seven pirates in a boat came close to the vessel and attempted to board by using an aluminum ladder and firing at the ship using automatic weapons an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.000000000131308, 13.066666699630275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-242", - "dateofocc": "2009-05-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported attempted boarding 7 May 09 at 1220 local time while underway in position 12:12N ¿ 045:45E. One blue colored skiff with nine men onboard armed with guns approached the vessel and attempted to board. The captain raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.749999999801389, 12.200000000200248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-243", - "dateofocc": "2009-05-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:Vessel reported suspicious approach 6 May 09 at 1145 UTC while underway in position 13:23N ¿ 048:28E. Two suspicious crafts were spotted and reportedly began chasing the vessel from the port quarter. The crew was alerted and immediately a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.466666699695907, 13.383333299802359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-244", - "dateofocc": "2009-05-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN:Container ship fired upon 12 May 09 at 1615 local time while underway in position 01-02S 057-18, approximately 250NM northeast of Port Victoria, Seychelles. Nine pirates in two skiffs chased and fired on the vessel using automatic weapons an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.299999999590341, -1.03333329965659] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-245", - "dateofocc": "2009-05-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TANZANIA:Container ship boarded 7 May 09 at 0020 UTC while anchored in Dar es Salaam. Two robbers armed with knives boarded the vessel at anchor using hooks attached to long poles. The alert crew spotted the robbers and raised the alarm. Upon hearing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.349999999774298, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-246", - "dateofocc": "2009-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIA: Tanker robbed 5 May 09 at 0250 local time, Cochin anchorage. Three robbers boarded the vessel at anchor using a rope and hook. Robbers stole and lowered ship's stores into a waiting boat. The 2nd officer noticed the robbers and approached them", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [75.000000000072816, 9.999999999769386] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-437", - "dateofocc": "2009-11-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier robbed 16 Nov 09 at 0120 local time while underway in position 03-12.4N 105-29.1E, approximately 33NM northwest of the Anambas Islands. Ten men armed with knives and crowbars boarded the vessel. They entered the bridge and threa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.484999999840113, 3.206666700192784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-438", - "dateofocc": "2009-11-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (THERESA VIII) hijacked 16 Nov 09 at 1053 UTC while underway in position 08-00.11S 045-58E, approximately 600NM south of Mogadishu, Somalia. Pirates armed with machine guns attacked and hijacked the vessel, taking hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.966666700064764, -8.001666699940472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-439", - "dateofocc": "2009-11-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "275 MILES SOUTH OF MOGADISHU: A merchant vessel reported coming under fire on 18 November 09 at 0715 UTC in position 01-48S 049-01E. The vessel was attacked by 2 skiffs who fired automatic weapons and at least 2 rpg rounds. The master conducted counter", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.016666700028452, -1.800000000252453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-440", - "dateofocc": "2009-11-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (MAERSK ALABAMA) fired upon 18 Nov 09 at 0320 UTC while underway in position 06-35N 054-30E, approximately 285 miles east of Eyl, Somalia. The vessel reported coming under fire by one skiff with four men onboard. The skiff m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.49999999985954, 6.583333299942126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-441", - "dateofocc": "2009-11-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (FENG LI 8) fired upon 12 Nov 09 at 0536 UTC while underway in position 14-33N 054-08E, approximately 115NM north of Socotra Island. Men armed with assault rifles chased and opened fire on the vessel. The vessel increased spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.133333299996025, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-442", - "dateofocc": "2009-11-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (FULL STRONG) fired upon 12 Nov 09 at 0330 UTC while underway in position 14-36.1N 054-14.5E, approximately 115NM north of Socotra Island. Men armed with assault rifles in skiffs opened fire on the vessel and attempted to boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.241666700040071, 14.601666700125122] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-443", - "dateofocc": "2009-11-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "470 MILES NORTH EAST OF PORT VICTORIA, SEYCHELLES: A merchant vessel reported coming under fire on 20 November 2009 at 1530 UTC. The vessel was attacked by armed men on board a skiff with ak-47s and rpgs. The second officer was reportedly injured by a pi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.466666700148664, -1.133333300289337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-444", - "dateofocc": "2009-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "9 MILES WEST OF PULAU MANGKAI, SOUTH CHINA SEA: Pirates armed with knives and swords in a small fishing boat boarded a product tanker underway. They tried to enter the accommodation but were unable to as all doors were locked. Upon hearing the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.449999999843499, 3.161666699683167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-445", - "dateofocc": "2009-11-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "1050 MILES EAST OF MOGADISHU, SOMALIA: Eight pirates in one craft and four pirates in another craft armed with machine guns and rpgs, chased a bulk carrier underway from the port and stbd sides. They fired at the vessel with machine guns and rpg and atte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.666666699615575, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-446", - "dateofocc": "2009-11-21", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BALIKPAPAN OUTER ANCHORAGE, INDONESIA: Three robbers boarded a chemical tanker at anchor using hooks attached to ropes. They stole ship's stores and escaped in a small boat. Local authorities informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.988333299991723, -1.356666699936909] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-447", - "dateofocc": "2009-11-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MOGADISHU, SOMALIA: Six pirate boats with a mother vessel in sight chased and opened fire upon an oil tanker underway. Two rpgs penetrated into port bridge door. Ship sustained damages and one crew member was injured. Pirates aborted the attempt after ab", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.416666700281951, -1.416666700316568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-448", - "dateofocc": "2009-11-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "554 MILES NORTH EAST OF PORT VICTORIA, SEYCHELLES: A merchant vessel reported coming under fire on 24 November 2009 at 1307 UTC. The vessel was attacked by 4 armed men on board a skiff who fired shots at the vessel's wheelhouse and accommodation. Vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.200000000050977, 0.483333300014692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-367", - "dateofocc": "2008-09-13", - "subreg": "63", - "hostility_": "THREE WHITE SPEEDBOATS", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIAThree white coloured speed boats, possibly, from a mother ship, fired on and tried to close onto a fishing vessel underway. The master increased speed and moved away.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.61666670038943, 2.166666699907296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-368", - "dateofocc": "2008-09-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "GULF OF ADENGeneral cargo vessel fired upon 9 Sep 08 at 1513 UTC while underway in position 13-24N 048-20E. Eight pirates in a skiff reportedly chased the vessel. They fired upon the vessel and attempted to board. The Master contacted the coalition warsh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.333333300168192, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-369", - "dateofocc": "2008-09-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "GHANA:Container ship robbed on 23 Sep 08 at 1751 local time while at Tema port, Ghana. Robbers boarded a container ship at anchor. Robbers took one crewmember hostage and stole ships stores. Robbers fled when master alerted the authorities (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.033333299624246, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-370", - "dateofocc": "2008-09-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker Ship", - "descriptio": "NIGERIA:Tanker robbed on 20 Sep 08 at: 0100 local time while at anchor 6.6 nm off Lagos breakwater, Nigeria. Two robbers armed with knives boarded a tanker at anchor. Duty A/B noticed the robbers on the poop deck. He shouted at them and informed the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-371", - "dateofocc": "2008-10-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:Bulk carrier fired upon 01 Oct 08 at 0700 local time while underway. Two boats were following the vessel on the port side. The ship altered course to increase distance. The ship's general alarm and ship security alarm were sounded. A boat on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.499999999665476, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-372", - "dateofocc": "2008-10-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "GULF OF ADEN:Container ship fired upon 01 Oct 08 at 1435 UTC while underway in position 12-42.8N 049-09.9E. Four pirates fired upon the vessel and unsuccessfully attempted to board. Master and crew activated the fire hose and conducted evasive maneuvers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.164999999601548, 12.713333299609815] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-373", - "dateofocc": "2008-10-01", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Chemical Tanker", - "descriptio": "GULF OF ADEN:Chemical tanker reported suspicious approach on 01 Oct 08 at 0345 UTC while in position 13-10N 047-43E. Four pirates attempted to board the vessel. A naval ship engaged the pirates and the ship's master conducted evasive maneuvers. Pirates w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.716666699896507, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-374", - "dateofocc": "2008-09-28", - "subreg": "62", - "hostility_": "THREE SPEEDBOATS", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier reported suspicious approach on 28 Sep 08 at 0210 local time while underway in position 13-30.4N 048-31.8E. Three speedboats chased the vessel. All crew was alerted and the master of the ship executed evasive maneuvers and increa", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.530000000304995, 13.506666699716448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-375", - "dateofocc": "2008-09-22", - "subreg": "62", - "hostility_": "FOUR SPEEDBOATS", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier reported suspicious approach on 22 Sep 08 at 1151 UTC while underway in position 13-33.7N 048-37.5E. Four boats began chasing the vessel on the portside. The master transmitted distress message via VHF, HF and INM-C. Evasive mane", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.624999999781949, 13.561666699839634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-376", - "dateofocc": "2008-09-25", - "subreg": "62", - "hostility_": "TWO SPEEDBOATS", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADENBulk carrier reported suspicious approach on 25 Sep 08 at 1930 UTC while underway in position 13-16.9N 057-13.3E. Two speed boats and a possible mothership attacked the vessel. The ship conducted evasive maneuvers and the pirates aborted the", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.22166670001053, 13.281666699866548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-377", - "dateofocc": "2008-09-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADENContainer ship reported suspicious approach on 19 Sep 08 at 1349 local time while underway in position 13-13.6N 049-31.4E. Twelve pirates in three speedboats, armed with automatic guns and rocket propelled grenade launchers chased the ship. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.523333300053764, 13.226666699743362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-378", - "dateofocc": "2008-09-24", - "subreg": "62", - "hostility_": "FOUR BOATS", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADENCargo vessel reported suspicious approach on 24 Sep 08 at 1105 UTC while underway in position 13-37N 048-53E. Four boats chased the vessel. The crew was mustered, alarm raised and, speed increased. After speed was increased, one boat aborted", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.883333299601418, 13.616666699962821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-379", - "dateofocc": "2008-09-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIAContainer ship robbed on 23 Sep 08 at 0050 local time: while at anchorage Dar es Salaam anchorage. Approximately six robbers boarded the ship. Alarm was raised, and crew mustered. Upon seeing crew alertness, the robbers jumped into a waiting boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-381", - "dateofocc": "2008-09-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (JKM MUHIEDDINE) boarded and robbed on 30 Sep 08 at 0350 local time while underway in position 02-48.00N 105-09.2E, 64nm east of Pulau Tioman, Maylasia. At least seven pirates armed with long knives boarded the vessel from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.153333299973269, 2.800000000076125] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-52", - "dateofocc": "2009-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "Gulf of Aden: Two skiffs approached the bulk carrier from aft. Pirates in both skiffs were armed with automatic weapons and RPGs. Ship made evasive and preventive measures to prevent boarding. Pirates opened fire with automatic weapons at ship. One skiff", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.783333299964966, 14.783333299667731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-53", - "dateofocc": "2009-01-22", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "La Pampilla Port, Peru: A chemical tanker, at berth was boarded by an uknown number of robbers, while cargo operations were in progress. The deck security watchman was found to be beaten up and tied up. Upon searching, no robbers were found onboard. Auth", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.005555600018397, -8.233333300249171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-54", - "dateofocc": "2009-01-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TEMA ROADS, GHANA: Robbers boarded a container ship at anchor. They broke into a container and escaped with its contents and other ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-55", - "dateofocc": "2009-01-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "LAGOS OUTER ANCHORAGE, NIGERIA: 10 Robers armed with guns and knives boarded a tanker at anchor. They attacked the captain robbed cash adn valuables and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.083333300343327, 5.349999999574038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-56", - "dateofocc": "2009-01-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: A suspicious skiff was reported on 27 JAN 09, approximately 75 miles southeast of Al Mukalla, Yemen. The suspicious skiff was described as a blue hull speed boat, 10 meters in length with five to six people onboard, heading 358 degrees wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.199999999630506, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-57", - "dateofocc": "2009-01-11", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VENEZUELA: Container ship robbed 11 Jan 09 at 0255 local time while anchored in Guanta port. Four robbers armed with long knives boarded the vessel during cargo operations. They broke open one reefer container and stole contents from it. Upon seeing the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.600000000125021, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-58", - "dateofocc": "2009-01-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GHANA: Container ship robbed 19 Jan 09 at 2300 local time while anchored in Tema roads. Robbers boarded the container ship and broke into a container, then escaping with its contents and other ship's stores (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-59", - "dateofocc": "2009-01-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "CAMEROON: Fishing vessels attacked, skipper killed 24 Jan 09 while operating just off the port of Douala near Kribi. According to reports some 30 armed men used three small craft to board and seize a fishing vessel. They attempted to take it into intern", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.699999999669785, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-60", - "dateofocc": "2009-01-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (LONGCHAMP) hijacked 29 Jan 09 at 0340 UTC while underway in position 14-10N 049-58E. The tanker was reportedly en route from Norway to Vietnam when it was attacked and boarded by seven pirates, according to a spokesman for the ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.966666700194082, 14.166666700295366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-61", - "dateofocc": "2009-01-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "Dar es Salaam, Tanzania: Four robbers in a small wooden boat attempted to climb onboard an anchored container vessel. Alert duty watchmen informed the duty officer who raised the general alarm and directed the ship search light towards the robbers. Seein", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.308333300393429, -6.728333300393842] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-62", - "dateofocc": "2009-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "Balongan anchorage, Indonesia: Four robbers boarded a chemical tanker at anchor. They tried to enter into the accommodation but were noticed by the duty crew who raised the alarm. Upon hearing the alarm, the robbers climbed down into their boat and escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.424999999557485, -6.173333299804824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-63", - "dateofocc": "2009-01-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Armed pirates six speed boats surrounded a bulk carrier underway. Master raised alarm, took evasive action and crew activated fire hoses. One of the speedboats chased the vessel for about one mile. Seeing the alert crew and the aggressive a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.174999999952774, 12.461666700073863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-64", - "dateofocc": "2009-01-20", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "ANTIGUA AND BARBUDA: Yacht boarded, attacked 20 Jan 09 in the early morning while anchored in Moscito Cove, per 4 Feb 09 reporting. Three men attacked the vessel early in the morning and one of them managed to slip into the cabin. A fist fight ensued an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.899722199552798, 17.083055599981265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-247", - "dateofocc": "2009-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BANGLADESH: General cargo ship reported attempted boarding 5 May 09 at 0830 UTC, Chittagong anchorage. Robbers in a boat approached the vessel and attempted to board via anchor cable. The crew was alerted and the robbers aborted the attempt and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 21.86666669955514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-248", - "dateofocc": "2009-05-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARRIER", - "descriptio": "SOMALIA:Eight pirates in two boats attempted to board a vehicles carrier underway. Pirates closed to 10 meters and attempted to board serveral times. Master increased speed and carried out evasive maneuvers and prevented the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.816666699823998, -2.633333299888193] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-249", - "dateofocc": "2009-05-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOMALIA:Armed pirates attacked and hijacked a general cargo ship underway. Further report are awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, 4.199999999941554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-250", - "dateofocc": "2009-05-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Tanker fired upon 19 May 09 at 0214 local time while underway in position 12-56N - 048-30E. Five pirates armed with machine guns in a wooden boat approached the vessel and opened fire on the port side. The vessel increased speed and conduc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.526666700075566, 12.940000000386078] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-251", - "dateofocc": "2009-05-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Two boats with five pirates in each boat chased and fired upon a bulk carrier with automatic rifles and rpg. An orange and white colored mother vessel was noticed around 3 miles astern of the vessel. Master carried out evasive maneuvers, in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-252", - "dateofocc": "2009-05-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO/RORO SHIP", - "descriptio": "GULF OF ADEN: RO/RO reported suspicious approach 15 May 09 at 0639 UTC while underway in position 14-44N - 051-15E. Armed men wearing masks in four speed boats approached the vessel, coming as close as 500 meters. The vessel conducted evasive maneuvers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.25000000042894, 14.733333299801018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-253", - "dateofocc": "2009-05-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "880 MILES SOUTHEAST MOGADISHU, SOMALIA: Pirates in skiffs, chased ad fired upon a chemical tanker underway. Master made evasive maneuvers and escaped from the pirates.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.000000000293028, -9.983333300080915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-254", - "dateofocc": "2009-05-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: A high speed boat chased a tanker underway. Master altered course to increase CPA and contacted warship for assistance. The speed boat came very close ut due to ship;s evasive maneuvers, aborted the attempt and moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.996666699901937, 13.279999999839504] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-257", - "dateofocc": "2009-05-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "GULF OF ADEN: Tanker fired upon 17 May 09 at 1012 local time while underway in position 14-10N - 051-55E. Six armed pirates in a white skiff approached the vessel from astern at 20 knots, and began opening fire with automatic weapons and RPGs. The capta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.916666700392057, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-258", - "dateofocc": "2009-05-14", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "DOMINICA: Yacht (CLYPEUS) attacked, robbed 14 May 09 shortly after midnight while anchored in Prince Rupert Bay. Three men armed with machetes and a pistol boarded the vessel and attacked the couple onboard. They beat them, tied them up, and threatened", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.999999999861075, 15.99999999996345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-259", - "dateofocc": "2009-05-14", - "subreg": "25", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "GRENADA: Yacht attacked 14 Apr 09 while anchored in Mt. Hartman Bay, per 15 May reporting. Two men boarded the vessel while the owner was away and assaulted the owner¿s wife. They tied her up and threatened to kill her. The owner returned shortly after", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.749999999628187, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-260", - "dateofocc": "2009-05-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "JAKARTA ANCHORAGE, INDONESIA: Two robbers using hook and rope from a small boat attempted to board a product tanker at anchor. While climbing to the ship's rail the robbers saw alert ship's watchmen. Robbers jumped back into the waiting boat and moved aw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.89833330044786, -6.01166670038873] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-261", - "dateofocc": "2009-05-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship robbed 9 May 09 while anchored in Pier 5D, Callao port. Robbers boarded the vessel at berth during cargo operations and managed to steal ship's rescue boat's engine and escape. Local authorities were informed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-449", - "dateofocc": "2009-11-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (MARAN CENTAURUS) hijacked 29 Nov 09 at 1213 UTC while underway in position 03-09.39N 061-30.3E, approximately 590NM northeast of Port Victoria, Seychelles. Pirates boarded the tanker and have since anchored it off the coast of Som", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.505000000342363, 3.156388899751164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-450", - "dateofocc": "2009-11-19", - "subreg": "62", - "hostility_": "Yemeni Coast Guard", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (RED SEA SPIRIT) reported suspicious approach 19 Nov 09 at 2200 local time while underway in position 13-37.9N 047-41.0E. A suspicious craft was observed following the vessel until a distance of approximately 1.5 cables. The ve", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.68333330010222, 13.63166669983292] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-451", - "dateofocc": "2009-11-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BALONGAN ANCHORAGE, INDONESIA: Tanker reported attempted boarding 21 Nov 09 at 0120 local time while anchored in position 06-13S 108-31E, Balongan anchorage. One robber armed with a knife attempted to board the vessel. Alert crew member saw a hook stuck", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.516666699704388, -6.216666700112057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-452", - "dateofocc": "2009-11-21", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "PHILIPPINES: Tug (MARINERO) robbed, crewmembers kidnapped 21 Nov 09 at 2100 local time while anchored in postion 07-42.95N 122-06.51E, Siocon Bay, Zamboanga Del Norte. Nine robbers armed with high powered firearms approached the tug in three motor boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.108333300013442, 7.715833299576332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-453", - "dateofocc": "2009-11-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BENIN: Tanker (CANCALE STAR) robbed, crewmember killed 24 Nov 09 early morning while underway approximately 18 NM off Fairway Bouy, Cotonou. The tanker's Latvian captain said around six or seven men had approached the tanker in a speed boat. The Ukraini", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.433333300212666, 6.349999999606382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-454", - "dateofocc": "2009-11-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA: Bulk carrier robbed 20 Nov 09 at 0500 local time while berthed at Port Harcourt. A tug came alongside the vessel when three robbers armed with knives boarded her and threatened two duty crewmembers who approached them. The robbers stole two dru", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-455", - "dateofocc": "2009-12-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "1200 MILES NORTH EAST OF SOMALIA: Pirates in a skiff armed with guns chased and opened fire on a tanker uderway. The pirates attempted to board from port side but failed and then tried to board from stbd side. The use of water jets from fire hoses and ev", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.533333300120148, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-456", - "dateofocc": "2009-11-28", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "EAST OF CERAM ISLANDS, INDONESIA: Four persons in a white colored speed boat, flying Indonesian flag approached a bulk carrier underway at 20-25 knots. Master raised alarm, sounded ship's whistle continuously and crew activated fire hoses. It was noticed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [132.000000000117552, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-457", - "dateofocc": "2009-11-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "470 MILES SOUTH WEST OF MOGADISHU, SOMALIA: Pirates armed with rpg and machine guns in two skiffs chased and fired upon a container ship underway with intent to hijack her. Master raised alarm, activated SSAS increased speed and took evasive maneuvers. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.766666699633845, -5.883333300218112] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-458", - "dateofocc": "2009-11-25", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CALLAO ANCHORAGE, PERU: During routine radio communications with deck watcmen, on an anchored bulk carrier, the Chief officer did not get a response from the forward AB. He instructed the bosun to check. The bosun found the forward AB tied up with injuri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-380", - "dateofocc": "2008-10-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA: Chemical tanker (SUN GERANIUM) boarded and robbed on 02 Oct 08 at 0220 local time while underway in position 03-11.84N 105-22.40E, 70 nm north-east of Pulau Tioman, Mayalsia. Eight pirates armed with long knives and pipes boarded the ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.373333299566696, 3.197222200105443] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-382", - "dateofocc": "2008-09-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: Container ship boarded at on 24 Sep 08 at 0325 local time while in position 06:02.45S ¿ 106:54.61E, Tg. Priok, Jakarta, Indonesia. Three robbers armed with knives boarded the ship at anchor via the stern. Alert watchman notified the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.91000000008853, -6.040833300202962] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-383", - "dateofocc": "2008-10-02", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship reported attempted boarding on 02 Oct 08 at 2305 local time while at anchorage Callao anchorage No.12. Five masked robbers attempted to board the ship via the anchor chain. Alert crew used fire hoses and flashlights to scare off the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-384", - "dateofocc": "2008-10-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OILER SHIP", - "descriptio": "NIGERIA: Oil service vessel boarded, hostages taken on 04 Oct 08 between Port Harcourt and Bonny, Niger Delta. A speedboat carrying 12 gunmen attacked the vessel and took six Filipino hostages, including the boats captain and two engineers. No group has", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.096388900335512, 5.339444399710032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-433", - "dateofocc": "2011-10-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Fishing vessel attacked in 06-27S 040-08E at 2114Z on 17 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.133333300442587, -6.450000000447801] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-385", - "dateofocc": "2008-10-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: Refrigerated cargo ship boarded on 02 Oct 08 at 1215 UTC while the ship was drifting 20nm south of Bonny signal station. About ten pirates armed with submachine guns and hand grenades boarded the vessel. The ship contacted authorities and en", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-386", - "dateofocc": "2008-09-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "NIGERIA: Container ship boarded and robbed on 27 Sep 08 at 2140 UTC while at anchor in position 06-17.8N 003-24.0E, Lagos fairway buoy. Duty crew spotted one robber and raised the alarm and mustered crew. Robber jumped overboard and escaped in a waiting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.285555600119949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-387", - "dateofocc": "2008-10-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN:Dry cargo ship reported suspicious approach 07 Oct 08 at 0900 UTC while in position 11-43.56N 047-15.02E. The ship's master reported that two speed boats, each with nine armed persons onboard, chased the vessel in the above position and att", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.250555599650625, 11.732222199927321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-388", - "dateofocc": "2008-10-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo ship reported suspicious approach 02 Oct 08 at 0745 local time while underway in position 13-07.4N 048-45.8E. A look out sighted a suspicious vessel five miles off from starboard bow. A fast moving wooden craft powered by outboard mot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.750277799573951, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-389", - "dateofocc": "2008-10-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 01 Oct 08 at 0523 UTC while underway in position 13-13.59N 047-57.52E, about 43 miles off the Yemen coast. Pirates attempted to board the ship but the ship increased speed and diverted from course. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.964444399851971, 13.233055600351406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-390", - "dateofocc": "2008-10-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship fired upon 09 Oct 08 at 1330 local time while underway in position 02:07S-043:09E. The ship conducted evasive maneuvers and avoided boarding(IMB, Operator).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.150000000436762, -2.116666700249255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-391", - "dateofocc": "2008-10-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: Cargo ship boarded and robbed 04 Oct 08 at 0050 local time while underway in position 01:12.5N-103:54.5E, approximately 2nm east of Batu Berhanti buoy in the east bound lane of the Straits of Singapore. Three masked robbers armed with long", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.901388899830124, 1.201388900196093] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-65", - "dateofocc": "2009-02-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "NIGERIA: Vessel attacked, captain killed 5 Feb 09 at 0200 UTC while operating in an oilfield off the coast of southern Nigeria's Akwa Ibom state. Two private security groups working in the sector said a gang in two boats attacked the vessel. The captain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-66", - "dateofocc": "2009-01-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 29 Jan 09 at 0620 UTC while underway in position 12-27N 044-10E. Gunmen in six speed boats surrounded the vessel underway. The master raised the alarm, took evasive maneuvers and the crew activate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.16666670036625, 12.450000000433192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-67", - "dateofocc": "2009-02-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 2 Feb 09 while underway in position 12-21N 043-58E. A total of approximately 14 skiffs approached the vessel with armed persons onboard. Some of the men in the boats were dressed in camouflage military st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.966666700000076, 12.349999999800445] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-461", - "dateofocc": "2009-11-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIAN OCEAN: Tug reported suspicious approach 27 Nov 09 at 1340 UTC while underway in position 03-41S 044-48E, approximately 240NM southeast of Kismayo, Somalia. The vessel reported being approached by two skiffs. A warship nearby dispatched a helicop", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.799999999635759, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-68", - "dateofocc": "2009-01-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIA: Container ship reported attempted boarding 28 Jan 09 at 2340 UTC while anchored at position 06-43S 039-18E, Dar es Salaam. Four robbers in a small wooden boat attempted to climb onboard an anchored container vessel. Alert duty watchmen informe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.299999999907584, -6.716666699678569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-69", - "dateofocc": "2009-01-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: Chemical tanker boarded 29 Jan 09 at 0345 local time while anchored in position 06:10S ¿ 108:25E, Balongan anchorage. Four robbers boarded the vessel at anchor. They tried to enter into the accommodation but were noticed by the duty crew who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.416666699970961, -6.166666700245344] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-70", - "dateofocc": "2009-01-22", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "PHILIPPINES: Yacht robbed 22 Jan 09 while anchored in Subic Bay Yacht marina. During the night while the owner slept, robbers boarded the vessel and stole a laptop and cellphone. Incident was reported to local authorities (Noonsite.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.216666699992857, 14.749999999698161] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-71", - "dateofocc": "2009-02-06", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CALLAO ANCHORAGE, PERU: Six masked robbers armed with long knives in black clothes boarded a container ship at anchor. They attacked and seized two duty watchmen, broke into the bosun store and stole ship's stores. Other watchmen noticed the robbers and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-73", - "dateofocc": "2009-02-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (POLARIS) reported attempted boarding 11 Feb 09 at 1430 local time while underway in position 12-59N 048-16E. Seven men in a white speedboat armed with automatic weapons and an RPG approached the tanker from the west. The captain sou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.266666700229052, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-74", - "dateofocc": "2009-02-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (PREM DIVYA) fired upon 12 Feb 09 at approximately 0330 local time while underway in position 12-46N 047-52E. The vessel sent out a distress call reporting shots being fired upon it by a small skiff and that men onboard the skiff we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.866666700395967, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-72", - "dateofocc": "2009-02-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Vessel fired upon 11 Feb 09 at 0630 UTC while underway in position 10-39N 055-54E. Vessel was approached by a light blue colored skiff described as 5 to 7 meters long with five men onboard armed with guns and an RPG, travelling more than", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.899999999724912, 10.649999999835359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-262", - "dateofocc": "2009-05-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "NIGERIA: Vessel robbed 21 May 09 at 0320 local time while anchored in Lagos roads. Six robbers armed with automatic weapons boarded the vessel. They broke down the captain and chief officer's cabin doors and stole cash. The captain raised the distress s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-263", - "dateofocc": "2009-05-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (ANTONIS) fired upon 26 May 09 at 0430 local time while underway in position 13-05N - 048-58E. Two skiffs with four armed men onboard each approached the vessel from the port side and opened fire with machine guns. The vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.966666700161738, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-264", - "dateofocc": "2009-05-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon 25 May 09 at 0028 local time while underway in position 13-11N - 049-19E. Four armed men in a skiff approached the vessel from the port quarter and opened fire. The captain mustered the crew and conducted evasive ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.31666670012811, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-265", - "dateofocc": "2009-05-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel (MARIA K) fired upon 22 May 09 at 0900 local time while underway in position 13-13N - 049-10E. One speed boat with nine men onboard fired an RPG at the vessel and missed. Coalition forces nearby responded, and the men in the skiff a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.166666699628649, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-266", - "dateofocc": "2009-05-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 22 May 09 at 1120 UTC while underway in position 12-53N - 048-02. A small boat was observed 3NM away on the starboard side. A small skiff then detached from the boat and started approaching the vessel¿s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.033333300068534, 12.883333300235847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-267", - "dateofocc": "2009-05-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 19 May 09 at 0755 local time while underway in position 13-16N - 048-59E. A high speed boat chased the vessel while underway. The captain altered course to increase the distance and contacted nearby wars", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.983333300234165, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-268", - "dateofocc": "2009-05-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 18 May 09 while underway in position 12-46N - 048-05E. Men in two skiffs approached the tanker while underway. The captain conducted evasive maneuvers, fired rocket flares, and contacted nearby warships", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.083333299935248, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-269", - "dateofocc": "2009-05-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker fired upon 19 May 09 at 0026 UTC while underway in position 09-59S - 054-00E, approximately 320NM south of Port Victoria, Seychelles. Men in skiffs chased and fired upon the vessel while underway. The captain conducted evas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.000000000293028, -9.983333300080915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-270", - "dateofocc": "2009-05-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported coming under pirate attach at 0729 UTC on 28 May 09 approximately 110 NM southwest of Al Mukalla, Yemen in position 13-01-24N - 048-48-36E. The pirate boat approached the vessel's port quarter as the merchant vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.81000000027808, 13.023333300222362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-271", - "dateofocc": "2009-05-28", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA: Tug (TOPNICHE 5) robbed 28 May 09 at 0200 local time while underway in position 02-14N - 104-14E, approximately 19NM southwest of Pulau Aur. Five robbers armed with guns and knives boarded the tug as it was towing a barge, the (CHRISNICHE 4).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.2333333004471, 2.233333299846436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-272", - "dateofocc": "2009-05-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CONGO: Vessel boarded 29 May 09 at 0340 local time while anchored in Boma roads. Two robbers armed with machetes boarded the vessel and threatened the duty watchman. The alarm was raised and crew mustered. The robbers escaped upon hearing the alarm (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-273", - "dateofocc": "2009-05-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BURMA: Container ship boarded 28 May 09 at 2330 local time while anchored in position 16-30N - 096-15E, Yangon anchorage. Two robbers boarded the vessel, but were spotted by duty crew members. The crew members raised the alarm and the two robbers jumped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [96.258888899922454, 16.514722199724474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-459", - "dateofocc": "2009-11-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA: Bulk carrier robbed 15 Nov 09 at 2100 local time while anchored in position 06-12.8N 003-23.7E, Lagos anchorage. Robbers armed with guns and knives in a speedboat boarded the vessel by using bamboo sticks with hooks. They fired warning shots w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.395000000018968, 6.213333299849239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-460", - "dateofocc": "2009-12-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (BBC TOGO) fired upon 02 Dec 09 at 1206 UTC while underway near position 14-26N 054-18E, approximately 100NM north of Socotra Island. Armed men aboard two skiffs, which were launched from a mothership, fired upon the vessel with au", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.300000000392629, 14.433333299701417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-463", - "dateofocc": "2009-12-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (CORAL GLOBE) fired upon 7 Dec 09 at 1343 UTC while underway in position 00-27N 061-39E, approximately 977NM east of Mogadishu, Somalia. Armed men in two skiffs chased and fired on the vessel with automatic weapons and RPGs.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.649999999686088, 0.450000000045122] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-464", - "dateofocc": "2009-12-01", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "HAITI: Vessel robbed 1 Dec 09 at 2300 local time while in position 18-33N 072-23W, Port au Prince anchorage. The duty officer heard noises on the poop deck and upon investigation, found three robbers already in the process of leaving in their boat afte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.550000000360683] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-465", - "dateofocc": "2009-12-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (NORDIC SPRITE) fired upon 7 Dec 09 at 0501 UTC while underway in position 12-54N 048-07E, approximately 120NM northwest of Bosasso, Somalia. Armed men aboard two skiffs fired upon the vessel with automatic weapons and RPGs. The ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.116666699729592, 12.900000000132991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-466", - "dateofocc": "2009-12-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing Vessel (SHAHBAIG) hijacked on 6 December 09 while underway in position 11-52N 62-36E, approximately 470NM southeast of Socotra Island. Vessel reportedly has 29 crewmembers on board, all believed to be Pakistani. Vessel is reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.599999999851661, 11.866666700131077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-467", - "dateofocc": "2009-12-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "BANGLADESH: Tug (TROPICAL STAR) reported attempted boarding 8 Dec 09 at 0440 local time while anchored in position 22-12.7N 091-46.3E, Chittagong Port outer anchorage B. The officer on watch spotted men in a powered driven wooden boat attempt to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.771666699643959, 22.211666700164358] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-468", - "dateofocc": "2009-12-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker boarded 8 Dec 09 at 0325 local time while in position 06-13.62S 108-28.29E, Balongan anchorage. Four robbers boarded the vessel from the poop deck. They were spotted by the duty watchman who immediately informed the bridge duty office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.471388900418617, -6.226944399576439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-469", - "dateofocc": "2009-12-16", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "PERU: Vessel robbed 16 Dec 09 at 1735 local time while anchored in Callao anchorage. Robbers boarded the vessel via the anchor chain and by cutting the hawse pipe cover. They stole ship's stores and escaped. The incident was only discovered after the ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-470", - "dateofocc": "2009-12-14", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship robbed 14 Dec 09 at 2100 local time while anchored in position 12-02.0S 077-11.6W, Callao anchorage. The duty officer onboard raised the alarm when he failed to get a response from the watchman on deck. The crew went forward to inv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.193333300428833, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-471", - "dateofocc": "2009-12-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "INDIAN OCEAN: Dhow (LAXMI SAGAR) hijacked on 10 December 09 while underway near position 06-00N 51-00E, approximately 115NM southeast of Garacad, Somalia. Vessel was controlled by armed men for approximately five days before being released. Reportedly", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.000000000195996, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-392", - "dateofocc": "2008-10-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: LPG tanker boarded and robbed on 03 Oct 08 at 0230 local time while underway off Mangkai Island. Six pirates armed with long knives boarded the tanker. They stole ships and crew cash before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.796111099628718] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-393", - "dateofocc": "2008-10-02", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "PHILLIPINES: Four fishing vessels fired upon per 02 Oct 08 reporting at sea near Tawi Tawi coast. The pirates, armed with M-16 rifles, attacked the fishermen. One fisherman was killed and 17 fishermen were reportedly seized by the pirates. (Xinhua).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.445277799780001, 12.074722200408303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-77", - "dateofocc": "2009-02-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "DAR ES SALAAM, TANZANIA: Three robbers armed with knives boarded a container ship at anchor. They tied up the duty A/B, took his personnel belongings and then opened a contaier and stole the cargo. At 0200 UTC, the robbers left the ship in a small boat a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.341666700187716, -6.772222200227418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-394", - "dateofocc": "2008-09-25", - "subreg": "95", - "hostility_": "CHINESE FISHERMAN", - "victim_d": "SOUTH KOREAN COAST GUARD", - "descriptio": "YELLOW SEA: South Korean Coast Guard officer killed on a Chinese fishing boat on 25 Sep 08, southwest of Jeolla Province. Chinese fishermen are accused of attacking the coast guard officer as he tried to board the Chinese vessel. They hit him with a s", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.833333300426148, 35.83333330021361] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-395", - "dateofocc": "2008-10-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "NIGERIAN NAVY", - "descriptio": "NIGERIA: Nigerian naval vessels fired upon on 15 Oct on Bonny Island near main crude oil and liquefied natural gas export terminals, the Nigerian military and security sources said. Gunmen in six speedboats attacked the vessels while they were protectin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-396", - "dateofocc": "2008-10-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker reported suspicious approach on 04 Oct 08 at 1530 local time while underway in position 03:36.00N 06:19.50E, 53nm southwest of Bonny River. Men, armed with guns, approached the ship in a wooden boat. The ship increased speed whi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.325000000122714, 3.599999999742295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-397", - "dateofocc": "2008-10-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARGO SHIP", - "descriptio": "GULF OF ADEN: Bulk cargo ship (AFRICAN SANDERLING) hijacked on 15 Oct 08 at 0315 UTC while underway in position 13:28.9N-050:08.5E. The ship contacted coalition forces via VHF channel 16 and reported being chased by two light-green speed boats with abo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.141666700177268, 13.481666700232779] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-398", - "dateofocc": "2008-10-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo ship reported suspicious approach on 10 Oct 08 at 0900 local time while underway in position 15-10.0N 051-45.0E. A small craft with three armed men onboard was sighted four miles off the ship-s port beam and the craft began to approac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.749999999995396, 15.16666670032771] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-399", - "dateofocc": "2008-10-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker hijacked on 10 Oct 08 while underway in position 13:06.1N-047:13.43E. At the time of the attack the ship had no working satellite comms or VHF. She was only able to get the message to her owner by GMDSS Telex. A coalition aircraft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.223611099565005, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-400", - "dateofocc": "2008-10-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Dry cargo ship (WAEL H) hijacked on 09 Oct 08 at 1700 UTC while underway in position 014:04.52N 050:52.24E. The vessel was carrying 3000 MT of cement bags and was enroute Bosasso at the time of the hijacking. The vessel had 11 crewmembers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.87055560007343, 14.07527779982405] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-401", - "dateofocc": "2008-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach on 10 Oct 08 at 2020 local time while underway in position 01:44N-052:51E, off Somalia. A speed boat was seen being released from a suspicious vessel about 8.5 NM away. The ship increased speed, a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.849999999761224, 1.733333300279924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-402", - "dateofocc": "2008-10-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "MALAYSIA: Container ship boarded, robbed 08 Oct 08 while at anchor in position 1:18.9N - 104:15.0E, 2.7 nm south of Teluk Ramunia, Johor. Robbers stole engine spares and escaped unnoticed (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.908333299964454, 1.208333300330423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-75", - "dateofocc": "2009-02-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "KAKINADA, INDIA: Robbers boarded a bulk carrier via forecastle and stole ship's stores and escaped before being noticed by watchkeepers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.224999999761053, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-78", - "dateofocc": "2009-02-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "OFF TANJUNG BULAT, MALAYSIA: Five robbers in a wooden boat approached a bulk carrier at anchor. One of the robers boarded the ship and attempted to steal ship's stores. Duty crew noticed the robber and informed bridge who raised the alarm, sounded ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.239999999831355, 1.313333300320323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-79", - "dateofocc": "2009-02-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Five pirates armed with RPG's in black/white color speed boat approached and fired upon a bulk carrier underway. They attempted to board the ship from the port side using a steel ladder. Master raised alarm, sent distress messages and took", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.149999999731449, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-80", - "dateofocc": "2009-02-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SE OF PENNINGTON TERMINAL, NIGERIA: Ten heavily armed pirates in a speed boat approached and attempted to stop a tanker underway. The pirates opened fire at the vessel. Alarm raised and crew alerted. Master took evasive measures and prevented boarding. P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.783333300276013, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-81", - "dateofocc": "2009-02-08", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CATAMARAN", - "descriptio": "ITAPARICA MARINA, BRAZIL: Two robbers armed with guns in a small row boat boarded a catamaran at anchor. The captain confronted the robbers and they shot and killed him. Robbers jumped overboard and swam off leaving their row boat. Nothing stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.673333300406171, -12.884999999572244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-82", - "dateofocc": "2009-02-14", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship robbed 14 Feb 09 at 0300 local time while anchored at Callao anchorage. Robbers boarded the vessel and broke open the bosun store, stealing ship's stores. The master informed local police, but the authorities did not arrive (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-83", - "dateofocc": "2009-02-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Tanker attacked, robbed 14 Feb 09 at 2130 UTC while at Lagos anchorage. Around 12 to 14 robbers wearing masks and armed with AK-47s boarded the vessel at anchor. They took a crewmember hostage and forced him to guide them to the bridge. They op", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-84", - "dateofocc": "2009-02-14", - "subreg": "42", - "hostility_": "RUSSIAN WARSHIP", - "victim_d": "CHINESE CARGO VESSEL", - "descriptio": "RUSSIA: Vessel (NEW STAR) fired upon 14 Feb 09 while underway off the coast of Vladivostok. The Chinese cargo vessel was being detained at the Russian port of Nakhodka after being suspected of smuggling. The vessel left the port without permission, and", - "hostilityt": 2, - "hostilit_D": "Naval Engagement", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XX" - }, - "geometry": { - "type": "Point", - "coordinates": [77.54999999957073, 67.783333299583092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-85", - "dateofocc": "2009-02-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Armed pirates attacked a bulk carrier(M/V SALDANHA) underway. They boarded the ship, took hostage crewmembers and hijacked it to an undisclosed location. The vessel was provided with assistance from a US Coalition warship however the pirate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.020277799868722, 12.566111099813384] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-86", - "dateofocc": "2009-02-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Pirates in an unlit high-speed oat chased a general cargo ship underway. The boat came close to the ship and attempted to board. Master raised alarm, increased speed, took evasive action, crew switched on additional lighting and activated f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.718333300292841, 14.518333299564745] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-87", - "dateofocc": "2009-02-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "STRAIT OF MALACCA: Tug boat (MLC NANCY 5) robbed 19 Feb 09 at 1430 local time while underway in position 05:10N ¿ 099:06E. The (MLC NANCY 5) was towing a barge en route to Singapore from Colombo when it was attacked by a group of 12 pirates from a smal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.10027780025797, 5.174999999590852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-274", - "dateofocc": "2009-05-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 29 May 09 at 1045 UTC while underway in position 12-20N - 046-26E. Six armed men in a speed boat approached the vessel. The vessel conducted evasive maneuvers to prevent a possible boarding and con", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.433333299836931, 12.333333299903302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-472", - "dateofocc": "2009-12-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "BANGLADESH: Tug robbed 5 Dec 09 at 1800 local time while anchored in position 22-12.6N 091-46.4E, Chittagong anchorage. Approximately 12 robbers armed with long metal bars in a small boat boarded the vessel and stole ship¿s stores before escaping. Loc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.773333299846286, 22.210000000137313] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-275", - "dateofocc": "2009-05-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 29 May 09 at 1050 UTC while underway in position 12-11N - 046-22E. Five pirates in a blue colored speed boat approached the vessel from less than 1NM away. The captain alerted UKMTO and MSCHOA a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.366666699897792, 12.198333300173203] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-276", - "dateofocc": "2009-05-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Armed pirates in a boat attempted to board a tanker underway. Ship raised alarm sounded whistle, switched lights on, activated fire hoses, increased speed and commenced evasive maneuvers. Pirate boat came about 2-3 meters off the ship's sid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.70500000028818, 12.994999999609945] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-277", - "dateofocc": "2009-05-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Tanker (STOLT STRENGTH) fired upon 31 May 09 at 1000 UTC while underway in position 13-29N - 043-01E, approximately 60NM northwest of the Bab el Mandeb. Seven armed men in a skiff chased and opened fire on the vessel. The captain increased spee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.016666699834445, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-278", - "dateofocc": "2009-06-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MALAYSIA: Bulk carrier (GARNET) robbed 1 Jun 09 at 0245 local time while anchored in position 01-19N - 104-15E, 2NM south of Tanjung Ramunia. Seven or eight robbers armed with knives boarded the vessel from the stern. They entered the engine room and ti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.264722199639493, 1.320555599954901] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-279", - "dateofocc": "2009-06-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker fired upon 1 Jun 09 at 0615 local time while underway in position 13-33N - 050-29E. Five armed men in a white skiff approached the vessel. The captain increased speed, activated high pressure fire hoses, mustered the crew, contacted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.483333299833021, 13.553333300428392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-280", - "dateofocc": "2009-05-21", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "COSTA RICA: Container ship robbed 21 May 09 at approximately 2200 local time while anchored in Puerto Moin outer roads. Two robbers boarded a container ship at anchor. They broke the padlock of a paint locker and stole ship's stores before escaping. Loc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.07833330012005, 10.005555600276239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-281", - "dateofocc": "2009-05-23", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship robbed 23 May 09 at 2045 local time while anchored in 12-01S - 077-11W, Callao anchorage. Duty crew reported sighting of robbers at forecastle. The alarm was raised and crew mustered. A search was conducted and found ship's properti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-282", - "dateofocc": "2009-06-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported being fired upon 3 Jun 09 at 1530 UTC while underway in position 13-19N - 046-51E. The captain reported men armed with guns and RPGs attacked the vessel while underway. No further information to report at this time (Operato", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.84999999956716, 13.316666699863219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-283", - "dateofocc": "2009-05-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "BANGLADESH: Vessel robbed 23 May 09 at 2054 local time, Chittagong anchorage. After dropping anchor, the ship's crew spotted eight armed robbers on the poop deck. The alarm was raised and the crew mustered. Robbers stole ship's stores and escaped. Port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-284", - "dateofocc": "2009-05-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker reported attempted boarding 23 May 09 at 0400 local time while anchored in position 06-00S - 106-53E, Jakarta anchorage. Two robbers using hook and rope from a small boat attempted to board the vessel at anchor. While climbing to the s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-285", - "dateofocc": "2009-06-10", - "subreg": "57", - "hostility_": "Five pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA: Bulk carrier robbed 10 June 09 at 0545 UTC while anchored in position 04-01N 006-48E, approximately 20NM off Nigeria. Five heavily armed robbers boarded the vessel using a hook attached to a rope. Once on board, they fired warning shots and thr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.8000000002055, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-286", - "dateofocc": "2009-06-09", - "subreg": "57", - "hostility_": "Sixteen Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "CAMEROON: Cargo vessel robbed 9 June 09 at 0324 UTC while at anchorage in Douala. Sixteen robbers armed with guns and knives damaged communication equipment and stole all cash located on the vessel. Three crewmembers were injured in the incident (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.666666699700215, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-473", - "dateofocc": "2009-12-11", - "subreg": "73", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship reported suspicious approach 11 Dec 09 at 0820 local time while underway in position 05-15.9S 123-25.1E, approximately 11NM east of Pulau Buton. Four men armed with a gun and spear in a speedboat chased the vessel. The cap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.41833329975907, -5.215000000052669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-474", - "dateofocc": "2009-12-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIA: Tanker robbed 17 Dec 09 at 1929 UTC while anchored in Kochi anchorage. Two robbers boarded the vessel via the anchor chain. They broke open the forepeak store and stole ship's stores. The crew noticed and chased them away. Seeing the crew, the ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.216666700368535, 9.966666699799816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-475", - "dateofocc": "2009-12-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VENEZUELA: Container ship reported attempted boarding 15 Dec 09 at 2150 local time while in Puerto la Cruz. Duty seaman onboard the vessel spotted six robbers in a boat attempting to board the vessel. The alarm was raised and the crew alerted. The robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.616666700022165, 10.216666700032761] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-476", - "dateofocc": "2009-12-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "SOMALIA: About nine pirates armed with guns in a small boat attacked, boarded and hijacked a dhow underway along with its 13 crewmembers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.618333300203687, -2.761666700058811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-477", - "dateofocc": "2009-12-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TEMA ROADS, GHANA: Ten robbers ared with machetes boarded a container ship at anchor via the anchor chain. They held three duty crewmembers, threatened them with the machetes at their throat and tied the up to bollards. The robber stole ship's property a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.048333300184993, 5.646666700343587] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-478", - "dateofocc": "2009-12-18", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CONARKY, GUINEA: Pirates armed with machine guns in a speedboat approached and fired upon a chemical tanker drifting. The tanker, increased speed, enforced anti-piracy measures, reported to authorities and prevented the pirates from boarding it. No injur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.821666699927221, 9.296666699607272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-479", - "dateofocc": "2009-12-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "INDIAN OCEAN: Dhow hijacked and likely conducting mothership operations. Last reported location underway near position 004-01S 048-47E. Vessel was headig north. Mariners are warned to steer clear of this area if possible.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.783333299867991, -4.016666699681195] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-480", - "dateofocc": "2009-12-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: Container ship robbed 22 Dec 09 at 1710 UTC while anchored in position 03-55.5N 098-46.1E, Belawan anchorage. Five robbers armed with knives boarded the vessel unnoticed. They tied up the hands and feet of the duty watchman and stole propertie", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.76833329981622, 3.925000000224941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-481", - "dateofocc": "2009-12-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "525 MILES SOUTHEAST OF SEYCHELLES: A merchant vessel reported coming under fire on 30 December 2009 at 0448 UTC in position 11-42N 063-01E. The vessel was attacked by a skiff and mothership using rpg only for approximately 30 mins. The captain maintained", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.01666669958189, 11.699999999734416] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-482", - "dateofocc": "2009-12-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOMALIA: Pirates attacked and hijacked a bulk carrier underway. The hijackers are sailing the vessel to Somali coast. Further reports awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.733333300357003, -3.366666699615223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-483", - "dateofocc": "2009-12-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Pirates attacked and hijacked a chemical tanker underway. The hijackers are sailing the tanker to an undisclosed location in Somalia. Further reports awaited.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.56666670032871, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-484", - "dateofocc": "2009-12-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SINGAPORE STRAITS: About six small unlit boats chased a chemical tanker underway. Pirates from one boat attempted to board. The tanker made evasive maneuvers and enforced anti-piracy measures and prevented the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.64166669965914, 1.078333299957478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-485", - "dateofocc": "2009-12-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "OFF SOMALIA: While underway a container ship detected a white-hull fishing vessel with two small craft on each side. The fishing vessel lowered one craft, which chased the ship for around 45 minutes before aborting the attempt due to preventive measures.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.016666700416522, 8.46666670020096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-97", - "dateofocc": "2009-02-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MALAYSIA: Duty 3rd engineer onboard a bulk carrier noticed robers escaping from the engine room. He informed duty officer on bridge. Alarm raised and crew mustered. After a search, it was revealed that five robbers boarded the vessel and entered the engi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.168333299810968, 1.295000000220853] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-486", - "dateofocc": "2009-12-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "LAGOS ANCHORAGE, NIGERIA: Robbers armed with automatic weapons attacked and boarded an anchored general cargo ship. They assaulted and fired at the crew. Three crew members were injured. The robbers stole crew personal properties and ship's stores and eq", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-403", - "dateofocc": "2008-10-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: A BULK CARRIER WAS ATTACKED AND HIJACKED BY PIRATES IN POSITION 14 DEGREES NORTH 050 DRGEESS, GULF OF ADEN ON 15102008 AT 0344 UTC.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.000000000163652, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-404", - "dateofocc": "2008-10-13", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: In Vung Tau anchorage, Vietnam. Robbers boarded an anchored container ship unnoticed by crew. They stole ship's stores and escaped, crew on routine patrol noticed bos'n store padlock was broken and ship's store stolen. Authorities informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.438333300267459, 10.243333299718756] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-405", - "dateofocc": "2008-10-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: BULK CARGO SHIP HIJACKED ON 15 OCT 08 AT 0409 UTC WHILE UNDERWAY ALONG WITH 21 CREW IN POSITION 13-33.92N 050-10.70E. THE PIRATES ARE SAILING THE SHIP TO AN UNDISCLOSED LOCATION IN SOMALIA. THE SHIP WAS ENROUTE FROM AQABA, JORDAN TO A PORT", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.17833330037621, 13.565277799744592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-406", - "dateofocc": "2008-10-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 16 Oct 08 at 1700 UTC while underway in position 12 44.0N - 045 52.0E. Three small boats chased the vessel. The ship changed course, increased speed and conducted evasive maneuvers to avoid boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.86666670033128, 12.73333329973633] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-407", - "dateofocc": "2008-10-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "GULF OF ADEN: Dhow hijacked on 14 Oct 08 while underway in position 12:59N 048:29E. Owners confirmed that the dhow was hijacked by nine armed Somali pirates in speed boats. The vessel was carrying a cargo of sugar from India to Berberra, Somalia when i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.483333299768333, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-408", - "dateofocc": "2008-10-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Containership fired upon 23 Oct 08 at 1732 UTC while underway near position 03:47S-047:46E, approximately 180 NM off Mombasa, Kenya. Vessel was chased and fired upon by two small boats. Vessel escaped but sustained bullet damage (IMB, Op", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.783333299673927, -3.783333300419997] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-409", - "dateofocc": "2008-10-22", - "subreg": "63", - "hostility_": "LTTE PIRATES", - "victim_d": "VESSEL RUHUNA AND VESSEL NIMALAWA", - "descriptio": "SRI LANKA: M/V (RUHUNA) and M/V (NIMALAWA) attacked by LTTE Sea Tiger suicide boats on 22 Oct 08 at 0500 local time while underway off Kankesanthurai harbor. Sri Lankan Navy spokesperson D. K. P. Dassanayake claimed three LTTE suicide vessels were invo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [80.833333299870219, 9.233333300072843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-410", - "dateofocc": "2008-10-13", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship robbed on 13 Oct 08 at 0600 local time while at anchor in position 10-14.6N 107-26.3E, Vung Tau. Robbers, unnoticed by crew, boarded the ship, stole ship's stores and escaped. The crew on routine patrol noticed the store padlock", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.069444399951237, 10.338888900345466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-411", - "dateofocc": "2008-10-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GHANA: Chemical tanker robbed on 21 Oct 08 at 0330 local time while at anchorage, Tema. The robbers boarded the vessel, broke open the forecastle locker, stole the ships stores and escaped (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.036111100327332, 5.625000000189971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-412", - "dateofocc": "2008-10-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "CAMEROON: Tug attacked, crewmembers kidnapped 31 Oct 08 at approximately midnight local time, while off the coast of Cameroon. An unknown number of hijackers, reportedly part of a militia group, riding speedboats and carrying small arms boarded the tug", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.680833299644348, 4.006388900183367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-98", - "dateofocc": "2009-02-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "COCHIN, INDIA: Robbers boarded a general cargo ship at achor. They broke forward lockers and stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.233333300440904, 9.916666699933103] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-413", - "dateofocc": "2008-10-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (YASA NESLIHAN) hijacked on 29 Oct 08 at 1030 UTC while underway in position 13:00N-046:40E. The ship reported to coalition aircraft that two boats, each with four men inside, were chasing. The ship conducted evasive manoeuvr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.66666669999745, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-414", - "dateofocc": "2008-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Bulk cargo ship reported suspicious approach on 28 Oct 08 at 0800 local time while underway in position 12:42.6N-045:47.4E. The chief officer observed one speed boat from aft, two speed boats from the port side and two speed boats from th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.790000000054476, 12.410000000180105] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-88", - "dateofocc": "2009-02-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING TRAWLER", - "descriptio": "EAST COAST, SOMALIA: Five pirates in a boat fired upon a fishing trawler underway. Pirates attempted to board the ship. Master carryout evasive maneuvers, increased speed and moved away. The ship sustained bullet hole damage. There were no leakage and no", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.9166667004244, 4.549999999907925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-89", - "dateofocc": "2009-02-18", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CALLAO ANCHORAGE, PERU: An anchored container ship, waiting for a bunker barge, was approached by two small boats. The two boats asked for heaving lines to assist securing the bunker barge. The OOW suspecting them for robbers and raised the alarm. Crew m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-90", - "dateofocc": "2009-02-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "HOBYO, SOMALIA: A commercial fishing vessel reported a pirate attack 19 Feb 09 at 16:30 UTC while underway in location 004-33N 052-55E, approximately 265 miles east of Hobyo Somalia. Victim observed a small white skiff with a blue bow. Four or five men w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.9166667004244, 4.549999999907925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-91", - "dateofocc": "2009-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (YAN DANG HAI) fired upon 25 Feb 09 at 0556 local time while underway in position 13-11N 049-16E. The vessel reported coming under fire and sent out a distress call. The Danish destroyer (ABSALON) responded and seized the pira", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.266666700261396, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-92", - "dateofocc": "2009-02-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:A group of armed pirates in three high speed boats approached and attempted to attack a bulk carrier underway. Master raised alarm and took evasive manoeuvres. Pirates aborted the attempted attack due to the evasive manoeuvres taken by the s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.516666700300277, 12.183333300303104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-93", - "dateofocc": "2009-02-25", - "subreg": "62", - "hostility_": "FOUR PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:Four pirates in a speed boat armed with rocket launcher fired upon a bulk carrier underway. Master raised alarm, sent distress message, took evasive manoeuvres. Crew activated fire hoses and threw empty bottles. Pirates aborted the attempted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.15138890008302, 13.134444400245457] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-94", - "dateofocc": "2009-02-24", - "subreg": "22", - "hostility_": "EIGHT ARMED PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU:Eight armed robbers boarded a container ship at anchor. They took hostage two shore employed security watchmen and tied them up. They broke into the forecastle store and stole ship's stores and escaped. One of the watchmen managed to inform the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.185555600193368, -12.017222200365552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-95", - "dateofocc": "2009-02-22", - "subreg": "57", - "hostility_": "SEVEN PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA:Five pirates armed with automatic guns in a high speed boat and two pirates in a fishing boat approached a product tanker underway. They opened fire at the bridge and attempted to board the tanker. Master raised alarm, increased speed and took ev", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.768055599688182, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-96", - "dateofocc": "2009-03-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "GULF OF ADEN: Pirates armed with guns fired upon an oil tanker underway. Master reported to coalition warship adn UKMTO Dubai and increased speed took evasive maneuvers and altered away from the pirate boats. Later pirates aborted the atttack, all crew s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.550000000334535, 12.150000000333534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-99", - "dateofocc": "2009-03-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FERRY BOAT", - "descriptio": "NIGERIA: Ferry hijacked, passengers kidnapped 4 Mar 09 midday local time while underway near the Bonny Island gas terminal at Dutch Island Creek. While transiting from Port Harcourt to Bonny Island, the ferry was hijacked by gunmen, who then robbed all t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.166666700069015, 4.450000000174498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-100", - "dateofocc": "2009-03-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 5 Mar 09 at 1420 UTC while underway in position 13-45N 050-44E. A suspicious white boat towing three small, white boats was observed moving east with a speed of approximately 7kts. The same suspicious bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.733333300065908, 13.749999999665818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-287", - "dateofocc": "2009-06-09", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "CAMEROON: Tanker robbed 9 June 09 at 0224 UTC while underway near Douala anchorage. Robbers disabled communication equipment, stole all money on board an escaped. The 3rd officer was injured in the incident. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.649999999803072, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-288", - "dateofocc": "2009-06-15", - "subreg": "62", - "hostility_": "Skiff", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker fired upon 15 June 09 at 1305 local time while underway in position 12-58N 048-27E. One skiff approached the vessel to within about ten meters and fired with gun and RPG rounds. The vessel conducted evasive maneuvers and the skiff e", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.449999999798763, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-289", - "dateofocc": "2009-06-14", - "subreg": "62", - "hostility_": "Speed Boats", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker fired upon 14 June 09 at 1700 local time while underway in position 12-33N 043-29E, near Bab el Mandeb. Several speed boats approached the vessel, crossed its bow, and opened fire with automatic weapons. The tanker performed evasive", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.483333299606613, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-290", - "dateofocc": "2009-06-14", - "subreg": "62", - "hostility_": "Four Speed Boats", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 14 June 09 at 1740 local time while underway in position 12-58N 043-09E. Four speed boats with five to six persons in each armed with automatic weapons approached the vessel. The tanker performed evasive", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.150000000436762, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-291", - "dateofocc": "2009-06-14", - "subreg": "62", - "hostility_": "Skiffs", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 14 June 09 at 1435 UTC while underway in position 12-25N 043-28E. Several skiffs chased the vessel but aborted after the tanker applied anti-piracy measures to prevent boarding (Operator, IMB).", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.466666700433564, 12.416666699564303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-292", - "dateofocc": "2009-06-14", - "subreg": "62", - "hostility_": "Unknown Vessel", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN: Bulk carrier reported suspicious approach 14 June 09 at 1453 UTC while underway in position 12-59N 043-09E. Vessel took evasive maneuvers to prevent possible boarding (Operator, IMB).", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.150000000436762, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-293", - "dateofocc": "2009-06-13", - "subreg": "62", - "hostility_": "Skiffs", - "victim_d": "Chemical Tanker", - "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 13 June 09 at 0110 local time while underway in position 12-36N 043-25E. Vessel performed evasive maneuvers and contacted coalition warships via VHF channel 16. The skiffs later aborted the purs", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.41666669966753, 12.600000000033333] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-294", - "dateofocc": "2009-06-12", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "General Cargo Ship", - "descriptio": "OMAN: General cargo ship (CHARELLE) hijacked 12 June 09 at 1334 UTC while underway in position 21-55N 059-51E, approximately 11NM off the coast of Oman. An unknown number of armed men boarded and hijacked the vessel after pursuing it for some time (Oper", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.849999999987574, 21.916666700321173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-295", - "dateofocc": "2009-06-10", - "subreg": "62", - "hostility_": "Ten Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "OMAN: Bulk carrier reported attempted boarding 10 June 09 at 1420 UTC while underway in position 18-41N 058-01E, approximately 20NM off Ras al Madrakah. Approximately ten men armed with automatic weapons and an RPG in two speed boats chased the vessel a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.016666700319547, 18.68333330006368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-297", - "dateofocc": "2009-06-18", - "subreg": "53", - "hostility_": "Three Pirates", - "victim_d": "Yacht", - "descriptio": "ITALY: Yacht boarded, stolen 18 Jun 09 at approximately 2100 local time while underway in the Bay of Naples. Three armed men aboard a dinghy reportedly rammed the 38ft yacht and boarded the vessel, robbing the owner and his friend before forcing them to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [14.150000000398222, 40.666666699803386] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-153", - "dateofocc": "2010-04-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DEMOCRATIC REPUBLIC OF CONGO: Tanker robbed 24 Apr 10 while anchored at Boma. Robbers boarded the vessel and stole ship's properties before escaping unnoticed. No further details to provide (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-298", - "dateofocc": "2009-06-19", - "subreg": "62", - "hostility_": "Skiffs", - "victim_d": "Tanker", - "descriptio": "BAB EL MANDEB: Tanker reported suspicious approach 19 Jun 09 at 1220 UTC while underway in position 12-38N 043-21E. Armed men in skiffs chased the vessel while underway. The captain raised the alarm, sounded the whistle, and conducted evasive maneuvers.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.33333330023288, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-299", - "dateofocc": "2009-06-22", - "subreg": "62", - "hostility_": "White Skiff", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker (MAERSK PHOENIX) fired upon 22 Jun 09 at 0910 local time while underway in position 13-29N 050-20E. Approximately six to eight armed men in a white skiff approached the vessel and fired at it with an RPG. The vessel conducted evasiv", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.33333330023288, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-300", - "dateofocc": "2009-06-22", - "subreg": "62", - "hostility_": "Two White Skiffs", - "victim_d": "General Cargo Ship", - "descriptio": "GULF OF ADEN: General cargo vessel (BOLAN) fired upon 22 Jun 09 at 0850 local time while underway in position 13-33N 050-19E. Two small white skiffs with four to five armed men onboard chased and opened fire on the vessel while underway. The captain rai", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.316666700160454, 13.550000000198963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-301", - "dateofocc": "2009-06-18", - "subreg": "62", - "hostility_": "Three Speed Boats", - "victim_d": "Bulk Carrier", - "descriptio": "RED SEA: Bulk carrier reported suspicious approach 18 Jun 09 at 1500 UTC while underway in position 16-00N 041-24E, approximately 110NM northwest of Al Hudaydah, Yemen. Thirty men in three speed boats armed with guns and RPGs reportedly chased the vesse", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.399999999705699, 15.99999999996345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-1", - "dateofocc": "2009-12-26", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Sailing vessel", - "descriptio": "COLOMBIA: Sailing vessel robbed 26 Dec 09 in the early morning while anchored in Cartagena. Owner's sailboat was anchored on the outer south eastern edge of the anchorage and the dinghy was secured to a boat with galvanized chain. Robbers cut the chain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.700000000214231, 10.699999999702129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-2", - "dateofocc": "2009-12-11", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Catamaran", - "descriptio": "COLOMBIA: Catamaran (FRITZ THE CAT) robbed 11 Dec 09 during the night while anchored off Cartagena in front of club Nautico. Robbers approached the catamaran on a small boat, broke in through a hatch, and stole personal belongings including a computer,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.633333299550998, 10.866666700098733] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-3", - "dateofocc": "2009-12-05", - "subreg": "51", - "hostility_": "Suspicious boat", - "victim_d": "Sailing vessel", - "descriptio": "ATLANTIC OCEAN: Sailing vessel (MARANO) reported suspicious approach 5 Dec 09 at 1930 local time while underway in position 23-55N 023-28W, approximately 400NM southwest of the Canary Islands. The crew noticed white lights appearing to be coming from a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-23.466666699995415, 23.916666700385861] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-4", - "dateofocc": "2009-12-29", - "subreg": "57", - "hostility_": "Three Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA: Tanker robbed 29 Dec 09 at 2116 local time while anchored in position 06-17.73N 003-22.7E, Lagos anchorage. Three armed robbers boarded the vessel and stole crew personal belongings and ship¿s equipment before escaping approximately 2 hours la", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.378333300121767, 6.295277800058045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-5", - "dateofocc": "2009-12-29", - "subreg": "57", - "hostility_": "Small boat with armed pirates", - "victim_d": "Bulk carrier", - "descriptio": "NIGERIA: Bulk carrier fired upon 29 Dec 09 at 2010 UTC while anchored in position 06-10N 003-24E, Lagos anchorage. One small boat with armed robbers onboard opened fire on the vessel. Counter-piracy measures were enforced which prevented the boarding (", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.166666700036672] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-6", - "dateofocc": "2009-12-28", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "General cargo ship", - "descriptio": "NIGERIA: General cargo ship fired upon, robbed 28 Dec 09 at 0020 local time while anchored in Lagos anchorage. Robbers armed with automatic weapons boarded the vessel and opened fire at the crew, injuring three crewmembers. The robbers stole personal be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-7", - "dateofocc": "2009-12-19", - "subreg": "57", - "hostility_": "Fly boat", - "victim_d": "Supply vessel", - "descriptio": "NIGERIA: Supply vessel fired upon 19 Dec 09 at 0250 local time while in position 04-15N 008-11E, Ubit oil field. While at stand-by running security patterns at Ubit North anchorage, a fly boat was spotted approaching the vessel. Shot were fired and the", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.183333300173786, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-8", - "dateofocc": "2009-12-10", - "subreg": "57", - "hostility_": "Five Pirates", - "victim_d": "Fishermen", - "descriptio": "NIGERIA: Fishermen attacked, robbed 10 Dec 09 at 0700 local time at Beregede village along the Bonny River. Five men in one speedboat reportedly attacked two fishermen resulting in severe injuries. The robbers stole their 15 HP outboard engine before e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.133333300177696, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-9", - "dateofocc": "2009-12-28", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker (ST JAMES PARK) hijacked 28 Dec 09 at 1449 UTC while underway in position 12-58N 048-34E, approximately 97NM southwest of Al Mukalla, Yemen. Pirates attacked and hijacked the vessel while underway and are sailing the vessel toward S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.56666670032871, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-10", - "dateofocc": "2009-12-18", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Fishing dhow", - "descriptio": "GULF OF ADEN: Fishing dhow reportedly hijacked 18 Dec 09 while underway, exact position unknown. Men attacked and hijacked the vessel with its 15-crewmembers. The vessel¿s hull is red and white colored. It is believed the vessel may be used as a mothe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.733333300033564, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-11", - "dateofocc": "2009-12-30", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "INDIAN OCEAN: Vessel fired upon 30 Dec 09 at 0445 UTC while underway in position 11-42N 063-00E, approximately 500NM east of Socotra Island. Owners received a distress message that armed men opened fire on the vessel with automatic weapons. The vessel l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.999999999684746, 11.699999999734416] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-12", - "dateofocc": "2009-12-28", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Bulk carrier", - "descriptio": "INDIAN OCEAN: Bulk carrier (NAVIOS APOLLON) hijacked 28 Dec 09 at 1610 UTC while underway in position 03-22S 059-44E, approximately 268NM northeast of Port Victoria, Seychelles. Pirates attacked and hijacked the vessel while underway and are sailing it", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.733333300357003, -3.366666699615223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-415", - "dateofocc": "2008-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier fired upon on 28 Oct 08 at 1350 UTC while underway in position 13:17N-048:35E. A small speedboat was seen approaching the vessel from the starboard quarter. The general alarm was sounded and fire pumps were activated (hoses w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.58333330040108, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-416", - "dateofocc": "2008-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (LEANDER) fired upon, 28 Oct 08 at 0520Z while in position 13-23N 048-22E. Tanker was attacked by a group of three white, open boats. At 1300Z, the tanker was attacked again in position 12-54N 046-40E. The tanker reported a white m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.366666699962479, 13.383333299802359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-417", - "dateofocc": "2008-10-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach on 26 Oct 08 at 0820 UTC while underway in position 12:49.9N-046:11.2E. Four speed boats approached the vessel from the starboard bow astern. The crew was mustered on deck and high pressure fire hoses we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.18666669965819, 12.831666700166807] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-418", - "dateofocc": "2008-10-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo ship reported suspicious approach on 21 Oct 08 at 1500 UTC while underway in position near 14:08N-049:05E. The master reported that two speedboats were following the vessel. A coalition force dispatched a helicopter and the speedboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.083333299967592, 14.133333299601759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-419", - "dateofocc": "2008-10-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach on 29 Oct 08 at 0950 UTC while underway in position 02:13.5N-054:45.7E. A speedboat was sighted on the port bow at a distance of 14 nautical miles. The ship increased to speed of 15.2 knots. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.761666699733155, 2.225000000259911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-420", - "dateofocc": "2008-10-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE STRAIT: Tanker (AROWANA RANGER) boarded, robbed 31 Oct 08, at approximately 0115 local time while underway in position 01:11N-103:50E, west of Batu Berhenti in the east bound lane of the Traffic Separation Scheme. The tanker was enroute from S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.833333299714695, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-421", - "dateofocc": "2008-11-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: General cargo vessel boarded 2 Nov 08 at 0420 local time while in Apapa port, Lagos. Seven robbers boarded the vessel at berth. They broke the forecastle store padlocks, but escaped in a waiting speedboat as soon as the alert duty crew noticed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-422", - "dateofocc": "2008-10-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "DIVING VESSEL", - "descriptio": "CAMEROON: Diving support vessel boarded 25 Oct 08 at 0430 local time in Douala port. Robbers boarded the vessel while at berth. Alert shore security apprehended them. Nothing was stolen (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.680833299644348, 4.023055600080511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-423", - "dateofocc": "2008-11-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker fired upon on 2 Nov 08 at 1000 UTC while underway in position 13-02N 046-37E. A fishing boat, white hull and orange inboard, was observed on port bow. Suddenly, a small open boat, which had been hiding behind the fishing boat, appro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.616666700130736, 13.033333299835988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-424", - "dateofocc": "2008-11-08", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "Punta Pedernales, Ecuador: Five armed robbers in a small fishing boat boarded an anchored yacht on 08 Nov 08 at 1400 UTC in 00:48N 080:07W. They roughed up the crew and stole valuables and yacht's property. With the assistance of another yacht, the incid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.116666700073779, 0.800000000011494] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-101", - "dateofocc": "2009-03-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach 4 Mar 09 at 0735 UTC while underway in position 12-17N 044-09E. One suspicious boat was spotted at the port bow quarter at a distance of approximately 2NM. The boat increased speed and tried to cross in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.149999999569786, 12.283333300036531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-102", - "dateofocc": "2009-03-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel (MV COURIER) fired upon 3 Mar 09 at 0612 UTC while underway in position 13-02N 048-43E. The master reported coming under fire by pirates with rifles and an RPG. The vessel sent out a distress call, which was received by the German f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.716666699928851, 13.033333299835988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-103", - "dateofocc": "2009-03-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (PRO ALLIANCE) fired upon 2 Mar 09 at 0649 UTC while underway in position 12-09N 045-33E, 45NM southeast of the port of Aden. Men armed with guns fired upon an oil tanker underway. The master reported to coalition warships and UKMTO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.550000000334535, 12.150000000333534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-104", - "dateofocc": "2009-03-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA: A merchant vessel reported coming under fire 6 March 2009 at 0658 UTC while underway in location 003:51S - 044:10E, approximately 265 NM east of Mombasa, Kenya. One skiff with six men came within 100 meters of the vessel and fired what was believe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.16666670036625, -3.850000000183854] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-105", - "dateofocc": "2009-03-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: At 091820z UTC Mar 09 M/V SHANGHIA VENTURE reports being attacked by pirates. RPG and rifles have been fired. Merchants vessels are advised to use extra precaution when transiting the area and maintain a vigilant lookout reporting any suspi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.700000000355089, 7.999999999704698] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-106", - "dateofocc": "2009-03-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "INDIAN OCEAN: At 10 0500 UTC Mar 09 M/V MAR REINA reports being attacked by pirates. Small arms have been fired. Position is close to the attack from last nigh attack on SHANGHAI VENTURE.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.183333300024458, 8.100000000337502] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-107", - "dateofocc": "2009-03-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: While underway, OOW onboard a bulk carrier noticed an unidentified and unlit target on the radar about 9 nautical miles on starboard bow. Target did not transmit AIS signal and did not respond to calls on VHF radio. About 45 minutes later,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.466666700245696, 7.933333299940841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-108", - "dateofocc": "2009-03-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "KAKINADA ANCHORAGE, INDIA: Robbers boarded an anchored bulk carrier by climbing thru the hawse pipe. When sighted by duty watchmen, robbers jumped overboard and escaped with ship's stores. Port control and agent informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.025000000294142, 23.036111099963136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-109", - "dateofocc": "2009-03-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: TANKER BOARDED 11 MAR 09 AT 0252Z WHILE ANCHORED IN POSITION 06-19N 003-25E, LAGOS ANCHORAGE. MEN ARMED WITH GUNS, KNIVES, AND IRON RODS BOARDED THE VESSEL AND ASSULTED THE CREW. THE CAPTAIN AND ANOTHER CREW MEMBER WERE SERIOUSLY INJURED. THE CA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.416666700172584, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-110", - "dateofocc": "2009-03-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "GULF OF ADEN:VESSEL REPORTED SUSPICIOUS APPROACH 11 MAR 09 AT 0520Z WHILE UNDERWAY IN POSITION 13-16N 049-44E. A SUSPICIOUS BOAT WAS SIGHTED DRIFTING AT 5 MILES DISTANCE ON THE STARBOARD BEAM. THE VESSEL CONTINUED IT'S TRANSIT, AND THE DISTANCED TO THE S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.733333300033564, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-111", - "dateofocc": "2009-03-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "INDIAN OCEAN:VESSEL REPORTED SUSPICIOUS APPROACH 13 MAR 09 AT 0713Z WHILE UNDERWAY IN POSITION 07-11N 058-50E. THE VESSEL REPORTED BEING CHASED BY ONE SPEED BOAT WITH SIX MEN ONBOARD ARMED WITH AK-47S. THE MASTER CONDUCTED EVASIVE MANEUVERS AND THE MEN I", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.833333300058086, 7.183333300141442] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-112", - "dateofocc": "2009-03-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "INDIAN OCEAN:VESSEL FIRED UPON 11 MARCH 09 AT 2240Z WHILE UNDERWAY IN POSITION 04-02S 046-33E, APPROXIMATELY 410 NM EAST OF MOMBASA, KENYA. ONE WHITE SKIFF WITH AN UNKNOWN NUMBER OF ASSAILANTS CAME WITHIN 100 METERS OF THE VESSEL AND FIRED MACHINE GUNS A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.550000000366879, -4.033333299753622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-302", - "dateofocc": "2009-06-19", - "subreg": "63", - "hostility_": "Pirate", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH: Bulk carrier robbed 19 Jun 09 at 1220 UTC while berthed in Chittagong port. While reading the forward drafts from the jetty, the officer on duty was robbed of his personal belongings. The officer called for help but the robber managed to esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-303", - "dateofocc": "2009-06-19", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH: Container ship robbed 19 Jun 09 at 0400 local time while anchored in position 22-10N 091-46E, Chittagong anchorage. Armed robbers boarded the vessel using hooks and lines while another two remained in a nearby boat. They threatened the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-304", - "dateofocc": "2009-06-12", - "subreg": "63", - "hostility_": "Four Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH: Bulk carrier robbed 12 Jun 09 at 0300 local time while anchored in position 22-14N 091-42E, Chittagong anchorage. Four robbers boarded the vessel while four others waited in a nearby boat. The men climbed onboard using a hook and line and th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 22.233333299593937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-121", - "dateofocc": "2009-03-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "BAB-EL-MANDEB: Vessel reported suspicious approach 16 Mar 09 at 1505 UTC while underway in position 12-33N 043-25E. Five men in two speed boats armed with guns approached the vessel from the port bow. The captain conducted evasive maneuvers while report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.41666669966753, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-305", - "dateofocc": "2009-06-22", - "subreg": "71", - "hostility_": "Seven Pirates", - "victim_d": "Tug", - "descriptio": "SINGAPORE: Tug (SALVICEROY) boarded 22 Jun 09 at 1600 local time while anchored in position 01-08N 103-35E, off Nipa transit anchorage. Seven robbers in a small wooden boat approached the portside of the vessel. Three of the robbers reportedly armed wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-306", - "dateofocc": "2009-06-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker (SIGLOO DISCOVERY) robbed 27 June 09 at 0040 local time while underway in position 02-47.1N 105-07.6E, approximately 33NM southwest of Pulau Mangkai. Six robbers armed with knives, crowbars and batons boarded the vessel via the b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.126666700287217, 2.785000000206082] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-307", - "dateofocc": "2009-06-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: Eight pirates armed with long knives boarded a general cargo vessel underway in 02-58N 105-11E at 251930 UTC Jun. They held hostage an AB and Second Officer on watch. Pirates stole cash and belongings and escaped in a small boat, caution", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.183333299713411, 2.966666699573466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-308", - "dateofocc": "2009-06-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: Five pirates armed with long knives boarded a general cargo vessel underway in 02-58N 105-14E at 251340 UTC Jun. Pirates stole cash and belongings and escaped in a small boat, caution advised (Navarea XI 405/09).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.233333299580124, 2.966666699573466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-309", - "dateofocc": "2009-06-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ABIDJAN ANCHORAGE IVORY COAST: Four armed robbers in a boat came close to a bulk carrier at anchor. Two robbers boarded and were cutting the ship line when the alert duty watchman sighted and shouted at the men and also reported to the duty officer. One", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.049722199975236, 5.216388900195511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-310", - "dateofocc": "2009-06-24", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier reported attempted boarding 24 June 09 at 1930 UTC while anchored in position 01-20.2S 117-02.8E, Balikpapan outer anchorage. Two robbers in a small boat attempted to board the vessel. The alert crew raised the alarm and sounded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.046666700169112, -1.336666699810337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-311", - "dateofocc": "2009-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: General cargo ship (WHITE TOKIO) robbed 28 June 09 at 0115 local time while underway in position 01-57.18N 104-47.83E, approximately 34NM south of Pulau Aur, Malaysia. Six robbers boarded the vessel stealing all cash on board. No one w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.79694440029823, 1.952777800347064] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-312", - "dateofocc": "2009-06-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "LAGOS, NIGERIA: Armed robbers attempted to board an anchored bulk carrier using hooks and ropes. Noticing the robbers the ship's crew tried to drive away the attackers. One robber managed to board but was forced back. In the attempt to board the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-313", - "dateofocc": "2009-06-30", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "ATLANTIC OCEAN: General cargo ship reported attempted boarding 30 Jun 09 at 0500 UTC while underway in position 11-20N 017-15W, approximately 60NM off the coast of Guinea Bissau. Twelve armed men in a boat reportedly attempted to board the vessel while", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-17.250000000437353, 11.333333299870958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-13", - "dateofocc": "2009-12-27", - "subreg": "63", - "hostility_": "Three small vessels", - "victim_d": "Container ship", - "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 27 Dec 09 at 1230 local time while underway in position 08-28N 061-01E, approximately 660NM northeast of Eyl, Somalia. Vessel detected a white-hull fishing vessel with two small craft on each sid", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.016666700416522, 8.46666670020096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-14", - "dateofocc": "2009-12-21", - "subreg": "63", - "hostility_": "Three speedboats", - "victim_d": "Tanker", - "descriptio": "INDIAN OCEAN: Tanker reported suspicious approach 21 Dec 09 at 1710 UTC while underway in position 17-09N 066-06E, approximately 400NM southwest of Mumbai, India. A group of armed men in three speedboats pursued the vessel. Evasive maneuvers, including", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.100000000414525, 17.149999999595934] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-15", - "dateofocc": "2009-12-25", - "subreg": "63", - "hostility_": "Six pirates", - "victim_d": "General cargo ship", - "descriptio": "BANGLADESH: General cargo ship (SANTA SURIA) robbed 25 Dec 09 at 0229 local time while anchored in position 22-14.42N 091-43E, Chittagong port anchorage B. Six robbers armed with small knives boarded the vessel by using a small wooden boat to approach i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.245000000133928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-16", - "dateofocc": "2009-12-28", - "subreg": "71", - "hostility_": "Five or six small boats", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT: Tanker (GULF CORAL) reported attempted boarding 28 Dec 09 at 2030 local time while underway in position 01-04.7N 103-38.5E. About five or six unlit boats approximately 7-8 meters in length approached the tanker¿s bow on both sides. On", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.634722199700093, 1.068611100019382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-17", - "dateofocc": "2010-01-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN: Tanker (PRAMONI) hijacked 1 Jan 10 at 0944 UTC while underway in position 12-31N 047-17E, approximately 135NM southeast of Aden, Yemen. Pirates hijacked the vessel with its 24 crewmembers and are sailing the vessel to an undisclosed locat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.283333300269135, 12.51666670019705] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-18", - "dateofocc": "2010-01-01", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Ro Ro", - "descriptio": "INDIAN OCEAN: RO/RO (ASIAN GLORY) hijacked 1 Jan 10 at 2250 UTC while underway in position 10-48N 061-54E, approximately 425NM southeast of Socotra Island. Pirates hijacked the vessel with its 25 crewmembers and are sailing the vessel to an undisclosed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.899999999918975, 10.800000000334876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-19", - "dateofocc": "2010-01-04", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Container ship", - "descriptio": "INDONESIA: Container ship robbed 4 Jan 10 at 0200 local time while berthed in position 06-05.86S 106-54.15E, Koja container terminal, Tanjung Priok. Robbers boarded the vessel and entered the engine room by breaking open the locks on the steering gear r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.902499999703821, -6.09750000035325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-20", - "dateofocc": "2009-12-30", - "subreg": "93", - "hostility_": "Pirate", - "victim_d": "Tanker", - "descriptio": "CHINA: Tanker robbed 30 Dec 09 at 0645 local time while anchored in position 22-41.4N 113-41.8E, Nansha anchorage. A duty crewmember on rounds noticed a robber on forecastle. He informed the duty officer on bridge who raised the alarm and alerted the cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.685555599816098, 22.684444399969721] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-21", - "dateofocc": "2010-01-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "COTE D'IVOIRE: Tanker robbed 5 Jan 10 at 2356 local time while anchored at Abidjan outer anchorage. Three robbers armed with long knives in a small boat boarded the tanker. One of the robbers a crewmember hostage and threatened him with a knife while th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.026666700194141, 5.33638890005551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-22", - "dateofocc": "2010-01-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 9 Jan 10 while underway in position 11-48.5N 043-39.8E, approximately 30NM northeast of the port of Djibouti. Four armed security team were cross decking from a launch after a rendezvous with the tanker", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.663333299846272, 11.808333299953745] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-23", - "dateofocc": "2010-01-03", - "subreg": "81", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship reported attempted boarding 3 Jan 10 at 0900 local time while underway in position 01-39.4N 132-45.3E, approximately 165NM northeast of Sorong. More than 10 robbers in three big boats chased and attempted to board the vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [132.755000000173482, 1.656666699827895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-449", - "dateofocc": "2010-11-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "Pirate action group in 01-00S 052-06E at 130938Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution. Pirate action group consisted of 1 mother ship with 4 persons onboard and 1 skiff.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.099999999961767, -0.99999999968702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-425", - "dateofocc": "2008-11-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "Lagos, Nigeria:Two robbers armed with knives boarded and anchored tanker in 06:19N 003:26E at 2205 local time from the stern. They overpowered the duty crew, tied up his hands, stole his walkie-talkie and threatened him that they would kill him if he scr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.433333300244954, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-426", - "dateofocc": "2008-11-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO", - "descriptio": "Gulf of Aden: Somolia pirates hijacked a general cargo ship underway in 12:46N 045:56E at 1241 UTC. There was no radio communication or any alarm received from ship. There are 13 crew members onboard. Further information waitig.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.933333300270419, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-427", - "dateofocc": "2008-11-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "Chittagong, Bagladesh: Five robbers boarded an oil tanker at anchorage. Robbers jumped overboard when sighted by ship's crew. Nothing stolen and no injury to crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-428", - "dateofocc": "2008-11-15", - "subreg": "61", - "hostility_": "Pirate Hijacking", - "victim_d": "MT Sirius Star", - "descriptio": "450 Miles South-East of Mogadishu:It has been reported that the MT Sirius Star (VLCC) was attacked some 450 NM south-east of Mogadishu. The Liberian flagged vessel is the largest to be hijacked to date, with a deadweight (DWT) of 319,430 tons. Furthermor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.716666699928851, -4.683333299819594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-429", - "dateofocc": "2008-11-09", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "VENEZUELA: Sailboat (CHILL) boarded, captain killed 9 Nov 2008 at 1730 local time while anchored at position 10:17N 064:45W at Isla Borracha. Three men onboard a small fishing pibelow with water, they shot him in the chest. Another couple from a sailb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.749999999725162, 10.2833332999719] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-430", - "dateofocc": "2008-11-08", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "ECUADOR: Yacht boarded, robbed 8 Nov 2008 at 0800 local time while anchored in position 00-48N 080-07W, Punta Pedernales. Five armed robbers boarded the yacht at anchor. They roughed up the crew and stole money and electronic items. Injuries consiste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.116666700073779, 0.800000000011494] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-431", - "dateofocc": "2008-11-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Tanker robbed on 1 Nov 2008 at 2205 local time while anchored at 06-19N 003-26E, Lagos OPL anchorage. Two robbers armed with knives boarded an anchored tanker from the stern. They overpowered the duty crewmember, tied up his hands, stole his ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.433333300244954, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-432", - "dateofocc": "2008-11-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker (KARAGOL) hijacked 12 Nov 08 at 1415 UTC while underway in position 13-07N 046-48E. The tanker was in transit from Haifa, Israel to Mumbai, India with a cargo of petroleum products. There are 14 Turkish crewmembers onboard (", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.799999999700447, 13.116666700396308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-433", - "dateofocc": "2008-11-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker (STOLT STRENGTH) hijacked 10 Nov 08 at 1440 UTC while underway in position 13-56N 049-31E. The vessel was in route to Kandla, India from Senegal with a cargo of phosphoric acid, according to sources. Twenty-three Filipino c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.516666699594964, 13.933333300134905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-434", - "dateofocc": "2008-11-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo vessel (CEC FUTURE) hijacked 7 Nov 08 at 1320 UTC while underway in position 12-46N 045-56E. At 1235 UTC, (CEC FUTURE) was in contact with a coalition warship and was reporting that she was being pursued by a speedboat with si", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.933333300270419, 12.766666700429994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2008-435", - "dateofocc": "2008-11-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "GULF OF ADEN: Vessel reported suspicious approach on 3 Nov 08 at 0820 UTC while underway in position 13-13N 047-46E. Pirates in three speedboats approached from the port side at approximately three miles. Each boat had approximately four to five persons", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.766666699763221, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-113", - "dateofocc": "2009-03-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN:BULK CARRIER FIRED UPON 10 MAR 09 AT 0500Z WHILE UNDERWAY IN POSITION 08-06N 059-11E. FOUR MEN IN A LIGHT BLUE BOAT APPROACHED THE VESSEL ARMED WITH AUTOMATIC RIFLES AND BEGAN FIRING SHOTS TOWARD THE STARBOARD SUPERSTRUCTURE. THE VESSEL COND", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.183333300024458, 8.100000000337502] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-114", - "dateofocc": "2009-03-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN:BULK CARRIER SHANGHAI VENTURE FIRED UPON 09 MAR 09 AT 1751Z WHILE UNDERWAY IN POSITION 08-01N 058-43E. DUTY OFFICER ONBOARD NOTICED ONE SPEED BOAT APPROACHING FROM 1.5 NM AWAY AT A SPEED OF APPROXIMATELY 17 KTS. THE CAPTAIN ALERTED THE CREW", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.716666700252233, 8.016666699601899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-115", - "dateofocc": "2009-03-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "INDIAN OCEAN:VESSEL FIRED UPON 6 MARCH 09 AT 0658Z WHILE UNDERWAY IN POSITION 03-51S 044-10E, APPROXIMATELY 265NM EAST OF MOMBASA, KENYA. ONE SKIFF WITH SIX MEN CAME WITHIN 100 METERS OF THE VESSEL AND FIRED WAT WAS BELIEVED TO BE A ROCKET PROPELLED GREN", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.16666670036625, -3.850000000183854] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-116", - "dateofocc": "2009-03-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 5 Mar 09 at 0345 local time while underway in position 07-56N 065-28E. The officer on watch onboard the vessel noticed an unidentified and unlit target on the radar about 9NM away on the starboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.466666700245696, 7.933333299940841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-117", - "dateofocc": "2009-03-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "EAST COAST SOMALIA: While underway a fishing vessel was chased by a skiff with six pirates armed with automatic weapons. Vessel increased speed and headed into the waves/swell and thus the skiff was prevented from advancing towards the fishing vessel. La", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.833333300058086, 7.183333300141442] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-118", - "dateofocc": "2009-03-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "MOGADISHU, SOMALIA: While underway, a general cargo ship was chased by a speed boat launched from a mother vessel. Pirates fired RPG and automatic guns at the vessel. aster made evasive maneuvers and escaped the attack. Once crew received minor injuries", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.550000000366879, -4.033333299753622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-119", - "dateofocc": "2009-03-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "NIGERIA: Passenger boats attacked, women abducted 14 Mar 09 while underway from Bonny Island to Part Harcourt. According to a Nigerian military spokesman, gunmen attacked two passenger boats, forcing the men to jump overboard. They then abducted at leas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.016666699569555, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-120", - "dateofocc": "2009-03-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MOTOR VESSEL", - "descriptio": "CAMEROON: Vessel (SIL TIDE) attacked, crewmembers kidnapped 14 Mar 09 while underway approximately 8NM off the coast of Bakassi, on the Nigeria-Cameroon border. According to security officials, approximately 30 gunmen in speedboats attacked the vessel e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.833333300239758, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-122", - "dateofocc": "2009-03-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "GULF OF ADEN: Cargo vessel (DIAMOND FALCON) fired upon 14 Mar 09 at 0629 UTC while underway in position 13-42N 049-19E, approximately 50NM southeast of Al Mukalla, Yemen. Two skiffs with men onboard armed with automatic weapons and RPGs fired upon the v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.31666670012811, 13.699999999799104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-314", - "dateofocc": "2009-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "OMAN: The master of a bulk carrier reported that one small boat attacked the vessel from her stern and fired a rpg at her. Master took evasive action, increased speed and managed to escape. The sea condition at the time of the incident was beaufort scale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.496666699759487, 14.854999999688062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-315", - "dateofocc": "2009-07-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Chemical tanker (SIEHEM PEACE) boarded, crewmembers kidnapped 5 Jul 09 at 2045 local time while underway, approximately 20NM from Escravos. The militant organization MEND claimed it seized the six crewmembers from the vessel and would hold the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.109999999854097, 5.550833300041404] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-316", - "dateofocc": "2009-07-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (HORIZON I) hijacked 8 Jul 09 at 0530 UTC while underway in position 13-44N 050-43E. Owners have verbally confirmed that pirates have taken hostage of crewmembers and are now sailing the vessel. There are currently 23 Turkish", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.716666699993539, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-317", - "dateofocc": "2009-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 4 Jul 09 at 1800 UTC while underway in position 14-51.3N 058-29.8E, approximately 220NM southeast of Sawqirah, Oman. The master of the vessel reported that one small boat approached the vessel dur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.496666699759487, 14.854999999688062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-318", - "dateofocc": "2009-07-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship robbed 6 Jul 09 at 1804 UTC while anchored in position 22-11N 91-46E, Chittagog achorage. The duty officer detected some boats near the stern of the vessel at anchor. The crew mustered and saw 15 robbers onboard. A duty watchm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-319", - "dateofocc": "2009-07-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CÔTE D'IVOIRE: Tanker robbed 12 Jul 09 at 2336 UTC while anchored in position 05-12.5N 004-03.9E, Abidjan anchorage. Two robbers armed with knives boarded the tanker via the forecastle. The robbers stole the ships stores, and escaped in a small boat w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.059999999955039, 5.208333299560422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-320", - "dateofocc": "2009-07-12", - "subreg": "57", - "hostility_": "MILITANTS/PIRATES", - "victim_d": "OIL FACILITY", - "descriptio": "NIGERIA: Oil facility attacked 12 Jul 09 at 2230 local time at the Atlas Cove jetty in Lagos. Four naval officers and four civilians were killed in an attack reportedly carried out by MEND. The militants exchanged gunfire with naval officers guarding t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-321", - "dateofocc": "2009-07-13", - "subreg": "62", - "hostility_": "FOUR PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (A ELEPHANT) fired upon 13 Jul 09 at 0420 UTC while underway in position 12-20.8N 043-54.3E, approximately 30NM southeast of Bab el Mandeb. Four pirates armed with automatic weapons in a skiff, operating with the previously hijacked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.904999999593315, 12.346666699571017] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-322", - "dateofocc": "2009-07-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "GULF OF ADEN: Dhow (NAFEYA) hijacked 10 Jul 09 while underway approximately 14NM off the coast of Bosasso, Somalia. Pirates boarded and hijacked the dhow with a crew of 11 Indians. The vessel was used as a mothership in a failed attack on the tanker (A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.66666669999745, 11.083333299638014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-31", - "dateofocc": "2010-01-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "RESEARCH VESSEL", - "descriptio": "INDIA: Research vessel boarded 22 Jan 10 at 0140 local time while in position 17-00.3N ¿ 082-18.8E, Kakinada anchorage. Three robbers in a small fishing boat approached the vessel from the stern. One robber boarded the vessel thru the mooring port hole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.313333300241823, 17.005000000252267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-323", - "dateofocc": "2009-07-12", - "subreg": "71", - "hostility_": "FIVE PIRATES", - "victim_d": "TUG", - "descriptio": "SINGAPORE: Tug (WEIHAI 5) robbed 12 Jul 09 at 0225 local time while underway in position 01-08.29N 103-46.81E, approximately 2nm southeast of Raffles Lighthouse, Singapore Strait. Five men armed with knives boarded the vessel as it was underway. The rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.767777799552277, 1.141388899816434] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-324", - "dateofocc": "2009-07-12", - "subreg": "71", - "hostility_": "FIVE PIRATES", - "victim_d": "TUG", - "descriptio": "SINGAPORE: Tug (KENRYO) robbed 12 Jul 09 at 0200 local time while underway in position 01-09.90N 103-46.0E, approximately 2NM southeast of Raffles Lighthouse, Singapore Strait. Five men armed with knives boarded the vessel as it was underway, towing a b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.766666699775612, 1.164999999847907] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2009-325", - "dateofocc": "2009-07-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier robbed 6 Jul 09 at 1110 UTC while anchored in position 00-01N 117-36E, Bontang anchorage. Robbers gained access to the vessel via the anchor chain and through the hawse pipe cover, which had been secured by the crew. They stole s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.599999999831766, 0.016666700242467] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-24", - "dateofocc": "2010-01-12", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship robbed 12 Jan 10 at 0205 local time while underway in position 10-15N 107-04E, Vung Tau anchorage. Three robbers boarded the vessel while underway near the Vung Tau anchorage. The robbers proceeded to the forward store and stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-25", - "dateofocc": "2010-01-12", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "SAILING VESSEL", - "descriptio": "CAPE VERDE: Sailing vessel (ENEA) stolen 12 Jan 10, marina of Mindelo. The 38 foot sailboat was stolen during the night from in front of the marina of Mindelo where it was anchored. The vessel has a blue hull with a yellow line (Noonsite.com).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-24.996666700233789, 16.898333300235265] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-26", - "dateofocc": "2010-01-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (MILTIADES) fired upon 17 Jan 10 at 1630 UTC while underway in position 12-39.3N 047-33.9E, approximately 140NM southwest of Al Mukalla, Yemen. Four men armed with automatic weapons in a white colored skiff approached", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.565000000269265, 12.655000000156519] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-27", - "dateofocc": "2010-01-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (JAG LAYAK) fired upon 16 Jan 10 at 0425 UTC while underway in position 12-58N 048-42E, approximately 95NM southwest of Al Mukalla, Yemen. Five armed men in a high speed skiff approached the vessel from the direction of the sun, ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.700000000031707, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-28", - "dateofocc": "2010-01-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 20 Jan 10 at 0330 UTC while underway in position 13-23N 047-22E, approximately 14NM south of the Yemeni coast and 140NM east of Aden, Yemen. Vessel reported coming under fire from one skiff with seven men onboard. The ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.366666699930136, 13.383333299802359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-29", - "dateofocc": "2010-01-20", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ECUADOR: Bulk carrier boarded 20 Jan 10 at 0220 local time while anchored in position 02-46.5S 080-26.6W, Guayaquil outer anchorage. Robbers boarded the vessel and tried to gain access into the forward store. The duty crew noticed them and informed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.443333299859432, -2.774999999901809] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-30", - "dateofocc": "2010-01-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "INDIAN OCEAN: Unidentified dhow hijacked on or about 5 Jan 10 while underway, exact location unknown. The vessel was reported underway 26 Jan 10 in position 13-08N 056-56E, likely conducting mothership operations (UKMTO).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.933333299726826, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-448", - "dateofocc": "2010-11-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Pirate action group in 13-12N 048-59E at 130708Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution. The pirate action group consisted of 2 skiffs, white hull with atleast 6 persons on board.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.983333300234165, 13.200000000232592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-32", - "dateofocc": "2010-01-21", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "PHILIPPINES: Tanker (BRITISH HOLLY) robbed 21 Jan 10 at 1400 local time while anchored in position 14-33.74N 120-55.24E, Manila Bay. The duty crew noticed wet footprints on the deck. Upon inspection of the whole deck, he discovered the ship's inflatabl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.920555600405351, 14.56222220029764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-33", - "dateofocc": "2010-01-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "153 MILES EAST OF SOCOTRA ISLAND: Possible mothership activity noted near position 13-08N 056-56E on 26 January at 1128 UTC. Mariners are warned to avoid this area if possible as it will remain high risk for at least the next 24-48 hours. If necessary t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.933333299726826, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-34", - "dateofocc": "2010-02-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: At 1325 UTC a merchant vessel was under attack by two skiffs in position 12-44N 047-27E. One skiff had four persons onboard and was white and blue, the other skiff was the same color. While navigating in the region vessels are urged to ope", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.449999999766419, 12.73333329973633] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-35", - "dateofocc": "2010-02-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo ship (RIM) hijacked 3 Feb 10 at 0813 UTC while underway in position 13-04N 047-04E, approximately 120NM east of Aden, Yemen. Pirates boarded and hijacked the vessel. There is no further information to provide at this time (ONI, AP).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.066666699830535, 13.066666699630275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-439", - "dateofocc": "2010-11-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker boarded 7 Nov 10 at 0140 local time while at anchor in position 01-41N 101-27E, in Dumai Inner Anchorage. Two robbers boarded a product tanker at anchor. Duty watch keepers spotted the robbers and raised the alarm. The robbers jumped o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-440", - "dateofocc": "2010-11-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier robbed 6 Nov 10 at 1953 local time while underway in position 01-01N 106-41E, approximately 40NM west of Kepulauan Tembelan. Six pirates armed with long knives boarded a bulk carrier underway. Pirates entered the bridge and tied", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.683333300211586, 1.016666700274811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-441", - "dateofocc": "2010-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Armed pirates attacked and boarded a general cargo ship underway with intent to hijack. The ship sent a distress message and all crew mustered in the citadel. Indian authorities received the message and sent two warships and a maritime aircr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.016666699646578, 17.216666700259111] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-442", - "dateofocc": "2010-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "ARABIAN SEA: Pirates in a skiff chased a chemical tanker (HANNIBAL II) underway. Pirates opened fire on her and boarded. Crew locked in master's cabin. Awaiting further details.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.083333299618062, 11.433333299604385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-443", - "dateofocc": "2010-11-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "RORO VESSEL", - "descriptio": "300 MILES SOUTHEAST OF MOGADISHU, SOMALIA: Seven pirates armed with automatic weapons chased a RORO vessel. Effective anti-piracy measures resulted in the pirates aborting the attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.53333329966739, -0.833333300189679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-444", - "dateofocc": "2010-11-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN, KENYA:Piracy action group reported in 04-01S 041-12E at 120355Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.200000000238788, -4.016666699681195] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-445", - "dateofocc": "2010-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "ARABIAN SEA: Piracy action group reported in 17-37N 065-45E at 111700Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.750000000448154, 17.616666700092196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-446", - "dateofocc": "2010-11-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel pirated in 17-27N 065-07E at 121651Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.116666700279325, 17.449999999695592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-447", - "dateofocc": "2010-11-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "KENYA: A hijacked fishing vessel was observed being used by pirates as a mother ship at 1340Z on 12 November approximately 125 miles east of Mombasa, at 03-56S 041-45E. This area will remain high risk for atleast 24-48 hours. Caution advised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.749999999672013, -3.933333300020138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-132", - "dateofocc": "2011-02-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDIAN OCEAN: Yacht (ING) was hijacked 24 Feb while underway in position 14-30N 058-19E, approximately 250NM NE of Socotra Island, Yemen. Pirates took the crew of seven, including three minors, hostage. (ONI, Open press)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.316666700419148, 14.500000000364594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-450", - "dateofocc": "2010-11-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "KENYA: Bulk cargo carrier (AFRICAN EAGLE) fired upon on 16 Nov at 0642Z while waiting for berthing instructions at position 04-35S 039-57E, approximately 17 miles east of Mombasa, Kenya. Individuals in one skiff conducted the attack. (IMB and Open Press", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.949999999973556, -4.583333300086167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-451", - "dateofocc": "2010-11-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "WESTERN INDIAN OCEAN, KENYA: Six pirates wearing masks, armed with guns and rpg in a skiff fired upon a drifting bulk carrier with intent to hijack. Ship increased speed and took evasive maneuvers. The pirates aborted the attempted boarding due to the ba", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.958333299560081, -4.028333300396469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-452", - "dateofocc": "2010-11-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: POL Tanker fired upon (SAMURAI) on 16 Nov at 0645 local time while underway in position 05-09N 066-42E, approximately 412 miles west of Male, Maldives. Individuals in one skiff conducted the attack. A supporting mother ship was nearby. (IM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.699999999714464, 5.150000000107184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-453", - "dateofocc": "2010-11-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "INDIAN OCEAN: Fishing vessels fired upon 17 Nov at 0516Z while underway in position 06-34S 050-01E, approximately 639 miles east of Dar-es-Salaam, Tanzania. Pirates operating out of two skiffs fired rpgs at the vessels. Armed security fired warning shot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.016666700060796, -6.566666700078429] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-454", - "dateofocc": "2010-11-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA, GULF OF ADEN: Pirate action group in 16-54N 057-25E at 180920Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.416666700120288, 16.900000000262366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-455", - "dateofocc": "2010-11-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate action group in 06-12S 050-02E at 180953Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.033333300133222, -6.200000000214914] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-115", - "dateofocc": "2011-02-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker was robbed 17 Feb at 2030 local time while underway 11NM off Kota Kinabalu, Sabah, Malaysia. Five robbers wearing masks armed with long knives boarded the vessel, tied up all crew, and stole tanker and crew cash and personal belongings a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.06666670026334, 5.983333299742867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-116", - "dateofocc": "2011-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA:A bulk carrier underway noticed a mother vessel at a distance of 8 miles and two skiffs at a distance of 2 miles. The skiffs approached the vessel at approximately 21 knots. Master alerted the crew instructed them to proceed to the citadel an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.400000000255432, 15.333333300000277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-117", - "dateofocc": "2011-02-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Oil tanker (BANI YAS) was fired upon 25 Feb at 0952 UTC while underway in position 11-41N 061-29E, approximately 420NM east of Socotra Island, Yemen. One skiff and a mother ship with five pirates onboard reportedly fired automatic weapons", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.483333300188747, 11.683333299837273] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-118", - "dateofocc": "2011-02-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 11-41N 061-29E at 0952Z on 25 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [61.483333300188747, 11.683333299837273] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-119", - "dateofocc": "2011-02-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-19N 044-06E at 1416Z on 19 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.099999999703073, 12.316666699830876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-120", - "dateofocc": "2011-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA: A container ship underway noticed a mother vessel at a distance of 4.5 miles. At around 3 miles the mother vessel was seen to launch a white colored attack skiff. The skiff approached the vessel at approximately 24 knots. Master alerted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.649999999589056, 14.766666699595362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-121", - "dateofocc": "2011-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (GREAT LEGEND) was fired upon 25 Feb at 0829 UTC while underway in position 14-28 058-39E, approximately 250NM ENE of Socotra Island, Yemen. A skiff with five pirates onboard pursued the vessel and fired automatic weapons and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.649999999589056, 14.466666700395024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-122", - "dateofocc": "2011-02-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (DOVER) was hijacked 28 Feb at 0606 UTC while underway in position 18-48N 058-26E, approximately 35NM SE of Madrakah, Oman. Pirates took hostage the crew of 23. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.416666700152575, 18.799999999694251] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-123", - "dateofocc": "2011-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "295 MILES SOUTHEAST OF SALALAH, OMAN: A container ship noticed an orange and blue colored fishing vessel doing 10 kots at a distance of 3 miles. The fishing vessel was seen to launch a white skiff which approached the container vessel at around 24 knots.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.835000000085131, 14.986666700088108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-124", - "dateofocc": "2011-02-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (KIRAN ASYA) was fired upon 27 Feb at 0534 UTC while underway in position 20-29N 060-08E, approximately 66NM east of Masirah, Oman. A single skiff with seven pirates with small arms and RPGs fired upon the vessel, but it evade", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.133333300190031, 20.483333299762137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-125", - "dateofocc": "2011-03-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDIAN OCEAN: Yacht (CAPRICORN) was fired upon 2 Mar at 0752 UTC while underway in position 12-11N 063-58E, approximately 580NM east of Socotra Island, Yemen. Automatic weapons were fired, and pirates boarded but were repelled by armed security personne", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.96666669974752, 12.183333300303104] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-126", - "dateofocc": "2011-03-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Fishing vessel attacked in 02-24S 046-07E at 1100Z on 01 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.116666699664904, -2.399999999552449] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-127", - "dateofocc": "2011-03-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 11-50N 058-48E at 0923Z on 03 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.800000000088517, 11.83333330033679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-128", - "dateofocc": "2011-03-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "OMAN-SOUTHEAST COAST: A dhow with white and black hull, 1 speed boat with four armed pirates with automatic weapons ad rpgs chased a tanker underway. The tanker made evasive maneuvers, fire hoses, increased speed and sent SSAS alert. The skiff later abor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.531666699723758, 17.519999999688821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-129", - "dateofocc": "2011-03-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Crude oil tanker (FRONT PRIDE) was fired upon 3 Mar at 1113 UTC while underway in position 09-59N 062-26E, approximately 600NM ESE of Socotra Island, Yemen. Pirates fired automatic weapons and RPG on the vessel. They attempted to board usi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.433333300354377, 9.983333299872243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-350", - "dateofocc": "2011-07-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BANGLADESH: General cargo ship was boarded 29 July at 0018 UTC while anchored in position 22-03.76N 091-46.31E, approximately 11NM south of Pattanga Lt House, Chittagong OPL, Bangladesh. Thirteen robbers boarded the vessel. The deck cadet and bosun saw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.771944400394091, 22.062777800340882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-351", - "dateofocc": "2011-07-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF GUINEA: Tanker experienced an attempted boarding 30 July at 1934 UTC while drifting in position 05-42N 003-05E, approximately 48NM southwest of Lagos, Nigeria. An inflatable boat with six people onboard approached at high speed and attempted to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.083333300278639, 5.700000000439729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-352", - "dateofocc": "2011-08-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Five pirates armed with rpgs and guns in a 12 meter white plastic skiff chased and fired upon a general cargo ship underway. Onboard security team fired warning shots resulting in the pirates moving away. A warship in the vicinity carried o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.693333299748133, 13.146666700136507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-353", - "dateofocc": "2011-08-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "POINT NOIRE ANCHORAGE, CONGO: Ship watchman onboard an anchored container vessel spotted four armed robbers on the main deck. He immediately informed the duty officer who raised the alarm, alerted all crew members and informed the port control. Seeing cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.778333300213603, -4.76500000035287] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-354", - "dateofocc": "2011-08-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: An LPG tanker was boarded 8 August at 0200 LT while at anchor in position 01-15N 103-27E, approximately 13NM west of Singapore. Four robbers armed with long knives boarded an anchored LPG tanker. They entered the engine room, tied up the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.459722199716907, 1.261111100000903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-261", - "dateofocc": "2010-07-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOUTHERN RED SEA: Possible pirate activity in 14-18N 042-05E at 291023 UTC Jul. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.083333299741241, 14.299999999998363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-355", - "dateofocc": "2011-08-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ASSAB, ERITREA, RED SEA: Tweleve skiffs with five to eight pirates in each approached a bulk carrier underway. As the skiff closed guns and ladders were noticed. Warning flares were deployed by the onboard security team. The skiffs continued to approach", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.081666699571258, 13.119999999726417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-356", - "dateofocc": "2011-08-04", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL", - "descriptio": "MAMONAL INNER ANCHORAGE, COLOMBIA: Six robbers in a wooden speed boat attempted to board an anchored chemical tanker via the anchor chain. Alert duty A/B noticed the robbers, raised the alarm and flashed lights on them. Upon seeing crew alertness the rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.527777800034812, 10.321666700022661] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-357", - "dateofocc": "2011-08-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: A robber boarded an anchored container ship via the stern and tried to steal the ship's rope. The alert security guard spotted the robber and informed the duty officer who raised the alarm. Seeing crew alertness the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.721666699777245, 22.176666700167743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-358", - "dateofocc": "2011-08-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Bulk carrier (CARAVOS HORIZON) was boarded by six pirates on 11 August at 1115 UTC while underway in position 15-09N 041-55E, approximately 44NM southwest of Ras Isa, Yemen. Three skiffs behind a mothership approached the bulk carrier at high s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.916666700068674, 15.150000000430566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-359", - "dateofocc": "2011-08-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "12 MILES OFF PULAU MERUNDUNG, SOUTH CHINA SEA: Eight pirates armed with knives boarded a tug underway. They stole ship stores and crew personal belongings. Pirates left the ship after one hour. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.258611099768018, 2.192777800067006] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-360", - "dateofocc": "2011-08-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: A chemical tanker was boarded 12 August at 0230 LT while anchored in postion 01-42.27N 101-28.70E, 2NM off the coast of Dumai, Indonesia. Three robbers boarded the vessel via the poop deck. The alert deck crew saw the robbers and notified the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.47833330032654, 1.704444400316447] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-361", - "dateofocc": "2011-08-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GUAYAQUIL ROADS, ECUADOR: Duty watchman onboard a drifting container vessel spotted two robbers on the main deck and informed the duty officer and Captain. Alarm raised and crew mustered. The robbers escaped upn seeing the crew alertness. Inspection reve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.583333299846004, -2.833333300254367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-362", - "dateofocc": "2011-08-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: LPG tanker (GAS PRIDE) was fired upon by pirates on 12 August at 1406 UTC while underway in position 14-34.2N 042-23.9E, approximately 40NM southwest of Ras Isa, Yemen. Pirates in two skiffs, one with three pirates onboard and one with four pir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.398333299710941, 14.570000000357879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-236", - "dateofocc": "2010-06-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BAB EL MANDEB, RED SEA: Persons in an unlit boat approached a chemical tanker underway at high speed. Master raised alarm, increased speed took evasive maneuvers. Deck lights switched on and searchlights directed towards the boat. The boat chased the tan", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.643333299687413, 13.453333299795588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-237", - "dateofocc": "2010-06-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Armed pirates attacked and hijacked a chemical tanker underway.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.966666700194082, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-238", - "dateofocc": "2010-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAIT: Tug robbed 28 Jun 10 at 1150 local time while underway in position 01-06N 103-44E, approximately 2NM east of Pulau Takong Kecil lighthouse, Indonesia. Five men in a rubber boat armed with long guns approached the vessel towing a barge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.733333299981268, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-239", - "dateofocc": "2010-06-28", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "KARIMUN BESAR, INDONESIA: Two speed boats approached a chemical tanker underway from the stbd and port side. Crew raised alarm and directed the search lights towards the boats. Ship's whistle sounded and evasive maneuvers undertaken. Later the boats abor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.564722199706807, 1.059166699756815] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-240", - "dateofocc": "2010-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Chemical tanker (MOTIVATOR) hijacked 4 Jul 10 at 0944 UTC while underway in position 13-16N 042-56E, approximately 18NM west of Mokha, Yemen. Pirates boarded and hijacked the vessel along with its 18 crewmembers (IMB, AP, Mercury chat).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.933333300173388, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-241", - "dateofocc": "2010-07-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Merchant vessel attacked in 11-33N 045-28E at 050332 UTC Jul. Vessels are advised to exercise extreme caution area involved should be avoided if possible.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.466666699598932, 11.550000000134276] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-242", - "dateofocc": "2010-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Tanker reported suspicious approach 4 Jul 10 at 1000 UTC while underway in position 15-18.4N 041-49.6E, approximately 48NM northwest of Ras Isa, Yemen. Two suspicious boats with six to seven persons onboard each approached the vessel at a dist", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.826666699948817, 15.303333300260135] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-243", - "dateofocc": "2010-06-29", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM: Bulk carrier robbed 29 Jun 10 at 0403 local time while anchored in position 10-15.8N 107-02.3E, Vung Tau anchorage. Crew on anti-piracy watch noticed the bosun store broken into. The alarm was raised and the crew rushed onto the deck. Upon see", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.038333300434431, 10.263333299845328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-244", - "dateofocc": "2010-07-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CEMENT CARRIER", - "descriptio": "GUYANA: Cement carrier robbed 3 Jul 10 at 2035 local time while anchored at Georgetown roads. Robbers in a small boat boarded the vessel at anchor, broke into the bosun store and stole ship's stores before escaping. The chief engineer noticed that the d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.8000000002055] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-245", - "dateofocc": "2010-07-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MALAYSIA: Vessel robbed 7 Jul 10 at 1610 UTC while underway in position 01-19.5N 104-15.6E, STS lighting area, Johor port. Crewmembers on deck patrol noticed a small motor boat moving away from the ship's stern. The duty officer on the bridge was immed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.25999999995787, 1.324999999960994] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-246", - "dateofocc": "2010-07-08", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "GUINEA: Vehicle carrier robbed 8 Jul 10 at 0500 UTC while berthed in position 09-31N 013-43W, Conakry berth no. 4. Robbers boarded the vessel via the forward mooring ropes and stole ship's stores before escaping (IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-247", - "dateofocc": "2010-07-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Two fishing boats approached a bulk carrier underway fro the starboard side at high speed. Master conducts evasive maneuvers and fired a rocket flare when the boats were about 100 meters off the ship. Later C/O saw three more fishing boats about", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.706666700088874, 15.48666669965462] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-248", - "dateofocc": "2010-07-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "RED SEA: Container ship reported suspicious approach 9 Jul 10 at 2220 UTC while underway in position 13-20N 042-55E, approximately 18NM west of Mokha, Yemen. An unlit small boat doing a speed of 17 knots approached the vessel. Vessel increased speed ,c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.916666700101018, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-249", - "dateofocc": "2010-07-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier boarded 12 Jul 10 at 2030 UTC while berthed at Chittagong anchorage. Four robbers armed with knives boarded the vessel via the stern using ropes. Duty watch spotted the robbers, informed the watch officer and raised the alarm. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-130", - "dateofocc": "2011-03-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (CMA CGM MUSSET) was fired upon 4 Mar at 1030 UTC while underway in position 11-03N 064-42E, approximately 600NM SE of Socotra Island, Oman. Two skiffs with four to five pirates onboard fired automatic weapons and RPG on the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.699999999649776, 11.049999999668444] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-131", - "dateofocc": "2011-03-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Oil products tanker (AEGEA) was fired upon 4 Mar at 0922 UTC while underway in position 18-35N 063-47E, approximately 300NM SE of Masirah Island, Oman. Automatic weapons and RPG were fired. All crew apart from bridge team and unarmed secu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.783333300353036, 18.583333300330253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-133", - "dateofocc": "2011-03-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE STRAITS: Tanker was robbed while at anchorage in position 01-19.67N 104-17.23E, approximately 2.1NM SSW of Pulau Mungging. Five robbers armed with machetes and handguns boarded the tanker.The robbers stole two computers and some engine spare p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.287222199894302, 1.32777779976476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-134", - "dateofocc": "2011-03-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-34N 060-37E at 2029Z on 04 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.616666699684174, 17.566666700225483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-135", - "dateofocc": "2011-03-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-34N 063-47E at 2102Z on 04 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.783333300353036, 17.566666700225483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-136", - "dateofocc": "2011-03-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Pirates in a mother vessel and a skiff chased a tanker underway. Master raised alarm, sent distress message and took evasive maneuvers. The pirates opened fire, came alongside and boarded the tanker. All crew retreated into the citadel from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.766666700248322, 16.049999999830163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-137", - "dateofocc": "2011-03-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (CHARIOT) was fired upon 5 Mar at 1347 UTC while underway in position 12-02N 066-14E, approximately 450NM northwest of Minicoy Island, India. Two speed boats with five to six armed persons each fired upon the vessel. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.233333300117522, 12.033333299803644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-138", - "dateofocc": "2011-03-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDIAN OCEAN: Tug (KMC RHINO) was fired upon 6 Mar at 0901 UTC while underway in position 07-24N 051-50E, approximately 130NM east of Eyl, Somalia. One mother ship and a skiff approached and fired upon the vessel, but the tug evaded a boarding. (ONI, UK", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.833333299831679, 7.400000000404759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-139", - "dateofocc": "2011-03-07", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "VIETNAM: Wood chip carrier was boarded and robbed at anchor 7 Mar at 0200 local time while anchored in position 20-41N 107-13E, near the Cai Lan Pilot Station. Robbers boarded via the anchor chain. The bosun store was broken into and ship's stores were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.216666699572386, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-140", - "dateofocc": "2011-03-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "115 MILES SOUTH OF RAS AL HAD, OMAN: Pirates in three skiffs doing 20 knots chased a bulk carrier underway. Master raised alarm, increased speed, altered course and contacted navy for assistance. A NATO warship responded and the pirates aborted the attem", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.201666699948646, 20.636666700315743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-141", - "dateofocc": "2011-02-26", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CAMPHA ANCHORAGE, VIETNAM: Two robbers armed with long knives in a small boat boarded a bulk carrier at anchor. Duty crew raised alarm and crew mustered. The robbers escaped. Due to proper securing of stores and hatches no ship property stolen. Vessel co", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.211666700215233, 20.716666699922655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-142", - "dateofocc": "2011-03-07", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "TRAWLER", - "descriptio": "PERU: Trawler was robbed 7 Mar while at anchor off the port of Callao. Twenty robbers boarded the vessel via two rowboats and tied up the 15 crewmembers and stole cash, crew valuables and ship's communication equipment before escaping. The incident was r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-143", - "dateofocc": "2011-03-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: A chemical tanker was suspiciously approached 3 March at 1730 UTC while underway in position 06-18.7N 003-25.0E, approximately 3NM south of the Lagos fairway buoy. Three persons in a green colored fast craft approached the vessel. One person wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.416666700172584, 6.311666700279659] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-144", - "dateofocc": "2011-03-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "INDIAN OCEAN: Crude oil tanker (GUANABARA) was boarded 5 Mar at 1310 UTC while underway in position 16-00N 062-54E, approximately 328 NM SE of Duqm, Oman. Pirates fired automatic weapons and RPG on the vessel, and the crew retreated to the citadel. Pira", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.899999999951319, 15.99999999996345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-145", - "dateofocc": "2011-03-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (VOGE DIGNITY) was fired upon 3 Mar at 0906 UTC while underway in position 11-55N 058-02E, approximately 200NM east of Socotra Island, Yemen. A skiff and mother ship were visually sighted heading towards the vessel. All non", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.033333300391917, 11.916666699997791] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-146", - "dateofocc": "2011-03-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Multi-purpose vessel (BRATTINGSBORG) was fired upon 3 Mar at 0840 UTC while underway in position 15-23.2N 052-04.3E, approximately 160NM SW of Salalah, Oman. Two skiffs with four pirates onboard each, approached the vessel from the aft and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.07166670024867, 15.386666699921136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-147", - "dateofocc": "2011-03-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Product tanker was boarded 9 Mar at 0245 local time while at anchorage in position 06-00S 106-53E, at Tanjung Priok anchorage, Indonesia. Six robbers armed with long knives boarded the product tanker. They were noticed by the duty crew who ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-148", - "dateofocc": "2011-03-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Chemical tanker was boarded 8 Mar at 0800 local time while at anchorage in position 01-19.7N 104-17.3E, off of Pulau Mungging, Malaysia. Unnoticed by crew members, robbers boarded the vessel. The boarding was noticed in the morning when bosun", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.288333299670967, 1.328333300190423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-149", - "dateofocc": "2011-03-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 13-49N 065-21E at 0646Z on 10 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.349999999715806, 13.816666700329051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-150", - "dateofocc": "2011-03-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA: Pirates armed with rpg and guns in two skiffs chased and fired upon a container ship underway with intent to hijack. Master raised alarm, increased speed and took evasive maneuvers. The skiffs came alongside and attempted to hook ladders but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.550000000114323, 10.916666699965447] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-151", - "dateofocc": "2011-03-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA: A bulk carrier was robbed 14 Mar at 0830 local time while at anchorage in position 22-49N 070-02E, off Kandla. Multiple robbers boarded the vessel using grappling hooks, and broke into the forward paint store and stole supplies. The port authorit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.033333299880667, 22.81666669972077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-152", - "dateofocc": "2011-03-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Four robbers armed with long knives boarded a bulk carrier at anchor. One of the pirates held the duty watchman, threatened him with a knife under his throat. The watchman kicked the pirate and raised the alarm. All crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-153", - "dateofocc": "2011-03-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Eight armed pirates in a rigid boat approached a tanker underway at high speed. Alert crew noticed the boat and informed the duty officer who raised the alarm, activated SSAS and anti-piracy measures. Upon seeing the crew alertness the p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.371666700263688, 3.00833330002888] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-154", - "dateofocc": "2011-03-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "446 MILES OFF MINICOY ISLAND, INDIA: Pirates armed with guns in two skiffs launched from a black hull and white superstructure mother vessel, chased and fired upon a vehicle carrier underway with intent to hijack. Master raised alarm, contacted authoriti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.699999999714464, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-155", - "dateofocc": "2011-03-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "550 MILES OFF MINICOY ISLAND, INDIA: Two skiffs with 4-5 pirates in each skiff chased a tug underway with intent to board. The tug increased speed and enforced anti piracy measures. When skiffs were about 3 cables from the tug the onboard security team f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.333333299818605, 13.64999999993239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-156", - "dateofocc": "2011-03-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "215 MILES EAST OF SOCOTRA ISLAND: A mother vessel approached a bulk carrier underway at 8.5 miles and launched a skiff. The skiff approached the vessel at around 23 knots. Five pirates armed with guns were noticed when the skiff came at a distance of 0.8", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.050000000289117, 11.933333300070217] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-157", - "dateofocc": "2011-03-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo ship (SINAR KUDUS) was hijacked 16 Mar at 1639 UTC while underway in position 14-21N 059-25E, approximately 357NM SE of Salalah, Oman. The vessel was en route Singapore to Suez when it was hijacked with a crew of 20 Indonesia nationa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.416666700184919, 14.349999999865133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-48", - "dateofocc": "2010-03-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (AL NISR AL SAUDI) hijacked 01 March while underway approximately 45 miles southwest of Al Mukalla, Yemen. Pirates boarded and hijacked the vessel, with its crew of 14, and have sailed it toward the Somalia coast. No further informat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.600000000330567, 14.049999999765475] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-49", - "dateofocc": "2010-03-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Tanker reported suspicious approach 3 Mar 10 at 0628 UTC while underway in position 13-37N 042-58E, approximately 25NM northwest of Mokha, Yemen. Men in two small boats approached the vessel from the starboard side. The master raised the alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.966666699967732, 13.616666699962821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-50", - "dateofocc": "2010-02-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BAB EL MANDEB: Tanker reported suspicious approach 28 Feb 10 at 0350 local time while underway in position 12-32.5N 043-26E. The duty officer onboard noticed two crafts on radar sailing parallel to the vessel. The crafts then started approaching the ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.4333332997399, 12.541666699680775] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-51", - "dateofocc": "2010-03-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker reported suspicious approach 2 Mar 10 at 0345Z while underway in position 12-38.4N 044-47.4E, approximately 14NM southwest of Aden, Yemen. The master reported four men in a skiff approached the vessel and attempted to board. The ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.790000000022133, 12.640000000286477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-52", - "dateofocc": "2010-03-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Tanker reported suspicious approach 2 Mar 10 at 0530 UTC while underway in position 15-33N 059-33E, approximately 360NM northeast of Socotra Island. The master reported five men in one skiff approached the vessel underway and attempted to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.549999999887916, 15.550000000263651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-53", - "dateofocc": "2010-02-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel reported suspicious approach 28 Feb at 1451 UTC while underway in position 12-22.8N 060-42.1E, approximately 360NM east of Socotra Island. Master first observed suspicious vessel, noted to be what looked like a fishing vessel, on rad", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.701666700446822, 12.380000000439907] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-54", - "dateofocc": "2010-02-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 23 Feb 10 at 1645 UTC while underway in position 16-30N 058-50E, approximately 340NM northeast of Socotra Island. Armed men in a high-speed boat attempted to board the vessel using a ladder. The m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.833333300058086, 16.500000000429281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-55", - "dateofocc": "2010-03-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN:Chemical tanker (UBT OCEAN) hijacked 05 Mar 10 at 0535 UTC while underway in position 08-53S 043-23E, approximately 263NM southeast of Dar es Salaam, Tanzania. Vessel and its 21-member crew are currently being held off the Somali coast (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.383333299873186, -8.883333300315144] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-56", - "dateofocc": "2010-03-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "300 MILES SOUTH OF MOGADISHU, SOMALIA: Pirates armed with guns in two small skiffs and one large skiff attempted to attack a fishing vessel. Crew raised alarm, informed coalition forces and secured themselves inside the vessel. Security team took their p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.86666670033128, -2.933333299987794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-57", - "dateofocc": "2010-03-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Vessel reported suspicious approach 8 Mar 10 at 1354 UTC while underway in position 13-37.5N 042-31E, approximately 15NM southwest from Hanish Island. Master reported armed men in five skiffs approached the vessel from the port quarter, port b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.516666700267933, 13.625000000448722] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-58", - "dateofocc": "2010-03-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (ALBACAN) fired upon 4 Mar 10 at 0728 UTC while underway in position 03-26S 047-11E, approximately 340NM south of Mogadishu, Somalia. Men in two skiffs attacked and opened fire on the vessel while underway. Armed security g", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.183333299636388, -3.433333299554306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-250", - "dateofocc": "2010-07-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo vessel reported attempted boarding 14 Jul 10 at 0200 local time while underway in position 01-58.9N 108-43.8E, approximately 5NM northeast of Muri Island. Nine robbers attempted to board the vessel underway. The men had secured", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.729999999913559, 1.981666700310541] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-251", - "dateofocc": "2010-07-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIPS", - "descriptio": "RED SEA: Bulk carrier reported suspicious approach 21 Jul 10 at 1252 UTC while underway in position 14-22N 042-08E, approximately 70NM southeast of Tio, Eritrea. Two white skiffs approached the vessel, one at the port bow and the other at the starboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.133333299607955, 14.366666699762277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-252", - "dateofocc": "2010-07-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Vessel reported suspicious approach 18 Jul 10 at 1001 UTC while underway in position 15-10N 041-43E, approximately 53NM northeast of Tio, Eritrea. Master reported being approached by one skiff with four persons onboard equipped with two black", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.716666699702444, 15.16666670032771] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-253", - "dateofocc": "2010-07-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: Container ship robbed 18 Jul 10 while anchored in position 03-55N 098-46E, approximately 9NM north of Belawan port. During the night while, robbers boarded the vessel undetected and broke into the paint locker and stole ship's stores. The th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-254", - "dateofocc": "2010-07-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAIT: Tug reported suspicious approach 23 Jul 10 at 0540 local time while anchored in position 01-21.4N 104-27.5E, approximately 3NM northeast of Horsburgh Lighthouse, Singapore. The master reported two men in a small fast craft approached", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.458333300296999, 1.356666699728237] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-255", - "dateofocc": "2010-07-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SURVEY VESSEL", - "descriptio": "CAMEROON: Seismic survey vessel fired upon 25 Jul 10 at 0200 UTC while underway in position 04-16N 008-52E, approximately 2NM off the coast. The vessel supported by four chase boats with armed personnel onboard was approached by two boats with six arme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.866666700034045, 4.266666699705411] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-256", - "dateofocc": "2010-07-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SINGAPORE STRAIT: Bulk carrier (CAPE COSMOS) boarded 22 Jul 10 at 0330 local time while anchored in position 01-23.5N 104-30.9E, approximately 7NM northeast of Horsburgh Lighthouse, Singapore. Five men onboard a speedboat armed with guns and knives boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.515000000447287, 1.391666699724851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-257", - "dateofocc": "2010-07-20", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "PUERTO BOLIVAR ANCHORAGE, ECUADOR: Four robbers armed with guns and knives boarded a refrigerated reefer vessel from a boat. The robbers were spotted by a member of the ship's crew who raised the alarm. The robbers hit the crew member on the back, forced", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.000000000443208, -3.249999999984595] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-258", - "dateofocc": "2010-08-02", - "subreg": "62", - "hostility_": "pirates", - "victim_d": "mv", - "descriptio": "Gulf of Aden.Piracy.M/V Attacked in 13-05N 049-05EAt 050430Z Aug. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.083333299967592, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-259", - "dateofocc": "2010-08-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "M/V", - "descriptio": "Gulf of Aden.Piracy.M/V Suez attacked in 13-35N 050-25EAt 011918Z Aug. vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.416666699893881, 13.583333300168533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-260", - "dateofocc": "2010-07-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BANGLADESH: Chemical tanker (KASUGTA) reported attempted boarding 28 Jun 10 at 0330 local time while anchored in position 22-13.5N 091-43.7E, Chittagong anchorage. About 17 robbers from two wooden boats attempted to board the vessel. The incident was r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.728333300236045, 22.225000000007356] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-262", - "dateofocc": "2010-07-31", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "PHILIPPINES: Tanker robbed 31 Jul 10 at 0145 local time while anchored in position 13-44.3N 121-01.7E, Batangas anchorage. Three robbers in a small craft approached the vessel at anchor. One robber boarded the vessel and broke into the bosun store. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.028333300374243, 13.738333300025147] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-263", - "dateofocc": "2010-08-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Bulk carrier reported suspicious approach 4 Aug 10 at 1345 UTC while underway in position 15-48.6N 041-25.7E, approximately 220NM northwest of the Bab el Mandeb. Captain reported seeing two skiffs with seven armed men in each approach the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.428333300318116, 15.810000000110165] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-456", - "dateofocc": "2010-11-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: At 1304Z Nov a merchant vessel was attacked by pirates in 12-24N 066-30E. One crewmember was shot but remains alive. The pirates remain in the area. Vessels are to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.50000000024761, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-457", - "dateofocc": "2010-11-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "WEST OF KEPULAUAN TAMBELAN, INDONESIA: Eight pirates armed with long knives boarded a bulk carrier underway. Pirates stole ship's cash, crew personal properties and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.66666670013916, 1.028333300090765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-458", - "dateofocc": "2010-11-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GRESIK PORT, INDONESIA: Two robbers armed with knives boarded a bulk carrier at berth while the other two robbers wait on a boat. Duty crew sighted the robbers on the forecastle stealing ship's property and raised the alarm. The robber escaped with stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.658333300022605, -7.141666699894643] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-459", - "dateofocc": "2010-11-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: A pirate skiff was observed two miles abeam of a chemical tanker underway. The skiff increased speed to 22 knots and approached the chemical tanker. At a distance of around five cables the onboard armed security team fired warning shots. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.133333299834305, 14.049999999765475] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-460", - "dateofocc": "2010-11-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo vessel (YUAN XIANG) hijacked on 12 Nov at 0701Z while underway in position 18-02N 066-03E, approximately 634 miles east of Salalah, Oman. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.049999999648492, 18.033333299997707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-461", - "dateofocc": "2010-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "WESTERN INDIAN OCEAN: Pirates chased a tanker underway and opened fire on her. Due to anti-piracy measures, the tanker evaded the hijack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.383333299685376, 17.250000000228681] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-430", - "dateofocc": "2010-11-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "WESTERN INDIAN OCEAN, SOMALIA: Pirates armed with rpg and rifles in two skiffs chased and fired upon a chemical tanker. The vessel sent a distress signal and all crew members hid in the citadel. Upon receiving the distress the IMB piracy reporting center", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.166666699757968, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-432", - "dateofocc": "2010-11-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "Warship", - "descriptio": "INDIAN OCEAN: Spanish warship (ESPS INFANTA CRISTINA) fired upon 6 Nov 10 at 1725 UTC while underway in position 01-48S 042-31E, approximately 80NM south of Kismaayo, Somalia. The warship was attacked with AK-47 from pirates aboard a previously hijacked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.516666700267933, -1.666666699650136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-462", - "dateofocc": "2010-11-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo vessel (LE CONG) fired upon 18 Nov at 1250Z while underway in position 12-25N 066-33E approximately 704 miles east of Socotra Island, Yemen. Individuals in two skiffs chased and fired upon the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.550000000114323, 12.416666699564303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-463", - "dateofocc": "2010-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: POL tanker fired upon on 11 Nov at 0540Z while underway in position 17-12N 065-33E, approximately 660 miles east of Salalah, Oman. One skiff with 6 people on board fired on the vessel. (Mercury)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.55000000008198, 17.200000000361968] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-479", - "dateofocc": "2010-11-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-47N 058-10E at 222326Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.166666699919688, 15.783333299700075] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-464", - "dateofocc": "2010-11-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo vessel (BBC ORINOCO) illegally boarded on 11 Nov at 0512 local time while underway in position 17-06N 064-57E, approximately 625 miles east of Salalah, Oman. Armed pirates operating from two skiffs fired on and boarded a bulk carrier", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.949999999882721, 17.099999999729221] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-465", - "dateofocc": "2010-11-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker robber 16 Nov at 0435 local time while underway in position 02-00N 108-45.5E, near Pulau Merundung, Indonesia. Six robbers armed with knives boarded a product tanker underway. They entered the mess room and took an AB hostage. Later th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.758333299626656, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-466", - "dateofocc": "2010-11-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "PATROL BOAT", - "descriptio": "KENYA: Kenyan Naval Patrol Boat on 12 Nov at 2300 local time illegally boarded by Somali pirates near Kilifi, Kenya. Four pirates boarded the underway patrol boat. Kenyan navy officers shot dead three of the pirates, one pirate jumped into the water and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.850000000240129, -3.633333299920537] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-467", - "dateofocc": "2010-11-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 01-18S 052-47E at 181945Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.783333299997309, -1.299999999786621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-468", - "dateofocc": "2010-11-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel in 12-20N 066-22E at 200351Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.366666699645293, 12.333333299903302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-158", - "dateofocc": "2011-03-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: A general cargo ship was robbed 16 Mar at 0405 local time while at anchorage in position 03-56N 098-46E, Belawan anchorage. Multiple robbers were noticed onboard, the master raised the alarm, and the robbers escaped with ship¿s stores.(IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-159", - "dateofocc": "2011-03-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier was chased 18 Mar at 0300 local time while underway in position 01-05N 103-35E, approximately 5.9NM SW of Pulau Nippa, in the Philip Channel. Four small boats approached and chased the vessel. The crew used their search lights,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-160", - "dateofocc": "2011-03-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "45 MILES NORTHEAST OF HORSBURGH LIGHTHOUSE, SOUTH CHINA SEA: Eight pirates in a speed boat armed with long knives approached a general cargo ship underway. They attempted to baord the ship using a long bamboo pole attached with a hook. Duty A/B noticed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.126111100036837, 1.584999999807508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-161", - "dateofocc": "2011-03-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "522 MILES EAST OF SALALAH, OMAN:A chemical tanker was chased by five pirates armed with ak-47s in a white skiff doing 24 knots. Master increased speed, took evasive maneuvers, sent distress message and activated water jet from the fire monitor. Two of th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.305555600291257, 17.225277800420542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-162", - "dateofocc": "2011-03-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "495 MILES NORTHEAST OF MOGADISHU, SOMALIA: A tanker underway was chased by one mother vessel and two skiffs with four pirates in one skiff and ten pirates in the other skiff. The pirates fired upon the tanker with rpg and guns and attempted to board. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.000000000260684, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-163", - "dateofocc": "2011-03-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: Eight pirates armed with long knives in a speed boat boarded a general cargo ship underway. They took hostage the duty officer and brought him to the master's cabin. The pirates stole ship's cash, properties and master's personal belongi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.286666700400303, 2.918333299909079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-480", - "dateofocc": "2010-11-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOUTHERN ARABIAN SEA: Pirate action group sighted in 07-49N 055-53E at 230233Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.883333299827768, 7.816666700134988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-164", - "dateofocc": "2011-03-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "190 MILES NORTHEAST OF PEMBA ISLAND, TANZANIA: C/O onboard a container ship underway spotted one mother vessel and two skiffs at a distance of 6 miles from the ship. Alarm raised, speed increased and crew standby for safe room. When the skiffs closed to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.924999999687543, -3.900000000050568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-165", - "dateofocc": "2011-03-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: A bulk carrier underway was chased and fired upon by pirates in a skiff. The security team onboard enforced anti-piracy measures which prevented the pirates from boarding the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.099999999864735, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-166", - "dateofocc": "2011-03-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: Eight pirates in a speed boat armed with long knives approached a general cargo ship underway. They attempted to board the ship using a long bamboo pole attached with a hook. Duty A/B noticed the pirates and informed master who raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.123333300233071, 1.584999999807508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-167", - "dateofocc": "2011-03-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk carrier (FALCON TRADER II) was boarded 24 Mar at 0737 UTC while underway in position 22-26N 063-40E, approximately 230NM east of Sur, Oman. The vessel was attacked by a skiff that had tried attacking the vessel earlier in the day. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.733333299587002, 22.433333299960111] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-168", - "dateofocc": "2011-03-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "225 MILES EAST OF RAS AL HAD, OMAN: About eight pirates armed with rpgs and ak-47 rifles in a white skiff chased a tanker underway. Master increased speed all crew mustered in the citadel, sent distress message and security team onboard fired warning sho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.733333299587002, 22.96666670022023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-169", - "dateofocc": "2011-03-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "390 MILES WEST OF MINICOY ISLAND: Heavily armed pirates in two skiffs and a mother vessel chased and fired upon a container ship underway. Master raised alarm, sounded ship's whistle, increased speed and took evasive maneuvers and managed to outrun the s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.457499999866286, 8.999999999737042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-59", - "dateofocc": "2010-03-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Vessel reported suspicious approach 10 Mar 10 at 1251 UTC while underway in position 13-29.9N 042-35.4E, approximately 17NM southwest from Hanish Island. Vessel observed and reported two open type wooden speed boats on the vessel's starboard s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.589999999591271, 13.498333300305205] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-60", - "dateofocc": "2010-03-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (ARTXANDA) reported suspicious approach 5 Mar 10 at 0924 UTC while underway in position 03-21S 045-32E, approximately 315NM south of Mogadishu, Somalia. The master reported coming under attack by two skiffs. An embarked sec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.533333300437334, -3.349999999718023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-61", - "dateofocc": "2010-03-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN:Fishing vessel (TREVIGNON) fired upon 5 Mar 10 at 0639 UTC while underway in position 04-34S 048-09E, approximately 413NM southeast of Kismayo, Somalia. Armed men on two skiffs and one larger skiff fired at the vessel. The fishing vessel ha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.149999999699162, -4.566666700013741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-62", - "dateofocc": "2010-03-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "SURVEY SHIP", - "descriptio": "INDIAN OCEAN:Oceanographic vessel (BEAUTEPS BEAUPRE) fired upon 04 Mar 10 at 1437 UTC while underway in position 01-17S 047-07E, approximately 277NM southeast of Kismayo, Somalia. Armed men in two skiffs fired upon the vessel. Vessel employed evasive ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.116666699697248, -1.283333299889478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-63", - "dateofocc": "2010-03-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYSIA: Chemical tanker (SP ATHENS) robbed 11 Mar 10 at 0330 local time while anchored in position 01-17.8N 104-10.7E, approximately 3NM southwest of Tanjung Ayam. An unknown number of robbers armed with knives, boarded the tanker via the aft and ent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.178333300323914, 1.296666700247897] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-64", - "dateofocc": "2010-03-03", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "LIBERIA: Vessel robbed 3 Mar 10 at 2300 local time while in port Monrovia. While crew was busy during final stages of cargo operations, robbers broke into galley and stole ship's stores and provisions. Port authority was notified but no action was taken", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.816666700440692, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-65", - "dateofocc": "2010-03-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (ER LUBECK) fired upon 12 Mar 10 at 0045 UTC while underway in position 03-10S 062-06E, approximately 400NM northeast of Port Victoria, Seychelles. Armed men in two skiffs chased and opened fire on the vessel. The vessel conducted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.100000000285149, -3.166666700148312] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-66", - "dateofocc": "2010-03-15", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "146 MILES NORTHWEST OF MADAGASCAR: A merchant vessel reported coming under fire at 1317 UTC on 15 March 10 in position 11-02S 046-57E. Armed men onboard two skiffs are closing on the vessel firing automatic weapons in hopes of boarding. Vessel is report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.950000000199907, -11.033333299979972] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-67", - "dateofocc": "2010-03-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "160 MILES SOUTHEAST OF KISMAYO, SOMALIA: Possible pirate attack group (PAG) located at 0900 UTC on 17 Mar 10 near position 02-47S 043-16E. PAG is probably heading in a southerly direction in search of merchant vessels to attack and hijack. This area wil", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.266666700067333, -2.783333300387653] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-68", - "dateofocc": "2010-03-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "WARSHIP", - "descriptio": "INDIAN OCEAN: Warship (HNLMS TROMP) reported suspicious approach 17 Mar 10 at 0601 UTC while underway in position 05-22S 051-43E, approximately 225NM southwest of Port Victoria, Seychelles. Two small skiffs made a fast approach toward the warship, prom", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.716666700025883, -5.366666699679854] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-69", - "dateofocc": "2010-03-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "INDIAN OCEAN: Two fishing vessels reported suspicious approach 16 Mar 10 while underway in position 06-24S 050-53E, approximately 290NM southwest of Port Victoria, Seychelles. Three skiffs approached the fishing vessels. Armed security teams onboard f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.883333299666106, -6.399999999681768] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-264", - "dateofocc": "2010-08-03", - "subreg": "62", - "hostility_": "Suspicious craft", - "victim_d": "M/V", - "descriptio": "RED SEA: Chemical tanker reported suspicious approach 3 Aug 10 at 0300 UTC while underway in position 13:42.5N 042:57E, approximately 28NM northwest of Mokha, Yemen. Three skiffs approached the vessel from different directions. Alarm was raised, crew", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.950000000070588, 13.708333300285005] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-265", - "dateofocc": "2010-07-31", - "subreg": "62", - "hostility_": "Suspicious craft", - "victim_d": "M/V", - "descriptio": "RED SEA: Vessel reported suspicious approach 31 Jul 10 while underway in position 13:16.9N 043:03.5E, approximately 12NM west of Mokha, Yemen. Captain reported five high speed skiffs approached the vessel to less than 150 meters. Vessel conducted eva", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.05833330028986, 13.281666699866548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-266", - "dateofocc": "2010-08-03", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "M/V", - "descriptio": "GULF OF ADEN: Chemical tanker (BOW SAGA) fired upon 3 Aug 10 at 0317 UTC while underway in position 12:56N 048:08E, approximately 110NM southwest of Al Mukalla, Yemen. Six men in a skiff armed with automatic weapons and RPGs approached the vessel from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.133333299801961, 12.933333300102561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-267", - "dateofocc": "2010-08-02", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "M/V", - "descriptio": "GULF OF ADEN: General cargo ship (SUEZ) hijacked 2 Aug 10 at 0420 UTC while underway in position 13:02N 048:54E, approximately 90NM southwest of Al Mukalla, Yemen. Pirates in three skiffs armed with automatic weapons boarded the vessel, taking the 24", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.900000000397881, 13.033333299835988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-268", - "dateofocc": "2010-08-04", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "M/V", - "descriptio": "MALAYSIA: Tanker (HIRYU) boarded 4 Aug 10 at 0347 local time while anchored in position 01:21.7N 104:20.4E, approximately 2.5NM east of Pulau Mungging. Three robbers reportedly armed with guns boarded the vessel. The crew raised the alarm and began s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.339999999564782, 1.36166669998471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-269", - "dateofocc": "2010-08-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "LANDING CRAFT", - "descriptio": "NIGERIA: Landing craft vessel boarded, crewmembers kidnapped 11 Aug 10 at 1636 UTC while underway in position 04-05N 006-45E, approximately 2NM off Bonny River fairway buoy. Seven men armed with machine guns boarded the vessel while underway. The maste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.750000000338787, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-270", - "dateofocc": "2010-08-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "RED SEA: General cargo ship reported suspicious approach 11 Aug 10 at 0640 UTC while underway in position 13-35.9N 042-38.1E, approximately 40NM northwest of Mokha, Yemen. A group of fishing vessels was observed on the starboard side. Four skiffs then e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.635000000100831, 13.598333300038632] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-271", - "dateofocc": "2010-08-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BAB EL MANDEB: General cargo ship reported suspicious approach 5 Aug 10 at 1000 UTC while underway in position 12-34.8N 043-24E, Bab el Mandeb. Two white and two black colored skiffs with five persons onboard approached the vessel underway. The master i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.39999999977033, 12.579999999906818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-272", - "dateofocc": "2010-08-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (SYRIA STAR) hijacked 5 Aug 10 at 1514 UTC while underway in position 13-11N 049-04E, approximately 80NM south of Al Mukalla, Yemen. Armed men boarded and hijacked the vessel while underway. The vessel was released the f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.066666699895165, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-273", - "dateofocc": "2010-08-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "IRAQ: General cargo ship robbed 8 Aug 10 at 0400 local time while anchored in position 29-42N 048-40.3E, Umm Qasr anchorage. Two robbers armed with AK-47s boarded the vessel at anchor. They overpowered the duty crew and broke open the master's office lo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.67166670031861, 29.70000000031655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-274", - "dateofocc": "2010-08-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "IRAQ: Container ship robbed 8 Aug 10 at 0330 local time while anchored in position 29-41.7N 048-40.1E, Umm Qasr anchorage. Two robbers in a fishing boat wearing masks and armed with AK-47s boarded the vessel at anchor. They entered the bridge, took the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.668333300264464, 29.695000000060077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-469", - "dateofocc": "2010-11-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: A merchant vessel was attacked by a dhow and a skiff in 20-30N 060-10E at 200857Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.166666699984376, 20.499999999659281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-470", - "dateofocc": "2010-11-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARGO", - "descriptio": "INDIAN OCEAN: Bulk cargo ship (GRACEFUL MADONNA) fired upon 20 Nov 10 at 0715 UTC while underway in position 01-07S 067-05E, approximately 493NM northwest of Diego Garcia. One skiff approached vessel from port side firing eight to ten shots from automat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.083333299650405, -1.116666700216911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-471", - "dateofocc": "2010-11-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate action group in 02-41N 055-24E at 210911Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.400000000158457, 2.683333300445554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-473", - "dateofocc": "2010-11-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 01-35N 055-26E at 220545Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.43333330012797, 1.583333299780463] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-474", - "dateofocc": "2010-11-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: A merchant vessel reported being attacked by at least one skiff at 1300Z on 20 Nov in position 14-23N 065-31E, approximately 743 miles east of Socotra Yeman. Pirates were observed using a mother ship nearby. Vessels are advised to keep 100", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.51666670011241, 14.383333299834646] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-478", - "dateofocc": "2010-11-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: A merchant vessel reported coming under fire at 2034Z on 21 Nov in position 15-30N 059-18E, approximately 332 miles from Salalah, Oman. This area will remain high risk for at least the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.299999999655029, 15.500000000396938] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-483", - "dateofocc": "2010-11-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "IVORY COAST: Tanker robbed 21 Nov at 0235 local time while at anchor in position 05-13.5N 004-02.1W in the Abidjan anchorage. Three robbers ared with knives boarded a tanker at anchor. Duty officer noticed the robbers and raised the alarm. Robbers manag", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.034999999780666, 5.225000000356943] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-484", - "dateofocc": "2010-11-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Bulk cargo (PAGONA) attempted boarding 24 Nov at 1130Z while underway in position 14-47N 065-58E, approximately 460 miles southwest of Mumbai, India. No weapons or ladders were visible. Pirates attempted to board with a hook and rope. PAGO", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.966666699812208, 14.783333299667731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-485", - "dateofocc": "2010-11-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Product tanker (NORNA N) fired upon 24 Nov at 0312Z while underway in position 15-04N 067-05E, approximately 400 miles southwest of Mumbai, India. Master confirmed automatic weapons and rpg fired. NORNA N took evasive maneuvers as pirates", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.083333299650405, 15.066666699694963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-486", - "dateofocc": "2010-11-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (CARMENCITA) fired upon 22 Nov at 2300Z while underway in position 15-53N 058-14E, approximately 250 miles southeast of Salalah, Oman. Two white skiffs with five armed pirates in each skiff chased and fired upon a bulk carrier", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.233333299858828, 15.883333300332822] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-487", - "dateofocc": "2010-11-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Product tanker (SEA SPIRIT) fired upon 22 Nov at 0904Z while underway in position 01-31N 055-48E, approximately 620 miles east of Mogadishu, Somalia. Five skiffs with four to five armed pirates each chased and fired upon a product tanker u", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.799999999991485, 1.516666699841323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-488", - "dateofocc": "2010-11-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (CAMPOLIBRE ALAI) fired upon 22 Nov at 0500Z while underway in position 01-30N 055-25E, approximately 600 miles east of Mogadishu, Somalia. Armed pirates in two skiffs launched from a mother ship chased and attempted to boar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.4166667000556, 1.49999999994418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-170", - "dateofocc": "2011-03-21", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GHANA: A tanker was suspiciously approached 21 Mar at 1630 UTC while underway in position 03-42N 001-58W, approximately 70NM SW of Takoradi. A single boat with five persons onboard approached within 10 meters of the vessel. The Master raised the alarm a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.966666699749794, 3.700000000375042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-171", - "dateofocc": "2011-03-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (MSC EVA) was fired upon 23 Mar at 1451 UTC, while underway in position 09-00N 066-27E, approximately 684NM west of Cochin, India. Pirates in two skiffs fired upon the vessel causing damage to the master and chief officer's cabin, b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.450000000380896, 8.999999999737042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-172", - "dateofocc": "2011-03-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 22-00N 063-44E at 0455Z on 24 Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.733333299587002, 22.833333299793196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-173", - "dateofocc": "2011-03-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Seven pirates armed with guns in two skiffs launched from a mother vessel, chased and fired upon a bulk carrier underway with intnet to hijack. Master raised alarm, contacted authorities, increased speed and took evasive maneuvers. As the sk", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.100000000382181, 11.649999999867703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-174", - "dateofocc": "2011-03-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Crude oil tanker (ZIRKU) was attacked 28 Mar at 0613 UTC while underway in position 15-36N 057-04E, approximately 237NM northeast of Socotra Island, Yemen. The vessel was attacked by two skiffs with small arms and RPGs. Vessel was reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.066666700153917, 15.600000000130365] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-175", - "dateofocc": "2011-03-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "122 MILES OFF SALALAH, OMAN: A mother vessel was seen launching a skiff which approached a tanker at high speed. Alarm sounded, crew mustered in citadel, SSAS unit activated, speed increased and coalition forces contacted. Onboard security team fired war", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.861666700398246, 15.921666700383639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-176", - "dateofocc": "2011-03-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONATAINER SHIP", - "descriptio": "24 MILES SORTHWET OF GRAND COMORE ISLAND: Three to four speed boats with 4-6 pirates in each boat chased a container ship underway. Master raised alarm, increased speed and took evasive maneuvers. The pirates approached the vessel from various directions", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.966666699967732, -11.133333299713399] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-177", - "dateofocc": "2011-03-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "COCHIN ANCHORAGE, INDIA: Five robbers boarded an anchored product tanker via the anchor chain. Duty crew saw the robbers on the forecastle deck and raised alarm. Seeing alert crew the robbers escaped with ship's stores. Incident reported to port control.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.098333299811543, 9.941666700316148] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-178", - "dateofocc": "2011-03-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: A product tanker was robbed 25 Mar at 2215 UTC while anchored in position 09-56N 076-05E, approximately 9 NM southwest of Cochin, India. Five robbers used the anchor chain to board the vessel. The robbers stole the ship's stores. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.083333299941444, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-179", - "dateofocc": "2011-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Oil product tanker (RUDEEF GNA) was attacked 29 Mar at 0612 UTC while underway in position 13-30N 047-30E, approximately 350NM northwest of Socotra Island, Yemen. The vessel was attacked by one skiff that placed a ladder on the vessel but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.499999999633133, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-180", - "dateofocc": "2011-03-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "INDIAN NAVAL VESSEL", - "descriptio": "INDIAN OCEAN: Indian Navy offshore patrol vessel (INS SUVARNA) was fired upon by the hijacked fishing vessel (MORTEZA) 26 Mar at 0750 UTC while underway in position 09-51N 067-05E, approximately 400NM east of Lakhadweep Islands, India. The MORTEZA was b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.083333299650405, 9.850000000169246] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-181", - "dateofocc": "2011-03-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA: A chemical tanker was chased by two speed boats 25 Mar at 1340 UTC while underway in position 03-11N 105-23E, approximately 15 NM off Palau Mangkai. The speedboats approached at 22 knots; the tanker increased its speed and evaded the sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.383333300079585, 3.183333300012066] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-182", - "dateofocc": "2011-03-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYSIA: Pirates in a speed boat approached a chemical tanker underway at a distance of less than four cables. Master raised alarm, took evasive maneuvers and warned all ship in the vicinity via vhf. The pirates aborted the attempted attack after 25 min", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.84999999964424, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-183", - "dateofocc": "2011-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Four pirates in a white colored skiff chased a product tanker underway. Master heard shots being fired and the onboard security guards returned fire. The pirates managed to close to around 50 meters of the vessel before aborting the attepte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.503888900112941, 13.501944400210107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-70", - "dateofocc": "2010-03-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (TXORI ARGI) reported suspicious approach 14 Mar 10 at 0910 UTC while underway in position 03-03S 055-08E, approximately 95NM north of Port Victoria, Seychelles. The vessel reported being approached by one mothership and tw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.133333300028369, -3.049999999618421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-71", - "dateofocc": "2010-03-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Four robbers armed with long knives boarded a bulk carrier at anchor via the forecastle. The alert crew noticed the robbers, informed the OOW. The robbers chased the watchmen who entered and locked the accommodation. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-72", - "dateofocc": "2010-03-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Cargo ship (ALMEZAAN) fired upon 23 Mar 10 at 0808 UTC while underway in position 03-45N 048-07E, approximately 30NM from the coast of Somalia and 200NM northeast of Mogadishu. Owner reported the vessel came under attack by three skiffs w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.116666699729592, 3.750000000241755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-492", - "dateofocc": "2010-11-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "ARABIAN SEA: A pirated vessel named HANNIBAL II has been conducting mothership activity in 18-50N 061-23E on 26 Nov at 0631Z. The mothership chased a merchant vessel. Vessels are advised to keep 100 miles clear of this position and to exercise extreme c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.383333299556, 18.833333299663821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-73", - "dateofocc": "2010-03-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker fired upon 22 Mar 10 at 1200 UTC while underway in position 14-56.4N 055-01.6E, approximately 140NM northeast of Socotra Island. Six armed men in a speedboat chased and fired upon the vessel while attempting to board from the port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.026666699836142, 14.939999999551446] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-74", - "dateofocc": "2010-03-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 20 Mar 10 at 1200 UTC while underway in position 11-10N 062-22.9E, approximately 760NM northeast of Eyl, Somalia. Five armed men chased and attempted to board the vessel while underway. The master raised the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.381666700285336, 11.166666700198391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-75", - "dateofocc": "2010-03-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "SOUTH CHINA SEA: Armed pirates in a 15 meter long boat chased and fired upon two fishing vessels underway with intent to board. The vessels increased speed and managed to evade the attempted boarding. No injuries to crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.499999999742556, 5.266666699737755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-76", - "dateofocc": "2010-03-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (FRIGIA) hijacked 23 Mar 10 at 0137 UTC while underway in position 11-41.5N 066-05.3E, approximately 680NM east of Socotra Island. Pirates boarded and hijacked the vessel with 21 crewmembers and are sailing it to an unknown d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.088333299874535, 11.691666700147891] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-77", - "dateofocc": "2010-03-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Vessel fired upon 24 Mar 10 at 0515 UTC while underway in position 13-24N 048-16E, approximately 80NM southwest of Al Mukalla, Yemen. Vessel reported shots fired, and reportedly a security team was on board. No further information to prov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.266666700229052, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-78", - "dateofocc": "2010-03-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 25 Mar 10 at 0804 UTC while underway in position 03-49S 046-10E, approximately 300NM southeast of Kismayo, Somalia. Vessel reported coming under fire from two skiffs with 4-5 persons onboard. Vessel increased spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.166666700430937, -3.816666700214341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-79", - "dateofocc": "2010-03-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo ship reported suspicious approach 24 Mar 10 at 1649 UTC while underway in position 14-09N 052-27E, approximately 105NM northwest of Socotra Island. Vessel reported being approached by two skiffs and a mothership. Master increased sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.449999999928139, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-80", - "dateofocc": "2010-03-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo ship (TALCA) hijacked 23 Mar 10 at 1258 UTC while underway in position 17-28N 056-42.7E, approximately 325NM northeast of Socotra Island. Pirates in two speed boats boarded and hijacked the vessel with 25 crewmembers while underway.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.711666699931072, 17.466666699592736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-81", - "dateofocc": "2010-03-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker (HESNES) boarded 20 Mar 10 at 0500 local time while anchored in position 01-18.9N 104-14.6E, approximately 2NM southeast of Tanjung Ayam. Five robbers armed with knives boarded the vessel while at anchor. Crewmembers spotted the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.243333300060726, 1.315000000347368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-82", - "dateofocc": "2010-03-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: A merchant vessel reported coming under fire at 0830 UTC on 28 Mar 10 in position 01-01S 057-14E. This area will remain high risk for the next 24-48 hours as weather conditions continue to be conducive to small boat operations.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.233333299826484, -1.016666699584164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-275", - "dateofocc": "2010-08-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker robbed 10 Aug 10 at 0330 local time while anchored in position 01-19.4N 104-14.7E, Pasir Gudang STS anchorage. Five robbers armed with pistols and knives boarded and entered the engine room. They tied up the duty motorman and stole spar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.245000000087828, 1.32333329993395] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-276", - "dateofocc": "2010-08-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier robbed 5 Aug 10 while underway in position 02-56N 105-21E, approximately 16NM southwest of Pulau Mangkai, Indonesia. Five robbers armed with knives boarded the vessel and took the 2nd officer and chief engineer hostage. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.350000000110072, 2.933333299779122] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-277", - "dateofocc": "2010-08-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SOUTH CHINA SEA: Tug (VOS HYPERION) reported suspicious approach 5 Aug 10 at 0048 local time while underway in position 03-09.1N 108-24.3E, approximately 28NM northwest of Pulau Subi Besar, Indonesia. The master spotted an unlit small speed boat approac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.405000000330233, 3.151666700069597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-278", - "dateofocc": "2010-08-03", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship robbed 3 Aug 10 at 0215 local time while anchored in position 20-39.7N 107-15.4E, southeast of Cailan pilot station. Robbers boarded the vessel using ropes and hooks. They broke in the forward store and stole ship's stores and pr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.25666669982553, 20.661666699799468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-279", - "dateofocc": "2010-08-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 18 Aug 10 at 1400 UTC while underway in position 13-15.5N 049-08E, approximately 75NM south of Al Mukalla, Yemen. Six armed men in a skiff chased the vessel for approximately 15 minutes. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.133333299834305, 13.258333299685887] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-280", - "dateofocc": "2010-08-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier (HONG KONG STAR) robbed 15 Aug 10 at 0345 local time while anchored in position 22-15.1N 091-41.7E, Chittagong anchorage. Four robbers armed with knives boarded the vessel via the stern from a single engine driven boat during h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.695000000266475, 22.251666700417445] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-281", - "dateofocc": "2010-08-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship boarded 12 Aug 10 at 1851 local time while anchored in position 01-42.8N 101-27.5E, Dumai port inner anchorage. Two robbers armed with knives boarded the vessel and threatened the duty watchman with knives. The duty office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.458333300199968, 1.713333300153408] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-282", - "dateofocc": "2010-08-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier reported suspicious approach 12 Aug 10 at 1210 UTC while underway in position 01-26N 106-49E, approximately 16NM north of Dum Dum Islands. Four boats approached the vessel. The ship watch keepers activated fire hoses, turned on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.816666699739358, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-283", - "dateofocc": "2010-08-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (VINALINES STAR) robbed 18 Aug 10 at 0350 local time while underway in position 03-05N 105-24E, approximately 11NM west of Pulau Mangkai, Indonesia. Six robbers armed with knives boarded the vessel via the starboard quarter", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.399999999976785, 3.083333300278639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-284", - "dateofocc": "2010-08-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Product tanker (CHEM ORCHID) robbed 17 Aug 10 at 0340 local time while underway in position 03-17N 105-29E, approximately 13NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with automatic weapons and long knives boarded the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.483333299813069, 3.283333299745493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-285", - "dateofocc": "2010-08-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (BET FIGHTER) robbed 17 Aug 10 at 0250 local time while underway in position 03-05N 105-07E, approximately 28NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with long knives boarded the vessel and entered the b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.116666699774271, 3.083333300278639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-286", - "dateofocc": "2010-08-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA: Chemical tanker (STOLT BOTAN) boarded 16 Aug 10 at 0145 local time while underway in position 03-15N 105-18.5E, approximately 19NM northwest of Pulau Mangkai, Indonesia. Five or six robbers armed with knives boarded the vessel via the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.308333299829883, 3.249999999775923] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-490", - "dateofocc": "2010-11-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mother ship activity in 09-29N 068-44E on 25 Nov at 1940Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.733333299748722, 9.483333300305731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-493", - "dateofocc": "2010-11-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (MEDI CHENNAI) fired upon 26 Nov at 0114Z while underway in position 00-26S 070-00E, approximately 185 miles west of the Maldives. Six armed pirates in a boat chased and fired upon a bulk carrier underway. The vessels enforced", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.999999999911154, -0.150000000154137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-494", - "dateofocc": "2010-11-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (MCL BREMEN) boarded by pirates 26 Nov at 1255Z while underway in position 09-39N 067-23E, approximately 1085 miles east of Garacad, Somalia. The crew moved to the citadel and the pirates stayed onboard the vessel for approx", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.383333299750007, 9.649999999803072] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-495", - "dateofocc": "2010-11-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 00-39N 065-03E on 27 Nov at 0820Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.049999999616148, 0.650000000411296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-496", - "dateofocc": "2010-11-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (26 AGUSTOS) boarded by pirates 27 Nov at 0901Z while underway in position 13-34N 057-06E, approximately 152 miles northeast of Socotra Island. Crew mustered in citadel where they had initial steering control and access to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.100000000123487, 13.566666700096107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-497", - "dateofocc": "2010-11-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "267 MILES SOUTHEAST OF SALALAH, OMAN: A merchant vessel reported coming under fire at 0907Z on 27 Nov in position 14-16N 057-15E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.249999999723627, 14.26666670002885] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-498", - "dateofocc": "2010-11-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (PISTIS) reported attempted boarding 28 Nov at 0700Z while underway in position 14-51N 068-13E, approximately 820 miles southeast of Salalah, Oman. Four armed pirates in a boat chased and attempted to board a bulk carrier unde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.216666700109784, 14.850000000330965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-499", - "dateofocc": "2010-11-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 16-57N 067-09E on 29 Nov at 0254Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.150000000313582, 16.95000000012908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-500", - "dateofocc": "2010-11-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Merchant vessel attacked in 13-35N 042-56E on 29 Nov at 1749Z. Vessels are advised to keep 100 miles clear of this position and exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.933333300173388, 13.583333300168533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-513", - "dateofocc": "2010-12-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOMALIA-SOUTH COAST: Possible mothership activity in 04-08N 049-28E at 051537Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.46666669972825, 4.133333300177696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-502", - "dateofocc": "2010-11-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (NORTHERN PROMOTION) fired upon 21 Nov 10 at 1114 UTC while underway in position 14-49N 059-55E, approximately 360NM southeast of Salalah, Oman. Pirates armed with guns in a skiff chased and fired upon a container ship under", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.916666699751431, 14.816666700361395] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-503", - "dateofocc": "2010-11-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (FRONT ALFA) illegally boarded 21 Nov 10 at 2145 UTC while underway in position 15-30N 059-17E, approximately 580NM southeast of Salalah, Oman. Armed pirates in a skiff chased and boarded a tanker underway. The crew locked themselve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.283333299757885, 15.500000000396938] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-504", - "dateofocc": "2010-11-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (INTERTUNA TRES) fired upon 21 Nov 10 at 0720 UTC while underway in position 02-43N 055-20E, approximately 600NM east of Mogadishu, Somalia. Pirates armed with guns and RPG in skiffs chased and fired upon a fishing vessel un", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.333333300394543, 2.716666700239841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-505", - "dateofocc": "2010-11-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (VEGA LIBRA) fired upon 20 Nov 10 at 1015 UTC while underway in position 13-05N 067-34E, approximately 720NM east of Socotra Island, Yemen. Pirates armed with guns and RPG in two skiffs chased and fired upon a bulk carrier und", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.566666700043811, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-184", - "dateofocc": "2011-03-22", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "OFF TIOMAN ISLAND, MALAYSIA: A group of more than ten pirates armed with long knives in a speed boat boarded a tug towing a barge enroute from singapore to koh kong cambodia. They took hostage the ten crewmembers, locked them in a cabin, cut off the trac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.404722199626065, 2.753611100114369] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-185", - "dateofocc": "2011-04-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 17 MILES OFF QISHN, YEMEN: A skiff with three pirates onboard came within ten meters of a bulk carrier underway. Onboard security team fired warning shots and the skiff moved away. Small arms were sighted in the skiff.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.98833329968835, 15.36499999976752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-186", - "dateofocc": "2011-04-03", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SAMARINDA ANCHORAGE, INDONESIA: Robbers boarded a general cargo ship at anchor. They broke the padlocks on the bosun store and stole ship's stores and escaped upon seeing the duty crew on patrol. Port authorities informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.249999999865395, -1.116666700216911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-187", - "dateofocc": "2011-04-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (ELENI G) was fired upon by one skiff 03 April at 0205Z while underway in position 05-35S 040-20E, approximately 96 miles northeast of Dar es Salaam, Tanzania. Six pirates fired rpgs and small arms at the vessel. The master ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.333333299909441, -5.583333300118511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-188", - "dateofocc": "2011-04-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk carrier (ARRILAH-I) was boarded 01 April at 0528Z while underway in position 19-17N 065-45E approximately 398 miles southeast of Sur, Oman. The vessel was attacked by two skiffs firing small arms fire (each skiff had three pirates). Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.233333300085178, 19.283333300262939] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-189", - "dateofocc": "2011-04-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: A chemical tanker underway noticed a suspicious fishing vessel. After monitoring the vessel for some time it was observed that a skiff as being launched which then headed directly for the tanker. Alarm sounded and navies contacted. Armed se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.716666700025883, 14.083333299735045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-190", - "dateofocc": "2011-04-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "AROUND 375 MILES OFF SOCOTRA ISLAND: Two large white hulled skiffs were noticed approaching a tanker underway at a distance of 2.5 miles. Master raised alarm and all crew except for the duty crew mustered in the safe room. The security team onboard fired", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.868333300087045, 16.009999999577076] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-191", - "dateofocc": "2011-04-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDOPALM TERMINAL, LUBUK GAUNG, DUMAI, INDONESIA: Five robbers in a small boat approached and came alongside a chemical tanker at berth. One of the robbers attempted to climb onboard using the fire wire. Duty crew noticed the robbers and informed other c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.369444399856832, 1.753611100082026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-192", - "dateofocc": "2011-04-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SOUTH CHINA SEA: A tug was robbed in transit 01 April at 1530Z while underway in position 02-48N 105-31E, approximately 135 miles northeast of Singapore. Eight suspects armed with knives boarded the vessel. (Commercial sources)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.516666699607356, 2.800000000076125] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-193", - "dateofocc": "2011-03-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SOUTH CHINA SEA: An offshore supply tug was robbed in transit 31 Mar at 1430Z while underway in position 02-04N 106-00E, approximately 137 miles northeast of Singapore. A speedboat with ten robbers in masks carrying knives boarded and robbed the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.000000000176044, 2.066666700173869] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-194", - "dateofocc": "2011-04-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel (PACIFIC OPAL) was fired upon 05 April at 0656Z while underway in position 15-53N 059-57E, approximately 381 miles northeast of Socotra Island, Yemen. The pirate attack group consisted of a mothership and two large, white-hu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.949999999721001, 15.883333300332822] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-195", - "dateofocc": "2011-04-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported being hijacked at 0234Z on 08 Apr in position 18-25N 057-27E, approximately 90 miles southeast of Duqm, Oman. Vessels are advised to keep 100 miles clear of this position and to exercise extreme cautioon.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.450000000089801, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-83", - "dateofocc": "2010-03-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "LAGOS ANCHORAGE, NIGERIA: Eight robbers armed with knives boarded a chemical tanker. The robbers injured two crew who had to be taken ashore by pilot vessel for treatment. Ship's and crew cash and properties stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.401666700302485, 6.311666700279659] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-84", - "dateofocc": "2010-03-28", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CONCHAN TERMINAL, PERU: Three robbers boarded a tanker from a small wooden boat. Alarm raised, crew mustered and proceeded to forecastle to investigate. Upon seeing the alert crew, the robbers jumped overboard and escaped with stolen ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.930000000352891, -12.258333299862215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-85", - "dateofocc": "2010-03-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Six pirates in a skiff chased the tanker underway. They fired upon the tanker and attempted to board. Master enforced anti piracy measures, contacted coalition forces, increased speed and took evasive maneuvers. Finally the pirates aborted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.189999999984593, 13.25666670038288] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-86", - "dateofocc": "2010-03-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Four pirates in a skiff armed with machine guns chased and fired upon the tanker underway. Alarm raised, SSAS alert sent out and coalition forces contacted. A warship advised it would arrive at location within 40 minutes. Tanker increased s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.749999999898421, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-87", - "dateofocc": "2010-03-28", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "PERU: Tanker robbed 28 Mar 10 at 0118 UTC while moored in position 12-15.5S 076-55.8W, Conchan terminal. Three robbers boarded the vessel from a small wooden boat. The alarm was raised and the crew proceeded to the forecastle to investigate. The robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-76.930000000352891, -12.258333299862215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-88", - "dateofocc": "2010-03-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "NIGERIA: Tug robbed 20 Mar 10 at 1411 UTC while underway in position 04-47N 008-18.5E, Calabar. Three armed men boarded the vessel and fired warning shots into the air with machine guns. The master sent SSAS alert and contacted local agents for assista", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.308333300290201, 4.783333300243669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-89", - "dateofocc": "2010-03-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (ICEBERG I) hijacked 29 Mar 10 at 0930 local time while underway in position 13-15N 046-40E, approximately 10NM off the Yemeni coast. Armed pirates boarded and hijacked the vessel, taking hostage the 24 crewmembers onbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.66666669999745, 13.250000000099305] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-90", - "dateofocc": "2010-03-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 26 Mar 10 at 1245 UTC while underway in position 12-32.2N 044-45.1E, approximately 20NM southwest of Aden, Yemen. Armed men in a skiff approached the vessel at a distance of 2NM. The vessel inc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.75166669979609, 12.536666700323622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-91", - "dateofocc": "2010-03-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (DELMAS NACALA) fired upon 31 Mar 10 at 1713 UTC while underway in position 01-28N 065-09E, approximately 680NM northeast of Port Victoria, Seychelles. The vessel reported being chased and fired upon by two small fast boats while t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.150000000248895, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-92", - "dateofocc": "2010-03-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel fired upon 31 Mar 10 at 1700 UTC while underway in position 10-32N 058-00E, approximately 235NM southeast of Socotra Island. Vessel reported being fired upon while transiting at a speed of 10 knots. One crewmember was repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.000000000422403, 10.533333300204788] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-93", - "dateofocc": "2010-03-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (DL COSMOS) fired upon 31 Mar 10 at 1320 UTC while underway in position 05-24S 040-05E, approximately 60NM southeast of Mombasa, Kenya. Captain reported being fired upon by two skiffs from the stern. Vessel was moving at approximat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.083333299676553, -5.399999999649424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-222", - "dateofocc": "2011-04-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (GEMINI) was hijacked 30 April at 0430 UTC while underway in position 07-01S 041-22E, 140NM southeast of Zanzibar, Tanzania. Pirates attacked from two skiffs. (IMB, UKMTO)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.366666699736129, -6.999999999881027] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-94", - "dateofocc": "2010-03-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (CHOL SAN BONG CHONG NYON HO) fired upon 31 Mar 10 at 0610 UTC while underway in position 02-15S 041-31E, approximately 150NM northeast of Mombasa, Kenya. Armed men opened fire on the vessel with automatic weapons and R", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.516666700235589, -2.249999999952252] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-95", - "dateofocc": "2010-03-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (EVITA) fired upon 31 Mar 10 at 0513 UTC while underway in position 02-03N 052-27E, approximately 425NM east of Mogadishu, Somalia. Vessel reported coming under fire by two skiffs. Vessel conducted evasive maneuvers and evaded the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.449999999928139, 2.050000000276725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-96", - "dateofocc": "2010-03-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel reportedly hijacked 30 Mar 10 while underway in last reported position 10-08N 056-06E, approximately 165NM southeast of Socotra Island. Owners reported losing contact with the vessel on 30 March after no longer receiving da", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.100000000091143, 10.133333300371703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-287", - "dateofocc": "2010-08-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 22 Aug 10 at 0435 UTC while underway in position 13-19.5N 049-49E, approximately 80NM south of Al Mukalla, Yemen. Armed men were spotted approaching the vessel underway. The master increased", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.816666699694622, 13.325000000349064] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-288", - "dateofocc": "2010-08-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker robbed 21 Aug 10 at 2300 local time while underway in position 03-11.2N 105-22.2E, approximately 15NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with long knives boarded the vessel while underway. They mustered th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.370000000236587, 3.186666700066212] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-289", - "dateofocc": "2010-08-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: General cargo ship reported suspicious approach 20 Aug 10 at 0420 local time while underway in position 05-12.8N 106-32.6E, approximately 35NM northeast of Kakap Natuna oil terminal, Indonesia. Watch standers spotted three boats approa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.543333300225015, 5.213333299816895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-290", - "dateofocc": "2010-08-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Container ship reported suspicious approach 22 Aug 10 at 0410 UTC while underway in position 13-26.1N 049-41.6E, approximately 70NM south of Al Mukalla, Yemen. Five armed men in a skiff approached the vessel at a speed of 20 knots and cam", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.693333299780477, 13.434999999696117] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-291", - "dateofocc": "2010-08-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BANGLADESH: Tanker robbed 23 Aug 10 at 2330 local time while berthed in position 22-16.1N 091-48.2E, Chittagong port. Six robbers armed with long knives in a small wooden boat approached the vessel. Two of the robbers boarded the vessel and stole ship'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.803333299586484, 22.268333299590552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-293", - "dateofocc": "2010-08-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CEMENT CARRIER", - "descriptio": "GULF OF ADEN: Cement tanker fired upon 28 Aug 10 at 0800 UTC while underway in position 13-31.9N 049-58.2E, approximately 78NM southeast of Al Mukalla, Yemen. Eight men armed with automatic guns in a high speed boat chased an underway cement carrier wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.970000000423511, 13.531666700099493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-294", - "dateofocc": "2010-08-25", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GUINEA: Container ship robbed 25 Aug 10 at 0300 UTC while at anchor in position 09-19.2N 013-45.2W, approximately 10NM south of Conakry, Guinea. Ten robbers armed with AK-47s and knives boarded a container ship at anchor. The duty watch and the 2nd offi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.753333300103918, 9.319999999963272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-295", - "dateofocc": "2010-08-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: A pirate action group has been reported in 12-17N 044-59E on 28 Aug at 1449 UTC. Pirate action group consisting of 1 skiff with 1 outboard engine, orange hull, and 4 armed persons on board.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.983333300104789, 12.283333300036531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-296", - "dateofocc": "2010-08-19", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship robbed 19 Aug 10 at 0234 local time while anchored at Callao anchorage. Six robbers armed with long knives boarded the vessel and took the duty watchman hostage. After the watch did not respond on radio, the alarm was raised and ano", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-297", - "dateofocc": "2010-08-16", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BRAZIL: General cargo ship robbed 16 Aug 10 at 0530 UTC while anchored at Villa do Conde. During watch handover procedures, the duty officer noticed a wooden boat moving away from the shipside. The alarm was raised and crew mustered. Upon investigation", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.750277799782623, -1.542499999634856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-298", - "dateofocc": "2010-08-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier boarded 7 Aug 10 at 2035 local time while anchored at Chittagong Kutubdia anchorage. Five robbers armed with knives boarded the vessel. They attacked the duty watch with knives, injuring his hands and requiring hospital treatmen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-299", - "dateofocc": "2010-09-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker robbed 1 Sep 10 at 0100 UTC at position 03-14.3N 105-19.6E, approximately 15NM northwest of Pulau Mangkai, Indonesia. Six robbers with guns, knives, and steel rods boarded a tanker underway. They entered the bridge and took host", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.326666699754071, 3.238333300135253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-506", - "dateofocc": "2010-11-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "LOAD CARRIER", - "descriptio": "INDIAN OCEAN: Multi-function large load carrier (TAI AN KOU) illegally boarded 20 Nov 10 at 0824 UTC while underway in position 20-30N 060-51E, approximately 438NM northeast of Salalah, Oman. 15-20 people in three speed boats with RPG and AK-47 approach", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.850000000019918, 20.499999999659281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-507", - "dateofocc": "2010-11-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (NYK ALTAIR) fired upon 20 Nov 10 at 0310 UTC while underway in position 12-23N 066-19E, approximately 700NM east of Socotra Island, Yemen. Eight to ten people in skiff approached first from port and then from starboard sid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.31666669977858, 12.383333299770015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-508", - "dateofocc": "2010-11-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (NORTHERN VALOR) fired upon 18 Nov 10 at 1945 UTC while underway in position 00-18S 052-47E, approximately 460NM southeast of Mogadishu, Somalia. Master confirmed automatic weapons and RPG fired. Vessel maintained maximum sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.783333299997309, -0.299999999754334] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-509", - "dateofocc": "2010-11-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BANGLADESH: Tanker robbed 21 Nov 10 while at anchor in position 21-50.2N 091-39.5E, in the Chittagong anchorage. Robbers attempted to board a tanker engaged in anchoring operations via the poop deck using a rope and hook. Alert crew on anti piracy watch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.658333300242816, 21.836666699814998] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-510", - "dateofocc": "2010-11-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (KYTHIRA) fired upon 30 Nov at 1330Z while underway in position 09-19N 069-30E approximately 386 miles northwest of the Maldives. Five armed pirates in a skiff chased and fired upon a tanker underway with intent to hijack. Master ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.500000000344642, 9.316666699733844] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-511", - "dateofocc": "2010-12-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOUTHERN ARABIAN SEA: Pirate action group reported in 09-00N 067-10E on 04 Dec at 0232Z. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.166666700210726, 8.999999999737042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-512", - "dateofocc": "2010-12-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHEN ARABIAN SEA: Merchant vessel attacked in 08-10N 071-43E on 05 Dec at 0714Z. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.716666699773327, 8.166666700101359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-514", - "dateofocc": "2010-11-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VENEZUELA: Tanker robbed 27 Nov at 0800 local time while at anchor in position 10-16N 064-42W in Puerto la Cruz. Six robbers in a small craft boarded the tanker at anchor and broke the forward store's padlock. Duty watch raised alarm and crew rushed to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.699999999858449, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-515", - "dateofocc": "2010-11-28", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GUINEA: Bulk carrier robbed 28 Nov at 0330Z while at anchor in position 09-22N 013-47W in Conarky. Six robbers armed with machine guns boarded an anchored bulk carrier. Officer raised alarm and tried to contact port control without any success. The robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.78333329984406, 9.366666699600557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-516", - "dateofocc": "2010-11-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (IVER EXACT) fired upon 29 Nov at 0240Z while underway in position 16-58N 067-26E, approximately 775 miles northeast of Socotra Island. Five armed pirates in a skiff chased and fired upon a chemical tanker underway. Master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.43333329961672, 16.966666700026224] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-517", - "dateofocc": "2010-11-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (D&K I) fired upon 27 Nov at 0700Z while underway in position 00-39N 064-51E, approximately 620 miles northeast of the Seychelles. A tanker underway noticed a mother vessel launching skiffs, which started approaching the tanker. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.850000000149294, 0.650000000411296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-518", - "dateofocc": "2010-11-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (GURU GOBIND SINGH) fired on 25 Nov at 1800 local time while underway in position 14-52N 068-01E, approximately 810 miles northeast of Socotra Island. Seven pirates in a skiff chased and fired upon a tanker underway. Master enforced", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.01666669974361, 14.866666700228109] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-489", - "dateofocc": "2010-11-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (HADI) fired upon 25 Nov at 1439Z while underway in position 19-47N 062-56E, approximately 234 miles east of Masirah, Oman. Tanker fired on by pirates in a skiff with guns and rpgs. Vessel increased speed, sent alert, took evasive m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.933333299920889, 19.783333299829451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-196", - "dateofocc": "2011-04-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Pirate activity observed at 1005Z on 09 April in position 13-08N 056-18E. At 1506Z, approximately 120 miles northeast of Socortra Island, Yemen. This area will remain high risk for at least the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.299999999557997, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-197", - "dateofocc": "2011-04-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "ARABIAN SEA: General cargo ship (SUSAN K) was hijacked 08 April at 0234 UTC while underway in position 18-25N 057-27E, approximately 274NM southwest of Sur, Oman. About ten pirates boarded the cargo ship with weapons. The ten crew members and Master wen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.450000000089801, 18.416666699758366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-198", - "dateofocc": "2011-04-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: While underway a chemical tanker noticed one white and one blue skiff heading towards the vessel. Four persons were seen in the white skiff and five persons in the blue skiff. Crew alerted and armed security guards made themselves on the br", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.133333299704987, 12.033333299803644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-199", - "dateofocc": "2011-04-11", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "50 MILES SOUTHEAST OF PULAU MANGKAI, SOUTH CHINA SEA: Duty crew onboard a chemical tanker underway noticed a suspicious speed boat doing 6 to 7 knots at a distance of six miles. Master raised alarm, sounded horn, increased speed, crew mustered and switch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.825000000160514, 3.378333300121767] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-200", - "dateofocc": "2011-04-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PASSENGER SHIP", - "descriptio": "GULF OF ADEN: A passenger ship underway noticed a group of about 20 skiffs near the port bow at a distance of three miles. Five skiffs were seen to break out from this group and head towards the vessel. At a distance of around 600 to 700 meters the arme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.633333300106131, 12.51666670019705] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-201", - "dateofocc": "2011-04-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Oil products tanker (SAINT RAM) was fired upon by one skiff 12 April at 1218 UTC while underway in position 13-40N 049-56E, approximately 70NM southeast of Al Mukalla, Yemen. The vessel was fired upon by one skiff containing six pirates wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.933333300399795, 13.666666699829534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-202", - "dateofocc": "2011-04-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTHERN RED SEA: About five pirates in a skiff approached a bulk carrier underway. All crew went into citadel while bridge team increased speed, enforced anti piracy measures and contacted authorities. Later the skiff aborted the attempt and moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.600000000104217, 14.366666699762277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-203", - "dateofocc": "2011-04-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "AROUND 67 MILES OFF COTONOU, BENIN: Ten armed robers boarded a chemical tanker at anchor. The vessel sent an SSAS alert. The piracy reporting center cotacted the authorities and requested assistance for the crew and vessel. Further information indicated", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.083333300246295, 5.266666699737755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-204", - "dateofocc": "2011-04-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "GULF OF GUINEA: A supply ship was attacked 11 April at 1100Z while in position 04-39N 008-22.12E, approximately 82 miles souteast of Port Harcourt, Nigeria. The vessel was attacked by 12 armed men in a speedboat. The captain of the vessel was taken host", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.36861110034539, 4.649999999641352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-205", - "dateofocc": "2011-04-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: A merchant vessel reported suspicious approach at 0830Z on 17 Apr in position 14-04N 042-20E, approximately 84 miles from Eritrea, Eriterea. This area will remain a high risk for the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.333333299974129, 14.066666699662619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-206", - "dateofocc": "2011-04-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Three robbers boarded a tanker 14 April at 1750 UTC while anchored in position 01-41.6N 101-29.8E, in the Dumai anchorage, Indonesia. The robbers entered the engine room through the steering gear room entrance after breaking the padlock. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.496666700250785, 1.693333300026836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-207", - "dateofocc": "2011-04-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA: Container vessel (HANJIN TIANJIN) was boarded 20 April at 2049 UTC while underway in position 12-58N 058-55E, approximately 262NM northeast of Socotra Island, Yemen. (Commercial Sources, Operator)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.916666699719087, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-208", - "dateofocc": "2011-04-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: One robber boarded a chemical tanker 18 April at 1955 UTC while anchored in position 01-42.33N 101-27.16E, in the Dumai inner anchorage, Indonesia. Six to seven robbers in a wooden boat approached the vessel. One robber boarded the vessel, bu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.452777800417209, 1.705555599917886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-97", - "dateofocc": "2010-04-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "GULF OF ADEN: Vehicle carrier reported suspicious approach 06 Apr 10 at 0840 UTC while underway in position 14-06.8N 051-51.8E, approximately 160NM southeast of Al Mukalla, Yemen. Armed men in skiffs began initial approaches to the vessel, but never go", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.863333299571877, 14.113333300374507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-98", - "dateofocc": "2010-04-05", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CALLAO ANCHORAGE, PERU: Four masked robbers armed with long knives were seen on forecastle of a container ship. Alarm raised and crew mustered on bridge and all access to accommodation locked. Attempts to contact the authorities for assistance was futile", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-99", - "dateofocc": "2010-04-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (HAMBURG BRIDGE) fired upon 5 Apr 10 at 1205 UTC while underway in position 13-38.2N 055-38.2E, approximately 90NM northeast of Socotra Island. Armed men in skiffs chased and fired upon the vessel, using automatic weapons a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.636666699649027, 13.636666700089393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-100", - "dateofocc": "2010-04-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (TAIPAN) boarded 5 Apr 10 at 0749 UTC while underway in position 12-23N 060-21E, approximately 340NM east of Socotra Island. Armed men in two skiffs boarded the vessel underway. The crew locked themselves in a bulletproof s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.349999999554086, 12.383333299770015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-101", - "dateofocc": "2010-03-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "20 MILES EAST OF KHURIYA MURIYA, OMAN: Pirates attacked and hijacked a refrigerated cargo ship underway and took hostage 21 crew members.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.700000000290402, 17.449999999695592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-124", - "dateofocc": "2010-04-08", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "VENEZUELA: General cargo ship reported attempted boarding 8 Apr 10 at 1050 UTC while anchored in position 10-38N 071-35W, inner anchorage, Maracaibo port. Four robbers in two boats attempted to board the vessel at anchor. The robbers aborted the attemp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.583333299554909, 10.633333299938215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-102", - "dateofocc": "2010-04-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (RISING SUN) reported attempted boarding 5 Apr 10 at 0313 UTC while underway in position 18-21N 059-01E, approximately 110NM south of Masirah Island, Oman. The master reported being chased by three skiffs. A distress messa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.016666700351891, 18.349999999994452] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-103", - "dateofocc": "2010-04-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 4 Apr 10 at 1340 UTC while underway in position 09-24.3S 044-30.2E, approximately 340NM southeast of Dar es Salaam, Tanzania. Men in a skiff armed with RPGs and automatic weapons chased and fired upon the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.503333299765529, -9.405000000035272] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-104", - "dateofocc": "2010-04-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (SAMHO DREAM) hijacked 4 Apr 10 at 0740 UTC while underway in position 08-21N 065-00E, approximately 900NM east of Eyl, Somalia. Pirates in skiffs boarded and hijacked the vessel. The vessel and 24 crewmembers have been taken to an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.999999999749434, 8.34999999967107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-105", - "dateofocc": "2010-04-04", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "PHILIPPINES: Chemical tanker reported suspicious approach 4 Apr 10 at 0215 UTC while underway in position 04-10.3N 120-41.3E, south of Tawi Tawi, Celebes Sea. Vessel reported being chased by skiffs for 30 minutes. Evasive maneuvers were conducted and t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.688333300021441, 4.171666700228457] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-107", - "dateofocc": "2010-04-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Tanker (TORM RAGNHILD) fired upon 3 Apr 10 at 0539 UTC while underway in position 13-51.7N 051-05.1E, approximately 120NM southeast of Al Mukalla, Yemen. Men armed with RPGs and automatic weapons chased and opened fire on the vessel. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.085000000059381, 13.861666699939292] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-108", - "dateofocc": "2010-04-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA: Container ship fired upon 8 Apr 10 at 0622 UTC while underway in position 13-34.5N 057-26.7E, approximately 185NM northeast of Socotra Island. The captain initially reported a suspicious approach by one skiff with three persons onboard at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.444999999833385, 13.574999999682689] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-109", - "dateofocc": "2010-04-07", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (YASIN C) hijacked 7 Apr 10 at 1243 UTC while underway in position 04-59S 043-52E, approximately 260NM east of Mombasa, Kenya. Pirates boarded and hijacked the vessel with its 25 crewmembers and have sailed it to an undisclos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.866666700266649, -4.983333299919195] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-110", - "dateofocc": "2010-04-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (WESTERMOOR) fired upon 2 Apr 10 at 1100 UTC while underway in position 11-06S 046-07E, approximately 160NM northeast of Comoros. Two skiffs with armed men onboard chased and opened fire with RPGs and automatic weapons. Ves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.116666699664904, -11.099999999743829] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-300", - "dateofocc": "2010-08-31", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "TANJUNG PEMANCINGAN ANCHORAGE, INDONESIA: While at anchor, alarm for forecastle watertight doors was activated indicating that they had been opened. Investigation carried out revealed forecastle store door was broke open and ship's stores ad properties s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.383333300435311, -3.216666700015026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-301", - "dateofocc": "2010-08-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DEMOCRATIC REPUBLIC OF THE CONGO: Product tanker robber 31 Aug 10 at 0110 UTC while at anchorage in position 05-52.4S 013-01.9E, approximately 2NM west of Boma. Three robbers armed with knives boarded a product tanker at anchor. They stole ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.031666699633661, -5.873333299705166] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-302", - "dateofocc": "2010-08-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker robbed 30 Aug 10 at 2330 UTC at position 03-03.8N 105-21.6E, approximately 12NM northwest of Pulau Mangkai, Indonesia. Six robbers armed with guns and long knives boarded a tanker underway. They entered the bridge and took the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.359999999723641, 3.063333300152067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-292", - "dateofocc": "2010-08-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (IDEAL BULKER) robbed 30 Aug 10 at 0254 UTC at position 2-59.7N 105-12.2E, approximately 24NM southwest of Pulau Mangkai, Indonesia. Six pirates in a small craft boarded the vessel from the stern. The pirates, who were arme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.203333299839983, 2.995000000185883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-304", - "dateofocc": "2010-08-29", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "HAITI: General cargo ship robbed 29 Aug 10 at 0115 local time while in position 18-33.3N 072-21.2W, South Finger Pier, Port au Prince. Crewmember spotted robbers on the aft deck and raised the alarm. The robbers jumped overboard and swam to a waiting b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.353333300380257, 18.554999999717836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-306", - "dateofocc": "2010-09-05", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "PERU: General cargo ship boarded 5 Sep 10 at 0140 local time while anchored in position 12-01.7S 077-11.7W, Callao anchorage. Two robbers armed with long knives boarded the vessel at anchor. The duty crew spotted them, raised the alarm, and the crew mu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.144722200014314, -12.047499999781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-307", - "dateofocc": "2010-09-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SOUTH CHINA SEA: Container ship reported suspicious approach 5 Sep 10 at 1940 local time while underway in position 06-07.7N 112-26.4E, approximately 11NM north of Friendship Shoal reef. The master noticed two speed boats with four to five persons onbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.439999999556903, 6.128333299985911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-308", - "dateofocc": "2010-09-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN: Container ship (MAGELLAN STAR) boarded 8 Sep 10 at 0540 UTC while underway in position 13-23N 049-58E, approximately 83NM southeast of Al Mukalla, Yemen. Armed pirates in a skiff boarded and attempted to hijack the vessel. The crew locked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.966666700194082, 13.383333299802359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-309", - "dateofocc": "2010-09-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "DEMOCRATIC REPUBLIC OF THE CONGO: Vessel robbed 4 Sep 10 at 0130 local time while underway in position 05-51.9S 013-03E, 1NM southeast of Boma anchorage. Three robbers armed with long knives boarded the vessel. The duty officer noticed and raised the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.865555600369021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-310", - "dateofocc": "2010-09-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker robbed 5 Sep 10 at 0305 local time while underway in position 03-14.2N 105-17.2E, approximately 19NM northwest of Pulau Mangkai, Indonesia. Four men armed with long knives boarded the vessel underway. They took the duty watch cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.286666700400303, 3.236666699932925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-311", - "dateofocc": "2010-09-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: About 25 robbers armed with knives approached a general cargo ship in two boats. While approaching and boarding the vessel they continuously threw stones on the ship's crews. The robbers stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-491", - "dateofocc": "2010-11-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (ALBEDO) hijacked 25 Nov at 0300Z while underway in position 05-38N 068-27E, approxiately 1140 miles east of Garacad, Somalia. ALBEDO reported the hijacked ship POLAR chasing and acting as a mothership. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.450000000445584, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-519", - "dateofocc": "2010-12-03", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PERU: Container ship robbed 3 Dec 10 at 2355 local time while at anchor in position 12-02N 077-12W, in Callao anchorage. Four robbers wearing diving suits armed with guns and knives boarded an anchored container ship. They threatened the forward duty cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, 12.033333299803644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-520", - "dateofocc": "2010-12-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARGO SHIP", - "descriptio": "INDIAN OCEAN: A bulk cargo ship (JAHAN MONI) was hijacked 5 Dec at 1126 UTC while underway in position 08-12N 071-55E, approximately 540NM west of Sri Lanka. At 0942 UTC, master reported two skiffs were approaching and that one attempted to board the me", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.916666700139501, 8.200000000070929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-521", - "dateofocc": "2010-12-08", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship robbed 8 Dec 10 at 1705 UTC while at anchorage in position 10-14N 107-04E, in Vung Tau anchorage. Duty watch onboard anchored container vessel noticed four robbers on the forecastle. Duty officer informed, alarm raised, and crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-523", - "dateofocc": "2010-12-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 20-51N 062-46E at 101504Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.766666700248322, 20.849999999625652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-524", - "dateofocc": "2010-12-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN ARABIAN SEA: Merchant vessel attacked in 06-11N 067-25E at 110542Z Dec. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.41666670044367, 6.183333300109098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-525", - "dateofocc": "2010-12-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Piracy action group reported in 07-33S 042-05E at 111030Z Dec. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.083333299741241, -7.550000000213629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-526", - "dateofocc": "2010-12-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate activity in 13-14.8S 054-43.0E on 13 Dec. The area involved should be avoided if possible. This area will remain high risk for at least 24-48 hours. Caution advised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.716666700122857, -13.246666700078606] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-527", - "dateofocc": "2010-12-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 13-09N 048-29E at 131000Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.483333299768333, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-528", - "dateofocc": "2010-12-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: A merchant vessel noted being attacked by two skiffs at 1233Z on 10 Dec in position 09-56S 041-48E, approximately 123 miles northeast of Comoros. This area will remain high risk for the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.800000000438047, -9.933333300214201] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-529", - "dateofocc": "2010-12-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: A merchant vessel noted being attacked by two skifffs at 1550Z on 10 Dec in position 21-05N 062-44E approximately 200 miles southeast of Sur, Oman. This area will remain high risk for the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.733333299554658, 21.083333299961396] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-530", - "dateofocc": "2010-12-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "10 MILES OFF PEMBA ISLAND, TANZANIA: A product tanker underway spotted two skiffs at a distance of 6.5 miles approaching her at high speed. The tanker increased speed raised alarm and instructed all crew to muster in a safe room except bridge crew and se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.9666666998707, -5.466666700312658] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-531", - "dateofocc": "2010-12-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 09-57S 041-46E at 101212Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.766666699569157, -9.950000000111345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-532", - "dateofocc": "2010-12-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 18-27N 061-50E at 140756Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme cautioin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.833333300155118, 18.449999999727879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-533", - "dateofocc": "2010-12-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: A bulk carrier (MICHALAKIS) was fired upon 15 Dec 10 at 0215 UTC while underway in position 12-09N 060-23E, approximately 350NM east of Socotra Island. Two skiffs with four pirates armed with machine guns and RPG chased and fired upon a bu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.383333300422976, 12.150000000333534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-534", - "dateofocc": "2010-12-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA, JAWA SEA: Pirates in an unlit wooden boat attempted to board a bulk carrier underway equipped with razor wires as a defense. Ship raised alarm and crew directed search lights towards the boat resulting in the pirates moving away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.986666700365333, -5.55999999976251] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-209", - "dateofocc": "2011-04-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "SINGAPORE: Robbers boarded a barge 17 April at 2112 UTC while underway in position 01-15.2N 104-03.2E, approximately seven NM southeast of Changi, Singapore. The Singapore Police Coast Guard (PCG) sighted a sampan alongside the vessel. The PCG spotted f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.053333300207441, 1.253333299940664] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-210", - "dateofocc": "2011-04-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported a suspicious approach at 1806Z on April 18 in position 13-30N 049-45E, approximately 84 miles from Al Mukalla, Yemen in the Gulf of Aden.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.749999999930765, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-211", - "dateofocc": "2011-04-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported suspicious approach at 0450Z on 18 April in position 21-19N 059-32E, approximately 59 miles off Masirah, Oman in the Gulf of Aden.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.533333299990773, 21.316666700121914] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-212", - "dateofocc": "2011-04-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk carrier (ROSALIA D' AMATO) was hijacked 21 April at 0218Z while underway in position 13-17N 059-06E, approximately 274 miles northeast of Socotra, Island, Yemen. One skiff attacked the vessel. The pirates boarded and took the crew host", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.100000000188174, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-213", - "dateofocc": "2011-04-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (ATLANTIA) was fired upon by seven pirates in two skiffs (NFI) 24 April at 1800 UTC while underway in position 06-57S 045-40E, approximately 381NM southeast of Zanzibar, Tanzania. The pirates failed to attach a boarding lad", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.666666699965106, -6.950000000014313] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-214", - "dateofocc": "2011-04-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Oil products/chemical tanker (PORT UNION) was fired upon 24 April at 0300 UTC while underway in position 04-09.8S 047-43.0E, approximately 484NM east of Mombasa, Kenya. Pirates chased the vessel in two skiffs, one of which had five pirates", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.716666699896507, -4.16333330012651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-215", - "dateofocc": "2011-04-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Product tanker (RUDEEF GNA) was fired upon 22 April at 2250 UTC while underway in position 15-11.03 N 051-36.36E, approximately 148NM northeast of Al Mukalla, Yemen. Pirates opened fire upon the tanker about 5-11 yards away, the onboard se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.60611110042845, 15.183888899751196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-216", - "dateofocc": "2011-04-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Seven robers boarded a bulk carrier 24 April at 2010Z while underway in position 03-08N 105-16E, approximately 45 miles northeast of the Anambas Islands, Indonesia. The robbers boarded the bulk carrier from a wooden boat. They departed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.266666700273788, 3.133333300145352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-217", - "dateofocc": "2011-04-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: Seven robbers boarded a general cargo vessel 25 April at 0055Z while underway in position 02-57N 105-17E, approximately 43 miles southwest of the Anambas Islands, Indonesia. The robbers took the officer of the watch and the duty able se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, 2.949999999676322] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-218", - "dateofocc": "2011-04-21", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "CARIBBEAN SEA: A fishing vessel was robbed 21 April 2011 at 0100 UTC while anchored off of Montrose, Guyana. Four armed robbers boarded the vessel and stole various goods. (Commercial Sources)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.083333299567983, 6.783333300308357] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-219", - "dateofocc": "2011-04-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: A tanker was robbed 22 April at 2130 UTC while anchored off of Kochi, India. The second officer noticed some movements on the forecastle deck. After the duty able seaman discovered three robbers, the second officer raised the alarm. After t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.2699999995653, 9.976944400163575] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-220", - "dateofocc": "2011-04-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "345 MILES EAST OF SOCOTRA ISLAND: Armed pirates in a skiff chased a container ship underway. A mother ship was noticed in the vicinity. Master increased speed and maneuvered away from the mother ship and skiff. Master enforced anti-piracy measures and ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.400000000320119, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-221", - "dateofocc": "2011-04-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "1.8 MILES SOUTH OF BATU PENGERANG, JOHOR, MALAYSIA: Pirates boarded a barge towed by a tug while crew were preparing for anchoring procedures. They broke open three containers, stole some of the cargo and escaped. After anchoring, the captain and crew ch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.099999999844783, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-111", - "dateofocc": "2010-04-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (ITAL GARLAND) fired upon 2 Apr 10 at 0834 UTC while underway in position 12-50.6N 058-10E, approximately 210NM east of Socotra Island. Two wooden boats with seven armed men onboard chased and opened fire on the vessel. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.166666699919688, 12.843333299982703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-112", - "dateofocc": "2010-03-31", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 31 Mar 10 at 1830 UTC while underway in position 14-25N 064-40E, approximately 600NM northeast of Socotra Island. The vessel reported two skiffs approaching the vessel. The captain raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.666666699680206, 14.416666699628991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-106", - "dateofocc": "2010-04-03", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "VIETNAM: Chemical tanker robbed 3 Apr 10 at 0230 local time while berthed in position 10-38N 106-46E, Hiep Phouc. Three robbers armed with knives boarded the vessel and took the 2nd officer as hostage. They stole ship's properties then escaped. The hos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.767777799649309, 10.634444399714937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-113", - "dateofocc": "2010-04-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 11 Apr 10 at 0930 UTC while underway in position 02-26.9N 059-59.8E, approximately 500NM northeast of Port Victoria, Seychelles. Three speed boats were detected on radar at a distance of about 3", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.996666700257663, 2.448333300082709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-114", - "dateofocc": "2010-04-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (RAK AFRIKANA) hijacked 11 Apr 10 at 0741 UTC while underway in position 04-45S 051-00E, approximately 565NM southeast of Kismayo, Somalia. Pirates boarded and hijacked the vessel and have sailed it to an undisclosed lo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.000000000195996, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-115", - "dateofocc": "2010-04-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "PERU: Chemical tanker boarded 9 Apr 10 at 1918 local time while in position 12-00S 077-12W, Callao. A robber was seen climbing the anchor chain of the vessel. The alarm was raised and the crew mustered. The crew used water to force the robber to jump b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.000000000042746] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-116", - "dateofocc": "2010-04-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "LAWI ANCHORAGE, BALIKPAPAN, INDONESIA: Robbers boarded a tanker by breaking open the hawse pipe cover. They entered the forescastle and stole ship equipment by breaking the lock on the booby hatch.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.815000000035639, -1.476666699796908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-117", - "dateofocc": "2010-04-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "PEMANCINGAN ANCHORAGE, INDONESIA: Robber attempted to climb up the anchor chain of a general cargo ship at anchor. Crew spotted him and informed bridge. Alarm raised and ship's whistle sounded. Robber jumped into the water and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.361111099856089, -3.200000000117882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-118", - "dateofocc": "2010-03-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: 12 meter fishing vessel (PRADEEPA), five persons on board, unreported. Last known position vicinity 11-00N 068-00E at 12 Feb.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.999999999846466, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-119", - "dateofocc": "2010-03-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Fishing vessel (SAKOBA), previously hijacked, is being used as a platform for piracy in 00-52N 046-56E at 080704 UTC Mar.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.933333300302763, 0.866666699775351] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-120", - "dateofocc": "2010-03-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Suspected hijacked vessel being used for pirate activity in 06-43S 044-22E at 230840 UTC Mar.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.366666699833104, -6.716666699678569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-121", - "dateofocc": "2010-03-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 03-49S 052-12E at 271004 UTC Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.199999999695194, -3.816666700214341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-122", - "dateofocc": "2010-03-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 03-03N 052-24E at 271021 UTC Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.400000000061425, 3.050000000309069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-123", - "dateofocc": "2010-04-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 13-38N 056-08E at 091016 UTC Apr. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.133333300060713, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-125", - "dateofocc": "2010-04-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 4 Apr 10 at 0545 UTC while underway in position 13-58.8N 051-25E, approximately 135NM southeast of Al Mukalla, Yemen. Vessel reported being chased by three white skiffs and one mother ship. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.416666699926225, 13.97999999977219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-312", - "dateofocc": "2010-09-06", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA: Bulk carrier robbed 6 Sep 10 at 0300 local time while anchored in position 03-51N 077-06W, Buenaventura anchorage. Three robbers armed with long knives boarded the vessel during heavy rain. They attacked and tied up the forward watchman. Whe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.100000000079604, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-305", - "dateofocc": "2010-09-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker reported suspicious approach 6 Sep 10 at 0702 UTC while underway in position 13-32N 049-39.7E, approximately 65NM southeast of Al Mukalla, Yemen. Master reported six armed men in a skiff attempted to board the vessel as th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.661666699838008, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-313", - "dateofocc": "2010-09-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker (OLIB G) hijacked 8 Sep 10 at 0504 UTC while underway in position 13-26N 049-45E, approximately 73NM southeast of Al Mukalla, Yemen. Armed pirates boarded and hijacked the vessel along with 18 crewmembers while underway. (", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.749999999930765, 13.433333299669073] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-303", - "dateofocc": "2010-09-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIP", - "descriptio": "SOUTH CHINA SEA: Vessel boarded 1 Sep 10 at 2201 local time while underway in position 03-08.9N 105-25.2E, approximately 11NM northwest of Pulau Mangkai, Indonesia. Prior to entering high risk area, the crew had locked all access to accommodation and b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.4200000001033, 3.148055600164639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-314", - "dateofocc": "2010-09-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Piracy action group reported in 12-54N 043-11E at 111212 UTC Sep. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.183333300406332, 12.900000000132991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-315", - "dateofocc": "2010-09-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship robbed 12 Sep 10 at 2300 local time while at anchorage in Chittagong at position 22-09.45N 091-45.0E. Counter-piracy watch on board an anchored container ship reported three robbers armed with long knives to watch officer. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.157500000142306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-316", - "dateofocc": "2010-09-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "SOUTH CHINA SEA: Vehicle carrier (CHEERLEADER) boarded 10 Sep 10 at 2320 local time while underway in position 01-55.0N 109-05.0E, approximately 10NM southwest of Pulau Merundung, Indonesia. About eight robbers armed with long knives boarded a vehicle c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.083333300109359, 1.916666699674408] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-317", - "dateofocc": "2010-09-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTER INDIAN OCEAN: Possible mothership activity in 05-20N 048-30E at 140505 UTC Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.499999999665476, 5.333333299676895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-318", - "dateofocc": "2010-09-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CAMEROON: Dredger (AMERIGO VESPUCI) robbed 12 Sep 10 at 2130 local time while at anchor in position 03-53N 009-32E in port Douala. About 12 robbers armed with machine guns in two speed boats boarded a general cargo ship at anchor. They took hostage four", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.533333300172444, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-319", - "dateofocc": "2010-09-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "RED SEA: Container ship reported suspicious approach 11 Sep 10 at 1212 UTC while underway in position 12-54.0N 043-10.7E, in the Bab al Mandeb. Four skiffs with two to three peoples in each skiff chased and approached a container ship underway at high s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.178333300149859, 12.900000000132991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-331", - "dateofocc": "2010-09-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Mothership activity vicinity 07-23N 064-50E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.833333300252093, 7.383333299608296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-320", - "dateofocc": "2010-09-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker reported attempted boarding 9 Sep 10 at 2110 local time while underway at position 02-00.53N 109-04.39E, approximately 4NM southwest of Pulau Merundung, Indonesia. While on counter-piracy watch, crew onboard a tanker underway not", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.073055599745601, 2.008888900246916] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-321", - "dateofocc": "2010-08-29", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "SOUTH CHINA SEA: Product tanker boarded 29 Aug 10 at 0245 local time while at anchorage in Balikpapan, Indonesia. Robbers boarded a product tanker at anchor during heavy rain and stole ship stores. At the time of the robbery, the ship counter-piracy crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.85000000003231, -1.416666700316568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-535", - "dateofocc": "2010-12-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (HELLESPONT TRINITY) was fired upon 16 Dec 10 at 0315 UTC while underway in position 16-10N 068-20E, approximately 300NM southwest of Mumbai, India. Pirates in a skiff approached a tanker underway and opened fire with automatic weap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.333333299915637, 16.166666700360054] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-536", - "dateofocc": "2010-12-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 03-05-12N 049-48-29E on 17 Dec at 0342Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.808055600432567, 3.086666700332785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-537", - "dateofocc": "2010-12-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: General cargo ship robbed 14 Dec 10 at 2345 UTC while drifting in position 05-55N 003-17E, approximately 30NM south of Lagos. About eight robbers armed with crowbars, machetes, and guns fired upon and boarded a general cargo ship drifting off L", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.283333299745493, 5.916666699803784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-538", - "dateofocc": "2010-12-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "25 MILES OFF LAGOS NIGERIA: A suspicious vessel approached a drifting container ship. At a distance of 2.1 miles the vessel stopped and launched a skiff with seven armed pirates. The skiff chased ad fired upon the ship with intent to board. Master raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.559722199813677, 6.010000000152957] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-539", - "dateofocc": "2010-12-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: Container ship was robbed 14 Dec 10 at 0300 local time while at anchor in position 06-00S 106-54E in Tanjung Priok anchorage, Jakarta. Five robbers armed with long knives boarded a container ship at anchor. They took the duty watch hostage an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.903333299805013, -6.01166670038873] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-540", - "dateofocc": "2010-12-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: A bulk carrier (LEMESHEV) reported an attempted boarding 13 Dec 10 at 1920 UTC while underway in position 13-52N 051-07E, approximately 170NM southeast of Al Mukallah, Yemen. Three skiffs attempted to board the ship from the starboard and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.118333300028894, 13.873333299755245] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-541", - "dateofocc": "2010-12-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: A bulk carrier (MICHELE BOTTIGLIERI) was fired upon 14 Dec 10 at 0800 UTC while underway in position 18-15N 061-37E, approximately 435NM northeast of Salalah, Oman. Pirates armed with guns and RPG in two skiffs chased and fired upon a bulk", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.616666699716518, 18.250000000261025] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-542", - "dateofocc": "2010-12-07", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "EGYPT: Chemical tanker boarded 7 Dec 10 at 1200 UTC while at anchor in position 31-16N 032-19E in Port Said, Egypt. Seven robbers in a boat boarded a chemical tanker during mooring operations. They approached the duty watchman with an iron rod and threa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.31666669957832, 31.266666699679263] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-543", - "dateofocc": "2010-12-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: A tanker (NORDIC APOLLO) was fired upon 13 Dec 10 at 1000 UTC while underway in position 13-09N 048-29E, approximately 90NM northwest of Al Mukallah, Yemen. Five pirates armed with guns and RPG in a skiff fired upon and attempted to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.483333299768333, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-21", - "dateofocc": "2011-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Pirate action group in 12-10N 043-43E at 0532Z on 04 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.716666699767131, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-544", - "dateofocc": "2010-12-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: A bulk carrier (RENUAR) was hijacked 11 Dec 10 at 0540 UTC while underway in position 06-09N 067-19E, approximately 360NM southwest of Minicoy Island. Pirates armed with guns and RPG in skiffs chased, fired upon, and boarded a bulk carrier", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.316666699810924, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-545", - "dateofocc": "2010-12-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: A tanker (UNITED STAR) was fired upon 10 Dec at 1454 UTC while underway in position 20-55N 062-47E, approximately 275NM SE of Muscat, Oman. Heavily armed pirates in two skiffs chased and fired upon a tanker underway. The tanker activated t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.783333300320749, 20.916666700288829] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-546", - "dateofocc": "2010-12-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: A container ship (MSC PANAMA) was hijacked 10 Dec at 1212 UTC while underway in position 09-57S 041-46E, approximately 240NM southeast of Dar es Salam, Tanzania. A container vessel was hijacked by armed pirates in two skiffs. All 23 crew m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.766666699569157, -9.950000000111345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-547", - "dateofocc": "2010-12-13", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM: Bulk carrier robbed 13 Dec 10 at 0026 local time while at anchor in position 10-14N 107-28E in Vung Tau outer anchorage. Four robbers boarded a wood chip carrier ship at anchor. Alert crew noticed the robbers and raised the alarm. The robbers e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.46666669980533, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-223", - "dateofocc": "2011-04-27", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "RESEARCH VESSEL", - "descriptio": "AROUND 115 MILES OFF COMOROS: Pirates in two skiffs approached a reserch vessel underway towing. Vessel raised alarm and the Mozambique military onboard the vessel went to standby.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.416666699602843, -10.733333299880314] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-224", - "dateofocc": "2011-04-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF GUINEA: Two robbers attempted to board a tanker 29 April at 2255 UTC while at anchor in position 06-06N 002-37E, approximately 22NM south of Porto Novo, Benin. Seven armed robbers approached the tanker in a boat. Two robbers tried to board the t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.616666699607094, 6.100000000272814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-225", - "dateofocc": "2011-05-02", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "RORO SHIP", - "descriptio": "PUERTO LIMON ANCHORAGE, COSTA RICA: Ten robbers managed to board a Roro ship at anchor. The robbers captured and tied up tow ship crew and kicked them and stole their property. The tied up crew managed to free themselves around 20 minutes after the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.016666700437383, 9.976666700312762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-226", - "dateofocc": "2011-05-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "AROUND 530 MILES OFF MINICOY ISLAND, INDIA: A wooden mother ship was seen launching a skiff. Four pirates armed with rpgs ad automatic weapons approached the container ship at around 25 knots. The pirates tried to circle the ship and tried to damage the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.900000000048351, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-227", - "dateofocc": "2011-05-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Watch keepers ad armed security team onboard a bulk carrier underway noticed a green and red hulled skiff with 8-9 persons onboard at a distance of 3-4 miles. The skiff was seen approaching the vessel at a speed of approximately 18 knots. W", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.313333300073964, 13.181666700133121] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-229", - "dateofocc": "2011-05-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "AROUND 190 MILES SOUTHEAST OF SALALAH, OMAN: Four armed pirates in a skiff approached a general cargo ship underway. As the pirates closed to 0.3 miles they fired at the vessel. The vessel took evasive maneuvers and contacted the coalition naval forces.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.216666699721713, 14.716666699728592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-228", - "dateofocc": "2011-04-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Cargo ship (NAXIHE) was fired upon by one skiff with 3-4 pirates onboard 28 April while underway in position 12-53N 048-20E, approximately 110NM southwest of Al Mukalla, Yemen. (Operator, Open Sources)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.333333300168192, 12.883333300235847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-230", - "dateofocc": "2011-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 540 MILES NORTHWEST OF MINICOY ISLAND, INDIA: Pirates armed with rpg and automatic weapons approached and boarded a bulk carrier underway. The master contacted authorities, company CSO and all crew retreated into the citadel. The navies in the are", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.800000000347211, 14.833333300433765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-231", - "dateofocc": "2011-05-05", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "DUMAI ANCHORAGE INDONESIA: Three armed robers boarded a chemical tanker at anchor via the poop deck and tool hostage the 3rd engineer. They entered the engine room and stole ship's properties. Duty oiler saw the robbers and informed the bridge who raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-232", - "dateofocc": "2011-05-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 280 MILES EAST OF SOCOTRA ISLAND, YEMEN: Two skiffs with firve pirates in each armed with rpg and automatic weapons chased and fired upon a bulk carrier underway. Ship sent distress message, raised alarm, increased speed and made evasive maneuvers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.338333299881072, 12.150000000333534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-233", - "dateofocc": "2011-05-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "AROUND 20 MILES SOUTH OF COTONOU, BENIN: Six pirates armed with guns boarded a taker underway. Pirates opened fire towards the bridge and accomodation. Pirates stole ships cash and crew personal belongings. Two crew members were manhandled and suffered m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.366666700273527, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-234", - "dateofocc": "2011-05-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "SALALAH, OMAN: Armed pirates in a skiff chased and fired upon a product tanker underway. The tanker took evasive maneuvers and contacted the coalition naval forces. The naval vessels in the area responded to the distress call and the pirates aborted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.783333300094341, 16.233333300299194] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-235", - "dateofocc": "2011-05-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPORT VESSEL", - "descriptio": "TAKORADI ANCHORAGE, GHANA: Around seven robers armed with knives in three fishing boats came close to a support vessel at anchor. Two robbers managed to board and steal ship properties during watch change over. Port authority informed. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.72333329997565, 4.903333300103668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-126", - "dateofocc": "2010-04-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (NADA) fired upon 9 Apr 10 at 1005 UTC while underway in position 13-38N 056-08E, approximately 115NM northeast of Socotra Island. Armed men in skiffs chased and fired upon the vessel using machine guns and RPGs. The vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.133333300060713, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-127", - "dateofocc": "2010-04-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship fired upon 8 Apr 10 at 0622 UTC while underway in position 13-43N 056-41E, approximately 150NM northeast of Socotra Island. Armed men in skiffs chased and opened fire on the vessel. The vessel increased speed, conducted eva", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.683333300393258, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-128", - "dateofocc": "2010-04-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: A pirate action group has been reported in 01-40S 057-37E at 0800 UTC 16 Apr 10. One motherskiff, two attack skiffs course 230, speed 6 knots.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.616666699587142, -1.666666699650136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-129", - "dateofocc": "2010-04-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship (THOR TRAVELLER) fired upon 14 Apr 10 at 2345 UTC while underway in position 12-42N 047-23E, approximately 125NM northwest of Bosasso, Somalia. Approximately seven men armed with RPGs and guns in a skiff chased and open", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.383333300002562, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-130", - "dateofocc": "2010-04-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker (SEMUA GEMBIRA) robbed 17 Apr 10 at 0600 local time while anchored in position 01-18.42N 104-12.7E, approximately 1NM south of Tanjung Ayam. Six robbers armed with swords and parangs boarded the vessel via the poop deck. They tied up t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.211666700118258, 1.306944399712279] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-131", - "dateofocc": "2010-04-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker fired upon 18 Apr 10 at 0725 UTC while underway in position 09-29N 068-56E, approximately 865NM southeast of Socotra Island and 430NM west of Kochi, India. Four men in a skiff armed with RPGs opened fire on the vessel. Counter-pira", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.933333300114896, 9.483333300305731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-132", - "dateofocc": "2010-04-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "STRAIT OF MALACCA: Tanker reported suspicious approach 17 Apr 10 at 1055 local time while underway in position 04-02.3N 099-45E, approximately 55NM northwest of Lumut, Malaysia. One fishing boat with a few persons onboard approached the tanker while dr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.749999999749093, 4.038333299801366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-133", - "dateofocc": "2010-04-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDIAN OCEAN: French warship (FS SOMME) fired upon 19 Apr 10 at 2101 UTC while underway approximately 400NM southeast of Mogadishu, Somalia. Two skiffs opened fire on the ship, causing the SOMME to return fire with warning shots. When the skiffs attempt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.499999999762508, -0.833333300189679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-134", - "dateofocc": "2010-04-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "NIGERIA: Container ship reported attempted boarding 12 Apr 10 at 1215 UTC while drifting in position 06-16.6N 003-26.9E, Lagos roads. Three men armed with automatic rifles in a fiberglass motor boat approached the vessel with intent to board. The duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.448333300115053, 6.276666700283045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-135", - "dateofocc": "2010-04-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 21 Apr 10 at 1050 UTC while underway in position 01-10.05N 065-00.08E, approximately 665NM northeast of Port Victoria, Seychelles.Four men in a blue skiff armed with RPGs and automatic weapons opened fire on the ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.999999999749434, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-136", - "dateofocc": "2010-04-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (VOC DAISY) hijacked 21 Apr 10 at 0605 UTC while underway in position 16-25N 057-13E, approximately 280NM northeast of Socotra Island. Suspected pirates in skiffs boarded and hijacked the vessel, taking 21 crewmembers hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.216666699754057, 16.416666699693678] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-137", - "dateofocc": "2010-04-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "INDIAN OCEAN: Fishing vessels (PRANTALAY 11) (PRANTALAY 12) (PRANTALAY 14) hijacked 18 Apr 10 at 0200 UTC while underway in position 09-29N 069-18E, approximately 230NM northwest of Minicoy Island, India. Armed men in skiffs opened fire on the three fi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.299999999978411, 9.483333300305731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-138", - "dateofocc": "2010-04-19", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT AND BARGE", - "descriptio": "SOUTH CHINA SEA: Tug (PU 2007), towing barge (PU 3316) reportedly hijacked 19 Apr 10 at 2328 local time while underway in position 04-25.51N 104-18.92E, approximately 57NM northeast of Kuantan, Malaysia. The tug activated its SSAS while underway at the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.315277799756586, 4.425277800366302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-322", - "dateofocc": "2010-09-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIPS", - "descriptio": "SOMALIA: Possible mothership activity in 06-59N 049-24E on 20 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.399999999964393, 6.983333299775211] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-323", - "dateofocc": "2010-09-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIPS", - "descriptio": "SOMALIA: Piracy action group reported in 01-17N 052-51E at 190847 UTC Sep. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.849999999761224, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-324", - "dateofocc": "2010-09-18", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "HAIPHONG ROADS, VIETNAM: About 20 armed robbers boarded a container ship at anchor. Duty crew noticed the robbers on the forecastle deck and informed the duty officer who instructed him to secure all access points around the accommodation. Alarm raised a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.871666699862544, 20.643333299875223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-325", - "dateofocc": "2010-09-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "DOUALA PORT, CAMEROON: Two robbers armed with knives in a boat boarded a berthed general cargo ship during heavy rain. They opened the locked mast house but were noticed by duty crew. The robbers escaped with ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.699999999669785, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-326", - "dateofocc": "2010-09-16", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "RO-RO", - "descriptio": "PORT AU PRINCE ANCHORAGE, HAITI: Duty crew on a RO-RO ship spotted one robber armed with knife on the aft deck. Alarm raised. The robbers jumped overboard and swam to a waiting boat and escaped. On investigating it was discovered that ship's stores were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.525000000134014, 18.568333299560834] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-327", - "dateofocc": "2010-09-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TOWED VESSEL", - "descriptio": "BONNY RIVER, NIGERIA: About 21 armed pirates in three crafts boarded a pipe layer crane vessel undertow. All crew locked themselves in accomodations. Pirates were able to take one crewmember as a hostage. Master called Nigerian naval vessel in vicinity.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.909999999552554, 3.831666699875711] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-328", - "dateofocc": "2010-09-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDIAN OCEAN: Possible mothership activity in 06-37N 065-30E at 241245 UTC Sep. This area will remain high risk for atleast 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.500000000215266, 6.61666669973647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-332", - "dateofocc": "2010-09-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Research vessel fired upon 26 Sep 10 at 2050 UTC while underway in position 06-54S 040-27E, approximately 80NM east of Dar es Salaam. Two to three skiffs opened fire. The pirates aborted attack after vessel returned fire. No injuries reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.450000000439388, -6.9000000001476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-333", - "dateofocc": "2010-09-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "TANZANIA: Chemical tanker (MISSISSIPPI STAR) fired upon 28 Sep 10 at 0747 UTC while underway in position 06-28S 039-48E, approximately 40NM northeast of Dar es Salaam. Five pirates armed with M16s and RPG on a speedboat approached along the starboard sid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.800000000373416, -6.466666700345002] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-334", - "dateofocc": "2010-09-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Mothership activity vicinity 10-38N 056-44E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.733333300259972, 10.633333299938215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-335", - "dateofocc": "2010-09-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Mothership activity in vicinity 10-11N 057-05E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.083333300226343, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-337", - "dateofocc": "2010-09-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship reported suspicious approach 29 Sep 10 at 0455 UTC while underway in position 06-47.5N 061-51.0E, approximately 650NM east of Garacad, Somalia. Five men on one skiff with AK-47s and hook ladders approached from stern. Master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.850000000019918, 6.783333300308357] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-338", - "dateofocc": "2010-09-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TANZANIA: Asphalt tanker (ASPHALT VENTURE) hijacked 29 Sep 10 at 0058 UTC while underway in position 07-09S 040-59E, approximately 100NM southeast of Dar es Salaam, Tanzania. Currently, the vessel is transiting north, reportedly toward Harardheere on t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.98333329997547, -7.150000000380544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-339", - "dateofocc": "2010-09-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel hijacked in 07-11S 041-02E at 282036 UTC Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.033333299842184, -7.183333300350114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-340", - "dateofocc": "2010-09-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "OMAN: Four skiffs chasing a general cargo ship present in 17-35N 056-55E at 290915 UTC Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.916666699654456, 17.583333300297909] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-341", - "dateofocc": "2010-09-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SELAT BERHALA, INDONESIA: Twelve pirates armed with knives borded a tug towing a barge. Crew enforced anti-piracy measures and contacted owners. Owners contacted the IMB piracy reporting center and requested assistance. The center immediately contacted t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.307777800271197, -0.883333300056449] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-548", - "dateofocc": "2010-12-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (DOUBTLESS) was fired upon 19 Dec 10 at 0909 UTC while underway in position 19-04N 062-10E, approximately 475nm NE of Salalah, Oman. Two pirates attempted to board the vessel by using ladders. Due to evasive maneuvers and e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.166666700049063, 19.066666699824339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-549", - "dateofocc": "2010-12-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "950 MILES EAST OF MOGADISHU: Pirates attacked and hijacked a bulk carrier (ORNA) and took her 19 crew members hostage. Pirates are sailing the vessel towards Somalia. Vessels are advised to keep 100 miles clear of this position and to exercise extreme ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.533333300023116, -1.76666670028294] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-550", - "dateofocc": "2010-12-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Hijacked merchant vessel IZUMI conducting mothership operations in 12-22.1N 062-05.1E at 212341Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.085000000415107, 12.368333299899916] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-551", - "dateofocc": "2010-12-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 12-10N 060-31E at 220312Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.516666699950747, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-552", - "dateofocc": "2010-12-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attcked in 17-03N 062-45E at 220428Z Dec. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.750000000351179, 17.049999999862507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-1", - "dateofocc": "2010-12-23", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "DREDGER", - "descriptio": "PERU: Dredger robbed 23 Dec 10 at 0430 local time while at anchor in position 12-02.47S 077-09.21W, in the north break water of Callao anchorage. Four robbers in a small boat armed with guns and knives approached a dredger from the port side. They start", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.153611099851275, -12.041111100072555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-2", - "dateofocc": "2010-12-16", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "RORO", - "descriptio": "EGYPT: Roll-on roll-off ship was robbed 16 Dec 10 at 1430 UTC while at anchor in position 31-14N 032-18E, in the inner waiting area of Port Said. About 20 robbers from a boat boarded a RoRo cargo ship during anchoring operations. The robbers broke the p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.299999999681177, 31.233333299884976] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-3", - "dateofocc": "2010-12-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker robbed and hijacked 24 Dec 10 at 2220 UTC while at anchor in position 06-07.7N 002-37.2E, approximately 60NM southwest of Lagos. 15 armed men boarded an anchored chemical tanker. The robbers were very violent with the crew and m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.619999999836523, 6.128333299985911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-4", - "dateofocc": "2010-12-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (EMS RIVER) was hijacked 27 Dec at 1303 UTC while underway in position 17-57N 057-43E, approximately 225NM northeast of Salalah, Oman. Pirates using a previously hijacked tanker attacked and hijacked a general cargo ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.716666700219889, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-5", - "dateofocc": "2010-12-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (SIGLOO STAR) was chased 27 Dec 10 at 1200 UTC while underway in position 15-17N 056-22.8E, approximately 160NM southeast of Salalah, Oman. Skiffs launched from a previously hijacked vessel chased an LPG tanker. The tanker enforced", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.380000000064229, 15.283333300133563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-6", - "dateofocc": "2010-12-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (SHIUH FU 1) was hijacked 25 Dec 10 at 1000 UTC while underway in position 12-58.9S 051-52.01E, approximately 120NM east of Nosy Ankao, Madagascar. Pirates hijacked a fishing vessel along with her 26 crew members. A previou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.866666699626023, -12.981666699975619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-7", - "dateofocc": "2010-12-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MOZAMBIQUE CHANNEL: Bulk carrier (MAJESTIC) was fired upon 25 Dec 10 at 0830 UTC while underway in position 19-04S 038-42E, approximately 185NM east of Beira, Mozambique. Eight pirates in a skiff chased and fired upon a bulk carrier underway. Pirates ab", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [38.699999999708268, -19.066666700033011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-8", - "dateofocc": "2010-12-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (THOR NEXUS) was hijacked 25 Dec 10 at 0140 UTC while underway in position 16-01N 060-12E, approximately 380NM east of Salalah, Oman. Pirates boarded and hijacked a general cargo ship underway with her 27 crew members ho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.199999999953945, 16.016666699860593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-236", - "dateofocc": "2011-05-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "AROUND 220 MILES SOUTH OF RAS AL HAD, OMAN: Pirates in a skiff armed with rpg and guns chased and fired upon a product tanker underway. Master raised alarm, took evasive maneuvers and instructed crew to proceed into citadel. Armed security team took meas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.533333299990773, 18.699999999960824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-237", - "dateofocc": "2011-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF OMAN: Two skiffs approached a container ship. The vessel altered course, increased speed raised alarm, crew went to citadel. There were four pirates in each boat. Long rods attached with hooks and ladders were noticed on the skiffs. The skiffs fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.113333299998828, 25.296666700124717] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-238", - "dateofocc": "2011-05-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "COTONOU ANCHORAGE, BENIN: Armed robbers boarded a chemical tanker at anchor. They threatened and assaulted some crew members. Robbers stole ship's properties, crew personal properties and escaped. One crew member remains missing.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.444999999853337, 6.264999999743054] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-239", - "dateofocc": "2011-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 235 MILES EAST OF SALALAH, OMAN: Pirates in two skiffs armed with rpgs and guns chased and fired upon a bulk carrier underway. Master raised alarm, SSAS activated increased speed, took evasive maneuvers and contacted warships for assistance. Due t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.000000000422403, 17.566666700225483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-240", - "dateofocc": "2011-05-07", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GUAYAQUIL INNER ANCHORAGE, ECUADOR: 12 robbers in two boats armed with guns approached a container ship at anchor. They boarded the ship using hooks and ladders. Master raised alarm, activated SSAS and crew locked all accomodation doors. The robbers stol", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.966666699574318, -2.333333299788535] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-241", - "dateofocc": "2011-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk cargo ship (FULL CITY) was boarded by pirates on 05 May at 0330Z while underway in position 14-58N 066-38E, approximately 415 miles west of Goa, India. (UKMTO, Open Sources)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.633333299950607, 14.966666699961536] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-242", - "dateofocc": "2011-05-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "AROUND 190 MILES OFF RAS AL HAD, OMAN: Pirates in a dhow and a skiff chased a chemical tanker underway. Master raised alarm, icreased speed and took evasive maneuvers resulting in the pirates aborting the attempted attack. There were 4-5 pirates in the s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.316666699584516, 19.216666700323799] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-243", - "dateofocc": "2011-05-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "AROUND 304 MILES WEST OF MINICOY ISLAND, INDIA: About five pirates in a skiff chased and fired upon a LPG tanker underway. Ship raised alarm, increased speed and took evasvie maneuvers resulting in the pirates aborting the attempted attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.883333300215838, 8.5333333001401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-244", - "dateofocc": "2011-05-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "AROUND 220 MILES OFF SOCOTRA ISLAND, YEMEN: A general cargo ship underway spotted a mother vessel launch a skiff which approached the ship at 25 knots. Duty officer raised alarm, increased speed, altered course SSAS activated, security team onboard alert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.936666699813316, 13.911666699806005] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-245", - "dateofocc": "2011-05-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN: A small fast contact was noticed on radar approaching a container ship underway at 4 miles. Duty officer monitored the contact and at a distance of 1.6 miles it was observed as a skiff and alarm was raised. When the skiff approached at a di", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.616666700195424, 13.178333300078975] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-246", - "dateofocc": "2011-05-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "AROUND 110 MILES OFF SOCOTRA, YEMEN: Pirates in a skiff chased and fired upon on a container ship underway. The ship made evasive maneuvers and enforced anti-piracy preventive measures and as a result the pirates aborted the attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.4166667000556, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-247", - "dateofocc": "2011-05-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "AROUND 145 MILES OFF MASQAT, OMAN: Four pirates in a skiff armed with guns chased, fired upon and attepted to board a tanker underway. Master raised alarm, increased speed, took evasive maneuvers, sent distress messages, contacted authorities and crew ac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.183333300089089, 24.183333299791855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-248", - "dateofocc": "2011-05-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "AROUND 160 MILES OFF DAR ES SALAAM, TANZANIA: Five pirates in a skiff attempted to attack a fishing vessel underway. The security team onboard fired warning shots resulting in the pirates aborting the attempt. A mother vessel was sighted in the vicinity.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.933333300108757, -8.983333300048571] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-139", - "dateofocc": "2010-04-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (STAR YPSILON) robbed 9 Apr 10 at 0200 local time while underway in position 03-19.1N 105-28.9E, approximately 20NM northwest of Pulau Jemaja, Indonesia. Seven men armed with guns and long knives boarded the vessel and stol", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.481666699610741, 3.318333299742164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-22", - "dateofocc": "2011-01-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 19-35N 065-13E at 1503Z on 03 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.216666700012809, 19.583333300362597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-140", - "dateofocc": "2010-04-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTH CHINA SEA: Chemical tanker (THERESA LIBRA) robbed 7 Apr 10 at 2300 local time while underway in position 02-44.2N 105-16.3E, approximately 6NM west of Pulau Damar, Indonesia. While underway at approximately 12 knots, eight men armed with knives b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.271666699630885, 2.736666700366413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-141", - "dateofocc": "2010-04-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 06-00S 045-00E on 22 Apr. Mariners are advised to keep clear of this area if possible. Area is considered high risk for atleast the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.00000000000199, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-142", - "dateofocc": "2010-04-04", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Motor vessel attacked in 09-20S 044-32E at 041406 UTC Apr. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.53333330040499, -9.333333300014942] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-143", - "dateofocc": "2010-03-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "WESTERN INDIAN OCEAN: Pirates armed with guns in two skiffs chased and fired upon a product tanker underway. Master raised alarm took anti-piracy measures, increased speed and managed to evade the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.049999999706984, -5.049999999683109] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-144", - "dateofocc": "2010-03-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 00-59S 057-19E at 280830 UTC Mar. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.316666700386804, -0.983333299789876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-147", - "dateofocc": "2010-04-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-59N 065-49E at 250348 UTC Apr. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.816666700212068, 17.983333300130937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-145", - "dateofocc": "2010-04-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Mothership reported in 00-30S 053-04E at 210757 UTC Apr. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.066666700024541, -0.500000000120508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-146", - "dateofocc": "2010-04-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDIAN OCEAN: Pirate vessels sighted in 08-20N 053-58E at 232300 UTC Apr. Vessels have blue and white hulls separated by red line. Vessels passing within 100 miles are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.966666700323458, 8.333333299773926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-148", - "dateofocc": "2010-04-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: A merchant vessel reported coming under fire at 0242 UTC on 22 Apr in position 14-51N 065-14E. Attack consisted of one white skiff with four persons on board armed with AK-47s. Attack has ceased and crew reports safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.233333300085178, 14.850000000330965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-149", - "dateofocc": "2010-04-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "WESTERN INDIAN OCEAN: A bulk carrier reported coming under fire 21 Apr at 1050 UTC while underway in position 01-10.05N 065-00.08E. Four men in a blue skiff armed with rpgs and automatic weapons opened fire on the vessel for approximately three minutes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.999999999749434, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-150", - "dateofocc": "2010-04-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SOUTH CHINA SEA: A tug boat has been hijacked. Last position sighted at 181915 UTC Apr is near Anambas Islands 03-00N 106-00E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.000000000176044, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-151", - "dateofocc": "2010-04-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "OFF LAGOS, NIGERIA: 3RD officer on a product tanker noticed on radar a boat approaching from the port bow. When Aldis lights were directed at the boat, the boat stopped and turned towards another vessel. Later the boat approached the tanker from astern.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.348611100057155, 6.168333300238999] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-152", - "dateofocc": "2010-04-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUB BOAT AND BARGE", - "descriptio": "SOUTH CHINA SEA: Tug (PU 2402) robbed 27 Apr 10 at 2138 local time while underway in position 04-44.16N 103-58E, approximately 70NM northeast of Kuantan, Malaysia. Seven robbers in a small boat came along the port side of the vessel. Six of the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 4.736111100180722] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-330", - "dateofocc": "2010-09-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Tanzanian Navy patrol boat fired upon 25 Sep 10 at 2000 UTC while underway in position 09-34S 040-14E, approximately 175NM southeast of Dar es Salaam. One skiff with four pirates onboard armed with small arms and RPG approached and fired upon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.233333300176014, -9.56666670017546] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-336", - "dateofocc": "2010-09-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo vessel (LUGELA) reported illegal boarding 25 Sep 10 at 0300 UTC while underway in position 07-23N 064-49E, approximately 930NM east of Garacad, Somalia. The pirates boarded the vessel but never gained control. The crew disabl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.816666700179724, 7.383333299608296] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-342", - "dateofocc": "2010-09-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BANGLADESH: General cargo ship (BM ADVENTURE) robbed 24 Sep 10 at 2210 local time while at anchorage in Chittagong at position 22-10.9N 091-40.7E. Four robbers in one boat boarded a ship from astern during anchoring operations. Duty watchman noticed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.678333300369331, 22.181666700424216] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-343", - "dateofocc": "2010-09-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Piracy action group sighted in vicinity 12-22N 043-58E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.966666700000076, 12.366666699697589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-344", - "dateofocc": "2010-09-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOUTHERN ARABIAN SEA: Piracy action group sighted in vicinity 07-34N 057-39E. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [57.649999999556712, 7.5666666999021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-345", - "dateofocc": "2010-10-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "WESTERN INDIAN OCEAN: Three pirates armed with automatic guns in a small white colored craft approached a bulk carrier underway. At a distance of around 400 meters from the ship the pirates opened fire. Master raised alarm, increased speed and crew activ", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.59666670013354, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-346", - "dateofocc": "2010-10-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Piracy action group sighted in 13-22N 049-31E at 031615 UTC Oct. Vessels transiting the area are advised to keep 100 miles clear of this area and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.516666699594964, 13.366666699729933] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-347", - "dateofocc": "2010-10-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "ARABIAN SEA: Possible pirate mothership operating within 200 miles of 06-50N 065-00E. This area will remain high risk for the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.999999999749434, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-348", - "dateofocc": "2010-10-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing Vessel (FENG GUO NO. 168) possibly hijacked 06 Oct 10 while underway approximately 270NM east of Madagascar. The vessel departed Port Lewis, Mauritius on 1 Oct and transited northwest. The company reported that they lost contact wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.383333300261256, -15.816666699703092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-349", - "dateofocc": "2010-10-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Tanker boarded and three crewmembers kidnapped 1 Oct 2010 at 0100 local time while in position 04-03.45N 006-48.07E, approximately 25NM southwest of Bonny Island. Heavily armed men boarded a tanker and kidnapped the chief engineer, 2nd officer,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.801111099982222, 4.057499999826803] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-350", - "dateofocc": "2010-10-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Two robbers armed with long knives in a boat boarded a bulk carrier at anchor using a rope attached with a hook. Crew raised alarm and informed coast guard. Robbers escaped with ship's stores. The coast guard later arriv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.149999999757654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-351", - "dateofocc": "2010-10-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Two robbers armed with long knives attempted to board a vehicle carrier using bamboo stick. Anti-piracy watch raised the alarm and crew mustered. Seeing crew alertness the robbers jumped overboard and escaped in their bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.72055560000058, 22.19777780007098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-352", - "dateofocc": "2010-10-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "OFF BATU PUTIH, MALAYSIA: Robbers boarded a container ship at anchor and stole ship's properties. Upon noticing the store rooms broken into, the duty A/B raised the alarm. Crew mustered and searched the ship but the robbers had already escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.350277799753258, 1.369444400220175] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-353", - "dateofocc": "2010-10-02", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BRAZIL: Bulk carrier boarded 2 Oct 10 at 0345 local time while at anchorage in position 01-31.4S 048-45.6W in Vila do Conde. Five robbers in a wooden boat boarded a bulk carrier at anchor. They attempted to steal the ship's properties but were noticed b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.759999999720719, -1.523333299609476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-9", - "dateofocc": "2010-12-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MOZAMBIQUE CHANNEL: Tanker (NS AFRICA) reported a suspicious approach 24 Dec 10 at 1528 UTC while underway in position 18-51S 039-53E, approximately 115NM southeast of Macalonga Point, Mozambique. A mother vessel was spotted on radar at a range of 14NM", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.883333300209699, -18.849999999769636] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-10", - "dateofocc": "2010-12-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (NORD STRAIT) reported an attempted boarding 22 Dec 10 at 0350 UTC while underway in position 17-00N 062-53E, approximately 500nm east of Salalah, Oman. One skiff with six pirates armed with RPGs and AK-47s fired on and att", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.883333300054176, 16.999999999995794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-11", - "dateofocc": "2010-12-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo ship (THOR NAUTILUS) was fired upon 22 Dec 10 at 0300 UTC while underway in position 12-10N 062-31E, approximately 470nm east of Socotra Island. Due to evasive maneuvering, the hijack was evaded. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.516666700015378, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-12", - "dateofocc": "2010-12-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (ORNA) was hijacked 20 Dec 10 at 1129 UTC while underway in position 01-42S 060-52E, approximately 950nm east of Mogadishu. Pirates took all 19 crewmembers hostage. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.866666699917062, -1.699999999619706] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-13", - "dateofocc": "2010-12-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE: Tug boat was robbed 23 Dec 10 at 1940 UTC while underway in position 01-12.32N 103-34.18E, approximately 5NM southeast of Tg Piai, TSS westbound lane, Singapore. Eight armed pirates boarded a tug underway and held all other crew except the ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.56972219996328, 1.205277799776525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-14", - "dateofocc": "2011-01-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "430 MILES WEST OF MUMBAI, INDIA: Two skiffs chased a tanker underway and opened fire with automatic weapons. The tanker enforced anti-piracy measures and succeeded in evading the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.216666700012809, 19.583333300362597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-15", - "dateofocc": "2011-01-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "320 MILES OFF SALALAH, OMAN: Two skiffs chased a general cargo ship underway. Master raised alarm, increased speed, took evasive maneuvers and crew threw empty drums to deter the skiffs. Finally, the skiffs stopped chasing the ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.393333300004258, 15.483333299600474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-16", - "dateofocc": "2011-01-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "575 MILES EAST OF SOCOTRA ISLAND: Pirates armed with guns chased and fired upon a tanker underway. The master increased speed, took evasive maneuvers and managed to evade the attempting boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.765000000253565, 14.883333300300478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-17", - "dateofocc": "2011-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (BLIDA) was hijacked 1 Jan at 1536Z while underway in position 15-28N 055-51E, approximately 130 miles off Salalah, Oman. The 27crew members were taken hostage. The HANNIBAL II was also in the area and probally acting as a mot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.849999999858198, 15.466666700427368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-18", - "dateofocc": "2011-01-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "OFF SOMALIA: Armed pirates chased a tug underway. The tug released the barge it was towing to increase speed and maneuverability. Security team onboard fired flares. The skiffs later aborted the attack and rejoined a previously hijacked vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.283333299757885, 2.683333300445554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-19", - "dateofocc": "2011-01-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Six pirates in a skiff chased, fired upon and attempted to board a chemical tanker underway. Due to evasive maneuvers and effective anti-piracy measures, the hijack was evaded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.816666699662278, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-20", - "dateofocc": "2011-01-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "672 MILES EAST OF HOBYO, SOMALIA: Twelve armed pirates in two skiffs chased and fired upon an anchor handling tug underway. Due to evasive maneuvers and effective anti-piracy measures the hijack was evaded. Suspected pirates mothership sighted nearby.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.549999999887916, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-251", - "dateofocc": "2011-05-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "OFF COTONOU, BENIN: Armed pirates boarded a chemicl tanker at anchor waiting for STS operations. They hijacked the tanker to an unknown location. The pirates stole ship's properties, crew personal belongings and some cargo and left the tanker on 16 May", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.433333300212666, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-252", - "dateofocc": "2011-05-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BELAWAN ANCHORAGE, INDONESIA: Two robbers boarded a chemical tanker at anchor. Duty crew spotted the robbers and informed 2nd officer who raised the alarm. Upon seeing the crew alertness, the robbers escaped empty handed in an unlit boat. Inspection reve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-253", - "dateofocc": "2011-05-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 11-56S 058-41E at 1415Z on 18 May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.683333299558626, -11.933333300278889] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-254", - "dateofocc": "2011-05-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo vessel (PUNCHDAN) was fired upon by two skiffs 17 May at 0556Z while underway in position 06-50N 051-22E, approximately 122 miles southeast of Garacad, Somalia. (UKMTO)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.366666700059511, 6.83333330017507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-255", - "dateofocc": "2011-05-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "SOUTH CHINA SEA: A barge was robbed 15 May at 0105 LT while underway in position 01-14.97N 104-06.81E, approximately 16 miles southeast of Singapore. Eight robbers in a sampan (small wooden boat) boarded the stern of the barge. The robbers stole ropes a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.113611100262631, 1.249444400360176] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-256", - "dateofocc": "2011-05-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: A merchant vessel reported coming under attack at 0651Z on 20 May in position 13-15N 043-01E, approximately 114 miles southwest from Hodeidah, Yemen in the Red Sea. Vessels are advised to keep 100 miles clear of this position and to exercise ex", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.016666699834445, 13.250000000099305] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-257", - "dateofocc": "2011-05-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CONARKY ANCHORAGE, GUINEA: Ten robbers armed with guns attacked, fired upon and boarded a general cargo ship at anchor. They threatened the crew members and stole ship's cash, properties, crew's cash and personal belongings and escaped. No injuries to cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.74000000026092, 9.423888900176451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-258", - "dateofocc": "2011-05-22", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SURABAYA INNER ANCHORAGE, INDONESIA: Robbers boarded an anchored bulk carrier via the poop deck. They stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.666666700333167, -7.116666700410974] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-259", - "dateofocc": "2011-05-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "HON GAI OUTER ANCHORAGE, VIETNAM: Four robbers boarded a bulk carrier at anchor. Alert duty officer noticed the robbers and raised the alarm. Crew rushed to the forecastle. Seeing crew alertness the robbers escaped empty handed in a small boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.233333299644812, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-260", - "dateofocc": "2011-05-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MUARA JAWA ANCHORAGE SAMARINDA, INDONESIA: Robbers boarded a bulk carrier at anchor unnoticed. Duty officer noticed unlit boat moving away from shipside with a trailing mooring rope. He immediately engaged the mooring winch gear to stop the outrun of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.266666699762482, -1.166666700083624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-261", - "dateofocc": "2011-05-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: A mother vessel was seen launching a skiff which chased and fired upon a chemical tanker underway. Master enforced anti-piracy measures and the ship's security team onboard returned fire resulting in the pirates aborting the attack and moving aw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.216666700168275, 14.516666700261737] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-262", - "dateofocc": "2011-05-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 460 MILES OFF SOCOTRA ISLAND: Pirates in two skiffs chased and fired upon a bulk carrier underway damaging bridge windows and the life boat. On two occasions the pirates managed to come along side the vessel and as they attempted to latch the lad", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.750000000318835, 15.733333299833362] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-263", - "dateofocc": "2011-05-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "16 MILES SOUTH OF RASE JASK, IRAN: Five skiffs with about five persons onboard in each shiff approached a container ship underway. The persons onboard the skiffs seemed to be carrying weapons similar to rpgs. Two of the skiffs approached the vessel and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.516666699853715, 25.483333299923856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-154", - "dateofocc": "2010-04-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Pirate boats chased and attempted to board a bulk carrier underway. Master increased speed and carried out evasive maneuvers. After about 80 minutes, pirates aborted the attempt and moved away. No casualties and no damage to ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.961666699711259, 13.76999999979239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-155", - "dateofocc": "2010-04-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SOUTHERN RED SEA: Two skiffs were sighted at a distance of one mile from a chemical tanker underway. Suddenly, one skiff with high speed approached and came very close to the tanker. Four pirates armed with guns and an aluminium ladder was seen in the sk", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.999999999937302, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-156", - "dateofocc": "2010-04-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker fired upon 25 Apr 10 at 0348 UTC while underway in position 17-59N 065-49E, approximately 815NM northeast of Socotra Island. Six men armed with automatic weapons and RPGs in a white skiff chased and opened fire on the vessel. The v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.816666700212068, 17.983333300130937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-157", - "dateofocc": "2010-04-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (ISUZUGAWA) fired upon 25 Apr 10 at 0215 UTC while underway in position 18-06N 065-47E, approximately 815NM northeast of Socotra Island. Four men armed with automatic weapons and RPGs in a white skiff chased and opened fire on the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.783333300417723, 18.099999999761565] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-158", - "dateofocc": "2010-04-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (PYXIS DELTA) fired upon 23 Apr 10 at 0242 UTC while underway in position 14-51N 065-14E, approximately 640NM northeast of Socotra Island. Five armed men in a skiff chased and opened fire on the vessel with RPGs and automatic weapon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.233333300085178, 14.850000000330965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-159", - "dateofocc": "2010-04-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYSIA: Chemical tanker reported attempted boarding 22 Apr 10 at 0300 local time while anchored in position 01-19.8N 104-16.1E, Eastern OPL anchorage. Three robbers in a boat attempted to board the vessel. The duty watchman on deck spotted the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.268333300443771, 1.330000000217467] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-160", - "dateofocc": "2010-04-21", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VIETNAM: Tanker robbed 21 Apr 10 at 0308 local time while anchored in position 10-13.7N 107-05E, Vung Tau. Armed men boarded the tanker. The duty watchman from the bridge spotted the robbers and raised the ship's alarm. The robbers escaped with ship¿s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.083333300044671, 10.228333299848714] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-161", - "dateofocc": "2010-05-01", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT AND BARGE", - "descriptio": "SOUTH CHINA SEA: A tug boat was attacked in 03-50N 103-41E at 012230 UTC May. Authorities were notified and fishing vessel in question was detained for further investigation. Caution advised.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 3.833333300078039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-162", - "dateofocc": "2010-05-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "LAGOS, NIGERIA: Seven robbers armed with rifles and knives boarded a bulk carrier during anchoring operations. They assaulted the master and 3rd officer. The masters eye was injured and both the master and 3rd officer received head injuries resulting in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.358333299995252, 6.298333299712624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-163", - "dateofocc": "2010-05-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Three robbers armed with long knives boarded a general cargo ship carrying out cargo operations at a moorig buoy. Duty A/B noticed the robbers who tried to catch him. The A/B ran to the gangway and informed another A/B w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.816666700153576, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-164", - "dateofocc": "2010-04-28", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VUNG TAU, VIETNAM: Two robbers boarded a container ship at anchor. Duty watchman sighted the robbers and vessel immediately raised alarm and ship's horn. Robbers managed to escape with ship's stores. Port authority informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.128333299654912, 10.226666699646387] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-165", - "dateofocc": "2010-05-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 01-59N 051-45E at 050912 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.749999999995396, 1.983333299613548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-166", - "dateofocc": "2010-05-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Bulk carrier (OCEAN TRADER) fired upon 5 May 10 at 0520 UTC while underway in position 09-43S 041-15E, approximately 210 miles southeast of Dar es Salaam, Tanzania. Armed men in a skiff chased the vessel underway and opened fire on it. An e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.250000000105501, -9.716666699775601] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-354", - "dateofocc": "2010-10-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel hijacked in 13-49.8S 054-27.6E on 08 Oct. Awaiting further details.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.459999999606396, -13.830000000380721] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-355", - "dateofocc": "2010-10-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Vessel attacked in 04-59.4N 067-06.4E at 101115Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.106666699831067, 4.989999999994097] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-356", - "dateofocc": "2010-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 04-42S 040-07E at 100600Z Oct. Vessels are advised to keep 1000 miles clear of this postion and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.11666670037016, -4.699999999716738] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-357", - "dateofocc": "2010-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN, TANZANIA: Merchant vessel attacked in 09-52S 040-08E at 101911Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.133333300442587, -9.866666700275061] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-358", - "dateofocc": "2010-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN, KENYA: Merchant vessel attacked in 03-28S 040-49E at 101338Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.816666700302903, -3.46666670024797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-359", - "dateofocc": "2010-09-25", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BRAZIL: Bulk carrier robbed 25 Sep 10 at 0245 local time while at anchorage in position 01-05.6S 048-27.8W in Mosqueiro. Six robbers armed with knives in a four meter, black-colored wooden boat approached an anchored bulk carrier. They boarded the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.463333299850433, -1.09333330003625] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-360", - "dateofocc": "2010-09-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA: Bulk carrier robbed 23 Sep 10 at 1945 local time while at berth in Lagos. Five robbers armed with knives boarded a bulk carrier at berth. The robbers threatened one of the deck watch keepers, took his walkie talkie, and locked him in the paint s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-361", - "dateofocc": "2010-09-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: General cargo ship robbed 22 Sep 10 at 2200 UTC while in berthed in position 06-26.5N 003-23.2E in Apapa port. Four robbers armed with a gun, a knife, and two sticks boarded a berthed general cargo ship via speed boat. They took hostage the dut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.386666700432386, 6.441666699753284] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-362", - "dateofocc": "2010-10-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "RED SEA: Crude oil tanker reported suspicious approach 3 Oct 10 while underway in position 15-27N 041-31E, approximately 120NM east of Massawa, Yemen. Two small white and blue-colored, 5-6 meter long crafts approached. Tanker transmitted a message to an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.516666700235589, 15.449999999630904] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-363", - "dateofocc": "2010-10-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker chased 3 Oct 10 at 1430 UTC while underway in position 13-21.2N 049-29.1E, approximately 88NM southeast of Al Mukalla, Yemen. Five pirates wearing face masks and armed with guns in a skiff chased a tanker underway. Master raised ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.484999999827721, 13.353333300062161] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-364", - "dateofocc": "2010-10-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "BANGLADESH: Vehicle carrier boarded 2 Oct 10 at 1530 UTC in position 22-11.86N 091-43.24E at anchorage in Chittagong. Two robbers armed with long knives attempted to board a vehicle carrier using a bamboo stick. Counter-piracy watch raised alarm and cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.72055560000058, 22.19777780007098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-365", - "dateofocc": "2010-10-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier reported suspicious approach 2 Oct 10 at 0830 UTC while underway in position 03-53.0N 050-35.8E, approximately 153NM southeast of Harardheere, Somalia. Three pirates armed with automatic guns in a small, white craft approached", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.59666670013354, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-366", - "dateofocc": "2010-10-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SINGAPORE STRAITS: Container ship robbed 3 Oct 10 at 0430 local time while at anchor in position 01-22.16N 104-21.01E off Batu Putih, Malaysia. Robbers boarded a container ship at anchor and stole ship's properties. Upon noticing the store rooms broken", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.350277799753258, 1.369444400220175] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-26", - "dateofocc": "2011-01-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: A merchant vessel reported being attacked at 0800Z on 02 Jan in position 17-57N 066-10E, approximately 338 miles southwest of Mumbai, India. This area will remain high risk for atleast the next 24-48 hours. Vessels are advised to ke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.166666700178382, 17.950000000161424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-27", - "dateofocc": "2011-01-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 20-00N 064-00E at 0232Z on 06 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.99999999971709, 20.000000000092768] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-28", - "dateofocc": "2011-01-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 21-04N 063-19E at 0901Z on 06 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.316666699681548, 21.066666699889026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-29", - "dateofocc": "2011-01-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (MAERSK PELICAN) was fired upon 3 Jan at 1503Z while underway in position 19-35N 065-13E, approximately 430 miles west of Mumbai, India. Pirates in a small high speed boat approached from the stern, and fired upon the tanker with ha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.216666700012809, 19.583333300362597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-30", - "dateofocc": "2011-01-03", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "330 MILES OFF SALALAH, OMAN: Pirates in two skiffs armed with automtic guns and rpgs chased and fired upon a tanker underway with intent to hijack. Master raised alarm, contacted authorities for assistance, increased speed and took evasive maneuvers. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.816666700018004, 15.799999999597219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-31", - "dateofocc": "2011-01-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "LPG CARRIER", - "descriptio": "ARABIAN SEA: LPG Carrier (BW AUSTRIA) was fired upon 6 Jan at 0700 UTC while underway in position 21-10.4N 063-17.4E, approximately 205NM ESE of Ras Al Hadd, Oman. Five armed pirates fired upon the vessel, and an RPG made a hole in the accommodation blo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.290000000170778, 21.173333300081254] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-32", - "dateofocc": "2011-01-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk carrier (ACHILLEAS) was fired upon 6 Jan at 0908 UTC while underway in position 21-04N 063-21E, approximately 220NM ESE of Ras Al Hadd, Oman. Five pirates in a skiff fired upon and attempted to board the carrier. The master increased s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.349999999651118, 21.066666699889026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-34", - "dateofocc": "2011-01-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (BARBAROSA) was fired upon 11 Jan at 1021 UTC while underway in position 16-33N 059-08E, approximately 290NM east of Salalah, Oman. Five pirates on a skiff fired automatic weapons and RPGs at the Tanker. Due to evasive maneuvering,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.133333300157744, 16.550000000295995] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-35", - "dateofocc": "2011-01-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Bulk carrier (ORIENT CRUSADER) was fired upon 10 Jan at 2241 UTC while underway in position 14-31N 042-29E, approximately 31NM NE of Al Hudaydah, Yemen in the southern Red Sea. The master increased speed and took evasive maneuvers to elude the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.483333299574269, 14.516666700261737] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-36", - "dateofocc": "2011-01-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 14-03N 067-29E at 1342Z on 11 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.48333330038281, 14.049999999765475] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-173", - "dateofocc": "2010-05-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIPS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 01-19N 045-39E at 100930 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.650000000067962, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-37", - "dateofocc": "2010-12-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA: Tug was robbed 31 Dec at 0430 local tie while underway in position 01-14N 103-26E, approximately four nautical miles off Johor, Malaysia. The vessel was in position when it was boarded by six armed suspects in a single speed boat dressed in bl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.433333299881667, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-38", - "dateofocc": "2010-12-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE: Tug was robbed 30 Dec at 0535 local tie while underway in position 01-19.97N 104-17.62E, approximately 3.5 miles southeast of Tanjung Ramunia. Six robbers boarded the vessel from a speedboat and held the crew hostage before stealing personal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.29361109960297, 1.332777800021233] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-39", - "dateofocc": "2010-12-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship was suspiciously approached 24 Dec at 1800 local time while underway in position 03-02N 105-17E, off Mangkai Island of the Anambas Archipelago. The officer of the watch spotted a speed boat with nine criminals on board. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, 3.033333300411925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-40", - "dateofocc": "2011-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-11N 058-18E at 1453Z on 12 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.299999999622685, 15.183333300400136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-41", - "dateofocc": "2011-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "GULF OF ADEN: Oil supply ship (BOURBON HESTIA) was chased 12 Jan at 1046 UTC while underway in position 12-06N 044-25E, approximately 50NM SW of Aden,Yemen. The vessel was attacked together with BOURBON HESTIA, but the attack ceased when the onboard sec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.416666699699874, 12.099999999567501] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-264", - "dateofocc": "2011-05-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA. GULF OF ADEN: Merchant vessels attacked in 12-33N 043-26E at 1510Z on 25 May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.4333332997399, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-265", - "dateofocc": "2011-05-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate ship M/V Orna carrying out mothership operations in position 06-09N 050-33E at 0908Z on 26 May. Vessels are advised to keep well clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.549999999596878, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-266", - "dateofocc": "2011-05-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ATLANTIC OCEAN: A container ship was robbed 17 May at 2230Z in the Boma anchorage at position 05-52S 013-05E off the Democratic Republic of the Congo. Four robbers used a wooden boat to board the vessel. The robbers broke open a container on deck, stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.083333299702701, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-267", - "dateofocc": "2011-05-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "INDONESIA: An oil tanker was robed 18 May during the morning while anchored in position 06-01S 106-54E in Jakarta, Robbers boarded the vessel, stole the ship's stores, and escaped unnoticed. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-268", - "dateofocc": "2011-05-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Chemical/oil products tanker (ASTIR LADY) experienced an attempted boarding 31 May at 0403 UTC while underway in position 13-32N 042-41E, approximately 31NM northwest of Assab, Eritrea. Six pirates in a single skiff attempted to board the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.6833332999405, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-269", - "dateofocc": "2011-05-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Bulk carrier (HAWK I) was fired upon by two skiffs 29 May at 1211 UTC while underway in position 14-44N 042-06E, approximately 42NM southwest of Ras Isa, Yemen. Each skiff had six pirates onboard. Vessel's security team returned fire. UNCLASSIF", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.099999999638385, 14.733333299801018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-270", - "dateofocc": "2011-05-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SAMARINDA ANCHORAGE, INDONESIA: Three robbers armed with knives boarded an anchored bulk carrier via hawse pipe. They broke the padlocks on the bosun store and stole ship's stores. Duty AB spotted them and informed the duty officer who sounded the ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.266666699762482, -1.166666700083624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-271", - "dateofocc": "2011-05-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "COCHIN ANCHORAGE, INDIA: About ten robbers boarded a container vessel at anchor. Master spotted the robbers and directed the search light towards them. The robers jumped over board and escaped with ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.081666699739117, 9.923333300391903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-272", - "dateofocc": "2011-05-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "RED SEA: Pirates in two skiffs chased a container ship underway. Master raised alarm, increased speed, took evasive maneuvers, contacted warship and authorites for assistance. The skiffs chased and closed in at a distance of 0.5 miles before aborting the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.320000000163475, 12.620000000159905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-273", - "dateofocc": "2011-05-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EGYPT: A U.S.-flagged vessel experienced an attempted boarding 25 May at 0231 UTC while anchored in position 29-50.40N 032-34.08E, at Anchorage Point 13, Port Suez, Egypt. A crewmember saw a man climbing the anchor chain and notified the bridge. The man", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.568055600162779, 29.840000000303121] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-274", - "dateofocc": "2011-05-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ATLANTIC OCEAN: A ship was boarded 28 May at 0245 UTC while anchored in position 05-52.55S 013-01.78E, approximately 3NM southwest of Boma, Democratic Republic of the Congo. The officer of the watch spotted two robbers on the forecastle and alerted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.02972219993103, -5.875833299833403] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-275", - "dateofocc": "2011-05-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Bulk carrier (ATLAS) was boarded 31 May at 1303 UTC while underway in position 13-28.4N 042-36.8E, approximately 28NM northwest of Assab, Eritrea. (Commercial Sources, Operator)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.613333299947215, 13.47333329992216] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-276", - "dateofocc": "2011-06-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SINGAPORE STRAITS: A general cargo ship was robbed 1 June at 2130 UTC while underway in position 01-10N 103-51E, approximately 10NM southwest of Singapore. Five armed robbers boarded the vessel, stole the ship's cash and personal belongings, and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.849999999611896, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-277", - "dateofocc": "2011-05-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MYANMAR: A container ship was robbed 29 May at 1300 UTC while anchored in position 16-38N 096-15E in the Yangon River NE anchorage, Myanmar. The alert crew noticed three robbers with knives had boarded the vessel and attempted to approach them. The robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [96.250000000085549, 16.633333300132279] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-278", - "dateofocc": "2011-05-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE: A tanker was robbed 29 May at 1730 UTC while underway in position 01-19N 104-54E, approximately 62NM southeast of Singapore. Six robbers boarded the vessel, stole cash and other valuables, and escaped. (Commercial Sources)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.900000000410273, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-167", - "dateofocc": "2010-05-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (MOSCOW UNIVERSITY) reportedly hijacked 5 May 10 at 0413 UTC while underway in position 12-15N 059-30E, approximately 290 miles east of Socotra Island. Pirates in a skiff chased and opened fire on the vessel. The captain conducted ev", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.500000000021203, 12.250000000067018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-168", - "dateofocc": "2010-05-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CRUISE SHIP", - "descriptio": "GULF OF ADEN: Cruise ship fired upon 5 May 10 at 2122 UTC while underway in position 13-06N 048-37E, approximately 90 miles southwest of Al Mukalla, Yemen. One skiff opened fire on the vessel with automatic weapons ad rpgs. The vessel increased speed and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.616666700195424, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-169", - "dateofocc": "2010-05-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 02-09N 052-51E at 060711 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.849999999761224, 2.150000000010152] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-170", - "dateofocc": "2010-05-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 09-36N 051-32E at 060757 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.533333299732078, 9.599999999936301] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-171", - "dateofocc": "2010-05-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate activity reported in 03-15S 042-03E at 060855 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.049999999771671, -3.249999999984595] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-172", - "dateofocc": "2010-04-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Tug (ATLANTIC 3) reportedly hijacked 27 Apr 10 at 1726 local time while underway in position 01-12.38N 104-45.92E, approximately 9NM east of Pulau Bintan. At 1726 local time, the shipping company lost contact with the vessel as it was transi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.765277800355705, 1.206388899553247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-174", - "dateofocc": "2010-05-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Bulk carrier fired upon 10 May 10 at 0538 UTC while underway in position 00-06N 064-57E, approximately 640NM northeast of Port Victoria, Seychelles. Armed men in a skiff chased and fired upon the vessel underway. The crew enforced effecti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.949999999882721, 0.100000000078751] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-175", - "dateofocc": "2010-05-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier attacked in 03-22.18N 105-27.2E at 081645 UTC May. Six pirates in an unlit small wooden boat approached and attempted to board a bulk carrier underway. Alert duty crew noticed the boat and raised the alarm. Ships whistle sou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.45333330007287, 3.371666699663024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-176", - "dateofocc": "2010-05-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "Container ship attacked in 03-16N 105-25E at 081720 UTC May. Eight pirates armed with long knives boarded a container ship underway. They gained control of the bridge, stole ship's and crew property and left the ship. No injuries to crew and no damage to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.416666699873929, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-177", - "dateofocc": "2010-05-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Chemical tanker (MARIDA MARGUERITE) hijacked 8 May 10 at 1206 UTC while underway in position 14-58N 054-47E, approximately 140NM northeast of Socotra Island. Armed pirates chased, attacked, and hijacked the vessel along with its 22 crewm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.796666699729769, 14.950000000064392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-178", - "dateofocc": "2010-05-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "COLOMBIA: General cargo ship robbed 3 May 10 at 2300 local time berthed in position 10-57.5N 074-45.5W, Palermo terminal, Barranquilla. A vessel at berth had completed cargo operations and was preparing to depart. The captain from the ship berthed ahea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.758333299635126, 10.958333300420861] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-179", - "dateofocc": "2010-05-12", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PERU: Bulk carrier robbed 12 May 10 between 1830-1930 local time while anchored in position 12-01.7S 077-12.1W, Callao anchorage. Armed robbers boarded the vessel and took one shore guard hostage, and threatened him by pointing a gun to his head. Anoth", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.201666699840132, -12.028333299755843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-367", - "dateofocc": "2010-10-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Merchant vessel reported suspicious approach 12 Oct 10 at 0800 UTC while underway in position 04-38N 054-16E, 400NM east of Hobyo, Somalia. Initially, the vessel observed two skiffs. One skiff with four men on board pursued the vessel for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.266666700423116, 4.633333299744208] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-368", - "dateofocc": "2010-10-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN ARABIAN SEA: Merchant vessel attacked by piracy action group in 08-18N 068-05E at 130616Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.083333299682749, 8.299999999804356] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-369", - "dateofocc": "2010-10-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Piracy action group sighted in 14-09N 049-51E at 142130Z Oct. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.849999999664192, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-370", - "dateofocc": "2010-10-07", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "VENEZUELA: Chemical tanker robbed 7 Oct 10 at 0440 local time while at anchorage in position 10-16N 064-43W, in Puerto la Cruz tanker anchorage. Three robbers boarded a chemical tanker at anchor. The duty watch had just started his shift and noticed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.716666699755649, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-371", - "dateofocc": "2010-10-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Merchant vessel (ARDMORE SEAFARER) illegally boarded 12 Oct 10 at 1543 UTC while underway in position 08-18N 067-56E, approximately 1115NM east of Garacad, Somalia. (IMB, NSC).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.933333300082552, 8.299999999804356] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-372", - "dateofocc": "2010-10-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship robbed 11 Oct 10 at 1245 LT while at anchor in position 22-11N 091-44E, in Chittagong. While at anchor, robbers boarded a container ship. They entered the forward store and stole ship's stores. When noticed by crew, the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-47", - "dateofocc": "2011-01-14", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 16-39N 067-36E at 0720Z on 14 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.600000000013381, 16.650000000029422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-373", - "dateofocc": "2010-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Merchant vessel (ANUKET JADE) fired upon 10 Oct 10 at 1848 UTC while underway in position 09-52S 040-08E, approximately190NM southeast of Dar es Salaam. Five men armed with guns chased and opened fire on a product tanker underway. The Master e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.133333300442587, -9.866666700275061] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-374", - "dateofocc": "2010-10-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Merchant vessel (KAVO PORTLAND) fired upon 10 Oct 10 at 1114 UTC while underway in position 04-49N 067-06E, approximately 1070NM east of Garacad, Somalia. Four pirates armed with AK-47 and RPG chased and opened fire on a bulk carrier under", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.100000000446869, 4.816666700037956] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-375", - "dateofocc": "2010-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KENYA: Merchant vessel (IZUMI) hijacked 10 Oct 10 at 1338 UTC while underway in position 03-28S 040-49E, approximately 75NM northeast of Mombasa. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.816666700302903, -3.46666670024797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-376", - "dateofocc": "2010-10-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel chased 10 Oct 10 at 0945 UTC while underway in position 12-15N 045-56E, approximately 70NM southeast of Aden, Yemen. While transiting the IRTC in a convoy. The vessel noted a mother skiff releasing two smaller skiffs each w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.933333300270419, 12.250000000067018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-377", - "dateofocc": "2010-10-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "BANGLADESH: Unmanned vessel boarded 9 Oct 10 at 1845 LT while under tow in position 21-06N 091-12E, approximately 50NM southwest of Chittagong. Robbers in a fishing boat boarded an unmanned vessel under tow toward the port of Chittagong. The tugboat mas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.200000000057116, 21.099999999858596] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-378", - "dateofocc": "2010-10-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (GOLDEN WAVE 305) reported hijacked 9 Oct 10 at 0745 UTC while underway off Lamu, Kenya. Vessel was missing and owner reported on 17 Oct the ship was hijacked 9 Oct. The vessel has left anchorage and is now possibly operating", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.966666700129394, -3.100000000384455] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-379", - "dateofocc": "2010-10-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHIG VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel fired upon 17 Oct 10 at 1327 UTC while underway in position 04-35N 054-41E, approximately 400NM east of Hobyo, Somalia. The vessel was fired upon but there were no injuries or damage. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.68333330032857, 4.583333299877495] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-380", - "dateofocc": "2010-10-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "ARABIAN SEA: Pirated fishing vessel acting as a mothership sighted in 11-39N 063-02E at 172030Z Oct. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.033333299654316, 11.649999999867703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-42", - "dateofocc": "2011-01-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked 13-50N 056-45E at 0920Z on 13 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.750000000157115, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-43", - "dateofocc": "2011-01-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (ALPINE PERSEFONE) was attacked 11 Jan at 1345 UTC while underway in position 14-01N 067-25E, approximately 380NM west of Goa, India. Pirates in one skiff came alongside the vessel with weapons and attempted to board with a ladder.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.41666670044367, 13.999999999898762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-44", - "dateofocc": "2011-01-09", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "CALLAO ANCHORAGE, PERU: Eight robbers in two boats boarded a vehicle carrier at anchor. Duty officer noticed the robbers on the forecastle deck ad raised the alarm. On hearing the alarm the robbers escaped in fast boats. Ship stores stolen. Port control", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.216666699710231, -12.018333300142217] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-45", - "dateofocc": "2011-01-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "152 MILES OFF SALALAH, OMAN: Armed pirates in skiffs fired upon and boarded a dhow underway. They took hostage 14 crewmembers and hijacked the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.283333299693197, 17.69999999992848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-46", - "dateofocc": "2011-01-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (HONG OCEAN) was chased 8 Jan at 0352 UTC while underway in position 15-46.8N 055-42.8E, approximately 115NM SE of Salalah, Oman. The master enforced evasive maneuvers and increased speed, and after two hours the pirates abort", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.713333300101056, 15.780000000370023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-48", - "dateofocc": "2011-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Vessel (LEOPARD) was fired upon 12 Jan at 1322 UTC while underway in position 15-13N 058-17E, approximately 263NM ESE of Salalah, Oman. Pirates in two skiffs attacked and boarded the vessel. Pirates later transferred the crew to a nearby p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.283333299725541, 15.216666700194423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-49", - "dateofocc": "2011-01-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 17-11N 061-21E at 1730Z on 14 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.34999999958643, 17.183333299565504] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-50", - "dateofocc": "2011-01-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (SAMHO JEWELRY) was hijacked 15 Jan at 0729 UTC while underway in position 21-58N 063-50E, approximately 110 NM east of Ras al Hadd, Oman. Pirates attacked and boarded the chemical tanker taking 21 crewmembers hostage. (IMB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.833333300219806, 21.966666700187886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-51", - "dateofocc": "2011-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "GULF OF ADEN: Oil supply ship (BOURBON HECTOR) was chased 12 Jan at 1046 UTC while underway in position 12-06N 044-25E, approximately 50NM SW of Aden, Yemen. The vessel was attacked together with the BOURBON HESTIA, but the attack ceased when the onboar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.416666699699874, 12.099999999567501] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-52", - "dateofocc": "2011-01-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (BW BAUHINIA) was attacked 7 Jan at 1629 UTC while in position 21-08N 062-45E, approximately 180NM ESE of Ras al Hadd, Oman. Five pirates in a skiff fired upon and attempted to board the vessel, but were evaded when the master incre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.750000000351179, 21.133333299828109] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-53", - "dateofocc": "2011-01-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (FRONT WARRIOR) was fired upon 6 Jan at 0220 UTC while underway in position 20-00N 064-06E, approximately 503NM NE of Mumbai, India. Pirates in one skiff fired at the tanker, but the crew used razor wire and fire hoses to evade the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.100000000349837, 20.000000000092768] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-54", - "dateofocc": "2011-01-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA: Tug was robbed 02 January 11 at 0400 local time while underway in position 01-13.29N 103-30.36E, approximately 3.8 NM off of Tg Piai, Malaysia. The vessel was boarded by ten robbers armed with pistols and machetes, and robbed of $3000 USD in c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.506111099678662, 1.221388900322609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-55", - "dateofocc": "2011-01-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (SEACREST) was fired upon 16 Jan at 1450 UTC while underway in position 12-30N 061-05E, approximately 385NM east of Socotra Island. Six pirates armed with a ladder and RPG chased and fired upon the tanker. The tanker made evasive ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.083333300355662, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-56", - "dateofocc": "2011-01-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (EAGLE) was hijacked 17 Jan at 0641 UTC while underway in position 13-17N 061-42E, approximately 415NM east of Socotra Island. Six pirates armed with guns and an RPG in a skiff chased, fired upon, and boarded the vessel, takin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.699999999552801, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-57", - "dateofocc": "2011-01-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (COURIER) was fired upon 17 Jan at 1330 UTC while underway in position 17-02N 061-33E, approximately 420NM east of Salalah, Oman. Five pirates in a white hulled skiff chased and fired upon the ship. The master increased spee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.549999999952604, 17.033333299965363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-279", - "dateofocc": "2011-05-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "INDONESIA: A barge under tow was robbed 26 May at 0300 UTC while underway in position 01-11N 103-56E, approximately 10NM southeast of Singapore. Robbers stole the ship's stores and escaped. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.933333300347499, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-280", - "dateofocc": "2011-05-21", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: A container vessel was boarded 21 May at 2242 UTC while anchored in the Jakarta Anchorage, Indonesia. Robbers in a boat approached the vessel from its stern. The bosun and security watchmen saw that two robbers had boarded the vessel and infor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.216666700439362, -5.38333329975228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-281", - "dateofocc": "2011-06-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA: A container ship was boarded 1 June at 2035 UTC while anchored in the Jakarta anchorage, Indonesia. Eight robbers boarded the vessel. The Master raised the alarm and the ship's crew mustered. After the alert was raised, the robbers jumped over", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.216666700439362, -5.38333329975228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-181", - "dateofocc": "2010-05-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Chemical tanker (PANEGA) hijacked 11 May 10 at 1536 UTC while underway in position 12-31N 047-08E, approximately 120NM southeast of Aden, Yemen. Pirates boarded and hijacked the vessel along with its 15 crewmembers (AFP, IMB).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.133333299769617, 12.51666670019705] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-282", - "dateofocc": "2011-06-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (ACHILLEAS) was fired upon by one skiff with 7-8 pirates onboard 7 June at 1339 UTC while underway in position 13-33N 050-27E, approximately 179NM northwest of Socotra Island, Yemen. Vessel was attacked with small arms. Armed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.449999999863451, 13.550000000198963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-283", - "dateofocc": "2011-06-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Bulk carrier (EMPEROR) was fired upon 6 June at 1208 UTC while underway in position 14-10N 052-18E, approximately 114NM northwest of Socotra Island, Yemen. Two skiffs with a total of 10-15 pirates onboard attacked the vessel. EMPEROR deployed a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.300000000004559, 14.166666700295366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-284", - "dateofocc": "2011-06-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE: An LPG tanker was robbed 6 June at 1500 UTC while underway in position 01-09N 103-48E, approximately 11NM southwest of Singapore. Eight masked robbers on one speed boat boarded the tanker at the starboard quarter. The robbers were armed with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.799999999745182, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-285", - "dateofocc": "2011-06-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 30 MILES NORTH OF ASSAB, ERITREA, RED SEA: Six pirates in one skiff chased and fired upon a bulk carrier underway. Vessel took all anti-piracy measueres and contacted the coalition forces resulting in the pirates aborting the attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.61666670000136, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-286", - "dateofocc": "2011-06-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 400 MILES EAST OF SOCOTRA: Four pirates in a skiff approached and fired upon a bulk carrier underway. Onboard security team fired warning shots resulting in the pirates moving away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.450000000219177, 12.283333300036531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-287", - "dateofocc": "2011-06-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "AROUND 405 MILES EAST OF SOCOTRA: Four pirates in a skiff chased a chemical tanker underway. Weapons sighted in the skiff but not used. Security team onboard fired warning shots and the skiff moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.50000000008589, 12.316666699830876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-288", - "dateofocc": "2011-06-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "40 MILES NORTH OF ASSAB, ERITREA, RED SEA: Five pirates in a skiff chased a tanker underway. Small arms and ladder observed in the skiff. All crew except master and OOW were mustered at safe point. Security guard onboard fired warning shots and pirates m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.596666699874788, 13.701666699826205] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-289", - "dateofocc": "2011-06-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "AROUND 27 MILES NORTH OF ASSAB, ERITREA, RED SEA: While underway the duty officer onboard a tanker spotted a skiff on radar. When the skiff approached closer, seven pirates were observed in the skiff. The pirates could not board the vessel due to high fr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.716666699734787, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-290", - "dateofocc": "2011-06-12", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "AROUND 420 MILES EAST OF SOCOTRA ISLAND: Four pirates in a skiff chased and fired upon a bulk carrier underway. The skiff closed to around five meters from the ship. Effective anti-piracy measures including fire hoses and electric wire around vessel prev", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.766666700215978, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-291", - "dateofocc": "2011-06-13", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CARTAGENA TANKER ANCHORAGE, COLOMBIA: Duty AB onboard a bulk carrier at anchor spotted robbers trying to gain access via the hawse pipe. The AB alerted other crew members who rushed forward resulting in the robbers aborting the attempt and moving away. L", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.543333300330517, 10.308333300354889] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-292", - "dateofocc": "2011-06-15", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "AROUND 26 MILES OFF THE COAST OF SOMALIA: Four pirates in a skiff chased and fired upon a general cargo ship underway. One pirate managed to board the vessel but had to jump overboard after the crew successfully confronted him. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.25000000042894, 9.2999999998367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-293", - "dateofocc": "2011-06-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "COTONOU ANCHORAGE, BENIN: Heavily armed robbers attacked and hijacked an anchored chemical tanker and forced the crew to sail to an unknown location. The vessel was made to discharge part of her cargo into another lightering vessel. Before leaving the ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.516666699873667, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-180", - "dateofocc": "2010-05-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: General cargo ship reported suspicious approach 12 May 10 at 1628 local time while underway in position 12-27.7N 043-43.4E, approximately 20NM east of the Bab el Mandeb. Five boats each containing two to three persons armed with RPGs and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.723333300225931, 12.461666700073863] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-182", - "dateofocc": "2010-05-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PASSENGER SHIP", - "descriptio": "GULF OF ADEN:SS (THE OCEANIC), a former passenger ship used by the Peace Boat, a Japan-based international non-governmental and non-profit organization to promote peace, fired upon 5 May 10 at 2122 UTC while underway in position 13-06N 048-37E, approxim", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.616666700195424, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-183", - "dateofocc": "2010-05-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (MSC PEGGY) fired upon 12 May 10 at 1520 UTC while underway in position 09-59.12S 042-16.27E, approximately 300NM southeast of Dar es Salaam, Tanzania. Suspected pirates opened fire on the vessel with two rpg rounds. The ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.271111100041082, -9.985277799783489] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-184", - "dateofocc": "2010-05-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (ELENI P) hijacked 12 May 10 at 0556 local time while underway in position 15-55N 060-50E, approximately 420NM northeast of Socotra Island. Pirates boarded and hijacked the vessel with its 23 crewmembers and are sailing it to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.833333300122774, 15.916666700127166] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-185", - "dateofocc": "2010-05-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (TAI YUAN 227) hijacked 6 May 10 at 1107 UTC while underway in position 01-50N 067-50E, approximately 1150NM southeast of Eyl, Somalia. Pirates boarded and hijacked the vessel along with its 28 crewmembers. The vessel's own", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.833333300349125, 1.833333300013351] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-186", - "dateofocc": "2010-05-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MALAYSIA: Bulk carrier (PERFORMER) boarded 10 May 10 at 0355 local time while anchored in position 01-17.84N 104-09E, approximately 3NM south of Tanjung Ayam. Six to seven robbers armed with knives boarded the vessel and gained access to the engine roo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.149999999711497, 1.297222199774239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-187", - "dateofocc": "2010-05-13", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDIAN OCEAN: Possible mothership activity in 02-55N 067-35E at 130200 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.583333300116237, 2.916666699706752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-188", - "dateofocc": "2010-05-14", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 06-18S 042-12E at 141000 UTC May. Vessels are advised to keep clear 100 miles of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.200000000271132, -6.299999999948341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-190", - "dateofocc": "2010-05-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALDIVES ISLANDS, SOMALIA: Eight pirates in a skiff cashed and attempted to board a tanker underway. Master increased speed, carried out evasive maneuvers and sounded whistle and alarm. After chasing for about 45 minutes, pirates aborted the attempt and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.966666699973928, 5.566666699837413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-191", - "dateofocc": "2010-05-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDIAN OCEAN: Possible mothership activity in 00-52.8S 064-45.6E at 241146 UTC May. Vessels are advised to keep a 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.760000000029436, -0.879999999827021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-192", - "dateofocc": "2010-05-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "INDIAN OCEAN: Possible mothership activity in 02-04N 067-58E at 1300 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [67.966666699876896, 2.066666700173869] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-193", - "dateofocc": "2010-05-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "WESTERN INDIAN OCEAN, TANZANIA: A tanker reported coming under fire 25 May 10 at 0235 UTC while underway in position 05-40S 039-29E. Vessel reported being fired upon by one skiff with five persons onboard. The skiff aborted the attack after approximatel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.483333300376614, -5.649999999882368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-194", - "dateofocc": "2010-05-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CAMEROON: Refrigerated cargo ship (ARGO) robbed, crewmember kidnapped 16 May 10 at 2255 UTC while anchored in position 03-44.2N 009-24.59E, Douala outer anchorage. Approximately 10 robbers boarded the vessel and opened fire with automatic weapons. They", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.409722200407543, 3.736666700398757] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-381", - "dateofocc": "2010-10-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "ARABIAN SEA: Pirated fishing vessel being used as a mothership, sighted in 11-00N 061-00E at 182100Z Oct. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.999999999620059, 10.99999999980173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-382", - "dateofocc": "2010-10-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Product tanker (DAPHNE) fired upon 19 Oct 10 at 1830 UTC while underway in position 02-02.0N 050-13.7E, approximately 290NM east of Mogadishu, Somalia. Six pirates armed with guns in a skiff chased a product tanker underway. Master raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.22833330024298, 2.033333300379581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-383", - "dateofocc": "2010-10-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 00-19S 047-00E on 18 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.00000000006662, -0.316666699651478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-384", - "dateofocc": "2010-10-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity within 150 miles of 02-00S 045-00E on 19 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [45.00000000000199, -1.999999999719364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-385", - "dateofocc": "2010-10-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Product tanker boarded 20 Oct 10 between 0300 and 0400 local time while at anchor in position 01-24N 104-34E off Kepulauan Lingga, Indonesia. An unknown number of robbers boarded a product tanker at anchor. Robbers broke into the steeri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-386", - "dateofocc": "2010-10-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "SOMALIA-NORTHEAST COAST: Possible mothership activity in 07-17N 050-01E at 202303Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.016666700060796, 7.283333299874869] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-391", - "dateofocc": "2010-10-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "BRAZIL: Cargo ship boarded 15 Oct 10 at 0500 local time while at anchor in position 01-31.7S 048-47.1W in Vila do Conde. Three robbers boarded an anchored general cargo ship via the anchor chain. Deck security watchman noticed a small boat near the anch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.785000000103707, -1.528333299865949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-388", - "dateofocc": "2010-10-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCANT VESSEL", - "descriptio": "TANZANIA: Container ship fired upon 21 Oct 10 at 0825 local time while underway in position 09-45S 039-56.9E, approximately 10NM east of Lindi. Two skiffs, one with five people onboard and another with six people onboard, approached the ship, which was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.948333299946455, -9.749999999745171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-389", - "dateofocc": "2010-10-16", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier robbed 16 Oct 10 at 2005 local time while at anchor in position 00-01.20S 117-36.26E at Botang Roads. Two robbers boarded a bulk carrier at anchor. The duty crew noticed that the forward store's padlock was broken and raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.604444399837803, -0.019999999781248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-390", - "dateofocc": "2010-10-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier robbed 16 Oct 10 at 0300 local time while at anchor in position 06-02.6S 106-54.1E in Jakarta. Four robbers boarded a bulk carrier ship at anchor. Upon noticing the engine store room padlock broken the duty motorman informed brid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.901666699602686, -6.043333300331199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-392", - "dateofocc": "2010-10-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "NIGERIA: Container vessel robbed 20 Oct 10 at 0001 local time while at anchor in position 06-07.5N 003-26.7E, approximately 20NM south of Lagos. Armed men approached in a boat, fired at the vessel, and boarded. The crew raised the alarm and cooperated w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.444999999885681, 6.124999999756483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-393", - "dateofocc": "2010-10-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel fired upon 14 Oct 10 at 2130 UTC while underway in position 14-09N 049-15E, approximately 30NM south of Al Mukalla, Yemen. The vessel was shot but evaded the attack and is safe. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.250000000364253, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-394", - "dateofocc": "2010-10-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker (EAGLE CORONA) robbed 15 Oct 10 at 0250 local time while underway in position 02-06.17S 108-45.6E, approximately 26NM south of Pulau Karimata. Six robbers armed with long knives boarded a crude tanker underway. They took hostage three", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.759999999653758, -2.102777800155877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-395", - "dateofocc": "2010-10-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Tanker robbed 12 Oct 10 between 0100-0400 local time while at anchor in position 01-18.3N 104-12.1E in the Eastern OPL anchorage. An unknown number of robbers boarded a tanker at anchor. They broke the padlock of the FFA locker, stole ship's s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.201666699605312, 1.304999999834422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-58", - "dateofocc": "2011-01-15", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "COSTA RICA: General cargo ship was robbed 15 Jan at 0025 local time while in port09-58.8N 083-00.6W, at Puerto Limon, Costa Rica. Robbers boarded the vessel unnoticed. Duty watchman discovered the paint store and bosun store on the forecastle were broke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.010000000153809, 9.979999999642871] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-59", - "dateofocc": "2011-01-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Oil tanker (RUDEEF GNA) was attacked 15 Jan at 1833 UTC while underway in position 12-41N 044-48E, approximately 3 NM SW of Aden Island, Yemen. Two pirates in a skiff approached the tanker underway. No shots were fired by the pirates but t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.799999999635759, 12.683333299869616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-60", - "dateofocc": "2011-01-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NORTH ARABIAN SEA: A merchant vessel reported being hijacked at 1052Z on 17 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.906388900429988, 19.483333299729793] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-61", - "dateofocc": "2011-01-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Merchant vessel (ADVANTAGE) was fired upon 18 Jan at 2303 UTC while underway in position 03-10N 051-11E, approximately 315NM SE of Garacad, Somalia. The vessel was attacked and fired upon by pirates with automatic weapons in one skiff but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.183333299765707, 3.16666669993964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-62", - "dateofocc": "2011-01-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "RORO", - "descriptio": "INDIAN OCEAN: Ro Ro (HOEGH OSLO) was fired upon 19 Jan at 0453 UTC while underway in position 13-28N 065-06E, approximately 660NM ESE of Salalah, Oman. The vessel was fired upon by pirates in three skiffs armed with small arms and RPGs. The pirates abor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.100000000382181, 13.46666670036268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-63", - "dateofocc": "2011-01-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Merchant vessel (TORM KRISTINA) was attacked 19 Jan at 2155 UTC while underway in position 20-16N 064-29E, approximately 380NM SE of Muscat, Oman. One skiff with six pirates fired upon the vessel and attempted to board with a ladder. One c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.649999999783063, 20.266666700222856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-65", - "dateofocc": "2011-01-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (KHALED MUHIEDDINE K) was hijacked 20 Jan at 1224 UTC, while underway in position 15-11N 059-38E, approximately 336NM NE of Socotra Island, Yemen. Pirates with automatic weapons hijacked the vessel and took hostage the crew of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.6333332997242, 15.183333300400136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-66", - "dateofocc": "2011-01-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (BUNGA LAUREL) was boarded 20 Jan at 1708 UTC, while underway in position 20-09N 063-38E, approximately 250NM SE of Ras al Hadd, Oman. Seven pirates boarded the vessel, and the crew members locked themselves in the citadel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.633333299853575, 20.149999999692966] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-67", - "dateofocc": "2011-01-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Heavy load carrier (ZHEN HUA 26) was fired upon 21 Jan at 1055 UTC while underway in position 12-37N 065-00E, approximately 840NM east of Caluula, Somalia. Armed pirates in a skiff chased and fired upon the vessel. The ship increased speed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.999999999749434, 12.616666699930477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-68", - "dateofocc": "2011-01-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (LUCKY VISHIP) was fired upon 18 Jan at 1125 UTC while underway in position 19-24N 058-54E, approximately 260 nautical miles east of Salalah, Oman. Pirates in three skiffs fired upon the vessel but were evaded. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.899999999821944, 19.39999999989351] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-69", - "dateofocc": "2011-01-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (HOANG SON SUN) was hijacked 17 Jan at 0700 UTC while underway in position 18-36N 064-22E, approximately 370NM off Oman. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.366666699580605, 18.600000000227396] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-70", - "dateofocc": "2011-01-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN:Products tanker (SMERALDO) was fired upon and boarded 14 Jan at 1730 UTC while underway in position 17-11N 061-21E, approximately 433NM NE of Salalah, Oman. The crew met in a citadel after two pirates managed to board, and awaited naval ass", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.34999999958643, 17.183333299565504] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-157", - "dateofocc": "2012-04-24", - "subreg": "63", - "hostility_": "Suspicious Craft", - "victim_d": "Merchant Vessel", - "descriptio": "INDIAN OCEAN:M/V suspicious approach in vicinity 04 49N 054 47E at 241949 UTC Apr 12. Vessels are advised to keep well clear of this position and to exercise extreme caution if in vicinity.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.783333300061997, 4.816666700037956] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-71", - "dateofocc": "2011-01-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo vessel (LE LI) was fired upon 14 Jan at 0530 UTC while underway in position 13-53N 056-30E, approximately 141NM NE of Socotra Island,Yemen. Four pirates onboard a skiff attempted to board with a ladder, and weapons were sighted but n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.499999999924228, 13.883333300268191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-72", - "dateofocc": "2011-01-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (NEW FORTUNER) was fired upon 13 Jan at 0914 UTC while underway in position 13-50N 056-45.0E, approximately 150NM NE of Socotra Island. Four pirates armed with guns and an RPG chased and fired upon the tanker. The tanker took evasiv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.750000000157115, 13.833333300401421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-73", - "dateofocc": "2011-01-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "KUWAIT: Vessel was robbed and boarded 9 Jan at 29-23.30N 048-45.26E, in international waters off Kuwait. Five armed robbers, apparently Iraqis, boarded the vessel from a speedboat, threatened the six crew, and escaped with items from the vessel. The Kuw", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.754444399904514, 29.388333299676901] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-294", - "dateofocc": "2011-06-12", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SUEZ CANAL ANCHORAGE, EGYPT: Robbers boarded and stole ship property from an anchored container vessel. The incident was reported to the local authorities who managed to track down the robbers and reclaim the stolen property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.344166700089602, 30.704999999706047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-295", - "dateofocc": "2011-06-11", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk carrier (EMPEROR) was fired upon by one skiff with four pirates onboard 11 June at 0315 UTC while underway in position 12-10N 061-45E, approximately 426NM southeast of Socotra Island, Yemen. Onboard security team fired warning shots an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.750000000318835, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-296", - "dateofocc": "2011-06-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Chemical/oil products tanker (EMMA VICTORY) experienced an attempted boarding 11 June at 0451 UTC while underway in position 13-32N 042-41E, approximately 31NM northwest of Assab, Eritrea. Vessel spotted five skiffs but was only attacked by one", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.6833332999405, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-297", - "dateofocc": "2011-06-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "COTONOU ANCHORAGE, BENIN: Armed robbers boarded and hijacked an anchored chemical tanker. They forced the captain to sail the vessel to an unknown location. The pirates stole ship's properties and left the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.599999999709951, 5.866666699937014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-298", - "dateofocc": "2011-06-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "AROUND 30 MILES OFF TRIVANDRUM, INDIA: Pirates in a skiff chased a chemical tanker underway. The vessel enforced anti-piracy preventive measures, sent SSAS alert. Later a naval helicopter arrived at location.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.433333299907815, 8.616666699801158] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-299", - "dateofocc": "2011-06-18", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "AROUND 15 MILES OFF TRIVANDRUM, INDIA: Master onboard a chemical tanker underway noticed a white hulled skiff around three miles ahead. The skiff was noticed to increase speed and approach the vessel at high speed. Vessel increased speed, altered course,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.666666700068333, 8.483333300273387] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-300", - "dateofocc": "2011-06-18", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "PUERTO LA CRUZ, VENEZUELA: Master onboard an anchored general cargo vessel noticed a speed boat approaching the vessel. He ordered the duty crew to investigate. Later, one AB entered the bridge in a frightened state and reported that robbers had boarded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.718333299957976, 10.288333300228373] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-301", - "dateofocc": "2011-06-17", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GEORGETOWN INNER ANCHORAGE, GUYANA: Four robbers armed with knives boarded an anchored container ship. They took the bosun as hostage and stole ship's properties and escaped. The alarm raised and crew mustered. Authorties informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.170000000357732, 6.821666700359117] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-302", - "dateofocc": "2011-06-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "REFRIGERATED CARGO SHIP", - "descriptio": "MATADI ANCHORAGE, DEMOCRATIC REPUBLIC OF CONGO: Robbers boarded and stole ship stores from an anchored refrigerated cargo vessel on three occasions between 0500 local and 0740 local time. Duty crew spotted the robbers and raised the alarm on each occasio", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.411944400090306, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-303", - "dateofocc": "2011-06-23", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SURABAYA ANCHORAGE, INDONESIA: Robbers boarded an anchored bulk carrier from the stern as the duty crew was taking routine rounds forward. They stole ship's stores and escaped. When the duty crew reached the stern, he found ship's stores missing and rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.724999999786519, -7.191666699761356] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-304", - "dateofocc": "2011-06-18", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "REFRIGERATED CARGO SHIP", - "descriptio": "BOMA ANCHORAGE, DEMORCRATIC REPUBLIC OF CONGO: A vigilant deck watchman onboard an anchored refrigerated cargo vessel noticed a robber with a long knife hiding on the forecastle deck. The robber jumped overboard when the deck watchman illuminated the are", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.042777799923272, -5.865000000118641] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-305", - "dateofocc": "2011-06-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "ASSAB, ERITREA, RED SEA: A skiff with firve pirates approached a general cargo ship underway at a speed of 25 knots. As the skiff closed, a pirate with a gun was observed. When the skiff closed to 100 meters the onboard security team fired warning shots", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.94666669984116, 13.730000000438622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-306", - "dateofocc": "2011-06-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "COTONOU, BENIN: Twelve armed pirates boarded a chemical tanker drifting in preparation for STS operations. They took hostage all crewmembers and hijacked the tanker. The tanker was released after 17 hours. Awaiting further details.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.533333299946094, 6.159722200077624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-307", - "dateofocc": "2011-06-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "74 MILES EAST OF GHALAT, OMAN: Two skiffs with six pirates in each chased and attempted to attack a chemical tanker underway. Master raised alarm, increased speed and took evasive maneuvers. The onboard security fired warning shots resulting in the pirat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.199999999953945, 21.049999999991826] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-308", - "dateofocc": "2011-06-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "COTONOU ANCHORAGE, BENIN: About ten robbers armed with guns and knives in a speed boat were seen approaching an anchored tanker with STS fenders alongside. Duty officer raised alarm, activated the SSAS and called port control but received no response. Fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.556666700126755, 6.264999999743054] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-195", - "dateofocc": "2010-05-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CAMEROON: Cargo ship (NORTH SPIRIT) robbed, crewmembers kidnapped 16 May 10 at 2140 UTC while anchored in position 03-44N 009-21.1E, Douala outer anchorage. Robbers armed with guns boarded the vessel and disabled all radio and navigation equipment, too", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.351666699730458, 3.733333300344611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-196", - "dateofocc": "2010-05-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker reported suspicious approach 25 May 10 at 1420 UTC while underway in position 14-25N 054-21E, approximately 100NM north of Socotra Island. The captain reported one white hulled skiff with five persons onboard approached the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.350000000259399, 14.416666699628991] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-189", - "dateofocc": "2010-05-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Bulk carrier (NORD SINCERE) fired upon 20 May 10 at 1100 UTC while underway in position 00-46.2N 068-26.4E, approximately 850NM northeast of Port Victoria, Seychelles. Five heavily armed men in a white colored skiff attempted to board the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.439999999932638, 0.770000000271295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-197", - "dateofocc": "2010-05-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier boarded 18 May 10 at 1700 UTC while anchored in position 03-43S 114-28E, Taboneo anchorage. Five robbers in a boat boarded the vessel at anchor. The master immediately reported it to local authorities via VHF and mustered the cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.466666700031737, -3.716666699581538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-198", - "dateofocc": "2010-05-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT SHIPS", - "descriptio": "WESTERN INDIAN OCEAN: Possible mothership activity in 00-01N 054-00E at 270957UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.000000000293028, 0.016666700242467] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-199", - "dateofocc": "2010-05-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "GULF OF ADEN: Suspected pirates with two skiffs reported 13-14N 049-12.5E at 280005 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.208333300084064, 13.233333300202162] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-200", - "dateofocc": "2010-05-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-50N 048-41E at 302146 UTC May. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.683333300134507, 12.833333300369134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-201", - "dateofocc": "2010-05-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: About 10 robbers in a long wooden boat boarded a container ship at anchor. Duty crew sighted the robbers and raised alarm. The robbers escaped with stolen stores upon seeing the crew atlertness.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-202", - "dateofocc": "2010-05-29", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PORT AU PRINCE ANCHORAGE, HAITI: Six robbers armed with knives attempted to board a container ship at anchor. Alert crew raised alarm and mustered. Robbers aborted the attempt and escaped. Master informed port authority and ships in the vicinity. No casu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.566666700257827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-203", - "dateofocc": "2010-05-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "DAR ES SALAAM ANCHORAGE, TANZANIA: Robbers boarded an anchored container ship. They assaulted the forward deck watch keeper, threatened him at knife point and tied him to a pole. When there was no communication with the forward crew, other crew members w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.749999999648139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-204", - "dateofocc": "2010-06-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICL TANKER", - "descriptio": "BAB EL MANDEB STRAITS (GULF OF ADEN): A white hulled boat with four armed pirates approached a chemical tanker underway. The security team onboard the tanker fired warning shots in the air resulting in the pirates aborting the attempted attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.50305559988243, 12.598333300006288] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-205", - "dateofocc": "2010-06-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF ADEN: Six pirates armed with rpg hijacked a general cargo ship and took her 24 crew members hostage. Vessel currently sailing towards Somalia coast.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.30000000026331, 13.749999999665818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-206", - "dateofocc": "2010-06-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "73 MILES OFF MASIRAH ISLAND: One white hulled skiff with pirates armed with machine guns chased a container ship underway. The ship increased speed and enforced anti piracy counter measures and escaped the attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.68333329959097, 21.495000000334471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-207", - "dateofocc": "2010-05-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: About six to seven pirates armed with machine guns in a speed boat chased and fired upon a bulk carrier underway. Master raised alaram, contacted warships, mustered crew and activated fire hoses. Pirates were unsuccessful in boarding the sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.700000000031707, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-208", - "dateofocc": "2010-06-04", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: General cargo ship boarded 4 Jun 10 at 0315 local time while underway in position 12-17.3N 100-45.7E, approximately 23NM south of Sattahip, Thailand. Robbers in a speedboat boarded the vessel underway. The alarm was raised, crew mustere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.761666700321427, 12.288333300293004] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-396", - "dateofocc": "2010-10-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "43 MILES EAST OF MOMBASA, KENYA: Taking advantage of a moonlight night, four pirates in a skiff chased and came alongside a product tanker underway. Alert duty officer heard the sound of the boat engine and upon investigation noticed the pirates attempti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.416666699570499, -4.340277799812327] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-398", - "dateofocc": "2010-10-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "KENYA: Liquified Petroleum Gas (LPG) tanker (YORK) hijacked 23 Oct 10 at 1235 UTC while underway in position 04-14S 041-19E, approximately 98NM east of Mombasa, Kenya. Armed pirates hijacked an LPG tanker underway. Vessel transited to anchorage outside", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.316666699869415, -4.233333300119796] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-399", - "dateofocc": "2010-10-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: General cargo ship (MERLIN ARROW) fired upon 23 Oct 10 at 0252 UTC while underway in position 13-09.1N 049-12.6E, approximately 90 NM south of Al Mukallah, Yemen. Five pirates armed with AK-47s in a skiff chased and fired upon a general ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.210000000111108, 13.15166670039298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-401", - "dateofocc": "2010-10-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA-SOUTH COAST: Merchant vessel hijacked in 00-54S 043-08E at 231311Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.133333299640299, -0.899999999953593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-402", - "dateofocc": "2010-10-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "TANZANIA: Merchant vessel attacked in 09-26S 041-22E at 261515Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.366666699736129, -9.433333299748369] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-403", - "dateofocc": "2010-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (HELLESPONT PROTECTOR) fired upon 28 Oct 10 at 0539 UTC while underway in position 13-08N 049-14E, approximately 95NM south of Al Mukallah, Yemen. Pirates in two skiffs chased a tanker in a convoy and opened fire on it. Warship and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.233333299567732, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-404", - "dateofocc": "2010-10-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Tanker (STARLIGHT VENTURE) chased and fired upon 27 Oct 10 at 1930 UTC while underway in position 13-18N 068-56E, approximately 350NM west of Mangalore, India. Two skiffs with an unknown number of people onboard approached tanker from star", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [68.933333300114896, 13.299999999966076] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-405", - "dateofocc": "2010-10-27", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "710 MILES EAST OF SOMALIA: Pirates in two skiffs armed with guns chased and opened fire on a container ship underway. Vessel managed to evade the attack. Awaiting further details.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.466666700181008, 10.85000000020159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-406", - "dateofocc": "2010-10-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TANZANIA: About five heavily armed pirates carrying rpgs in a skiff chased and fired upon a LPG tanker underway. The crew contacted the authorities and went into the citadel/safe room. Pirates boarded the tanker but could not sail the tanker. Before leav", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.70666670005653, -8.336666700036744] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-407", - "dateofocc": "2010-10-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "GULF OF ADEN: A cargo dhow reported being hijacked, last known position 12-08N 054-25E at 281156Z Oct. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.416666700023256, 12.133333300436391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-408", - "dateofocc": "2010-10-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "INDIAN OCEAN, SEYCHELLES: Two fishing vessels reported being hijacked vicinity of Denis Island (03-48S 055-40E) at 282011Z Oct. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.666666700288488, -3.800000000317141] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-409", - "dateofocc": "2010-10-28", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (MSC AYALA) fired upon 28 Oct 10 at 2057 UTC while drifting in position 04-10S 039-56E, approximately 20NM east of Mombasa, Kenya. One skiff with approximately 10 men fired upon a container ship. Crew evaded attack and repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.933333300076413, -4.166666700180656] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-411", - "dateofocc": "2010-10-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Product tanker (POLAR) hijacked 30 Oct at 0140Z while underway in position 12-12N 064-53E, approximately 700 miles east of Socotra Island. Armed pirates in two skiffs boarded and hijacked a product tanker. (IMB, TW)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.883333300118863, 12.200000000200248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-412", - "dateofocc": "2010-10-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel pirated in 15-06N 055-58E at 300517Z Oct. Vessels transiting the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.966666700388146, 15.099999999664533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-413", - "dateofocc": "2010-10-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 09-57S 042-19E at 310632Z Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.316666699901759, -9.950000000111345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-74", - "dateofocc": "2011-01-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA: Product tanker was robbed 13 Jan at 0430 local time while at anchor in position 01-18.1N 104-12.14E, off of Tg Ayaam, Malaysia. Four robbers armed with a gunand knives boarded a product tanker at anchor. They entered the engine room and threat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.202222200030917, 1.30166669960505] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-75", - "dateofocc": "2011-01-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Multi-purpose ship (BELUGA NOMINATION) was hijacked 22 Janat 1236 UTC while underway in position 01-49N 056-35E, approximately 360NM north of Seychelles Island. The crew made stress calls and retreated to the citadel when the pirates board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.583333299760511, 1.816666699940981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-76", - "dateofocc": "2011-01-25", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel BELUGA NOMINATION hijacked. Last known position 01-45S 051-00E at 1700Z on 25 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.000000000195996, -1.750000000385739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-77", - "dateofocc": "2011-01-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (ANDINET) was fired upon 26 Jan at 0630 UTC while underway in position 11-14N 062-50E, approximately 493NM SE of Socotra Island, Yemen. Pirates in two skiffs fired upon the vessel with small arms. A dhow acting as a moth", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [62.833333300187462, 11.233333300137474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-78", - "dateofocc": "2011-01-23", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GUINEA: A container ship was robbed 23 Jan at 0320 local time while at anchor at theConakry Outer Anchorage, Guinea. The Duty A/B noticed that four robbers armed with knives had boarded the ship. The bridge was informed via VHF. The Duty officer raised t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.099999999840861, 9.516666700100018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-64", - "dateofocc": "2011-01-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Product tanker (JBU OSLO) was fired upon 20 Jan at 0333 UTC while underway in position 13-09N 049-14E, approximately 83NM south of Al Mukallah, Yemen. One skiff with five pirates with ladders fired upon the vessel. The vessel evaded the hi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.233333299567732, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-79", - "dateofocc": "2011-01-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (ARIANA) was fired upon 20 Jan at 1023 UTC while underway in position 14-56N 059-14E, approximately 308NM NE of Socotra Island. Pirates in a skiff chased and fired upon the vessel. The master increased speed and carried out e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.233333299891171, 14.933333300167249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-80", - "dateofocc": "2011-01-24", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Product tanker was chased 24 Jan at 0300 local time whileunderway in position 10-42N 109-44E. The duty officer onboard spotted a suspicious vessel approaching from the starboard bow on a collision course. The master altered course, inc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.733333300175332, 10.699999999702129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-81", - "dateofocc": "2011-01-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 11-14N 063-28E at 0450Z on 28 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.466666700181008, 11.233333300137474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-82", - "dateofocc": "2011-01-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (STAR OF ABU DHABI) was fired upon 30 Jan at 1013 UTC while underway in position 25-01N 060-26E, approximately 20NM south of Chah Bahar, Iran. The vessel was attacked by two skiffs with three people each. The skiffs broke off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.433333300289689, 25.016666700151632] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-83", - "dateofocc": "2011-02-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "230 MILES SOUTHWEST OF MINICOY ISLAND INDIA: Pirates armed with guns in two skiffs chased and fired upon a bulk carrier underway with intent to hijack. Master raised alarm, sent distress message, increased speed and took evasive maneuvers. The pirates ke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.399999999711838, 6.733333300441643] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-84", - "dateofocc": "2011-01-30", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Livestock carrier (MAYSORA) was fired upon 30 Jan at 1640 UTC while underway in position 04-20N 066-20E, approximately 375NM west of Male Island, Maldives. Eight pirates in a skiff armed with machine guns and RPG launched from a mother shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.333333299850949, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-85", - "dateofocc": "2011-01-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "65 MILES NORTH OF MINICOY ISLAND, INDIA: Pirates in two speed boats approached a container ship underway at a speed of approximately 20 knots. Master raised alarm, SSAS activated, transmitted mayday and increased to speed. The Indian coast guard responde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [73.033333299977699, 9.416666700366591] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-309", - "dateofocc": "2011-06-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "12 MILES OFF COTONOU, BENIN: Four robbers in a speed boat boarded the vessel. All crew went into the citadel, but robbers managed to capture the 2nd engineer before he could enter the citadel. Seeing this, the Master presented himself to the robbers as w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.471111100013047, 6.143055600005198] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-310", - "dateofocc": "2011-06-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RAS AL HADD, OMAN: Two skiffs with five pirates in each chased a bulk carrier underway. The pirates fired rpgs at the vessel. The pirates managed to hook on the ladder onto the ships rail however due to evasive maneuvers and using sea and swell to advant", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.483333300156403, 21.700000000057855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-311", - "dateofocc": "2011-06-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in vicinity 21-45N 060-31E at 0949z on 26 Jun. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.516666699950747, 21.749999999924569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-312", - "dateofocc": "2011-06-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF GUINEA: A chemical tanker was hijacked 26 June at 0245 UTC off of Cotonou, Benin. Ten robbers boarded the vessel, threatened and robbed the crew, damaged the vessel's equipment, and ordered the crew to sail to Lagos or Port Harcourt, Nigeria. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.533333299946094, 6.200000000006241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-313", - "dateofocc": "2011-06-30", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: A container ship was robbed 30 June at 0630 UTC while anchored in the Cat Lai anchorage, Vietnam. The duty officer noticed two boats approaching the vessel and ordered the duty able seamen to investigate. The people in the boat pretended to be f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.783333299945014, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-314", - "dateofocc": "2011-06-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "COTONOU ANCHORAGE, BENIN: A product tanker was robbed 30 Juneat 0205 UTC while anchored at 06-00N 002-29E in the Cotonou anchorage, Benin. The vessel was conducting ship-to-ship (STS) transfer operations when robbers in a speedboat boarded it, stole ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.48333330007938, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-315", - "dateofocc": "2011-06-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "AROUND 21 MILES OFF ASSAB, ERITREA, RED SEA: Two skiffs with six pirates in each approached a chemical tanker underway. Master raised alarm, crew alerted and commenced maneuvering. At a distance of 100 meters a ladder and weapons were sighted in the skif", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.983333300040101, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-316", - "dateofocc": "2011-07-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PRIOK PORT, JAKARTA, INDONESIA: A bulk carrier was robbed 3 July at 2115 UTC while berthed in position 06-05.9S 106-53.0E at Tg. Priok Port, Jakarta, Indonesia. Three robbers with knives boarded the vessel via the shore side cargo net while it was enga", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.098333299555065] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-317", - "dateofocc": "2011-07-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MALAYSIA: A U.S.-owned bulk carrier experienced an attempted boarding 1 July while underway in position 01-16.6N 104-12.8E at 1541 UTC, approximately 22NM southeast of Singapore. Robbers from four fast moving boats attempted to board, the alarm was rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.213333300320585, 1.276666700121325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-318", - "dateofocc": "2011-07-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SOUTH CHINA SEA: A tug was boarded by robbers 1 July at 1835 UTC while in position 01-31.6N 104-32.2E, approximately 41NM northeast of Singapore. A duty officer onboard a tug towing a barge spotted three pirates with knives and sounded the alarm. The ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.536666699701584, 1.526666700354269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-319", - "dateofocc": "2011-07-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Crude oil tanker (BRILLIANTE VIRTUOSO) was boarded 6 July at 0023 UTC while stopped in position 12-29N 044-44E, approximately 25NM southwest of Aden, Yemen. Seven suspected pirates boarded the vessel and left due to a fire onboard the vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.733333299871902, 12.483333300402762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-320", - "dateofocc": "2011-07-13", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: A container ship was robbed 12 July at 2005 UTC while anchored in position 20-39.2N 106-53.6E at the Hai Phong Pilot Station, Vietnam. Five robbers with knives boarded the vessel during a heavy rain, stole ship's stores, and jumped overboard wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.893333300191387, 20.653333300388169] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-209", - "dateofocc": "2010-06-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Pirates in two skiffs chased and fired upon a chemical tanker underway with intent to hijack. They attempted to board the tanker using a ladder. Tanker took evasive maneuvers and finally managed to evade the hijacking. One of the skiffs color wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.766666699601501, 13.383333299802359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-210", - "dateofocc": "2010-06-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTHERN RED SEA: Two white hulled boats with six pirates each approached a general cargo ship underway. Master took evasive action, raised general alarm, mustered all crew and activated fire hoses. The pirates aborted the attepted attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.799999999571071, 13.349999999832789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-211", - "dateofocc": "2010-06-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: General cargo ship (JK GALAXY) reported suspicious approach 10 Jun 10 at 0145 local time while underway in position 03-12.8N 108-30.1E, approximately 25NM northwest of Pulau Subi-besar, Indonesia. A small speed boat was spotted approach", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.501666699834288, 3.213333299752207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-212", - "dateofocc": "2010-06-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Tanker (ORKIM LEADER) robbed 10 Jun 10 at 0010 local time while underway in position 03-04.6N 108-23.5E, approximately 27NM west of Pulau Subi-besar, Indonesia. Men armed with long knives, machetes, crowbars, and wire boarded the tanker", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.391666699587915, 3.076666699819839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-213", - "dateofocc": "2010-06-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Pirates boarded a tanker and entered the bridge and took hostage three crew members. The pirates then took AB to the Master's cabin and stole ship's cash, crew cash and personal effects and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.616666700337134, 3.16666669993964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-214", - "dateofocc": "2010-06-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOUTH CHINA SEA: Duty officer spotted a speed boat on radar trailing it at distance of 2 miles. Ship enforced all anti piracy measures to prevent the boarding, made evasive maneuvers, sent warning to all ships in the area by VHF ch.16. Due to vigilant an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.501666699834288, 3.213333299752207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-215", - "dateofocc": "2010-06-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SOUTH CHINA SEA: About 10 to 12 pirates armed with knives in a speed boat boarded a container ship underway. They entered the bridge and took the duty officer hostage. They then entered the captain's cabin and stole ship's cash and ship's properties and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.803333300039242, 3.354999999765823] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-216", - "dateofocc": "2010-06-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SOUTH CHINA SEA: Six pirates armed with knives in a fishing boat boarded a tanker underway. They stole crew cash and personal belongings and ship's cash and properties and escaped. Vessels requested to be cautious.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.490000000096586, 3.225000000292255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-217", - "dateofocc": "2010-06-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SOUTH CHINA SEA: Container ship (KOTA DAHLIA) robbed 16 Jun 10 at 0300 local time while underway in position 03-01.9N 108-15.75E, approximately 35NM west of Pulau Subi-besar, Indonesia. Six robbers armed with long knives boarded the vessel on the starb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.262500000215482, 3.031666700209598] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-218", - "dateofocc": "2010-06-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Tanker reported suspicious approach 15 Jun 10 at 0530 UTC while underway in position 13-26N 042-41E, approximately 30NM northwest of Mokha, Yemen. Master reported three skiffs with six men onboard each chased the vessel. The vessel increased s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.6833332999405, 13.433333299669073] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-219", - "dateofocc": "2010-06-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "CHITTAGONG ANCHORAGE, BANGLADESH: Anti piracy watch onboard an anchored chemical tanker spotted six robbers armed with knives on the aft desk. Duty watch entered the accomodation locked all doors and informed the duty officer who raised the alarm. Robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.814166700025339, 22.315555600377593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-221", - "dateofocc": "2010-06-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "COTE D'IVOIRE: Container ship robbed 14 Jun 10 at 0030 local time while anchored in position 05-13.2N 004-02.6W, Abidjan anchorage. Four to five robbers armed with knives boarded the vessel and threatened the deck watchmen, who retreated into the accom", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.043333300266511, 5.22000000010047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-222", - "dateofocc": "2010-06-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (MERIOM IRIS) fired upon 13 Jun 10 at 1234 UTC while underway in position 13-24N 049-35E, approximately 70NM south of Al Mukalla, Yemen. Vessel reported coming under fire from an AK-47 by one skiff with six persons onboard. Crew wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.583333300433424, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-96", - "dateofocc": "2011-02-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Oil tanker (IRENE SL) was hijacked 9 Feb at 0926 UTC while underway in position 21-27N 063-18E, approximately 255NM east of Masirah Island, Oman. The vessel was boarded and the 25 crewmembers onboard were taken hostage. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.299999999784404, 21.449999999824911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-220", - "dateofocc": "2010-06-15", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "SOUTH CHINA SEA: Container ship (KOTA DAMAI) robbed 15 Jun 10 at 0415 local time while underway in position 02-59.5N 108-11.0E, approximately 40NM west of Pulau Subi-besar, Indonesia. Eight robbers armed with knives, wearing black shirts, black trouser", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.183333299810442, 2.991666699956454] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-400", - "dateofocc": "2010-10-24", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: General cargo ship (BELUGA FORTUNE) reported an illegal boarding 24 Oct 10 at 0524 UTC while underway in position 03-29N 059-35E, approximately 850NM east of Mogadishu, Somalia. Pirates armed with automatic weapons and RPG attacked a gener", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.583333299857486, 3.483333300111724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-397", - "dateofocc": "2010-10-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN: Container ship fired upon and chased 22 Oct 10 at 2300 UTC while underway in position 13-08N 048-44E, approximately 115NM southwest of Al Mukallah, Yemen. Five pirates armed with guns in a high speed skiff chased and fired upon a container", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.733333300001277, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-414", - "dateofocc": "2010-10-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "INDONESIA: Tug boat (SURYA PUTRA 5) robbed 24 Oct 10 at 1620 local time while underway in position 01-01.4S 104-29.04E, 8NM east of Selat Berhala. Two boats with 11 robbers armed with knives and parangs came alongside tug boat. The robbers demanded Mari", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.483333299780725, -1.023333300042964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-415", - "dateofocc": "2010-10-20", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "PHILIPPINES: Container ship robbed 20 Oct 10 at 2100 local time while at anchor in position 14-32N 120-54.9E, in Manila. Robbers in two motor boats boarded a container ship via anchor chain. Duty bosun noticed unusual movements on the forecastle deck an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.914999999898441, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-416", - "dateofocc": "2010-10-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (GO TRADER) illegally boarded 30 Oct at 0512Z while underway in position 15-06N 055-58E, approximately 190 miles southeast of Salalah, Oman. Armed pirates boarded a bulk carrier underway. All crew retreated into the citadel wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.966666700388146, 15.099999999664533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-417", - "dateofocc": "2010-10-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "290 MILES SOUTHEAST OF DAR es SALAAM, TANZANIA: Armed pirates boarded a chemical tanker. All crew retreated into the citadel from where they could control the ship. Unable to take control of the vessel the pirates left. At 1059Z, the master and the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.316666699901759, -9.950000000111345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-418", - "dateofocc": "2010-10-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VISAKHAPATNAM ANCHORAGE, INDIA: Tanker reported attempted boarding 29 Oct at 0730 local time while at anchor in position 17-40N 083-25E, at Visakhapatnam achorage. Five robbers in a fishing boat approached a tanker at anchor. They attempted to board by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.416666700061796, 17.66666669995891] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-419", - "dateofocc": "2010-10-31", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CONAKRY PILOT STATION, GUINEA: Five pirates armed with automatic weapons in a small speed boat chased and boarded a general cargo ship underway. Master immediately informed port control and the agent. Pirates entered the bridge, ordered the Master to sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.729999999747974, 9.450000000336161] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-420", - "dateofocc": "2010-11-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "WESTERN INDIAN OCEAN: Bulk carrier fired on 2 Nov at 0300Z while underway in position 03-58S 043-49E, approximately 285 miles east of Mombasa, Kenya. Seven pirates armed with rpgs and automatic guns in two skiffs chased and fired upon a bulk carrier und", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.816666700399878, -3.966666699814482] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-421", - "dateofocc": "2010-11-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "WESTERN INDIAN OCEAN: A mothership vessel lowered two skiffs that approached a tanker underway at 20 knots. Five to six persons in each skiff and weapons were sighted when skiffs reached about 500 meters. Security team onboard fired hand flares and warni", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.168333300316078, 7.31333329961501] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-422", - "dateofocc": "2010-11-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "GULF OF ADEN: A fishing vessel hijacked 2 Nov at 1237Z while underway in position 13-31N 048-19E approximately 85 miles southwest of Al Mukallah, Yeman. A fishing vessel was reported hijacked by pirates.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.316666700095766, 13.516666700229393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-86", - "dateofocc": "2011-02-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 16-29N 065-57E at 1431Z on 03 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.949999999915065, 16.483333299632818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-87", - "dateofocc": "2011-02-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Products tanker (PORT STEWART) was fired upon 2 Feb at 1431 UTC while underway in position 13-03N 063-30E, approximately 515NM SE of Duqm, Oman. One skiff with a mother ship fired weapons and RPG at the vessel, but the boarding attempt was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.500000000150578, 13.049999999733132] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-88", - "dateofocc": "2011-02-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "560 MILES EAST OF SOCOTRA ISLAND: Pirates in four skiffs launched from a mother vessel armed with rpgs and guns chased a tanker (NEW YORK STAR) underway. The tanker increased speed enforced anti piracy measures, all crew went into the citadel. Four unarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.556666700300866, 11.291666700314806] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-89", - "dateofocc": "2011-02-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Tanker (MAERSK PHOENIX) was fired upon 2 Feb at 1636 UTC, while underway in position 15-16.6N 054-35.8E, approximately 105NM south of Salalah, Oman. Pirates in two skiffs armed with machine guns chased and fired upon the tanker. The master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.596666700262915, 15.276666699674763] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-90", - "dateofocc": "2011-02-01", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "123 MILES SOUTHEAST OF SOCOTRA ISLAND: Pirates in a dhow and a skiff were spotted by a tanker underway. Master raised alarm, increased speed and fired warning flares. The skiff chased the tanker with a speed of 19 knots. At a distance of .7 miles the onb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.266666699588427, 11.216666700065105] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-91", - "dateofocc": "2011-01-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "NIGERIA: Tug was boarded 27 Jan at 0820 local time while underway in position 04-11.6N 006-58.3E, approximately 3NM SW of the Bonny Fairway buoy. Six criminals armed with guns boarded the vessel. They stole the vessel's and captain's cash, property, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.971666699959258, 4.193333299658036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-92", - "dateofocc": "2011-02-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: VLCC (DUQM) was attacked 02 Feb at 0918 UTC while underway in position 24-14.50N 063-20.11E, approximately 60NM south of Pasni, Pakistan. International warships came to the assistance of the vessel and fired one 5 inch illumination round a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.334999999781019, 24.241666699969187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-93", - "dateofocc": "2011-01-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker was robbed 27 Jan at 0330 local time while at anchorage in Tanjung Priok, Jakarta, Indonesia. The duty crew on the bridge wing of the vessel noticed a robber on the main deck and another robber climbing onboard. The duty crew and office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.133333299551737] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-94", - "dateofocc": "2011-02-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: VLCC (CHIOS) was fired upon 5 Feb at 0930 UTC while underway in position 10-00.1N 070-59.4E, approximately 155NM NW of Minicoy Island, India. A skiff with four pirates onboard fired upon the vessel with small arms and RPG. The vessel incre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.990000000329871, 10.001666699796488] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-95", - "dateofocc": "2011-02-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN ARABIAN SEA: Merchant vessel attacked in 10-04N 070-54E at 1011Z on 05 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.900000000210014, 10.06666670043262] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-97", - "dateofocc": "2011-02-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "INDIAN OCEAN: Vehicle carrier (DELPHINUS LEADER) was attacked 8 Feb at 0918 UTC while underway in position 13-06N 064-09E, approximately 560NM east of Socotra Island, Yemen. A single skiff with a mother ship in the area fired upon the vessel, but the DE", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.150000000216551, 13.099999999599845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-98", - "dateofocc": "2011-02-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Crude oil tanker (SAVINA CAYLYN) was hijacked 8 Feb at 0427 UTC while underway in position 12-10N 066-00E, approximately 680NM east of Socotra Island, Yemen. Five pirates in one skiff fired upon the vessel with small arms and four RPG roun", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.999999999781778, 12.166666700230735] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-99", - "dateofocc": "2011-02-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (CMA CGM CHOPIN) was attacked 5 Feb at 0850 UTC while underway in position 10-36N 065-26E, approximately 630NM ESE of Socotra Island, Yemen. One skiff with five pirates onboard attacked the vessel, although no shots were fir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.433333299552089, 10.599999999968645] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-321", - "dateofocc": "2011-07-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BAB EL MANDEB STRAITS, RED SEA: Pirates armed with guns in two skiffs chased and approached a chemical tanker underway. Maters mustered crew and ship's security team was deployed to the bridge wings. On sighting the security team, the pirates aborted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.300000000036903, 12.73333329973633] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-322", - "dateofocc": "2011-07-08", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MANILA SOUTH ANCHORAGE, PHILIPPINES:Duty watchman onboard an anchored container ship noticed three robbers boarding the vessel from a boat near the forecastle. He informed the duty officer who raised the alarm and reported to port authorities. Seeing cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-323", - "dateofocc": "2011-07-09", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CONAKRY, GUINEA: Pirates in a motor boat approached a drifting bulk carrier. Duty officer noticed the approaching boat and raised alarm and crew mustered. Pirates fired machine guns and rpgs at the vessel and moved away. Vessel proceeded further out to s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-14.105000000097334, 9.100000000369846] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-326", - "dateofocc": "2011-07-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "EGYPT: A product tanker was robbed 15 July while anchored in position 29-49.25N 032-31.25E, in the Suez anchorage, Egypt. The robbers stole the forward life raft and escaped. The theft was not noticed until 0605 UTC. Port control was informed. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.520833300275115, 29.820833300277684] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-324", - "dateofocc": "2011-07-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "SOUTHERN RED SEA: A sailing yacht was hijacked by pirates in 14-57N 041-51E at 1700z on 08 Jul. The vessel and crew has been reported safe. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.85000000030476, 14.950000000064392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-325", - "dateofocc": "2011-07-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Nine skiffs surrounded a LPG tanker underway. The security team observed one skiff carrying six men suddenly turned towards the tanker's stbd side and closed in aggressively. Master took evasive maneuvers when the skiff came close to 50-60 meter", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.318333300104086, 14.601666700125122] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-327", - "dateofocc": "2011-07-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Six pirates in a skiff chased a bulk carrier underway. Master raised alarm, crew proceeded to citadel and security guards onboard fired a hand flare. The pirates continued to chase the ship and closed to a distance of 300 meters from the sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.288333299723263, 13.60500000032215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-329", - "dateofocc": "2011-07-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: A tanker was chased and fired upon by six to seven pirates wearing dark clothes in a skiff. Master increased speed and mustered crew. Onboard secutiy team released flares and when pirates continued, warning shots were fired resulting in the pira", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.693333299554126, 13.431666700366065] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-330", - "dateofocc": "2011-07-10", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "HAITI: A container ship was robbed 10 July at 0500 UTC while anchored in position 18-32N 72-23W in the Port au Prince anchorage, Haiti. Robbers boarded the vessel and stole ship's property. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.533333299564163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-230", - "dateofocc": "2010-06-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "RORO SHIP", - "descriptio": "BANGLADESH: Ro/Ro ship robbed 20 Jun 10 at 0330 local time while conducting anchoring operations in position 22-12.9N 091-43.1E, Chittagong anchorage. Eight robbers armed with knives attempted to attack a duty crewmember who ran into the accommodation", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.718333299723099, 22.215000000393729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-331", - "dateofocc": "2011-07-15", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "COLOMBIA: A container vessel experienced an attempted boarding 16 July at 0330 UTC while underway in position 10-18.9N 075-35.3W at the Cartagena Pilot Station, Colombia. Three robbers in a small boat attempted to board the vessel via a rigged pilot lad", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.588333299940757, 10.314999999739143] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-332", - "dateofocc": "2011-07-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: A chemical tanker was robbed 19 July at 2130 UTC while anchored in position 03-55.9N 098-45.8E in the Belewan anchorage, Indonesia. The duty watchman sighted three robbers and informed the officer of the watch (OOW), the OOW then raised the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.763333299559747, 3.931666699609139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-333", - "dateofocc": "2011-07-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Merchant vessel fired upon by six pirates in a skiff in 13-29N 042-36E at 1118Z on 21 Jul. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.600000000104217, 13.483333300435106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-335", - "dateofocc": "2011-07-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "60 MILES WEST OF LUANDA, ANGOLA: A speed boat with unknown number of persons approached a tanker underway. Duty officer informed the Master who took evasive maneuvers, increased speed, raised alarm, mustered crew and activated fire pumps. The speed boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [12.349999999800445, -8.416666699643599] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-336", - "dateofocc": "2011-07-20", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "HUANGPU ANCHORAGE, CHINA: Robbers boarded a bulk carrier at anchor during heavy rain. Alert duty watchman sighted the robbers on the forecastle deck, notified the duty officer and went towards the robbers. Seeing the alert crew the robbers escaped. Inves", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.645000000211894, 22.749999999956913] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-223", - "dateofocc": "2010-06-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTH CHINA SEA: Bulk carrier (TRANS PACIFIC) robbed 12 Jun 10 at 2200 local time while underway in position 03-49.8N 105-46.87E, approximately 45NM north of PulauMangkai, Indonesia. Eight robbers armed with long knives boarded the vessel from a speedb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.781111100359283, 3.225000000292255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-224", - "dateofocc": "2010-06-16", - "subreg": "94", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "CHINA: General cargo ship boarded 16 Jun 10 at 0100 local time while anchored in position 38-56.8N 121-43.3E, Dalian anchorage. Alert crew onboard the vessel spotted a robber on the forecastle deck. Upon seeing the alert crew, the robber escaped. Incid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.721666699848129, 38.946666699711784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-225", - "dateofocc": "2010-06-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Possible mothership activity 13-24N 042-45E at 181343 UTC Jun. Vessels transitig the area are advised to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.749999999704357, 13.399999999699503] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-226", - "dateofocc": "2010-06-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "RORO VESSEL", - "descriptio": "50 MILES FROM DAR ES SALAAM, SOMALIA: A roro vessel spotted a suspicious skiff approaching it. The vessel altered course to prevent the skiff from coming closer.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.850000000240129, -7.016666699778227] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-227", - "dateofocc": "2010-06-22", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "PUERTO LA CRUZ ANCHORAGE, VENEZUELA: Deck patrol onboard an anchored chemical tanker noticed a small unlit boat near the anchor cable and immediately informed the duty officer, who raised the alarm. Seeing crew alertness the robbers jumped overboard and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-228", - "dateofocc": "2010-06-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Six pirates armed with guns in a skiff chased a bulk carrier underway. The vessel made evasive maneuvers and enforced anti piracy measures. Pirates in the skiff opened fire on the vessel. Due to effective anti piracy measures the vessel evaded t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.985000000067203, 13.54499999994249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-229", - "dateofocc": "2010-06-18", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "CALLAO ANCHORAGE, PERU: Two robbers armed with knives boarded an anchored chemical tanker via the anchor chain and entered the forepeak store. Duty A/B on anti piracy watch went forward, saw a robber with a knife and immediately reported to the deck offi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.191666700226506, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-179", - "dateofocc": "2012-05-23", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "IRAN:A merchant vessel reported being fired upon from multiple skiffs at approximately 0900Z on 23 May in position 2528N 05720E approximately 26NM south west of Bander-e-Jask, Iran.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.333333299559911, 25.46666669985143] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-231", - "dateofocc": "2010-06-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "RED SEA: General cargo ship fired upon 18 Jun 10 at 1343 UTC while underway in position 13-23.6N 042-44.8E, approximately 30NM west of Mokha, Yemen. Armed men in two skiffs chased and fired upon the vessel. The captain reported the men attempted to boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.746666700374305, 13.393333300315248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-232", - "dateofocc": "2010-06-23", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VENEZUELA: Tanker reported attempted boarding 23 Jun 10 at 2106 local time while anchored in position 10-16.3N 064-42.2W, Puerto la Cruz. Two robbers attempted to board the vessel by climbing the anchor chain. Crew spotted them and raised the alarm. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.703333300087877, 10.271666700155947] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-233", - "dateofocc": "2010-06-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "RED SEA: Container ship reported suspicious approach 24 Jun 10 at 1525 UTC while underway in position 13-12.2N 043-03.8E, approximately 12NM southwest of Mokha, Yemen. Armed men in four skiffs approached the vessel underway. The vessel increased speed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.063333299647013, 13.203333299562701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-234", - "dateofocc": "2010-06-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "3 MILES SOUTH OF BONNY RIVER, NIGERIA: Twelve robbers in two speed boats attacked a bulk carrier at anchor. They fired with hand made guns and attempted to board the ship using hooks attached to ropes. Ship's crew raised alarm, directed search light and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.032222199865259, 4.153055599554136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-235", - "dateofocc": "2010-06-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BANGLADESH: Chemical tanker robbed 26 Jun 10 at 0230 local time while anchored in position 22-13.8N 091-44E, Chittagong anchorage. Five robbers in two wooden boats armed with hand guns and knives boarded the vessel at anchor. They pointed guns at the d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.230000000263828] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-423", - "dateofocc": "2010-11-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Mothership activity vicinity 03-45S 046-45E at 030410Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.749999999833733, -3.749999999551108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-424", - "dateofocc": "2010-11-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 05-15S 043-39E at 030700Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.650000000003274, -5.250000000049283] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-425", - "dateofocc": "2010-11-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate activity in 05-30S 043-30E at 031830Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.500000000403134, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-426", - "dateofocc": "2010-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHAT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN, TANZANIA: A merchant vessel reported being chased by hijacked vessel (IZUMI) at 1316Z in position 05-09S 040-45E. Pirates aboard IZUMI launched one skiff which fired upon the target vessel. After four hours of chasing and firing, t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.74999999963967, -5.150000000315856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-410", - "dateofocc": "2010-10-29", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN, KENYA:Tanker fired upon 29 Oct at 1245Z while underway in position 04-22S 039-58E, approximately 28 miles southeast of Mombasa. Pirates armed with rpgs and ak-47s in two skiffs fired upon a tanker with intent to board. Security tea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.9666666998707, -4.366666699647567] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-427", - "dateofocc": "2010-11-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier robbed 2 Nov at 0420 local time while conducting cargo operations in Belawan port. Three robbers armed with long knives boarded a bulk carrier at berth during cargo operations. Duty crew on rounds noticed the robbers and approache", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.690555599587469, 3.783055600360569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-428", - "dateofocc": "2010-11-06", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Mothership activity reported 07-34N 060-16E at 061015Z Nov. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.266666699717803, 7.5666666999021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-338", - "dateofocc": "2011-07-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF GUINEA: Tanker (RBD ANEMA E CORE) was hijacked 24 July at 0140 UTC while engaged in ship-to-ship operations with another tanker in position 05-59.36N 002-24.11E, approximately 22NM southwest of Cotonou, Benin. The pirates boarded the tanker via", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.401944400120954, 5.989444399776062] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-429", - "dateofocc": "2010-11-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Tanker fired upon 8 Nov 10 at 1345 UTC while underway in position 06-43S 051-15E, approximately 750NM southeast of Mombasa, Kenya. One white-hulled, seven meter skiff with six people on board approached tanker from astern and fired RPG, hi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.25000000042894, -6.716666699678569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-431", - "dateofocc": "2010-11-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "900 MILES EAST OF EYL, OFF SOMALIA: Pirates in two white colored skiffs chased and fired upon a container ship underway. Vessel managed to evade the boarding. A suspected mother vessel was sighted a short distance away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.999999999749434, 6.050000000406101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-433", - "dateofocc": "2010-11-10", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: A suspicious approach was reported on 100558Z Nov by a merchant vessel in position 06-15N 064-44E. The suspious approach is most probally connected with the attack on the 090834Z Nov, when a merchant vessel was reported under attac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.733333299619346, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-434", - "dateofocc": "2010-10-30", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BRAZIL: Bulk carrier robbed 30 Oct 10 at 0100 local time while at anchor in position 01-31S 048-45W, in Vila do Conde. Four robbers armed with knives boarded a bulk carrier at anchor. They took hostage a duty watchman, threatened him with knives, and ti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.750000000107093, -1.550000000019566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-435", - "dateofocc": "2010-11-03", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VENEZUELA: Tanker boarded 3 Nov 10 at 1906 local time while at anchor in position 10-12N 064-47W, in Bahia de Barcelona. Six robbers armed with knives boarded an anchored tanker via the anchor chain. The robbers threatened the duty watch and took his wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.783333299694732, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-436", - "dateofocc": "2010-11-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "NIGERIA: Tug robbed 5 Nov 10 at 1322 local time while underway in position 04-38N 008-22E, approximately 10NM south of Parrot Island, Calabar. Twenty pirates armed with guns in two speed boats boarded a tug underway. All crew locked themselves into the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.366666699568214, 4.633333299744208] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-437", - "dateofocc": "2010-11-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (FLOYEN) fired upon 9 Nov 10 at 0500 local time while underway in position 01-01N 052-58E, approximately 350NM north of the Seychelles. Two white skiffs with nine people in each chased a tanker for two hours and fired upon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.966666700291114, 1.016666700274811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2010-438", - "dateofocc": "2010-11-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TANZANIA: Tanker (TORM KANSAS) chased and fired upon 5 Nov 10 at 1457 UTC while underway in position 05-25S 040-42E, approximately 50NM east of Pemba Island, Tanzania. Heavily armed pirates in a skiff chased and fired upon a product tanker underway. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.699999999772956, -5.416666700445944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-100", - "dateofocc": "2011-02-05", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (PUELCHE) was attacked 5 Feb at 0315 UTC while underway in position 10-21.2N 065-27.7E, approximately 675NM ESE of Socotra Island, Yemen. Armed pirates chased the vessel but aborted the attack after evasive maneuvers were em", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.461666699989223, 10.353333299965129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-101", - "dateofocc": "2011-02-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel pirated in 19-29N 063-33E at 1947Z on 12 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.550000000017292, 19.483333299729793] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-102", - "dateofocc": "2011-02-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-51N 043-15E at 0510Z on 10 Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.250000000170189, 12.850000000266277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-103", - "dateofocc": "2011-02-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA: Chemical tanker was approached 10 Feb at 0135 local time while underway in position 05-31.9N 003-38E, approximately 50NM off Lagos, Nigeria. Seven to eight armed robbers in a fishing boat approached the tanker from astern. The duty officer noti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.633333299711865, 5.531666699840741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-104", - "dateofocc": "2011-02-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Crude oil tanker (NS CENTURY) was suspiciously approached 16 Feb at 0800 UTC while underway in position 20-53.2N 069-39.1E, approximately 40NM south of Porbandar, India. Three skiffs were seen 6.3NM ahead of the tanker, along with a mother", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.651666699971827, 20.886666699649368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-105", - "dateofocc": "2011-02-13", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel was hijacked 13 Feb while underway in position 12-00N 053-02.1E, approximately 8NM south of Socotra Island, Yemen. The vessel has a crew of eight. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.035000000257298, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-106", - "dateofocc": "2011-02-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN: Bulk carrier (SININ) was hijacked 12 Feb at 1218 UTC while underway in position 20-15.43N 064-16.09E, approximately 280NM SE of Ras al Had, Oman. The vessel, which has a crew of 23, sent out a distress signal. A coalition aircraft was sent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [64.268055600198693, 20.257222200135573] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-107", - "dateofocc": "2011-02-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAIT: Tug was boarded by robbers 14 Feb at 0415 local time while underway in position 01-04.98N 103-35.10E, approximately 6NM SW of Pulau Nipah, Indonesia. Eight to ten robbers boarded the vessel armed with parangs (machetes) from a motorise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.585000000408172, 1.083055600363139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-108", - "dateofocc": "2011-02-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAIT: Tug was boarded by two suspects 11 Feb at 0805 local time, while at anchor in position 01-11N 103-35E, approximately 4.5NM NW of Pulau Nipah, Indonesia. Nothing was stolen and the robbers escaped in a small wooden boat. (ReCAAP, IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-109", - "dateofocc": "2011-02-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship was robbed 23 Feb at 21:35 local time while in position 22-11.42N 91-43.55E at Chittagong Port outer limits. The robbers stole three large garbage bins. No crew was injured. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.725833300107809, 22.190277799686271] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-110", - "dateofocc": "2011-02-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship was robbed 21 Feb at 0400 local time while in position 22-15N 91-47E at the Chittagong outer anchorage. Two robbers in a boat boarded the ship. Duty crew spotted the robbers on the poop deck and raised the alarm. Upon seeing t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-111", - "dateofocc": "2011-02-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (DELMAS KETA) was fired upon 19 Feb at 0728 UTC while underway in position 11-33S 050-45E, approximately 100NM NE of Antisiranana, Madagascar. The vessel was fired upon with automatic weapons by a pirate action group consist", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.749999999963109, -11.550000000342948] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-112", - "dateofocc": "2011-02-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "INDIAN OCEAN: Yacht (QUEST) was hijacked 18 Feb at 1323 UTC while underway in position 18-00N 061-02E, approximately 282NM SE of Sur, Oman. Nineteen pirates reportedly were involved in the hijacking on QUEST, which resulted in the death of all four crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.033333299589628, 18.000000000028137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-113", - "dateofocc": "2011-02-19", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier was robbed 19 Feb at 0200 local time, while at anchorage in position 03-44.2S 114-25.6E, Taboneo anchorage. The robbers stole ship stores and escaped.The incident was reported to the authorities. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.426666699778593, -3.73666669970811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-114", - "dateofocc": "2011-02-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAIT: Tug was robbed 17 Feb at 0540 local time while underway in position 01-08.1N 103-32.2E. Six robbers armed with long knives boarded the vessel and attempted to take money from the crew. All accesses were locked, and the pirates stole s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.53666669966924, 1.135000000107709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-337", - "dateofocc": "2011-07-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-56N 048-30E at 1029Z on 22 Jul. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.499999999665476, 12.933333300102561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-328", - "dateofocc": "2011-07-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Oil tanker (JUBBA XX) was hijacked 16 July in the morning. The exact location of the vessel during the hijacking is unknown. As of 17 July at 0813 UTC, the vessel was located at 13-48N 051-25E, approximately 134NM northwest of Socotra Isla", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.416666699926225, 13.800000000431908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-339", - "dateofocc": "2011-07-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF GUINEA: A tanker experienced two attempted boardings, the first on 6 July at 2230 UTC while launching in position 06-15.6N 002-23E, approximately 6NM southwest of Cotonou, Benin. Ten robbers with guns attempted to board the vessel with a hook at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.383333300345896, 6.260000000385901] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-340", - "dateofocc": "2011-07-22", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "VEHICLE CARRIER", - "descriptio": "GULF OF GUINEA: A vehicle carrier was robbed 22 July at 0340 UTC during cargo operations in Conakry Port, Guinea. Armed robbers held a duty crewmember at gunpoint, forced him to direct them to the ship's stores, and hit him when he resisted. The robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.712222200074109, 9.509166699715365] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-341", - "dateofocc": "2011-07-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "GULF OF GUINEA: Product tanker was hijacked 30NM off the coast of Nigeria on 16 July. The vessel was transiting from Ghana to Benin. The vessel was released on 18 July at 1700 UTC, and all 20 crewmembers were reported in good health. It is unknown whethe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.513333299819521, 6.146666699910099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-342", - "dateofocc": "2011-07-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN: Six armed pirates in a skiff chased a container vessel underway. Master raised the alarm, took evasive maneuvers and contacted the coalition forces. The vessel managed to evade the attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.366666699962479, 13.006666700149935] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-343", - "dateofocc": "2011-07-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SAMARINDA MUARA BERAU ANCHORAGE, INDONESIA: Robbers boarded a bulk carrier at anchor, stole ship's stores and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.594444400224234, -0.224444400153516] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-344", - "dateofocc": "2011-07-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "30 MILES NORTH OF ASSAB, ERITREA, RED SEA: Three skiffs with 5-6 pirates in each were noticed by a tanker underway. One of the skiff suddenly approached the tanker. Master released two flares when the skiff closed to 700 meters. The skiff doing 20 knots", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.703333300067072, 13.528333300045347] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-345", - "dateofocc": "2011-07-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "40 MILES OFF ASSAB, ERITREA, RED SEA: Pirates in two skiffs approached a container ship underway. Master raised alarm, increased speed, took evasive maneuvers and crew activated fire hoses. The pirates chased the ship and later aborted the attempted atta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.956666700354106, 13.688333300158433] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-346", - "dateofocc": "2011-08-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "KENYA: Container vessel was robbed 1 August at 0100 UTC while moored with buoys in position 04-03.7S 039-38.6E in Mombasa Port, Kenya. Two robbers with knives boarded the vessel. The onboard security team noticed the robbers on the forecastle deck and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.643333299590381, -4.061666700190756] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-347", - "dateofocc": "2011-07-31", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF GUINEA: Chemical tanker (GOTLAND SOFIA) was boarded by 10 pirates with guns on 31 July at 0150 UTC while engaged in ship-to-ship operations about 38NM outside Cotonou Port, Benin. The robbers fired at the bridge, the crew barricaded themselves in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.48333330007938, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-348", - "dateofocc": "2011-08-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "ATLANTIC OCEAN: General cargo ship was robbed 1 August at 0015 UTC while anchored at Pointe Noire Roads, The Congo. After the duty crew alerted, the five robbers escaped with ships stores in a high speed boat. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.850000000233933, -4.800000000349485] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-349", - "dateofocc": "2011-07-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "ASSAB, ERITREA, RED SEA: A product tanker underway noticed one white colored skiff and on dark colored skiff with six pirates in each at a distance of 1.5 miles. The dark colored skiff approached the tanker at a speed of 15 knots. Master raised alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.598333300077115, 13.493333300048732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-325", - "dateofocc": "2013-11-11", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 11 November, an anchored bulk carrier was boarded near position 03-40S 114-26E, Taboneo Anchorage. The robbers boarded the ship unnoticed and broke into bosun storeroom and escaped with ships store's and properties. The theft was noticed by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.666666699714824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-326", - "dateofocc": "2013-11-08", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 8 November, an anchored bulk carrier was boarded near position 01-43S 116-38E, Adang Bay Anchorage. The duty A/B found six robbers, armed with knives, and alerted the Duty Officer who raised the alarm resulting in the robbers escaping empty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.71666670041617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-327", - "dateofocc": "2013-11-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "Petroleum product tanker", - "descriptio": "MALAYSIA:On 7 November, an underway petroleum product tanker was boarded and hijacked near position 01-20N 103-18E, around 7.3nm west of Pulau Kukup. Five pirates armed with knives and guns boarded the ship and tied up all the crew members and held them", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.30000000017867, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-328", - "dateofocc": "2013-11-13", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "YACHT", - "descriptio": "VENEZUELA:On 13 November, a yacht experienced a boarding near position 10-48N 061-59W, approximately 5 nm north of Cabo San Francisco, near the Paria Peninsula. Five armed robbers in a pirogue approached and boarded the boat, pistol-whipped the Skipper a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.983333299963931, 10.800000000334876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-329", - "dateofocc": "2013-11-10", - "subreg": "25", - "hostility_": "ROBBERS", - "victim_d": "YACHT", - "descriptio": "GUADELOUPE:On 10 November, a yacht experienced a boarding while anchored near position 16-13N 061-22W, Saint Anne. Five robbers swam out to the anchored yacht and attempted to steal electronics and were surprised when the yacht Skipper returned aboard. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.366666699692246, 16.216666700226767] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-330", - "dateofocc": "2013-11-14", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 14 November, seven robbers boarded the ship unnoticed and entered the engine room of an anchored tanker near position 01-23N 104-42E approximately 12 nm northeast of Bintan Island. Duty oiler noticed the robbers during his routine rounds and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.700000000044042, 1.383333300313609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-331", - "dateofocc": "2013-11-09", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "YACHT", - "descriptio": "INDONESIA:On the night of 9 November, robbers boarded a yacht anchored near position 01-22S 109-20E, Pontianak Harbor, Kalimantan. The robbers stole outboard motors, a generator, fuel, dive gear and a large amount of electronics and navigation gear. Repo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.333333300342247, -1.366666699550535] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-332", - "dateofocc": "2013-11-08", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "LPG TANKER", - "descriptio": "VIETNAM:On 8 November, three robbers in a skiff and armed with a gun and knives boarded a berthed LPG tanker at position 10-39N 107-01E, Gas-PVC Phuc Thai Jetty. Alert crewmembers sounded the alarm and the crew mustered. Seeing the crew response, the rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.016666700105532, 10.649999999835359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-333", - "dateofocc": "2013-11-06", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BARGE/TUG", - "descriptio": "MALAYSIA:On 6 November, approximately 20 robbers boarded a barge being towed by a Singapore-registered tug near position 01-25N 104-23E, approximately 1.6 nm north-northeast of Horsburgh Lighthouse. A Singapore Navy vessel was dispatched to the area. Upo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.383333300047298, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-334", - "dateofocc": "2013-11-24", - "subreg": "57", - "hostility_": "ROBBER", - "victim_d": "TUG", - "descriptio": "CONGO:On 24 November, an anchored offshore tug experienced a boarding near position 04-45S 011-49E, Pointe Noire. The robber managed to board the tug. An alert duty watchman sighted the robber and alerted the duty officer who raised the alarm. On seeing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-335", - "dateofocc": "2013-11-19", - "subreg": "51", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SIERRA LEONE:On 19 November, an anchored chemical tanker experienced a boarding near position 08-30N 013-11W, Freetown Inner Anchorage. Five robbers armed with knives boarded the anchored chemical tanker and stole ship's properties. The deck watchman wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.183333299644801, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-336", - "dateofocc": "2013-11-21", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "OIL TANKER", - "descriptio": "INDIA:On 21 November at approximately 0300 local time, an anchored crude oil tanker experienced a boarding near position 22-38N 069-53E, Sikka Crude Oil Anchorage. Robbers boarded the ship through the hawse pipe, stole ship's stores, equipment and escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.883333300280526, 22.633333300326285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-292", - "dateofocc": "2012-10-16", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 16 October near 00-13S 117-33E, Muara Berau Anchorage, Samarinda. Three robbers boarded the vessel while at anchor. They were spotted by the duty crew during security rounds. The duty A/B reported to the bridge and appro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-337", - "dateofocc": "2013-11-21", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "OIL TANKER", - "descriptio": "INDIA:On 21 November at approximately 0240 local time, an anchored crude oil tanker experienced a boarding near position 22-39N 069-55E, Sikka Crude Oil Anchorage. Eight robbers armed with knives boarded the ship. The duty officer immediately raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.91666670007487, 22.650000000223486] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-68", - "dateofocc": "2012-02-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABAIN SEA: Merchant vessel attacked in 18-10N 057-21E at 171937Z Feb. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.350000000356374, 18.166666700424742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-69", - "dateofocc": "2012-02-22", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: A tanker underway sighted a skiff at 1.6 miles approaching at around 20 knots. A suspicious dhow was sighted in the vicinity. Master sent distress to navies and informed UKMTO. As the skiff approached weapons were sighted and the onboard ar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.366666700027167, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-70", - "dateofocc": "2012-02-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: Chemical tanker boarded on 23 February while under pilotage at position 03-23N 099-27E Kuala Tanjung Anchorage. Duty engineer raised alarm when he saw robbers holding an engineering crewman hostage and stealing spare parts. Pilot informed port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.449999999649435, 3.38333330037824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-71", - "dateofocc": "2012-02-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Seven pirates in two skiffs chased a chemical tanker underway. Master raised alarm, altered course and the onboard security team fired hand flares followed by a warning shot resulting in the pirates aborting the attack and moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.341666700317091, 12.59499999977686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-72", - "dateofocc": "2012-02-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA/ GULF OF ADEN: A bulk carrier underway noticed nine skiffs approaching aggressively at stbd side and one skiff at ort side. Master raised alarm, increased speed and began evasive maneuvers. One of the skiffs with 10-15 pirates onboard close in to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.683333299972844, 12.483333300402762] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-73", - "dateofocc": "2012-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "STRAIT OF HORMUZ: A container ship underway noticed three skiffs at a distance of 2 miles approaching her at high speed. Master raised alarm, activated SSAS, altered course, non-essential crew mustered in the citadel and the onboard armed guards took the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.701666700317446, 26.148333299859928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-74", - "dateofocc": "2012-02-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA: Pirates in three skiffs with ladders doing arouns 20 knots chased a container ship underway. Non essential crew took shelter in the citadel and security team deployed. Master informed UKMTO who advised ship to alter course towards a coalitio", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.38999999977483, 20.326666699703196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-75", - "dateofocc": "2012-02-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "IVORY COAST: Offshore supply ship boarded on 26 February while anchored at 05-16N 004-01W, Abidjan Inner Anchorage 9. Three robbers in a canoe, armed with knives, boarded from the port side main deck. One robber threatened the watch man with a knife whil", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.266666699737755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-76", - "dateofocc": "2012-01-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "GUARD VESSEL", - "descriptio": "POINT NOIRE ANCHORAGE, THE CONGO: Five robbers in a canoe approached an anchored guard vessel during heavy rain. One of the robbers boarded the vessel and stole ship stores. C/O on watch noticed the robber with a long knife on the main deck and raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.80000000036722, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-77", - "dateofocc": "2012-02-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN ARABIAN SEA: Merchant vessel attacked in 15-01N 054-56E at 1206Z on 28 February. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.933333299662138, 15.016666699828249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-78", - "dateofocc": "2012-02-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "REFRIGERATED CARGO SHIP", - "descriptio": "NIGERIA: Refrigerated cargo ship boarded on 28 February while anchored at position 04-12 N 006-56 E, 3 nm from Fairway Buoy Port Harcourt. Eight pirates armed with guns boarded the ship from a small wooden boat and started firing toward the bridge and ga", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.933333299908497, 4.199999999941554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-79", - "dateofocc": "2012-02-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "80 MILES OFF PORT HARCOURT, NIGERIA: Heavily armed pirates fired upon a chemical tanker underway. The vessel enforced anti-piracy measures, increased speed and managed to evade the boarding. The pirate group may still be in the area.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.750000000306443, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-80", - "dateofocc": "2012-02-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship boarded on 29 February while anchored at position 21-44 N 091-37 E, 12 nm west of Kutubdia Island. Robbers were able to board the ship and steal ship's stores and escape unnoticed. Master informed port authority and local agent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.616666699787345, 21.733333300027425] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-282", - "dateofocc": "2012-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN:Fishing vessel attacked on 10 October near position 00-31N 050-37E. One skiff with six to eight pirates approached the fishing vessel at high speed and fired on the vessel. The onboard security team returned fire and the skiff broke off the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.616666700260055, 0.51666669980898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-283", - "dateofocc": "2012-10-08", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "BANGLADESH:Tugboat boarded on 8 October near 05-56N 03-68W, at Chittagong Inner Anchorage. A gang of approximately 12 robbers armed with swords and knifes boarded the anchored tug while four crewmembers were working on deck. The crew members raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-284", - "dateofocc": "2012-10-05", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 5 October at 00-13S 117-33E, Muara Berau Anchorage. Six robbers armed with long knives boarded the anchored vessel. The duty crew noticed the robbers stealing ship's stores from the forward locker and raised the alarm. U", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-285", - "dateofocc": "2012-09-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA:Tanker hijacked on 14 September at 01-15N 103-09E, 3 nm off Tanjung Piai. Six pirates armed with machetes and a gun boarded and robbed the vessel, restraining 16 crew members. The attackers then escaped with cash, laptops, mobile phones and pers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.149999999679153, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-286", - "dateofocc": "2012-10-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:Merchant vessel attacked on 12 October in vicinity of 00-26N 050-39E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.650000000229625, 0.433333300147979] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-287", - "dateofocc": "2012-10-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "IVORY COAST:Tanker hijacked on 5 October at 05-12.56N 004-03.68E, 3 nm south of Abidjan Anchorage, Ivory Coast. A gang of approximately 14 pirates armed with AK47 assault rifles and knives boarded and hijacked the tanker while at anchor. They damaged th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.061388900306554, 5.209444400236464] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-289", - "dateofocc": "2012-10-16", - "subreg": "51", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "GUINEA:Cargo ship boarded on 16 October near 09-24N 013-45W, Conakry Roads. Six robbers boarded the vessel while at anchor. The crew secured themselves in the accommodations and contacted the owners for help. The owners informed the IMB Piracy Reporting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.74999999987449, 9.399999999570127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-290", - "dateofocc": "2012-10-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "NIGERIA:Tug boarded on 15 October near 03-39N 006-14E, approximately 40 nm South of Brass. Seven armed pirates boarded the tug while underway via speedboat launched from a mother vessel. They stole crew personal effects, kidnapped seven crewmembers and e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.233333299975811, 3.649999999609008] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-291", - "dateofocc": "2012-10-17", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "SALVAGE VESSEL", - "descriptio": "INDONESIA:Salvage vessel towing barge boarded on 17 October at 00-59N 105-10E, approximately 19.4 nm east of Pulau Mapur. Ten robbers armed with guns and knives boarded the vessel enroute from Singapore to Balikpapan, Indonesia. The robbers stole ship pr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.166666699640984, 0.983333299581204] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-293", - "dateofocc": "2012-10-15", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA:Cargo ship boarded on 15 October at 01-06N 104-10E, near Kabil Citranusa Port, Batam. Three robbers boarded the vessel while at anchor. They were spotted by the alert duty crew, who raised the alarm. Upon sensing the crew's alertness, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-294", - "dateofocc": "2012-10-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SRI LANKA:Fishing vessel hijacked on 15 October at Kudawella, approximately 50 nm off the Hambantota Coast. Ten armed pirates in a fiberglass dinghy boarded THEJAN PUTHA reportedly with permission from the captain. The pirates, armed with swords, then ti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [81.216666699630878, 5.533333300043068] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-295", - "dateofocc": "2012-10-13", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH:Bulk carrier boarded on 13 October at 22-15N 091-44E, at Chittagong Anchorage \"A\". Seven robbers armed with long knives boarded the anchored vessel from the aft during cargo operations. Duty crew noticed the robbers stealing ship's stores and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-133", - "dateofocc": "2013-05-06", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN:Fishing Vessel reports possible piracy activity in 01-49N 051-11E. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.183333299765707, 1.816666699940981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-134", - "dateofocc": "2013-05-12", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER NORD MUMBAI", - "descriptio": "COLOMBIA:On 12 May, the bulk carrier NORD MUMBAI was boarded at 03-48N 077-11W, at the Buenaventura Inner Anchorage. While at anchor, the duty officer on board the bulk carrier noticed robber¿s from a small boat boarding the vessel at the forecastle. He", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, 3.800000000108469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-135", - "dateofocc": "2013-05-05", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP CAP PORTLAND", - "descriptio": "EQUADOR:On 5 May, the container ship CAP PORTLAND experienced an attempted boarding at 02-28S 080-04W, approximately 12.5nm north of Puna Island. Robbers attempted to board an underway container ship. Crew sounded the alarm, mustered, and subsequently s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.066666700207065, -2.466666700215626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-136", - "dateofocc": "2013-05-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER CAP LARA", - "descriptio": "TOGO:On 9 May, the tanker CAP LARA experienced an attempted boarding at 06-04N 001-15E, at the Lome Anchorage. Eight persons in a boat came alongside the anchored tanker and attempted to board the vessel. Alert duty crew spotted the approaching boat, so", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.066666700303244] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-137", - "dateofocc": "2013-05-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER CENTENARIO BLU", - "descriptio": "NIGERIA:On 7 May, the bulk carrier CENTENARIO BLU was fired upon at 04-43N 008-20E, approximately 4 nm north-northeast of James Town. Seven heavily armed pirates in a speed boat approached and fired upon the underway bulk carrier, channeling at Calabar R", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.333333299773926, 4.716666700304529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-138", - "dateofocc": "2013-05-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER SEAPRIDE", - "descriptio": "TOGO:On 5 May, the underway tanker SEAPRIDE was fired upon at 05-41N 001-26 E, approximately 27 nm south-southeast of Lome. During STS operations the tanker saw armed pirates on the deck of the adjacent vessel. The alarm was raised, SSAS activated and a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.433333300180323, 5.683333299643266] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-139", - "dateofocc": "2013-05-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER MADONNA I", - "descriptio": "TOGO:On 5 May, the tanker MADONNA I was boarded at 05-41N 001-26E, approximately 27nm south-southeast of Lome. Nine armed pirates in a speed boat approached the tanker during STS operations. Three pirates boarded the tanker and opened fire. The Togo navy", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.433333300180323, 5.683333299643266] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-129", - "dateofocc": "2013-05-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP CMA CGM AFRICA FOUR", - "descriptio": "NIGERIA:On 4 May, the underway container ship CMA CGM AFRICA FOUR was fired upon at 04-02N 006-54 E, approximately 28 nm southwest of Bonny. Seven armed pirates in a speed boat, with two outboard motors, approached a container ship underway. Master raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.899999999938927, 4.033333300444269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-140", - "dateofocc": "2013-05-11", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT SHIP", - "descriptio": "GULF OF ADEN:On 11 May, a merchant ship experienced a suspicious approach by seven skiffs at 13-30N 050-01E, approximately 78 nm southeast of Al Mukalla, Yemen. Each skiff had approximately 5-6 individuals onboard. In addition there was a possible mother", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.016666700060796, 13.50000000033225] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-141", - "dateofocc": "2013-05-12", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER SAM HAWK", - "descriptio": "INDONESIA:On 12 May, the bulk carrier SAM HAWK was boarded at 03-41S 114-27E, at the Taboneo Anchorage. Five robbers in a boat approached and boarded an anchored bulk carrier via the anchor chain and broke into the forward store. The alert crew noticed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.450000000134537, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-142", - "dateofocc": "2013-04-29", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BARGE CREST 2821", - "descriptio": "INDONESIA:On 29 April, the barge CREST 2821 was boarded at 01-13N 103-58E, approximately 3.2nm northwest of Pulau Batam. While in tow by the tug boat CREST GOLD 1, from Port Klang to Bintulu, Sarawak, Malaysia; the barge CREST 2821 was boarded and robbed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-363", - "dateofocc": "2011-08-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA: A tug and barge was robbed 11 August at 1530 LT while transiting from Port Klang to Kuching, Malaysia. The crew discovered goods were stolen from containers after the tug and barge arrived at the discharge port. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.39999999984741, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-364", - "dateofocc": "2011-08-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTHERN RED SEA: Seven high speed boats suddenly approached around a bulk carrier underway. Two of the boats with 3-5 persons in each boat armed with automatic weapons, approached the ship at high speed. Master raised alarm, increased speed, took evasiv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.018333300036772, 13.279999999839504] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-365", - "dateofocc": "2011-08-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Six pirates armed with guns in a skiff chased a bulk carrier underway. Master raised alarm, increased speed and all crew except the bridge team mustered in the citadel. As the skiff approached to come alongside, the onboard security team fi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, 13.066666699630275] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-366", - "dateofocc": "2011-08-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF ADEN: Five armed pirates in a white colored skiff chased and fired upon a container ship underway. Master raised alarm, increased speed, took evasive maneuvers and contacted warship for assistance. Pirates aborted after chaseing the ship for 20 m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.183333299701019, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-367", - "dateofocc": "2011-08-21", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Pirates in a skiff chased and fired upon a chemical tanker underway. Master raised alarm, increased speed and took evasive maneuvers. The pirates made several attempts to board the tanker and finally aborted the attack due to the evasive ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.599999999560623, 16.14999999956359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-368", - "dateofocc": "2011-08-20", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BENIN: Chemical tanker (EMOCEAN) was hijacked 20 August at 2325 UTC while conducting ship-to-ship (STS) operations in position 05-38N 002-39E, approximately 44NM southeast of Cotonou, Benin. Twelve pirates boarded, took control of the ship, and sailed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.649999999576664, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-369", - "dateofocc": "2011-08-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SALALAH ANCHORAGE, OMAN: Armed pirates attacked and boarded a chemical tanker at anchor. They took hostage 21 crew members and hijacked the tanker to Somalia.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.050000000159741, 16.900000000262366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-370", - "dateofocc": "2011-08-20", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BELAWAN PORT, INDONESIA: Two robbers boarded a berthed bulk carrier during cargo operations. Four crew members on security watch and the 2nd officer at the gangway rushed to the poop deck upon hearing a loud knocking sound. The 2nd officer saw the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.70166669987708, 3.788333299568478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-371", - "dateofocc": "2011-08-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Five pirates armed with guns in two skiffs approached a chemical tanker underway. Master raised alarm, gave one long blast and crew mustered at a safe place. When the skiffs came close to 15 meters from the tanker, the onboard security team", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.872777800299787, 12.504166699555867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-372", - "dateofocc": "2011-08-27", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker was robbed 27 August at 0600 UTC while anchored in position 01-27.6S 116-48.6E, in the Lawe-Lawe anchorage, Balikpapan. Six to seven robbers with long knives in a motor boat boarded the vessel, took the duty watchman hostage and tied h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.809999999779166, -1.459999999899765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-373", - "dateofocc": "2011-08-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTHERN RED SEA: Two skiffs with five pirates in each approached a bulk carrier underway. The vessel increased speed, made evasive maneuvers and crew entered the citadel. The onboard security guards enforced anti-piracy measures and prevented the boardi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.364999999741372, 14.606666700381538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-374", - "dateofocc": "2011-08-19", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "ESMERALDAS ANCHORAGE, ECUADOR: Duty watchman onboard an anchored chemical tanker noticed three robbers on the forecastle deck. One of the robbers shouted at the watchman and threatened him with a long knife. The watchman ran away and informed the duty of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.649999999577517, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-375", - "dateofocc": "2011-08-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "POINTE NOIRE ANCHORAGE, CONGO: Robbers boarded a anchored container ship, stole ship's properties and escaped unnoticed by the crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.761666700141177, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-376", - "dateofocc": "2011-08-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "SINGAPORE: Petroleum product tanker (VALIANT) was robbed 26 August at 0225 LT while underway in position 01-25N 104-29E, approximately 38NM northeast of Singapore. Seven to nine robbers boarded the vessel and left after stealing some shipboard equipment", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.483333299780725, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-377", - "dateofocc": "2011-09-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIPAH ISLAND, INDONESIA: Four robbers armed with long knives boarded a tanker carrying out STS operations, the robbers entered the engine room and were spotted by the duty oiler who raised the alarm. All crew mustered in the CCR and contacted CSO and loc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.59583330012299, 1.124166700392948] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-81", - "dateofocc": "2012-02-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF GUINEA, 5 MILES OFF BAYLESA, NIGERIA: Seven to eight armed robbers in a boat chased and fired upon a chemical tanker underway. Alarm raised, crew mustered on bridge and all access to accommodation secured from inside. The robbers chased the tanke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.783333300276013, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-82", - "dateofocc": "2012-02-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "ARABIAN SEA: While underway, a chemical tanker spotted 3-4 pirates in a skiff heading towards her at a speed more than 20 knots. Alarms raised, evasive maneuvers made, fire pumps activated, armed security team made their pressence. The skiff later stoppe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.98166670035522, 16.064999999700262] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-83", - "dateofocc": "2012-02-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "SINGAPORE STRAITS, NATUNA SEA: An unlit speed boat approached a tug towing a barge. The speed boat came alongside the tug and four robbers boarded the tug while two remained in the boat. The robbers wearing masks and armed with guns and knives took hosta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.29333329992744, 1.268333299810763] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-84", - "dateofocc": "2012-03-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 21-2N 062-37E at 1219Z on 02 March. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.616666699748862, 21.449999999824911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-85", - "dateofocc": "2012-01-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "KARIMUN, INDONESIA: Two robbers boarded a tanker during STS operations using a rope attached with a hook. The duty pump man noticed the robbers and raised the alarm. The robbers removed the hook and jumped into the water and escaped in their small boat e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-175", - "dateofocc": "2014-07-25", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "GHANA:On 25 July, the 3,232 gross ton Kiribati-flagged product tanker MT HAI SOON 6 was boarded and hijacked by a group of 10 heavily armed pirates about 46 nautical miles south of Anloga, Ghana.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.899999999744921, 4.999999999607724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-91", - "dateofocc": "2012-03-11", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA: Five pirates in a skiff doing 22 knots chased and fired upon a container ship underway at 21 knots. Pirates closed to the port quarter of the vessel and fired a rpg towards the bridge. Master increased speed, enforced anti-piracy measures an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.93333329975917, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-87", - "dateofocc": "2012-03-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "Nigeria:Chemical tanker underway approached on 7 March while underway near position 04:12 N - 006:54 E, approximateely 5.8nm off Port Harcourt Fairway Buoy. Seven Heavily armed robbers in a speed boat approached the tanker, bridge crew raised the alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.899999999938927, 4.199999999941554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-88", - "dateofocc": "2012-03-02", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "ARABIAN SEA:Chemical tanker ROYAL GRACE hijacked on 2 March while underwaynear position 21:27 N - 062:37 E, approximately 215 nm northeast of Masirah, Island, Oman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.616666699748862, 21.449999999824911] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-89", - "dateofocc": "2012-03-06", - "subreg": "62", - "hostility_": "Suspicious Craft", - "victim_d": "Tanker", - "descriptio": "ARABIAN SEA:Tanker ADVANCE VICTORIA attacked on 6 March while underwaynear position 14 20 N - 052 45 E, approximately 113 nm northwest of Socotra Island, Yemen. Ship approached by one skiff described as dark in color. Shots fired by suspected pirates ab", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.75000000002774, 14.333333299967933] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-90", - "dateofocc": "2012-03-03", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA:Bulk carrier boarded on 3 March by ten robbers via the forecastle while the ship was anchored at position 17-02 N 082-25 E, Kakinada Anchorage. Duty watchman saw therobbers and raised the alarm. Seeing crew alertness, the robbers escaped in two wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.416666700029452, 17.033333299965363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-92", - "dateofocc": "2012-03-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN, RED SEA: One skiff approached and chased a tanker underway. Master raised alarm, activated anti-piracy measures and contacted an Iranian warship for assistance. Seeing the warship the pirates aborted the attempted attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.446666700306992, 12.541666699680775] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-93", - "dateofocc": "2012-03-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "JAVA SEA, TANJUNG PRIOK OUTER ANCHORAGE: Two robbers in a fishing boat boarded an anchored bulk carrer during heavy rain. They entered the engine store room. The duty oiler on routine rounds spotted the robbers and raised the alarm. Upon hearing the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-94", - "dateofocc": "2012-01-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "RO-RO SHIP", - "descriptio": "BAY OF BENGAL: Robbers boarded a RO-RO ship while awaiting pilot. Duty watchman sighted the robbers and informed Master. Master raised alarm and reported to coast guard. Robbers noticed crew alertness and escaped with stolen stores. No casualties to crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.70166669965073, 22.20499999988084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-95", - "dateofocc": "2012-03-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA:Duty watchman saw one robber climbing using a thin hooked line on a Crude Oil Tanker at anchor. The duty A/B informed bridge who raised the alarm, sounded ship's whistle and crew mustered. On noticing the crew alertness,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.484999999710737, 1.706666699694608] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-296", - "dateofocc": "2012-10-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "SOUTH CHINA SEA:Six pirates in a speed boat boarded a tug towing a barge, taking the crew hostage and stealing cash and personal effects before escaping. The Master was slightly injured during the incident.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.799999999777469, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-297", - "dateofocc": "2012-10-19", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA:On 19 October at 1250Z, a fishing vessel was hijacked by pirates at 08-52N 050-28E, east of Eyl, Somalia.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.466666699760594, 8.866666700034045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-298", - "dateofocc": "2012-10-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MILITARY VESSEL", - "descriptio": "INDIAN OCEAN:HNMLS Rotterdam fired upon on 24 October off Somali coast. While conducting routine surveillance off the Somali coast, HNMLS Rotterdam, the flagship for NATO's OCEAN SHIELD counter-piracy mission, came under fire from groups of suspected pir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.666666700126825, 8.666666699667871] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-299", - "dateofocc": "2012-10-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN:Fishing vessel hijacked on 19 October approximately 250 nm off the coast of Somalia. On 20 October, the EU Naval Force (EUNAVFOR) German frigate FGS SACHSEN located a dhow after receiving the fishing vessel's distress signal, rescuing 20 Ira", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.866666699658367, 13.033333299835988] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-300", - "dateofocc": "2012-10-21", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:Container ship approached on 21 October at 03-47N 098-42E, at the Belawan International Container Terminal. Two robbers armed with long knives in a small boat approached the berthed vessel. Alert duty crew noticed one robber attempting to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-301", - "dateofocc": "2012-10-20", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:Container ship boarded on 20 October at 03-55N 098-46E, at the Belawan Anchorage. Robbers boarded the anchored vessel, stole ship's stores and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-302", - "dateofocc": "2012-10-19", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 19 October near 01-06N 103-28E, at the Karimun STS Anchorage. A gang of three to five robbers boarded the tanker during ship-to-ship transfer operations, escaping with the ship's stores and engine spares.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.466666699675955, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-303", - "dateofocc": "2012-10-18", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TUGBOAT", - "descriptio": "MALAYSIA:Tug towing a barge boarded on 18 October near 04-13N 108-15E, off Tanjung Datu. Robbers boarded the tug, stole crew cash and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.2499999995743, 4.216666699838697] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-304", - "dateofocc": "2012-10-18", - "subreg": "71", - "hostility_": "TUG BOAT", - "victim_d": "PIRATES", - "descriptio": "INDONESIA:Tug towing barge boarded on 18 October at 01-18N 104-48E, off Pulau Bintan. Six pirates in a speed boat boarded the tug, took hostage the crew, tied them up, and stole cash and personal effects before escaping. Master was slightly injured durin", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.799999999777469, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-305", - "dateofocc": "2012-10-24", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "BARGE CARRIER", - "descriptio": "NIGERIA:Barge carrier experienced attempted boarding on 24 October at 03-54N 005-27E, near Port Harcourt. Seven robbers in a speedboat attempted to board the vessel while underway by throwing a hook to the upper deck of the vessel. The vessel made evasiv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.450000000206785, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-306", - "dateofocc": "2012-10-27", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 27 October at 03-41S 114-27E, at Taboneo Anchorage, Banjarmasin. Three robbers boarded the anchored vessel while awaiting cargo operations. Duty crew on rounds noticed a robber on the forecastle deck and informed the dut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.450000000134537, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-307", - "dateofocc": "2012-10-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 27 October at 03-53N 098-46E, at the Belawan Outer Anchorage. A gang of 3 to 4 robbers boarded the anchored vessel, taking hostage the duty A/B and stole his personal belongings. The A/B managed to escape and raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-308", - "dateofocc": "2012-10-27", - "subreg": "71", - "hostility_": "ROBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:Container ship boarded on 27 October at 03-56N 098-47E, at the Belawan Anchorage. Three robbers armed with long knives boarded the anchored vessel via the anchor chain. They took hostage the duty crew and tied him up on the forecastle deck. Ano", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.783333299686319, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-309", - "dateofocc": "2012-11-03", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:Container ship boarded on 3 November at 06-00S 106-54E, at the Jakarta Anchorage. Four robbers in a small boat approached the stern of the anchored vessel. One robber boarded the ship using a grappling hook while the other three robbers remaine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-310", - "dateofocc": "2012-11-02", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 2 November at 01-41S 116-38E, at the Adang Bay Anchorage. Robbers boarded the anchored vessel and stole ship's stores from the forward store and escaped unnoticed. The theft was later noticed during the next watch change", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.683333299722563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-143", - "dateofocc": "2013-04-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG HUB 21", - "descriptio": "INDONESIA:On 24 April, the underway tug HUB 21 was boarded at 01-36N 105-23 E, approximately 53 nm north-northeast of Bintan Island. Fifteen pirates armed with guns and long knives in three high speed boats boarded a tug underway. They took hostage nine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.383333300079585, 1.599999999677607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-144", - "dateofocc": "2013-05-21", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP FIESTA", - "descriptio": "COLOMBIA:On 21 May, the anchored general cargo ship FIESTA experienced an attempted boarding at 03-50N 007-07W, at the Buenaventura Anchorage. Three robbers in a boat approached the anchored general cargo ship and attempted to board, via the anchor chain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.116666699976747, 3.833333300078039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-145", - "dateofocc": "2013-05-17", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER MARIELLA BOTTIGLIERI", - "descriptio": "TOGO:On 17 May, the anchored chemical tanker MARIELLA BOTTIGLIERI experienced an attempted boarding at 06-03N 001-17 E, at the Lome Anchorage. Eleven robbers in an unlit boat approached the anchored chemical tanker. The duty A/B noticed the boat and inf", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 6.050000000406101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-146", - "dateofocc": "2013-05-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPORT VESSEL SAINT PATRICK", - "descriptio": "NIGERIA:On 14 May, the offshore diving support vessel SAINT PATRICK was boarded at 04-25N 007-28E, approximately 7.5 nm south-southwest of the Opobo river estuary. The offshore diving support vessel was reported as being boarded and attacked by pirates", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.466666700168673, 4.416666700204928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-147", - "dateofocc": "2013-05-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER BARGE LADY SWATHIN", - "descriptio": "NIGERIA:On 14 May, the self-propelled tanker barge LADY SWATHIN was hijacked at 04-20N 007-40E, approximately 8.5 nm south of the Opobo River Estuary. The self-propelled tanker barge was reported as being hijacked by nine armed pirates in a white-hulled", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.666666699635527, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-148", - "dateofocc": "2013-05-13", - "subreg": "57", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "OIL TANKER", - "descriptio": "NIGERIA:On 13 May, an anchored oil tanker was boarded at 06-20N 003-19E, approximately 8 nm south-southwest of Lagos. Vessel reported to authorities via VHF Channel 16 that two persons had boarded the ship and were seen on the deck. During the communica", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.316666700439157, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-149", - "dateofocc": "2013-05-12", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "NIGERIA:On 12 May, a fishing vessel was attacked approximately 15 nm south of Akwa Ibom state. The fishing trawler reported being attacked by armed pirates in a white-hulled speedboat at 0820 LT. Later, the same speedboat was reported to have approached", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-150", - "dateofocc": "2013-05-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PASSENGER BOATS", - "descriptio": "NIGERIA:On 11 May, ten (10) passenger boats were boarded and robbed in the vicinity of Sagbatoru-Igweta-Iwoama waterways in Nembe Local Government Area of Bayelsa state. Heavily armed sea pirates, in three speedboats, rounded up ten speed boats filled wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.400000000372415, 4.533333300010781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-151", - "dateofocc": "2013-05-19", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "LPG TANKER", - "descriptio": "IRAN:On 19 May, an underway LPG tanker experienced an suspicious approach at 25-32 N 057-27E, approximately 18 nm west-southwest of Bandar-e-Jask. Four suspicious boats with three armed persons in each boat chased an LPG tanker while underway. Master ra", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.450000000089801, 25.53333329979057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-152", - "dateofocc": "2013-05-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP SE PELAGICA", - "descriptio": "GULF OF ADEN:On 19 May, the underway cargo ship SE PELAGICA experienced a suspicious approach at 12-12N 044-20E, approximately 52 nm south-southwest of Aden, Yemen. Five pirates armed with AK47 rifles and a RPG approached a general cargo ship underway.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.333333300038817, 12.200000000200248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-153", - "dateofocc": "2013-05-18", - "subreg": "56", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER GANDHI", - "descriptio": "EGYPT:On 18 May, the anchored chemical tanker GANDHI was boarded in the vicinity of 31-13N 029-45E, at the Alexandria Waiting Anchorage. Duty officer on board noticed a robber lowering ship's stores into a waiting boat. The alarm was raised and crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.750000000183263, 31.216666699812549] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-378", - "dateofocc": "2011-08-26", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "JOSE PORT ANCHORAGE, VENEZUELA: Two skiffs with 11-12 robbers approached a bulk carrier at anchor. Crew alerted armed security guards onboard who opened fire resulting in the robbers moving away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.767499999723498, 10.175277800327422] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-323", - "dateofocc": "2012-11-25", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "COLOMBIA:Tanker boarded on 25 November at 10-18N 075-33W, at the Cartagena Anchorage. Robbers boarded the anchored tanker, stole ship's stores from the forward store and escaped unnoticed. The crew on duty noticed the theft and reported the incident to P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.56000000022766, 10.306666700152562] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-379", - "dateofocc": "2011-09-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "GULF OF ADEN: A oil tanker (MT FAIRCHEM BOGEY) came under attack at 1317z on 08 Sep in position 15-27N 052-14E, approximately 8 miles off the coast of Yemen. The tanker had armed guards on board when she sailed through the Gulf of Aden on its way to unlo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.233333299664764, 15.449999999630904] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-380", - "dateofocc": "2011-09-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "TOGO: Chemical tanker experienced an attempted boarding 14 September at 0415 UTC while anchored in position 06-01.39N 001-18.30E, approximately 8NM southeast of Lome break water, Togo. About 26 robbers in two boats attempted to board the vessel, a portab", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.304999999834422, 6.023055600145199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-381", - "dateofocc": "2011-09-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Six pirates in one skiff chased and fried upon a tanker underway. Another two skiffs were seen at a slight distance. The Master and all crew gathered on the brdige, sent a May Day via VHF, increased speed, activated SSAS, contacted CSO, made eva", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.850000000337104, 14.066666699662619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-382", - "dateofocc": "2011-09-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "COTONOU, BENIN: Armed pirates boarded a prodcut tanker during STS operations. Master sent SSAS alert, crew locked in engine room and contacted CSO. Later pirates left the vessel. Crew came out of the engine room and conducted a search for the pirates and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.433333300212666, 6.366666700402845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-383", - "dateofocc": "2011-09-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA: Six robbers armed with knives in a boat approached an anchored chemical tanker. Three of the robbers boarded the tanker from the stern. They threatened the duty AB on deck. Duty officer on bridge raised the alarm upon si", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.666666700340784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-384", - "dateofocc": "2011-09-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA: Merchant vessel attacked in 14-06N 042-45E at 0627Z on 10 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.749999999704357, 14.099999999632189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-385", - "dateofocc": "2011-09-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA, GULF OF ADEN: Armed pirates in four skiffs approached a bulk carrier underway, two from the port side and two from the stbd side. Master raised alarm, took evasive maneuvers and the onboard security team fired warning shots resulting in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.425000000153375, 12.591666700446808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-386", - "dateofocc": "2011-09-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BANGLADESH: Chemical tanker boarded and robbed 15 September at 2045 LT while berthed in position 22-16.15N 091-49.19E at the Super Oil Refinery Terminal, Chittagong, Bangladesh. Two robbers with long knives boarded the vessel, held the duty watchman hos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.819722199808098, 22.269166700415781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-387", - "dateofocc": "2011-09-09", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "TEBING ISLAND, INDONESIA: Three robbers in a wooden boat boarded a chemical tanker at anchor via the stern. Duty A/B spotted the robbers and raised the alarm. Seeing the crew alertness the robbers jumped overboard and escaped. Master reported to local au", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.51055560040885, 1.063888900337759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-388", - "dateofocc": "2011-09-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (AN NING JIANG) fired upon by six pirates with AK-47s in one skiff on 17 September at 1035 UTC while underway in position 03-54.6S 041-04.7E, approximately 86NM northeast of Mombasa, Kenya. A bright white skiff approache", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [41.078333300351744, -3.909999999664194] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-389", - "dateofocc": "2011-09-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "TOGO: Bulk carrier experienced an attempted boarding on 16 September at 0340 LT while anchored in position 06-03.7N 001-17.5E at the Lome Anchorage. Seven robbers in a fast boat approached the vessel, one of the robbers had a hook attached to a rope. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.291666699991424, 6.061666700046771] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-96", - "dateofocc": "2012-03-14", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cargo Ship", - "descriptio": "Dem. Rep Congo:Refrigerated Cargo Ship boarded on 14 March while anchored at 05:51 S ¿ 013:03 E, Boma Anchorage. Ten robbers in two boats boarded the ship took duty crewman hostage; they attempted to enter the forward cargo hold by breaking the hatch se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.850000000248542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-97", - "dateofocc": "2012-03-11", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Container Carrier", - "descriptio": "Indian Ocean:Container carrier attacked on 11 March while underway near position 13:09 N - 057:56 E, approximately 210 nm east-northeast of Socotra Island, Yemen. Five pirates in a skiff doing 22 knots chased and fired upon the ship which was steaming a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.93333329975917, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-98", - "dateofocc": "2012-03-11", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "Indonesia:Fishing vessel boarded on 11 March while anchored at 06:01 S - 106:53 E, Tanjung Priok Outer Anchorage. Robbers entered the engine store room. The duty oiler on routine rounds spotted the robbers and raised the alarm. Upon hearing the alarm, t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-99", - "dateofocc": "2012-03-17", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "LPG Tanker", - "descriptio": "IVORY COAST:LPG Tanker boarded on 17 March while anchored at position 05:13 N - 004:02 W, Abidjan Anchorage. The robbers reportedly boarded the ship during a heavy rain and between rounds by duty personnel. The robbers managed to steal ship¿s stores a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.033333299753622, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-100", - "dateofocc": "2012-03-19", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "INDIAN OCEAN:Container ship fired upon 19 March while underway at position 05:40 N - 053:23 E, approximately 520 nm northeast of Mogadishu. Six pirates in one skiff, armed with assault rifles and at least one rocket propelled grenade, chased the ship an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.383333300196568, 5.66666669957084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-101", - "dateofocc": "2012-03-17", - "subreg": "61", - "hostility_": "Suspicious craft", - "victim_d": "Merchant Vessel", - "descriptio": "INDIAN OCEAN:Merchant vessel fired upon 17 March while underway at position 05:47 N - 053:50 E, approximately 390 nm south of Socotra Island, Yemen.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.833333299896367, 5.783333300276013] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-102", - "dateofocc": "2012-03-17", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Petroleum Tanker", - "descriptio": "GULF OF ADEN:Petroleum products tanker attacked on 17 March while underway at position 13:09 N - 048:52 E, approximately 70 nm southeast of al Mukalla, Yemen. A skiff with six pirates aboard was noticed by bridge crew as it made a high speed approach to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.866666700428311, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-103", - "dateofocc": "2012-03-18", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "INDONESIA:Bulk carrier boarded on 18 March while anchored at positions 01:18 S - 116:47E Balikpapan Inner Anchorage. Three robbers boarded the ship, broke into the forward cargo hold and stole ship's stores. Two duty personnel on rounds saw the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.783333300268396, -1.299999999786621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-105", - "dateofocc": "2012-03-22", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "ARABIAN SEA:M/V Jag Prakash reported being chased by an un-identified craft in position 22-58N - 065-58E. Attempted piracy attack (6 miles fromvessel) at 221900 UTC Mar 2012. Vessels are advised to keep clear of this position and to exercise extreme ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [65.966666699812208, 22.96666670022023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-106", - "dateofocc": "2012-03-24", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "ARABIAN SEA:M/V Andinet reported a suspicious approach by three small crafts in position 22-37N - 063-31E. Armed security team onboard vessel repelled the crafts from the distance of two cables. Vessel remained safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.516666700047722, 22.616666700253916] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-108", - "dateofocc": "2012-03-24", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "ARABIAN SEA:M/V Cosmic Jewel reported at 241131 UTC Mar that one skiff approached at high speed up to one nm. Armed security team onboard vessel fired four warning shots. The skiff returned to mother vessel in position 20-48N - 062-27E. M/V cosmic Jew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.450000000251521, 20.799999999758938] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-111", - "dateofocc": "2012-03-26", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "ARABIAN SEA:A merchant vessel reported being hijacked at 0330Z on 26MAR12 in position 07-00N - 069-49E, approximately 467 nm SW fro Cape Comorin, India. This area will remain high risk for at least the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.816666700341386, 6.999999999672355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-114", - "dateofocc": "2012-03-25", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "ARABIAN SEA:25-MAR12: 1335 UTC: Posn 14:18.5N - 056:49.2E, around 170 nm NE of Socotra Island, Yemen. Two skiffs approached a bulk carrier underwa. As the skiffs closed the onboard security team fired warning shots. At a distance of around 0.8 nm one", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.820000000150401, 14.308333299584945] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-311", - "dateofocc": "2012-10-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA:Tanker hijacked by 10 pirates sometime between 14 and 20 October near 05-16N 115-14E, at the Labuan Anchorage. Pirates released the vessel on 26 October after stealing her cargo, approximately 650 tons of fuel, and robbing the crew of cash and p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.233333299903506, 5.266666699737755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-312", - "dateofocc": "2012-11-01", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:On 1 November at 0650Z, a merchant vessel was fired upon by a skiff in position 16-26N 041-23E, in the southern Red Sea.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.383333299808498, 16.433333299766048] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-313", - "dateofocc": "2012-11-06", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TUGBOAT", - "descriptio": "INDONESIA:Tugboat towing a barge boarded on 6 November near 01-44N 106-11E. Ten robbers armed with long knives boarded the tugboat while enroute from Port Klang to Kuching. One of the crew members was assaulted during the boarding. The robbers stole crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.183333299745755, 1.733333300279924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-314", - "dateofocc": "2012-11-16", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "COLOUMBIA:Tanker boarded on 16 November at 10-19N 075-31W, at the Cartagena Inner Anchorage. Robbers boarded and stole ship's stores from the anchored LPG tanker and escaped unnoticed. The theft was later noticed by ship's crew during routine day work. A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-315", - "dateofocc": "2012-11-13", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "ECUADOR:Container ship boarded on 13 November at 02-31S 080-05W, at Guayaquil. A gang of 10 to 12 robbers armed with guns and knives in two boats boarded the container ship during a river passage. The aft duty crew noticed the boats and alerted the Maste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.083333300279492, -2.51666670008234] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-316", - "dateofocc": "2012-11-11", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "PERU:Tanker boarded on 11 November at 04-34S 081-19W, at the Talara Anchorage. Two robbers armed with knives boarded the tanker while at anchor. When the robbers were spotted, they jumped overboard with stolen stores and escaped with three more accomplic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.316666699572977, -4.566666700013741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-317", - "dateofocc": "2012-11-01", - "subreg": "62", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "SAUDI ARABIA:Tanker fired upon on 1 November at 16-35N 41-28E, near Jizan. While sailing, the tanker was pursued by a suspected boat with three armed robbers onboard. The high speed boat closed in on the tanker and discharged their weapons. The Master in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.466666700368876, 16.583333300265565] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-318", - "dateofocc": "2012-11-16", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 16 November at 03-55N 098-48E, approximately 7.4 nm east of Nipahlarangan, Belawan. Three robbers armed with knives and iron bars boarded the anchored tanker, stole ship's stores, and escaped. Master raised the alarm, mustered", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.799999999583463, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-319", - "dateofocc": "2012-11-11", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 11 November at 01-19N 104-17E, approximately 2 nm south of Pulau Mungging Light. While at anchor, eight robbers armed with long knives and a pistol, boarded the vessel. Upon boarding, the robbers forced the crew to pump out 80", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.283333300313814, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-320", - "dateofocc": "2012-11-21", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "TOGO:Cargo ship experienced a suspicious approach on 21 November at 06-03N 001-16E, at the Lome Anchorage. Six robbers in three unlit boats approached the anchored cargo ship twice in 30 minutes. The boats hid behind the bunker barge before approaching t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.274444399843901, 6.056111100439239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-321", - "dateofocc": "2012-11-20", - "subreg": "25", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "DOMINICAN REPUBLIC:Tanker boarded on 20 November at approximately 18-26N 069-18W, at the San Pedro de Macoris Port. Robbers boarded a berthed product tanker unnoticed. They stole ship's properties and escaped. The theft was noticed by crew doing routine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.300000000187083, 18.433333299830736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-322", - "dateofocc": "2012-11-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA:Vessel attacked in 06-40N 059-05E at 1100Z on 28 November.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.083333300290974, 6.666666699603184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-324", - "dateofocc": "2012-11-12", - "subreg": "21", - "hostility_": "PIRATES", - "victim_d": "YACHT", - "descriptio": "PANAMA:Yacht boarded on 12 November at 08-39N 079-43W, in Punta Chame, approximately 20 nm southwest of the Balboa Anchorage. Four pirates in two skiffs pulled alongside the yacht and asked the occupants for drinking water. Once the occupants obliged and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.716666700240694, 8.649999999770728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-154", - "dateofocc": "2013-05-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:On 16 May, a merchant vessel experienced a suspicious approach at 12-03N 045-42E, approximately 58 nm south-southeast of Aden, Yemen. A suspected pirate mothership towing two skiffs was spotted by the security team onboard the merchant ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.699999999934676, 12.049999999700788] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-155", - "dateofocc": "2013-05-07", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN:On 7 May, a fishing vessel experienced a suspicious approach at 01-53N 051-13E, approximately 320 nm off the Somali coast. A Spanish fishing vessel observed a skiff with six pirate¿s onboard approach another fishing vessel. A Spanish warsh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.216666699560051, 1.883333299880064] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-156", - "dateofocc": "2013-05-15", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "BARGE/TUG CREST 289/TCL4401", - "descriptio": "MALAYSIA:On 15 May, the underway barge in tow CREST 289 was boarded at 03-17N 103-48E, approximately 30nm northwest of Pulau Tioman. At the time, the tug boat TCL4401 was towing the barge from Singapore to Kuantan Port, Malaysia. The thieves stole 12 pie", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.799999999745182, 3.283333299745493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-157", - "dateofocc": "2013-04-30", - "subreg": "72", - "hostility_": "PIRATE", - "victim_d": "PASSENGER SHIP KM LAMBELU", - "descriptio": "INDONESIA:On 30 April, the berthed passenger ship KM LAMBELU was boarded at 07-12S 112-43E, at the Tanjung Perak Port in Surabaya, East Java. According to witnesses, a man onboard the ship began to attack passengers indiscriminately with a 50-centimeter", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.71666670019988, -7.200000000247258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-158", - "dateofocc": "2013-04-22", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "CARGO BARGE", - "descriptio": "MALAYSIA:On 22 April, a crew from a neighboring barge ENG TOU 266 at 01-19N 104-10E, off Tanjung Ayajm, noticed an unknown tug boat pulling a stolen cargo barge.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-159", - "dateofocc": "2013-05-27", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "CONATAINER SHIP RIO EIDER", - "descriptio": "ECUADOR:On 27 May, the underway container ship RIO EIDER was boarded at 02-22S 081-00W, approximately 6.5 nm southwest of Anconcito. Approximately six armed persons with shotguns in a speed boat boarded the underway container ship, with pilot and unarmed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.999999999576232, -2.366666699582879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-160", - "dateofocc": "2013-05-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER MATRIX I", - "descriptio": "NIGERIA:On 25 May, the underway chemical tanker MATRIX I was boarded and personnel kidnapped approximately 40 nm off the coast of Bayelsa state. Armed pirates attacked the underway tanker and abducted seven Pakistani crew members, whom are being held for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.400000000372415, 4.533333300010781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-161", - "dateofocc": "2013-05-23", - "subreg": "56", - "hostility_": "ROBBERS", - "victim_d": "TANKER B ELEPHANT", - "descriptio": "EGYPT:On 23 May, the anchored tanker B ELEPHANT was boarded at 31-12N 029-42E, at the Alexandria Waiting Area Anchorage. When the crew noticed the forecastle door and rope hatch opened, they discovered some of the ship's equipment and stores had been sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.70000000031655, 31.199999999915406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-162", - "dateofocc": "2013-05-23", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "TANKER GOLDEN ADVENTURE", - "descriptio": "BANGLADESH:On 23 May, the berthed product tanker GOLDEN ADVENTURE was boarded in the vicinity of 22-16N 091-48E, at the Chittagong port. During discharge operations at berth, the tanker was boarded by robbers armed with knives. They were noticed by the l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-133", - "dateofocc": "2015-05-08", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 8 May, four robbers in an unlit boat approached an underway tanker near position01-02N 103-39E approximately 5.6 nm south of Pulau Nipah. The crew raised the alarm, which caused robbers to move away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-163", - "dateofocc": "2013-05-21", - "subreg": "62", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP APL LE HAVRE", - "descriptio": "EGYPT:On 21 May, the anchored container ship APL LE HAVRE was boarded at 29-50N 032-33E, at the Suez E16 Anchorage. Duty officer on board the anchored container ship noticed on CCTV three robbers in boiler suits near the forecastle. The duty officer rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.549999999914121, 29.833333300019547] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-164", - "dateofocc": "2013-05-20", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "BULK CARRIER YONGXING", - "descriptio": "YEMEN:On 20 May, the underway bulk carrier YONGXING experienced a suspicious approach by two skiffs at 13-11N 048-54E, approximately 65 nm south of Al Mukalla. The two yellow and blue skiffs with 12 individuals on board approached from the port side. Whe", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.900000000397881, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-390", - "dateofocc": "2011-09-14", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "LOME ANCHORAGE, TOGO: Six suspected robbers in a boat approached an anchored product tanker and attempted to climb onboard. Master raised the alarm, mustered all crew and contacted local authorities on VHF ch 16. Seeing crew alertness the robbers aborted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.326666699988095, 6.011666700180058] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-391", - "dateofocc": "2011-09-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: General cargo ship (PACIFIC EXPRESS) boarded by two skiffs with six pirates each, armed with guns and an RPG, on 20 September at 0734 UTC while underway in position 04-47S 044-35E carrying a cargo of steel, approximately 298NM southeast of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.583333300271761, -4.783333299553021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-392", - "dateofocc": "2011-09-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 04-13S 042-23E at 1525Z on 20 Sep. Vessels are advised to keep 100 miles clear of this position and exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.383333299840842, -4.216666700047369] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-393", - "dateofocc": "2011-09-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIA: General cargo ship boarded and robbed 20 September at 2345 LT while anchored in position 17-03N 082-24E at the Kakinda Anchorage, India. Robbers boarded the vessel unnoticed, stole ship's stores, and escaped. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.400000000132252, 17.049999999862507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-394", - "dateofocc": "2011-09-22", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 12-16.1S 043-19.5E at 0850Z on 22 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.325000000419948, -12.268333300375161] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-395", - "dateofocc": "2011-09-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA: Merchant vessel attacked in vicinity 14-14N 042-50E at 1342Z on 25 Sep. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.833333300439961, 14.233333300234506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-396", - "dateofocc": "2011-09-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MAYOTTE ISLAND, MADAGASCAR: A container ship underway noticed two skiffs with three to four persons in each at a distance of 1.5 miles. The skiffs increased speed to 18 knots and approached and chased the vessel from different sides. The vessel made evas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.308333299720459, -12.776666700252292] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-397", - "dateofocc": "2011-09-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Pirates in a dark colored rubber boat chased and fired upon a bulk carrier underway. Master, duty watchman and duty armed guard noticed the small boat at a distance of 20 meters from the ship. Master raised alarm, all crew retreated to a sa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.636666700160276, 12.43000000030662] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-398", - "dateofocc": "2011-09-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "LOME ANCHORAGE, TOGO: Duty officer onboard an anchored chemical tanker noticed a fishing boat slowly approaching. As the boat closed to the ship, the duty officer informed the boat to move away. This was ignored by the fishing boat and later two more boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.016666700436531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-399", - "dateofocc": "2011-09-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "LOME ANCHORAGE, TOGO: Two small boats closed onto the shipside of an anchored chemical tanker. The duty officer told the boats to move away but this was ignored. Later, two more boats were seen approaching the vessel from the stern and securing themselve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.016666700436531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-400", - "dateofocc": "2011-09-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "RED SEA: Container ship underway noticed a skiff at a distance of two nautical miles. The skiff was seen to increase in speed and approach the vessel at 16 knots. At a distance of one mile the Master raised the alarm, alerted the armed security team and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.870555599782392, 14.069722200216518] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-401", - "dateofocc": "2011-09-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Chemical tanker (GINGA BOBCAT) experienced an attempted boarding and was fired upon one skiff with an RPG, 28 September at 1258 UTC while underway in position 14-02N 042-53E, approximately 70NM southeast of Ras Isa, Yemen. Entire attack group c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.883333300306674, 14.033333299868332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-402", - "dateofocc": "2011-09-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Chemical tanker (LIME GALAXY) experienced an attempted boarding by two skiffs on 28 September on 1159 UTC while underway in position 14-18N 042-50E, approximately 53NM southeast of Ras Isa, Yemen. Pirates fired upon the vessel, one pirate attem", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.833333300439961, 14.299999999998363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-115", - "dateofocc": "2012-03-28", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "ARABIAN SEA:A fishing vessel 'Naham 3' was reported hijacked in position 06:18.5N - 050:13.04 at 280730Z MAR, course 295, speed 10 kts and may be used as a pirates mothership. Vessels are advised to exercise extreme caution when navigating within 100 na", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.217222199953312, 6.308333300225513] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-116", - "dateofocc": "2012-03-28", - "subreg": "61", - "hostility_": "Suspicious Craft", - "victim_d": "N/A", - "descriptio": "INDIAN OCEAN:Suspicious blue coloured skiff with 7 POB reported in vicinity 08 30N - 53 00E at 280917UTC MAR 12. Vessels are advised to keep well clear and to exercise extreme caution.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.000000000260684, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-117", - "dateofocc": "2012-03-24", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "CARIBBEAN:Petroleum products tanker boarded on 24 March while anchored at position 18:32 N - 72:23 W, the Port au Prince anchorage. Two boats approached the vessel during a heavy rain. Duty crew noticed there were 2-3 armed robbers on each boat and one", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.533333299564163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-119", - "dateofocc": "2012-03-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "OMAN:A Tanker was approached by a skiff on 24 March 190nm east-northeast of Sur, Oman, Somalia at positions 20:49N - 062:27E. A Pirate mother ship was at a distance of 6 nm. The Takers Master observed a skiff launch 4nm away. The Master alerted the onboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.450000000251521, 20.816666699656082] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-120", - "dateofocc": "2012-03-23", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFTS", - "victim_d": "CARGO VESSEL", - "descriptio": "NIGERIA:A General Cargo vessel was approached by three skiffs at high speed on 23 March 220nm East of Sur, Oman, Somalia at positions 22:37 N - 063:31 E. The skiffs were observed following the ship as she altered course to move away. The ships Master al", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [63.516666700047722, 22.616666700253916] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-121", - "dateofocc": "2012-03-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:Chemical Tanker was chased on 22 March 100nm SW off Bonny Island, Nigeria at position 02:57 N - 006:12 E. Armed pirates in two boats chased a chemical tanker. The Master raised the alarm and sent a SSAS alert and instructed the crew to proceed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.200000000006241, 2.949999999676322] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-134", - "dateofocc": "2015-06-12", - "subreg": "54", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "TURKEY:On 12 June, a sailing yacht was boarded in Aktur Bay, 10 miles east of Datca. The robbers were able to steal a large amount of cash and jewelry.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [27.883333299821572, 36.750000000409671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-122", - "dateofocc": "2012-03-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN:Fishing vessel reportedly hijacked on 26 March while underway near position 10:00 S - 050:00 E, approximately 115 nm north of Madagascar. It has been reported that maritime officials have lost contact with the vessel, and that there are 15", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.000000000163652, -9.999999999978058] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-123", - "dateofocc": "2012-03-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIAN OCEAN:Bulk carrier reportedly hijacked on 26 March while underway near position 07:00 N - 069:45 E: approximately 200 nm southwest of Minicoy Island, India. Pirates took hostage 23 crew members and are sailing the vessel towards the coast of Soma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.749999999678209, 6.999999999672355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-124", - "dateofocc": "2012-03-26", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN:Tanker attacked on 26 March while underway near position 05:21 S - 049:18 E,approximately 370 nm west of Victoria, Seychelles. Four armed pirates in a skiff chased the ship, reportedly firing 30 rounds at the vessel. Ship¿s Master increase", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.300000000230966, -5.34999999978271] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-125", - "dateofocc": "2012-03-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:Merchant vessel attacked on 25 March while underway near position 14:17 N - 056:51 E, approximately 215 nm northeast of Socotra Island, Yemen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.849999999890542, 14.283333300101219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-126", - "dateofocc": "2012-03-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:Merchant vessel attacked on 23 March while underway near position 16:58 N - 062:48 E, approximately 285 nm southeast of Masirah Island, Oman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.800000000217892, 16.966666700026224] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-127", - "dateofocc": "2012-04-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PETROLEUM TANKER", - "descriptio": "TOGO:Petroleum products tank experienced an attempted boarding on 4 April while anchored at position 06:05 N - 001:15 E, Lome Anchorage. Ten robbers in a boat came alongside and attempted to board the ship. Alert duty officer raised alarm and informed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-325", - "dateofocc": "2012-11-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING TRAWLER", - "descriptio": "NIGERIA:Fishing trawler experienced an attempted kidnapping on 13 November in the vicinity of 04-45N 006-49E. A fishing trawler was attacked by seven pirates armed with an AK-47 and one rifle. The pirates attempt to kidnap the occupants onboard was foile", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.816666700102644, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-326", - "dateofocc": "2012-11-28", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 28 November at 03-55N 098-45E, at the Belawan Anchorage. Four armed robbers boarded the anchored chemical tanker via the anchor chain. They attempted to attack the duty A/B who managed to escape and alert the OOW. By the time", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-327", - "dateofocc": "2012-11-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier ship boarded on 28 November at 00-18S 117-40E, at the Samarinda Anchorage. Pirates armed with a long knife boarded the anchored bulk carrier. Duty watchman noticed the pirates, who threatened him with a long knife and warned him no", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.666666699595567, -0.299999999754334] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-328", - "dateofocc": "2012-11-24", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA:Bulk Carrier boarded on 24 November at 17-02N 082-25E, at the Kakinada Anchorage. Four robbers armed with knives and iron rods boarded an anchored bulk carrier via the poop deck. Duty A/B on rounds noticed the robbers stealing ship stores and infor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.416666700029452, 17.033333299965363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-329", - "dateofocc": "2012-11-24", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 24 November at 01-27 S 116-47E, at the Lawe-Lawe Anchorage, Balikpapan. Robbers boarded the anchored crude oil tanker, stole ship's stores from the forward store and escaped unnoticed. The crew on duty noticed the forward stor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.783333300268396, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-330", - "dateofocc": "2012-11-21", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA:Bulk cargo ship boarded on 21 November at 06-01S 106-55E, at the East Cargo Anchorage, Jakarta. Five robbers armed with knives boarded the anchored bulk cargo ship via the poop deck. They attacked and took hostage the duty A/B and stole engine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.916666700372105, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-331", - "dateofocc": "2012-11-21", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 21 November at 01-42S 116-38E, at the Adang Bay Anchorage. Robbers boarded an anchored bulk carrier carrying out loading operations via barge. The robbers attacked and tied up the Bosun on his routine rounds of the forec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.699999999619706] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-332", - "dateofocc": "2012-11-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VIETNAM:Tanker hijacked on 19 November in the vicinity of 07-10N 109-09 E, approximately 174.4 nm southeast of Con Son Island, by eleven pirates armed with long knives and pistols. The nine crew members were forced overboard into a life raft and rescued", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.149999999873216, 7.166666700069015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-333", - "dateofocc": "2012-11-17", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA:General cargo ship boarded on 17 November at 07-05S 112-39E, at the Surabaya Inner Anchorage. Armed pirates in two speed boats, seven in one boat and three in the other, boarded the anchored cargo ship. Alert crew raised the alarm, mustered and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.65000000043608, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-334", - "dateofocc": "2012-12-01", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Robbers in an unlit small boat approached an anchored bulk carrier and attempted to climb onboard the ship via the anchor chain. Alert duty O/S noticed the robbers, shouted at them, and then informed the bridge who raised the alarm. All crew me", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.98333329973525, -1.383333299622905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-335", - "dateofocc": "2012-11-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA:Nine pirates armed with long knives boarded an anchored tug from astern and took the duty watchman as hostage. The pirates then went to the bridge and stole crew personal belongings, cash, and the vessel's navigation equipment, then escaped aft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.567500000442237, 1.437222199760754] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-336", - "dateofocc": "2012-11-30", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDIA:Three robbers in a wooden boat approached and boarded an anchored tanker in 9-57N 76-13E, at Cochin Outer Anchorage. They broke into the forecastle store and stole ship's stores. Duty crew heard some noises in the fore peak store, checked and found", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.216666700368535, 9.949999999902673] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-337", - "dateofocc": "2012-11-30", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "TOGO:Tanker experienced suspicious approach on 30 November at 06-02N 001-18E, at the Lome Anchorage. Four robbers in a blue and white colored skiff approached the anchored tanker. Armed guards onboard the tanker deemed the intention of the skiff as aggre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.299999999577949, 6.033333299609581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-165", - "dateofocc": "2013-05-20", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFTS", - "victim_d": "TANKER ENJOY", - "descriptio": "YEMEN:On 20 May, the underway tanker ENJOY was attacked at 13-12N 049-56E, approximately 100nm south-southeast of Al Mukalla. Via VHF Chan 16, the tanker requested warship assistance due to being attacked by 7 skiffs. The warship dispatched a helicopter,", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.933333300399795, 13.200000000232592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-166", - "dateofocc": "2013-05-19", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFTS", - "victim_d": "TANKER FIDELITY 2", - "descriptio": "YEMEN:On 19 May, the underway tanker FIDELITY 2 was fired upon at 12-19N 043-58E, approximately 17nm south of the Al Maqatirah District coast. The tanker reported via VHF channel 16, being fired upon by 1 red and 1 white skiff. An embarked armed securit", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.966666700000076, 12.316666699830876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-167", - "dateofocc": "2013-05-24", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER ANNA BARBARA", - "descriptio": "INDONESIA:On 24 May, the anchored bulk carrier ANNA BARBARA was boarded at 05-59S 105-57E, at the Cigading Anchorage. Three robbers armed with machetes in a speed boat, boarded the anchored bulk carrier. Alert duty crew noticed the robbers and raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.950000000309331, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-168", - "dateofocc": "2013-05-20", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP KOHINOOR", - "descriptio": "INDONESIA:On 20 May, the berthed general cargo ship KOHINOOR was boarded at 03-47N 098-42E, at the Belawan Port. While at berth, an unknown number of robbers armed with knives boarded the ship. The duty crew noticed them stealing ship properties from the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-169", - "dateofocc": "2013-05-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BARGE/TUG CREST 2825/CREST JADE 1", - "descriptio": "INDONESIA:On 12 May, the underway barge in tow CREST 2825 was boarded at 01-15N 104-07E, approximately 3nm northwest of Pulau Batam Island. While tug boat CREST JADE 1 was towing barge from Singapore to Labuan, Malaysia, when the Master and crew spotted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-170", - "dateofocc": "2013-05-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL PKFB (U2) 1532", - "descriptio": "INDONESIA:On 07 May, the fishing vessel PKFB (U2) 1532 was attacked and hijacked in the Strait of Malacca while fishing. The pirates subsequently took the hijacked vessel to Indonesia. On 25 May, the Indonesian Marine Police detained the fishing vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.099999999715408, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-171", - "dateofocc": "2013-05-27", - "subreg": "56", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER GLOBAL F", - "descriptio": "EGYPT:On 27 May, the Liberia-flagged anchored bulk carrier GLOBAL F was boarded at 31-12N 029-46E, at the El Dekheila Anchorage, Alexandria Port. Alert duty crew on board the anchored bulk carrier noticed three robbers near the forecastle and raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.766666700080407, 31.199999999915406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-172", - "dateofocc": "2013-06-03", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker BLUEGREEN TIGRE", - "descriptio": "NIGERIA:On 03 June, the Marshall Islands-flagged underway chemical tanker BLUEGREEN TIGRE was fired upon at 04-42N 008-19E approximately 2.5 nm north of James Town, in the Calabar River. Ten armed robbers in two speed boats approached and fired upon the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.3166666997015, 4.700000000407385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-173", - "dateofocc": "2013-06-05", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "DHOW SHAHE FAIZE NOORI", - "descriptio": "SOMALIA:On 05 June, the India-flagged dhow SHAHE FAIZE NOORI was hijacked at 11-36N 049-15E, approximately 20 nm north of Bosasso. The dhow was reported hijacked and 14 crew members taken hostage. Later the pirates left the dhow for unknown reasons and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.250000000364253, 11.600000000000989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-174", - "dateofocc": "2013-06-03", - "subreg": "72", - "hostility_": "robbers", - "victim_d": "bulk carrier Spar Libra", - "descriptio": "INDONESIA:On 03 June, the Norway-flagged anchored bulk carrier SPAR LIBRA was boarded at 01-10S 117-15E, at the Muara Jawa Anchorage, Samarinda. Two robbers boarded the anchored bulk carrier using a hook attached to a rope and attempted to enter the fore", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.249999999865395, -1.166666700083624] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-175", - "dateofocc": "2013-06-03", - "subreg": "71", - "hostility_": "robbers", - "victim_d": "chemical tanker Atlantic Canyon", - "descriptio": "INDONESIA:On 03 June, the Hong Kong-flagged anchored chemical tanker ATLANTIC CANYON experienced an attempted boarding at 03-55N 098-46E, at the Belawan Anchorage. Robbers in a small boat attempted to board the anchored chemical tanker via the anchor cha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-176", - "dateofocc": "2013-06-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "RED SEA:On 4 June 2013, two merchant vessels reported being attacked in vicinity of 15-20N 041-50E in the Red Sea, approximately 185 nm northwest of Bab el Mandeb. Mariners should remain vigilant for the potential presence of pirate attack group in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.833333300407617, 15.333333300000277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-177", - "dateofocc": "2013-06-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "NIGERIA:04 June 2013, 2300 UTC, Position: 04-14.9N 007-45.7E, USARI Field, Nigeria. Pirates boarded an offshore supply ship underway, on standby duties. Seeing the pirates the crew raised the alarm, retreated into the citadel, alerted other vessels and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.761666700011801, 4.248333299781223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-403", - "dateofocc": "2011-09-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "RED SEA: Cargo vessel (CS CIHAN) boarded by pirates on 25 September at 1342 UTC while underway in position 14-09N 042-49E, approximately 62NM southeast of Ras Isa, Yemen. The pirates boarded the vessel and damaged it by firing upon it. The crew stopped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.816666700367591, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-404", - "dateofocc": "2011-09-29", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (TORM REPUBLICAN) fired upon by pirates in one skiff 29 September at 1215 UTC while underway in position 11-40.8N 063-05E, approximately 507 nm southeast of Socotra Island, Yemen. Vessel had fire hoses, razor wire, a lookout", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [63.08333330042035, 11.666666699764903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-46", - "dateofocc": "2017-02-08", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "ST MARTIN:On 08 February, robbers boarded an anchored sailing yacht in Marigot Bay and stole a ten-foot dinghy and small outboard motor. Incident reported to local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.033333299798301, 13.966666699929192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-405", - "dateofocc": "2011-09-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Four pirates in a white colored skiff chased, fired upon and attempted to board a chemical tanker underway. Master raised alarm, took evasive maneuvers and contacted authorities for assistance. The pirates aborted the attempted attack due to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.816666700367591, 14.041666700178951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-406", - "dateofocc": "2011-09-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "RED SEA: Pirates in three skiffs chased a chemical tanker underway. One of the skiffs fired a rpg and attempted to board the tanker. Master took evasive maneuvers and contacted authorities for assistance. The pirates chased the tanker for 15 minutes and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.816666700367591, 14.099999999632189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-407", - "dateofocc": "2011-09-29", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "GUINEA: Cargo ship (THOR LIGHT) boarded and robbed 29 September at 0505 UTC while anchored in position 09-24N 013-43W, Conakry anchorage. Ten to twelve robbers armed with guns and knives boarded the vessel and assaulted the eleven crew members. Robbers s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.399999999570127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-408", - "dateofocc": "2011-09-30", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM: Container ship boarded and robbed 30 September at 2300 LT while anchored in position 10-13.55N 107-04.04E, approximately 38 nm southeast of Ho Chi Minh City at the Vung Tau Outer Anchorage. Robbers boarded the vessel and stole ship stores unnot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.067222200397907, 10.225833299720477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-409", - "dateofocc": "2011-10-02", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker (UACC SHAMS) fired upon by four pirates in one skiff 2 October at 0350 UTC while underway in position 03-50N 056-23E, approximately 480 nm southeast of Hobyo, Somalia. Vessel noticed mothership launching two skiffs from 8 nm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.389999999677855, 3.83500000010514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-410", - "dateofocc": "2011-10-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "ARABIAN SEA: Cargo vessel (LARA RICKMERS) fired upon by five pirates in one skiff 2 October at 0901 UTC while underway in position 16-06N 062-47E, approximately 525 nm northeast of Socotra Island, Yemen. Skiff approached at 23 knots, the cargo vessel was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.793333299934318, 16.105555600203729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-411", - "dateofocc": "2011-10-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (THEOFOROS I) experienced an attempted boarding by seven pirates in one skiff 2 October at 0400 UTC while underway in position 13-01N 048-49E, approximately 92 nm southwest of Al Mukalla, Yemen. Master noticed skiff approaching", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.816666699662278, 13.016666699763562] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-412", - "dateofocc": "2011-10-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BENIN: Chemical tanker fired upon, boarded, and robbed 2 October at 2337 LT while drifting in position 04-06N 002-51E, approximately 136 nm southeast of Cotonou, Benin. Pirates armed with automatic weapons approached in two small boats and boarded the ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.849999999942838, 4.100000000208126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-413", - "dateofocc": "2011-10-02", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 16-27N 062-57E at 0921Z on 02 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.949999999818033, 16.449999999663248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-128", - "dateofocc": "2012-04-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA:Bulk carrier attacked on 4 April while underway at position 21:38 N - 059:59 E, approximately 130 nm southeast of Muscat, Oman. Pirates in one skiff fired upon thevessel and security team aboard the merchant vessel returned fire, forcing the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.983333299690571, 21.633333300293941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-152", - "dateofocc": "2012-05-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF OMAN:A merchant vessel reported being hijacked at 1924Z on 04 May near 25 11N 056 37E, approximately 75NM Southwest of Jask in the Gulf of Oman. This area will remain at high risk for the next 24 - 48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.616666699554798, 25.183333299824199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-153", - "dateofocc": "2012-05-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA:M/V attacked in vicinity 08 08N 056 18E at 070350 UTC May 12. Vessels are advised to keep well clear of this position and to exercise extreme caution if in vicinity.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.299999999557997, 8.133333300307015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-352", - "dateofocc": "2012-12-14", - "subreg": "94", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "CHINA:Bulk carrier boarded on 14 December at 32-00N 120-45E, at the Nantong Working Anchorage. Three robbers tried to board the anchored bulk carrier via the gangway but were challenged by the alert crew and denied access to the ship. The robbers then ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.750000000428258, 31.999999999581576] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-353", - "dateofocc": "2012-12-23", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "NIGERIA:Supply vessel ASSO VENTUNO boarded and crew kidnapped on 23 December at 04-01N 005-14E, approximately 40 nm off the coastline of Bayelsa. Pirates armed with guns attacked and boarded the offshore supply vessel while underway, and kidnapped four c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.233333299943467, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-354", - "dateofocc": "2012-12-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "OMAN:Merchant vessel experienced suspicious approach at 0535 UTC on 27 December near position 26-17N 056-43E in the Gulf of Oman, approximately 22 nm east of Al Kasab, Oman. The activity consisted of two skiffs, one of which approached the vessel to with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.716666700187545, 26.28333329958997] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-432", - "dateofocc": "2011-10-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo vessel (BURAK A) fired upon with an RPG by pirates in two skiffs on 16 October at 1508 UTC while underway in position 14-26N 052-49E, approximately 170 nm southwest of Salalah, Oman. Vessel did not have security onboard or a citadel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.816666699791654, 14.433333299701417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-355", - "dateofocc": "2012-12-20", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 20 December at 03-57N 098-46E, at the Belawan anchorage. Robbers boarded the anchored chemical tanker receiving provisions, stole ships property and escaped unnoticed. Upon investigation it was found that the robbers gained ac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-1", - "dateofocc": "2012-12-23", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "IVORY COAST:On 23 December 2012, tanker boarded at 05-12N 004-02W, at the Abidjan anchorage. Robbers armed with machine guns and knives boarded the anchored vessel and took the crew hostage. They forced the Chief Engineer and Master to start the engines.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.033333299753622, 5.199999999973898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-2", - "dateofocc": "2012-12-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "NIGERIA:On 17 December, offshore supply vessel boarded and crew kidnapped at 04-15N 004-44E, while enroute to the Mobil Erah Oilfield. Armed pirates boarded the vessel, kidnapped three crew members and escaped. The bosun later navigated the vessel to Onn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.733333300376955, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-3", - "dateofocc": "2013-01-01", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:On 1 January, a merchant vessel experienced suspicious approach near 02-18N 046-02E, approximately 42 nm northeast of Mogadishu and approximately 7 nm off the Somali coast. The activity consisted of four skiffs. Few other details have been r", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.033333300003846, 2.299999999610293] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-4", - "dateofocc": "2012-12-29", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 29 December 2012, bulk carrier boarded at 03-44S 114-25E, at the Taboneo anchorage. Duty crew aboard the anchored vessel found the lock of the forward store broken and saw ship's stores on the deck. The robbers escaped in two boats without s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.733333299653964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-5", - "dateofocc": "2012-12-29", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 29 December 2012, bulk carrier boarded on at 03-43S 114-27E, at the Taboneo anchorage. Robbers boarded the anchored vessel while waiting to commence loading operations. Robbers broke into the forward bosun store, stole ship's stores and prop", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.450000000134537, -3.716666699581538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-6", - "dateofocc": "2012-12-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER SP BRUSSELS", - "descriptio": "NIGERIA:On 17 December 2012, tanker SP BRUSSELS boarded and crew kidnapped in the vicinity of 03-44N 05-37E, approximately 40 nm off the Niger Delta. Three pirates armed with machine guns attacked and boarded the vessel while underway. They stole persona", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.616666699704126, 3.733333300344611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-7", - "dateofocc": "2012-12-20", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER", - "descriptio": "SOMALIA:A tanker underway en route to Fujairah sighted a speed boat approaching at about 25 knots. The Master raised the alarm, activated SSAS, sent a distress alert, took evasive maneuvers, mustered the crew, and closed all accommodation doors. The dist", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.913333299632654, 24.781666699788843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-8", - "dateofocc": "2012-12-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "SOMALIA:On 11 November 2012, a general cargo ship was detained by Somali authorities and ordered to anchor off Bossaso. Eight Puntland Maritime Police Force (PMPF) personnel (four policemen and four soldiers) were detailed to guard the ship. The four sol", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.154444399737542, 11.301666699928433] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-191", - "dateofocc": "2013-06-15", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER EMERALD STAR", - "descriptio": "INDONESIA:On 15 June, the Hong Kong-flagged anchored bulk carrier EMERALD STAR experienced an attempted boarding at 03-41S 114-25E, at the Taboneo Anchorage. While at anchor, alert duty crew on board the bulk carrier noticed robbers attempting to board t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-192", - "dateofocc": "2013-06-13", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "OIL TANKER CSK BRILLIANCE", - "descriptio": "INDONESIA:On 13 June, the Hong Kong-flagged anchored bulk carrier CSK BRILLIANCE was boarded at 01-12S 117-13E, at the Muara Jawa Anchorage, Samarinda. Six robbers armed with knives, boarded the bulk carrier while at anchor. They took hostage two crewmem", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.216666699895768, -1.200000000053194] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-193", - "dateofocc": "2013-06-13", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "OIL TANKER EAGLE SAN JUAN", - "descriptio": "INDONESIA:On 13 June, the Singapore-flagged anchored oil tanker EAGLE SAN JUAN was boarded at 01-06- 103-36E, at the Nipah Anchorage. Three robbers armed with long knives boarded the tanker while engaged in STS operations, stole engine spares, and escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-194", - "dateofocc": "2013-06-12", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "OIL TANKER SENTOSA RIVER", - "descriptio": "INDONESIA:On 12 June, the Singapore-flagged anchored oil tanker SENTOSA RIVER was boarded at 01-05S 117-14E, at the Senipah Tanker Anchorage off Balikpapan. The alert crew on board the anchored oil tanker noticed one robber on the forecastle and raised t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.233333299968194, -1.083333300422623] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-195", - "dateofocc": "2013-06-09", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "TUG PU2417", - "descriptio": "MALAYSIA:On 09 June, the Singapore-flagged underway tug PU2417 was boarded at 04-18N 103-36E, approximately 6 nm off Terengganu. While underway from Thailand to Indonesia, six robbers armed with guns and choppers boarded the tug boat and forced the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 4.299999999674981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-196", - "dateofocc": "2013-06-21", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:On 21 June, an underway merchant vessel experienced a suspicious approach at 15-02N 041-42E, approximately 73 nm northwest of Al Hudaydah. Weapons and ladders were sighted, as multiple skiffs approached at high speed. The embarked AST fired sever", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.6999999998053, 15.033333299900676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-197", - "dateofocc": "2013-06-14", - "subreg": "62", - "hostility_": "SUSPISIOUC CRAFT", - "victim_d": "TANKER", - "descriptio": "YEMEN:On 14 June, the underway Malta-flagged tanker experienced a suspicious approach at 12-36N 043-25E, approximately 2 nm southwest of Birim Island. A single skiff paralleled the tanker's course, and then moved toward the vessel at high speed, approach", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.41666669966753, 12.600000000033333] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-198", - "dateofocc": "2013-06-13", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "RED SEA:On 13 June, a merchant vessel experienced suspicious activity at 13-05N 043-09E, approximately 15 nm southwest of Mocha. Approximately 20 skiffs surrounded the vessel. The Master ordered the crew into the citadel and the embarked AST fired warnin", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.150000000436762, 13.083333299702701] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-199", - "dateofocc": "2013-06-20", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "LPG TANKER SENNA JUMBO", - "descriptio": "INDONESIA:On 20 June, the anchored Thailand-flagged LPG tanker SENNA JUMBO was boarded at 01-09N 103-38E, at the Nipah Transit Anchorage. Five robbers, armed with knives,boarded the anchored LPG Tanker. Two robbers entered the engine room, while the othe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-200", - "dateofocc": "2013-06-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER KING RIVER", - "descriptio": "MALAYSIA:On 17 June, the underway Malaysia-flagged product tanker KING RIVER was boarded at 04-31N 113-52E, approximately 8 nm west-northwest of Lutong, Sarawak. Approximately 8 to 10 pirates, armed with long knives, in a speed boat, approached and board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.866666699832422, 4.516666699938355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-201", - "dateofocc": "2013-06-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL CHUN YING", - "descriptio": "INDIAN OCEAN:The owners of fishing vessel CHUN YING reported that they lost contact with their vessel since 20 JUNE 2013 at 0110 LT while the vessel in position 00-34N 054-48E. The vessel's satellite phones and tracking system are turned off. There are", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.799999999959141, 0.566666699675693] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-202", - "dateofocc": "2013-06-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL CHUN YING", - "descriptio": "INDIAN OCEAN:The owners reported that a sister ship located the fishing vessel CHUN YING at position 01-13.28N 055-24.17E. The vessel was destroyed by a fire onboard. The two life rafts onboard were missing. The fate of the 28 crew members and 3 guard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.402777799962166, 1.221388900322609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-428", - "dateofocc": "2011-10-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE: On 10 October at 0335 LT, Tug BRITOIL 71 boarded and robbed at position 01-02N 103-38E. Armed with parangs and a handgun, the five masked robbers took away a laptop, mobile phones, and cash from the crew before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-434", - "dateofocc": "2011-10-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SINGAPORE STRAITS: Five masked pirates armed with pistols and long knives boarded a tug under towing operations. They stole crew cash and personal belongings and escaped. The incident was reported to Port Operations Control Center, Singapore.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.638333299604994, 1.04666670001501] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-435", - "dateofocc": "2011-10-17", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container vessel (EMIRATES ZAMBEZI) fired upon by six pirates in one skiff on 17 October at 2100 UTC while underway in position 06-26S 040-06E, approximately 35 nm east of Zanzibar Island, Tanzania. Pirates were armed with guns and an RPG.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.099999999573697, -6.433333299651338] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-431", - "dateofocc": "2011-10-16", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN: Merchant vessel (GAS BALI) reported being attacked on 16 October at 10:57 UTC while underway in position 05-01S 040-03E, approximately 64 nm northeast of Zanzibar Island, Tanzania. One skiff closed on the ship and the onboard security team", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.049999999706984, -5.016666699713539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-436", - "dateofocc": "2011-10-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "WESTERN INDIAN OCEAN: Merchant vessel attacked in 01-12S 058-32E at 1432Z on 20 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.533333299958429, -1.200000000053194] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-437", - "dateofocc": "2011-10-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIA-SOUTHWEST COAST: Container ship attacked by four skiffs on its stbd side on 07 Oct. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.016666700002304, 8.883333300106472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-438", - "dateofocc": "2011-10-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT AND BARGE", - "descriptio": "SINGAPORE: Pirates in two boats approached and followed a barge towed by a tug near position 01-15.5N 104-02.0E on 25 October. The crew directed searchlights towards the barge but could not detect the small boats. Master contacted other vessels including", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.033333300080926, 1.258333300197137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-439", - "dateofocc": "2011-10-24", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SULU SEA, PHILIPPINES: Pirates in six speed boats chased and attempted to board a bulk carrier underway. Master raised alarm, took evasive manuevers, crew mustered and activated fire hoses. The pirates chased the ship for 15 minutes and then aborted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.746666700166429, 6.99833329964531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-440", - "dateofocc": "2011-10-23", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "360 MILES EAST OF HOBYO, SOMALIA: Armed pirates in two skiffs chased and attempted to board a tanker underway. Mother ship in the vicinity. Master increased speed, carried out evasive maneuvers and onboard security team fired warning shots. Ship evaded t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.483333299962396, 4.983333299710523] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-441", - "dateofocc": "2011-10-17", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "PORT OF BELEM, BRAZIL: Three robbers armed with long knives in a wooden boat approached a berthed bulk carrier. The robbers attempted to board by climbing the anchor chain. Alert crew raised alarm and additional crew members mustered and prevented the ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.499999999874149, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-442", - "dateofocc": "2011-10-07", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BELEM INNER ANCHORAGE, BRAZIL: Four robbers armed with long knives in a long wooden boat, approached an anchored bulk carrier. Attempts were made to board the ship via anchor chain but foiled by ship's crew. A search was conducted and found nothing was s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.499999999874149, -1.450000000286138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-154", - "dateofocc": "2012-05-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:A merchant vessel reported being attacked on 07 May 2012 at 0405Z at posn 08:05N 056:18E, approximately 290 nm southeast of Socotra Island, Yemen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.299999999557997, 8.083333300440302] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-155", - "dateofocc": "2012-05-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "TOGO:The missing/hijacked tanker BW Rhine was last reported in posn lat 05:27N - long 002:36E on 03.05.2012 at 0840 UTC.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.599999999709951, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-156", - "dateofocc": "2012-04-26", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "GULF OF ADEN:A merchant vessel reported a prevented pirate attack on 26 APR 12 at 0740 UTC in position 11 56.9N 044 039.3E approximately 19 NM before the entrance in to the Transit Corridor (19 NM from \"Point ALFA.\"). This area will remain high risk fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.655000000292091, 11.948333299940316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-159", - "dateofocc": "2012-04-14", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "ARABIAN SEA:14.04.2012: 0652 UTC: Posn: 16:54N - 65:59E, around 410 NM WSW of Mumbai, India. Seven pirates armed with guns in a skiff approached a chemical tanker underway at high speed. Alarm sounded and armed security team mustered. When the skiff w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [65.983333299884634, 16.900000000262366] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-161", - "dateofocc": "2012-05-08", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "SOUTH CHINA SEA:A product tanker underway spotted two speed boats approaching at high speed. Alarm raised and tanker made evasive manoeuvres, directed the search lights towards the boats and sent distress message. Pirates boarded the tanker via the poo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.883333299613753, 1.223333300200466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-162", - "dateofocc": "2012-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "YEMEN:Tanker fired upon on 10 May while underway at 14:18 N - 058:27 E around 260 nm east-northeast of Socotra Island, Yemen. Six pirates in a skiff approached and fired upon a tanker underway from a distance of 500 meters. The armed security team return", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.450000000122145, 14.299999999998363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-163", - "dateofocc": "2012-04-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA:M/V attacked in vicinity 12 14N - 061 45E at 090950 UTC Apr 12. Vessels are advised to keep well clear of this position and to exercise extreme cauton if in vicinity.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.750000000318835, 12.233333300169818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-164", - "dateofocc": "2012-05-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "NIGERIA:Supply vessel towing a barge was boarded on 08 May underway at 03:53 N ¿ 005:35 E, near the Pennington Oil Terminal. Six pirates armed with assault rifles in a speed boat launched from a nearby fishing trawler. The alarm was raised and the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-165", - "dateofocc": "2012-05-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "NIGERIA:Supply vessel was hijacked on 07 May at 04:26 N - 004:58 E, approximately 38 nm offshore from the Nigerian coastline. The pirates hijacked the vessel and took 17 crew members as hostages. The pirates released the crew and the vessel later that s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.966666699638154, 4.433333300277297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-166", - "dateofocc": "2012-05-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "YEMEN:Container ship experience an attempted boarding on 07 May at 08:17 N-056:29 E, around 275 nm south east of Socotra Island, Yemen. Pirates in three skiffs approached and attempted to board the ship. Alarm was sounded and all non-essential crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [56.483333300027027, 8.283333299907213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-167", - "dateofocc": "2012-05-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKE", - "descriptio": "INDONESIA:Product tanker was boarded on 08 May while underway at 01:13 N ¿ 104:53 E: 16 nm northeast from Bintan Island. The duty officer spotted two speed boats approaching the ship at high speed. The alarm was raised and the tanker made evasive maneuv", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.883333299613753, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-168", - "dateofocc": "2012-04-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "MALAYSIA:Tug boat towing a barge was hijacked while underway on 17 April while enroute from Langkawi, Malaysia to Tawau, East Malaysia. The tug and barge in tow left Langkawi on 12 April. The last contact the owners had with the tug was on 16 April after", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.766666699646237, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-169", - "dateofocc": "2012-05-13", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA:Bulk carrier was boarded on 13 May while underway at 03:46 N - 077:27 W, around 9.4 nm from Isla La Palma, Buenaventura. Four pirates boarded the bulk carrier while it was waiting for berthing instructions. The alarm was raised and the crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.450000000045975, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-9", - "dateofocc": "2013-01-09", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "LPG TANKER CONISTON", - "descriptio": "GUYANA:On 09 January, LPG Tanker CONISTON boarded in the vicinity of Guyana. Two robbers armed with guns and long knives boarded the berthed vessel from the offshore side using a grappling hook. They took the First Officer and a shore security guard as h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.17333329968784, 6.805555599813033] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-10", - "dateofocc": "2013-01-08", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER", - "descriptio": "YEMEN:On 08 January, LPG tanker experienced suspicious approach at 12-40N 043-16E, at Bab El Mandeb. Approximately 5 to 6 persons each in two skiffs approached the vessel while underway. Alarm raised, anti-piracy measures initiated, and distress message", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.266666700067333, 12.666666699797247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-11", - "dateofocc": "2013-01-05", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL MSC JASMINE", - "descriptio": "SOMALIA:On 05 January, container ship MSC JASMINE fired upon on at 03-07N 051-51E, approximately 400 nm ENE of Mogadishu. Six pirates in a skiff pursued and fired upon the vessel with automatic weapons and an RPG. Vessel raised the alarm, crew mustered i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.84999999972888, 3.116666700072926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-12", - "dateofocc": "2013-01-03", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "CARGO VESSEL JADE SKY", - "descriptio": "INDIA:On 3 January, bulk cargo vessel JADE SKY boarded at 22-49N 070-03E, at the Kandla port anchorage. Robbers boarded the vessel, broke into the forecastle store room, stole ship's stores and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.049999999777867, 22.81666669972077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-13", - "dateofocc": "2013-01-04", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER HISTRIA PRINCE", - "descriptio": "INDONESIA:On 04 January, chemical tanker HISTRIA PRINCE boarded at 01-16S 116-49E, at the Balikpapan Port Jetty No. 5C. Four robbers approached the vessel at berth while engaged in loading operations. One of the robbers boarded by climbing the forward fi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.816666700062683, -1.266666699817108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-14", - "dateofocc": "2013-01-15", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "CONGO:On 15 January, a container ship was boarded at 04-43S 011-46E, at the Pointe Noire Anchorage. Three robbers armed with knives disguised as fishermen in a small boat approached and boarded the anchored vessel. Duty crew spotted the robbers and raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.76666670039765, -4.716666699613882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-15", - "dateofocc": "2012-12-20", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER TSURUMI", - "descriptio": "IRAN:On 20 December, the tanker TSURUMI was boarded at 24-46N 57-54E, approximately 25 nm South of Bandar-e-Jask. The tanker underway en route to Fujairah sighted a speed boat approaching at a speed of around 25 knots. The Master raised alarm, activated", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.8999999997896, 24.766666699918744] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-16", - "dateofocc": "2013-01-16", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH:On 16 January, a bulk carrier was boarded at 22-17N 091-43E, at the Chittagong Anchorage. Five robbers armed with long knives boarded the anchored vessel via the anchor chain during cargo operations. The Second Officer noticed the robbers and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.283333300359971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-17", - "dateofocc": "2013-01-12", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER HUA HENG 167", - "descriptio": "INDONESIA:On 12 January, the bulk carrier HUA HENG 167 was boarded at 01-11S 116-46E, at the Balikpapan Anchorage. Two robbers armed with long knives boarded the anchored vessel via the anchor chain. Duty crew noticed the robbers and raised the alarm. Al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.766666700195969, -1.18333330015605] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-18", - "dateofocc": "2013-01-08", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TUG DE HUI/BARGE HAIYANGSHIYOU", - "descriptio": "SINGAPORE:On 08 January, the tug DE HUI with the barge HAIYANGSHIYOU in tow was boarded at 01-11N 103-37E, approximately 4 nm Southwest of the Western Islands. A speedboat with five robbers wearing camouflage uniforms approached the tug at 1710 local tim", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-19", - "dateofocc": "2013-01-23", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "PERU:On 23 January, a tanker was boarded in the vicinity of 04-34S 081-16W, at the MBM Terminal, Talara Port. Robbers boarded the berthed vessel and escaped with ship's stores unnoticed. Upon investigation, it was found the robbers boarded via the hawse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.266666699706263, -4.566666700013741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-203", - "dateofocc": "2013-06-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "YEMEN:On 20 June, an underway merchant vessel experienced an aggressive approach by two skiffs at 12-42N 043-19E, approximately 5 nm northwest of Birim Island. The first skiff with two pirates on board approached from the starboard side, while the second", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.316666699934046, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-204", - "dateofocc": "2013-06-17", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "VESSEL", - "descriptio": "IRAN:On 17 June, an underway vessel experienced a suspicious approach at 25-33N 057-23E, approximately 21 nm southwest of Bandar-e-Jask. Vessel reported being approached by two skiffs, coming within 20-30 meters of the vessels stern. No pirate parapherna", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.383333300325944, 25.549999999687714] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-205", - "dateofocc": "2013-07-01", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "BARGE", - "descriptio": "SINGAPORE:On 01 July, an underway barge in tow was boarded while transiting the Singapore Strait.During subsequent routine rounds, the crew from the tug towing the barge noticed items from the barge missing.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.766666699646237, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-206", - "dateofocc": "2013-06-09", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "MALAYSIA:On 09 June, an underway tug was boarded at 04-30N 103-59E, approximately 30nm east of Kerteh, Terengganu. Six pirates armed with guns and long knives, in a speed boat, approached and boarded the underway tug. They took hostage all crew members,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.983333300214213, 4.500000000041211] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-207", - "dateofocc": "2013-07-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:On 04 July, 2013 at 0950 UTC, a merchant vessel was closed to four cables by eight suspected pirates in two skiffs. The position of the incident was 12-59.6N 043-06.7E. Pirates were armed with machine guns. Ship's security team made warning sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.111666700210719, 12.993333299582901] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-186", - "dateofocc": "2013-06-13", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER ADOUR", - "descriptio": "TOGO:On 13 June, the anchored France-flagged chemical tanker ADOUR was hijacked at 05-41N 001-18E, approximately 30 nm south of Lome. Armed robbers boarded an anchored chemical tanker and took the duty officer hostage to the Masters cabin. When the Maste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.299999999577949, 5.683333299643266] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-208", - "dateofocc": "2013-07-08", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA:On 8 July, an underway bulk carrier experienced a suspicious approach at 13-10N 043-06E, approximately 11 nm southwest of Mocha, Yemen. Armed security team on board the underway bulk carrier noticed two skiffs near the stern of the vessel, at a d", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.099999999670729, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-209", - "dateofocc": "2013-06-30", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA:On 30 June, an anchored bulk carrier was boarded at 22-58N 070-14E, at the Kandla Inner Anchorage. Three to four robbers, in a boat, boarded the anchored bulk carrier. The Duty Officer noticed the boarding and immediately raised the alarm. Upon hea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.233333300246898, 22.96666670022023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-210", - "dateofocc": "2013-07-10", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER LG ASPHALT 1", - "descriptio": "MALAYSIA:On 10 July, the Malaysia-flagged underway tanker LG Asphalt 1 was boarded at 03-02N 104-18E, approximately 12 nm northeast of Pulau Tioman. Approximately eight pirates, armed with guns and knives, boarded the underway tanker. They ordered the C/", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.300000000211014, 3.033333300411925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-211", - "dateofocc": "2013-07-07", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER AFRAMAX RIO", - "descriptio": "INDONESIA:On 7 July, the Panama-flagged anchored tanker AFRAMAX RIO was boarded at 01-04N 103-38E, at the Nipah Anchorage. Four robbers armed with knives boarded the tanker during STS operations. Duty crew noticed the robbers and raised the alarm, resul", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-212", - "dateofocc": "2013-07-04", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER SANKO MERCURY", - "descriptio": "INDONESIA:On 4 July, the Liberia-flagged anchored bulk carrier SANKO MERCURY was boarded at 03-40S 114-25E, at the Taboneo Anchorage. Three robbers, in a boat, boarded the anchored bulk carrier at the forecastle. Alert duty crew spotted the robbers and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.666666699714824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-443", - "dateofocc": "2011-10-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "HEAVY LOAD CARRIER", - "descriptio": "270 MILES OFF SEYCHELLES: Armed pirates in two skiffs chased and fired upon a heavy load carrier underway with intent to hijack. Master raised alarm, increased speed, took evasive maneuvers, contacted CSO and all crew mustered at citadel. Onboard securit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.538333300214902, -1.191666699567349] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-444", - "dateofocc": "2011-10-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "SANDAKAN ANCHORAGE, MALAYSIA: Three robbers in a fast boat boarded a tug boat and tow at anchor. Robbers stole ship's stores and escaped. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.117222199721027, 5.818888899623687] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-445", - "dateofocc": "2011-10-26", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: Two attempted boardings of chemical tanker at anchor 26 October at 0130 near position 01-42.2N 101-29.3E, Dumai Inner Anchorage. Robbers used folded rods with a hook to climb. Alert duty watchman sighted the robbers and informed bridge. Bridge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.488333299940166, 1.703333299640462] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-446", - "dateofocc": "2011-10-20", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: Cargo ship (HR CONSTELLATION) fired upon by pirates in two skiffs on 20 October while approximately 275 nm northeast of Port Victoria, Seychelles. One of the two skiffs approached to within 50-100 meters of the vessel. The armed security te", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.411666699799127, -4.580833299957931] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-447", - "dateofocc": "2011-10-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "REFRIGERATED CARGO SHIP", - "descriptio": "OFF TOGO: A refrigerated cargo ship drifting noticed on radar an approaching small boat. As the boat closed towards the vessel no change in course or speed was observed. Seeing this the Master raised alarm, started main engine, increased speed and commen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.426666699721522, 4.260000000321213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-448", - "dateofocc": "2011-10-30", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIAN OCEAN: Petroleum tanker (SCF PLYMOUTH) fired upon by four to five pirates in one skiff on 30 October at 1254 UTC while underway in position 04-20S 043-41E, approximately 245 nm southeast of Mombasa, Kenya. Vessel was traveling at a speed of 14.7 k", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.683333299972844, -4.333333299853223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-449", - "dateofocc": "2011-10-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "GULF OF ADEN: Tanker (LIQUID VELVET) hijacked by six pirates on 31 October at 0842 UTC while underway in position 12-00N 045-33E, approximately 55 nm southeast of Aden, Yemen. The crew (21 Filipinos and one Greek) were able to lock themselves in the cita", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.550000000334535, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-450", - "dateofocc": "2011-10-31", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: A merchant vessel reported being hijacked at 1152Z on 31 Oct in position 12-02N 045-38E, approximately 140 miles southeast of Bab el Mandeb. This area will remain at high risk for at least 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [45.633333300170818, 12.033333299803644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-451", - "dateofocc": "2011-10-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Tuna fishing vessel attacked by pirates on 31 October at 1415 UTC while underway in position 02-23S 049-29E, approximately 444 nm southeast of Kismaayo, Somalia. The vessel had a protection detachment onboard the vessel. (Operator)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.483333299800677, -2.383333299655249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-452", - "dateofocc": "2011-11-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (TORRE GIULIA) attacked by pirates in two skiffs on 1 November at 0936 UTC while underway in position 01-21S 052-21E, approximately 591 nm southeast of Kismaayo, Somalia. Vessel had protection detachment onboard. A mothership", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.350000000194711, -1.349999999653392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-453", - "dateofocc": "2011-11-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSELS", - "descriptio": "WESTERN INDIAN OCEAN: Pirate activity group, one whaler and one skiff detected in position 05-20.0S 042-40.8E at 0655Z on 03 Nov. Four persons in the skiff/ ladder sighted, 12 barrels and four persons in whaler. Vessels are advised to keep well clear of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.679999999711072, -5.333333299885567] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-454", - "dateofocc": "2011-10-29", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA: Petroleum tanker (HALIFAX) hijacked by pirates on 29 October at 1219 UTC while in position 03-26.5N 006-42.3E, approximately 62 nm southwest of Bonny. Vessel was awaiting further berthing instructions from its charterers. Vessel has a crew of 24", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.704999999829226, 3.441666699656253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-455", - "dateofocc": "2011-11-01", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Petroleum tanker (DYNATANK) fired upon by pirates on 1 November at 0050 UTC while underway in position 08-10S 046-06E, approximately 407 nm southeast of Dar es Salaam, Tanzania. The onboard security team returned fire, and after 30 minutes", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.099999999767761, -8.166666700310032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-456", - "dateofocc": "2011-11-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "INDIAN OCEAN: Fishing vessel (CHIN I WEN) hijacked on 3 November at 2100 UTC while underway in position 06-10S 051-10E, approximately 722 nm northeast of Dar es Salaam, Tanzania. On 5 November, the crew regained control of the vessel and rendezvoused wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.166666699693337, -6.166666700245344] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-171", - "dateofocc": "2012-05-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "EGYPT:Product tanker was boarded on 14 May while anchored at 29:50 N - 032:31 E, Port Suez Anchorage, Egypt. Pirates boarded an anchored product tanker unnoticed, stole ship stores and escaped unnoticed. The theft occurred during a sandstorm when the dut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.516666699944551, 29.833333300019547] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-172", - "dateofocc": "2012-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "OMAN:Liberian-flagged crude oil tanker pirated on 10 May while underway at 15:58 N ¿ 061:02 E, around 250 nm southeast of Ras Al Madrakah, Oman. Ten pirates in two skiffs armed with automatic weapons chased a crude oil tanker underway. The tanker enforc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.033333299589628, 15.96666669999388] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-170", - "dateofocc": "2012-04-17", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ECUADOR:Seven robbers in a small fast craft approached and came alongside a container ship underway during a river passage. Alert crew noticed the robbers with a ladder attempting to board and raised the alarm. Seeing the alert crew the robbers aborted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.890277799872365, -2.200000000085538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-160", - "dateofocc": "2012-05-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "YEMEN:Crude oil tanker attacked on 09 May while underway at 10:40 N - 060:04 E 345 nm east-southeast of Socotra Island, Yemen. Pirates in two skiffs armed with AK47 and RPG approached the crude tanker. The pirates fired seven RPG rounds and more than 300", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [60.066666700250948, 10.666666699732559] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-173", - "dateofocc": "2012-05-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk Carrier was boarded on 10 May while underway at 03:42 S-114:27 E, Taboneo Anchorage, Indonesia. Pirates boarded the anchored bulk carrier during cargo operations and stole ship's stores from the ships forecastle and escaped before being sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.450000000134537, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-174", - "dateofocc": "2012-05-12", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk Carrier was boarded while at anchor on 12 May at 01:11 S - 117:13 E, Muara Jawa Anchorage, Samarinda, Indonesia. Pirates boarded an anchored bulk carrier and stole ship's stores and escaped unnoticed. The theft was noticed by the duty A/B", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.216666699895768, -1.18333330015605] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-175", - "dateofocc": "2012-05-10", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "OMAN:Amerchant vessel reported being hijacked at 1126Z on 10 May in position 1548N 06118E approximately 450NM south east of Salalah, Oman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.299999999719716, 15.799999999597219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-176", - "dateofocc": "2012-03-06", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "OMAN:A merchant vessel reported being fired upon at 0505Z on 06 Mar 2012 in position 1421N 05236E, approximately 212NM Southwest of Salala, Oman.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.600000000427599, 14.349999999865133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-177", - "dateofocc": "2012-03-11", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA:A merchant vessel attacked in vicinity 13 13N 057 50E at 110737 UTC Mar 12.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.833333300025743, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-178", - "dateofocc": "2012-05-17", - "subreg": "28", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "COSTA RICA:Container Ship attempted boarded on 17 May at 09:58 N ¿ 083:00 W, Puerto Limon Anchorage, Costa Rica. Five pirates in a boat were noticed by alert deck watchmen alongside their container ship with boat hooks in an attempt to board. The duty o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.99999999964092, 9.966666699799816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-180", - "dateofocc": "2012-05-23", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "IRAN:Cargo vessel MAERSK TEXAS fired upon while underway on 23 May in position 25-29N 057-16E, approximately 28 nm west-southwest of Bandar-e-Jask, Iran. Duty Officer onboard noticed a group of 10 skiffs at a distance of 2 nm from the ship on the starboa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.266666699620771, 25.483333299923856] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-181", - "dateofocc": "2012-05-18", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker robbed on 18 May at 03:42 S ¿ 114:26 E, Taboneo Anchorage, Banjarmasin, Indonesia. The duty A/B on roving deck patrol noticed five pirates in the forward store. Two of the pirates threatened him with a knife and the A/B escaped and info", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-20", - "dateofocc": "2013-01-17", - "subreg": "24", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER ALGA", - "descriptio": "ATLANTIC OCEAN:On 17 January, the tanker ALGA experienced a suspicious approach in the vicinity of 08-02N 034-30W, approximately 1205 nm off the coast of Guinea. Two white skiffs containing an unknown number of suspected pirates attempted to advance towa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-34.500000000320711, 8.033333299674268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-21", - "dateofocc": "2013-01-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER ITRI", - "descriptio": "IVORY COAST:On 16 January, the tanker ITRI was hijacked at 03-27N 001-06W, at the Abidjan anchorage. Pirates boarded and hijacked the vessel while it was preparing to offload jet fuel at the port. The crew of 16 were held hostage and locked in a dining r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.100000000319767, 3.450000000142154] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-22", - "dateofocc": "2013-01-22", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER SIVA MUMBAI", - "descriptio": "INDONESIA:On 22 January, the chemical tanker SIVA MUMBAI was boarded at 01-42N 101-29E, at the Dumai Inner Anchorage. Robbers boarded the anchored vessel, stole engine spares, and escaped unnoticed. The theft was detecteed after departure from the port w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-23", - "dateofocc": "2013-01-17", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "TANKER TORM OHIO", - "descriptio": "INDONESIA:On 17 January, the tanker TORM OHIO was boarded at 01-22S 116-56E, at the Balikpapan Outer Anchorage. Two robbers boarded the anchored vessel while waiting for pilot. Duty Officer raised the alarm and sounded the fog horn upon noticing some mo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.933333299868536, -1.366666699550535] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-24", - "dateofocc": "2013-01-28", - "subreg": "56", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "PASSENGER VESSEL", - "descriptio": "EGYPT:On 28 January, a passenger vessel being reported as ISLAND OF RHODES was fired upon at 31-15N 032-18E, at Port Said. The Greek-owned vessel came under fire from unknown persons during a regular inspection by the Consular Harbor Master. It should be", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.299999999681177, 31.249999999782119] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-25", - "dateofocc": "2013-01-29", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "TANKER BW YANGTZE", - "descriptio": "INDIA:On 29 January, the product tanker BW YANGTZE was boarded in the vicinity of 22-01N 088-06E, at the Haldia Anchorage. Robbers armed with knives and a gun, boarded the anchored vessel and started lowering mooring ropes. Duty Officer spotted the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.100000000226657, 22.016666700054657] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-26", - "dateofocc": "2013-01-27", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER CHAMPION TRUST", - "descriptio": "INDIA:On 27 January, the chemical tanker CHAMPION TRUST was boarded at 17-01N 082-24E, at the Kakinada Anchorage. Eight robbers in two boats armed with long knives approached the anchored vessel. Two of the robbers boarded and stole ship's stores from th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.400000000132252, 17.016666699892937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-27", - "dateofocc": "2013-01-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "INDONESIA:On 24 January, a barge in tow was boarded at 02-08N 108-45E, at approximately 20 nm WNW of Pulau Merundung. An unknown number of pirates from a fast moving fishing boat boarded the towed barge, forced open containers and stole cargo, then escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.750000000040131, 2.133333300113009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-28", - "dateofocc": "2013-02-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER PYXIS DELTA", - "descriptio": "NIGERIA:On 04 February, the chemical tanker PYXIS DELTA was fired upon at 06-19N 003-24E, at the Lagos Anchorage. Pirates armed with guns approached and fired upon the anchored vessel during ship-to-ship transfer operations. The response of the onboard n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-29", - "dateofocc": "2013-02-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER GASCOGNE", - "descriptio": "IVORY COAST:On 03 February, the oil tanker GASCOGNE was hijacked in the vicinity of 04-07N 003-54W, approximately 70 nm south of Abidjan port. Owners reported that they had lost contact with their vessel and its 17 crew members while underway and suspect", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.900000000050568, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-30", - "dateofocc": "2013-01-31", - "subreg": "57", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER OLIVIA II", - "descriptio": "NIGERIA:On 31 January, the tanker OLIVIA II was fired upon at 03-46N 005-19E, approximately 45 nm SSW of Brass. While underway, the vessel noticed three skiffs approaching at high speed. A suspected mother vessel was observed on radar at a distance of ab", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.316666699604468, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-31", - "dateofocc": "2013-01-31", - "subreg": "51", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "MAURITANIA:On 31 January, a refrigerated cargo ship was boarded at 20-53N 016-59W, at the Nouadhibou Port. Two robbers armed with knives boarded the anchored vessel, while six more robbers waited in their boat. Alert duty crewman spotted the robbers and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.983333300307265, 20.883333299595222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-213", - "dateofocc": "2013-06-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:On 27 June, an anchored chemical tanker experienced an attempted boarding at 06-01S 106-53E, at the Jakarta Tanker Anchorage. Alert crew on board the anchored chemical tanker spotted a wooden boat, with three robbers, armed with knives. The ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.166666700245344] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-214", - "dateofocc": "2013-07-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER OCEAN CENTURION", - "descriptio": "TOGO:On 16 July, the Marshall Islands-flagged underway product tanker OCEAN CENTURION was hijacked at 05-29N 001-38E, approximately 46nm southeast of Lome. Armed pirates in two speed boats approached, boarded, and hijacked the product tanker. They took h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.633333299647177, 5.483333300176355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-215", - "dateofocc": "2013-07-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER COTTON", - "descriptio": "GABON:On 15 July, the Malta-flagged underway chemical tanker COTTON was hijacked at 00-26S 008-51E, approximately 13 nm off Port Gentil. 12 to 15 gunmen armed with AK-47 assault rifles hijacked the tanker and its 23 crewmembers. The tanker was later rele", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.850000000136902, -0.433333300356651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-216", - "dateofocc": "2013-07-10", - "subreg": "57", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "CHEMICAL TANKER OVERSEAS ATHENS", - "descriptio": "NIGERIA:On 10 July, an anchored chemical tanker experienced a suspicious approach at 06-17N 003-21E, approximately 5.4nm southwest of Fairway Buoy, Lagos Anchorage. Armed security personal onboard the anchored chemical tanker noticed a small boat with an", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.35000000040867, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-217", - "dateofocc": "2013-07-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL", - "descriptio": "GULF OF GUINEA:On 7 July, gunmen boarded and kidnapped the crew of an underway supply vessel at 04-24N 007-03E, in the vicinity of the New Calabar River. The incident took place as the vessel was transiting from Port Harcourt to Nembe. Initial reports st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.050000000438445, 4.400000000307728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-218", - "dateofocc": "2013-07-05", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA:On 5 July, an anchored bulk carrier was boarded at 06-26N 003-23E, on Lagos Port Road. Three armed men were reported to have separated part of the razor wire and gained access via a rope. The bosun spotted them and alerted the duty officer by rad", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-482", - "dateofocc": "2011-12-06", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "EGYPT: Bulk carrier boarded and robbed on 6 December at 0035 UTC while anchored in Position 31-11N 029-52E, in the inner anchorage of Alexandria. Three robbers armed with knives boarded the vessel, robbed the ship's stores, and escaped in a motor boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.866666699813891, 31.183333300018262] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-219", - "dateofocc": "2013-07-16", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "CHEMICAL TANKER CONCORD", - "descriptio": "YEMEN:On 16 July, the Marshall Islands-flagged underway chemical tanker CONCORD experienced a suspicious approach by three skiffs at 13-28N 043-01E, approximately 16 nm northwest of Mocha. The onboard security team took their position while non essential", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.016666699834445, 13.46666670036268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-220", - "dateofocc": "2013-07-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG CREST APACHE & BARGE TERAS 3717", - "descriptio": "INDONESIA:On 12 July, the underway tug CREST APACHE and barge TERAS 3717 were boarded by eight pirates in a speedboat at 03-13N 104-58E, approximately 35nm northwest of the Anambas Islands. The pirates were armed with guns and long knives. The pirates cu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.96666670017413, 3.216666699806353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-221", - "dateofocc": "2013-06-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "NIGERIA:On 27 June 2013, a fishing vessel was attacked at approximately 9 nm north of Brass Terminal. Several crew members were assaulted and the vessel had some damage. Two crew members may have been kidnapped. No more information.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.283333299842525, 4.066666700238557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-222", - "dateofocc": "2013-07-15", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GABON:On 15 July 2013 at 0552 LT, a merchant ship at anchored was suspected to be hijacked by pirates at position 00-26.49S 008-51.45E, around 17.4 nm north of Port Gentil, Gabon. The owner reported that they had lost communication with the vessel. Fur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.857499999622291, -0.44138890009242] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-223", - "dateofocc": "2013-07-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF GUINEA:M/V attacked in 01-6.8N 004-41.0E on 16 July 2013 at 0410Z. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.683333299610922, 1.113333299954093] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-224", - "dateofocc": "2013-07-19", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "RO-RO VESSEL", - "descriptio": "LIBYA:On 19 July, approximately twelve armed Libyan men boarded and hijacked a berthed Ro-ro vessel was hijacked at the Bengazi Port. The hijackers are holding the 19 Ukranian crew members as hostages, with demands that a ransom of $9.5 million be paid b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [20.049999999959539, 32.116666700111466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-225", - "dateofocc": "2013-07-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL C VIKING", - "descriptio": "NIGERIA:On 19 July, the Vanuatu-flagged anchored offshore supply vessel C VIKING was boarded at 04-18N 007-46E, at the Usari Field, offshore Akwa lbom state. Crew managed to lock themselves in a citadel, no injuries reported. Pirates looted the vessel, i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.766666700268274, 4.299999999674981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-226", - "dateofocc": "2013-07-18", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER LIBERTY GRACE", - "descriptio": "TOGO:On 18 July, the United States-flagged anchored bulk carrier LIBERTY GRACE experienced an attempted boarding at 06-05N 001-17E, at the Lome Anchorage. Duty Officer on board the anchored bulk carrier spotted an unlit skiff with 5-6 persons approaching", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-457", - "dateofocc": "2011-11-08", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "VENEZUELA: Container ship boarded by robbers on 8 November at 2100 LT while drifting in position 10-27.1N 064-39.3W, approximately 14 nm northwest of Guanta, Venezuela. Duty watchman spotted three robbers on the main deck and informed the officer of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.655000000248208, 10.451666700395606] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-458", - "dateofocc": "2011-11-03", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: General cargo ship boarded by pirates on 3 November at 0255 LT while anchored in position 08-30.06N 013-13.82W in the Freetown Inner Anchorage, Sierra Leone. The duty watch man spotted two robbers onboard the main deck and informed the bridge, w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.230277799856992, 8.501111099947252] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-459", - "dateofocc": "2011-10-31", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "AROUND 420 MILES EAST OF MOMBASSA, KENYA: About four to five pirates in a skiff armed with guns chased and fired upon a tanker underway. Master raised alarm and all crew except the bridge team mustered in the citadel. The onboard armed securtiy team fire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [43.711666700409978, -4.321666700037269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-460", - "dateofocc": "2011-11-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier boarded 14 November at 0045 LT while anchored in position 01-22S 116-57E, Balikpapan Anchorage. Alert duty crew noticed robbers on forecastle deck attempting to rob ship's stores. The alarm was raised and the fog horn sounded. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.933333299868536, -1.366666699550535] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-461", - "dateofocc": "2011-11-14", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYSIA: Chemical tanker boarded and robbed 14 November at 0350 LT while berthed in position 05-49N 118-05E, KPO Terminal, Sandakan Port, Sabah. Four robbers with long knives boarded the vessel and were noticed by the duty crew who shouted at them and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-462", - "dateofocc": "2011-11-15", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Product tanker (BW DANUBE) fired upon by pirates in two skiffs on 15 November at 0418 UTC while underway in position 15-49N 055-05E, approximately 302 nm northeast of Al Mukalla, Yemen. Eight pirates in two skiffs chased the vessel. The mast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.083333300161655, 15.816666700393739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-463", - "dateofocc": "2011-11-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (ER COPENHAGEN) experienced an attempted boarding by pirates in one skiff on 11 November at 0824 UTC while underway in position 03-56S 047-14E, approximately 452 nm east of Mombasa, Kenya. Six pirates armed with guns and an R", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.233333300402421, -3.933333300020138] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-464", - "dateofocc": "2011-11-16", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH: Container ship boarded and robbed 16 November at 2100 LT while anchored in position 22-12.3N 091-42.2E, Chittangong, Bangladesh. Five robbers boarded the vessel. After the Master raised the alarm and flashed searchlights, the robbers escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.703333299853057, 22.20499999988084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-465", - "dateofocc": "2011-11-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: Chemical tanker boarded and robbed 16 November at 0330 LT while anchored in position 03-56N 098-48E, Belawan Anchorage. The robbers boarded, stole the ship's stores, and escaped without notice. The master reported the incident to the port auth", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.799999999583463, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-466", - "dateofocc": "2011-11-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOUTHERN RED SEA, GULF OF ADEN: Merchant vessel attacked in 12-33N 043-31E at 0500z on 18 Nov. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.516666700300277, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-467", - "dateofocc": "2011-11-21", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIAN OCEAN: Container ship (MSC JEANNE) was fired upon by six pirates in two skiffs on 21 November at 0536 UTC while underway in position 04-03S 042-55E, about 198 nm east of Mombasa, Kenya. The Master raised the alarm, took anti-piracy preventive meas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [42.916666700101018, -4.049999999650765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-468", - "dateofocc": "2011-11-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (PIONEER PACIFIC) was fired upon by eight pirates in two speed boats on 20 November at 1345 UTC while underway in position 12-27N 043-47E, about 24 nm southeast of Perim Island, Yemen. Master fired flares when the speed boats w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.783333299706271, 12.450000000433192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-469", - "dateofocc": "2011-11-20", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH: Bulk carrier boarded and robbed 20 November at 2315 LT while anchored in position 22-12N 091-45E, Chittangong, Bangladesh. Duty officer noticed the robbers on the forecastle deck and alerted the deck watchkeepers, who then rushed the forecast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-182", - "dateofocc": "2012-05-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "INDONESIA:Barge was boarded on 12 May at 01:14 N ¿ 104:08 E, 4nm North North East of Pulau Batam, Indonesia. The barge was under tow enroute from Singapore to Kelanis, Banjarmasin, Indonesia and was boarded by robbers using a wooden tug. VTIS Singapore", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-183", - "dateofocc": "2012-05-27", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ECUADOR:Four robbers armed with knives boarded a berthed container ship during formality inspection by the immigration and customs department. Duty bosun noticed the robbers boarding the vessel from seaward side using ropes and hooks. One of the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.901666699837506, -2.283333299921821] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-184", - "dateofocc": "2012-05-25", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "EGYPT:Bulk Carrier was boarded on 25 May while at anchor at El Dekheila Outer Anchorage. A fishing boat was seen dropping anchor stern of a bulk carrier at anchor. The duty deckhand remained near the stern during his watch. Later the C/O noticed two ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.750000000183263, 31.199999999915406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-185", - "dateofocc": "2012-05-29", - "subreg": "52", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ALGERIA:Bulk carrier was boarded while on 29 May at berth at Port of Alger, Algeria.The duty crew at the aft mooring deck onboard a berthed bulk carrier noticed two robbers trying to open the port life raft. He reported to the Duty Officer who raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [3.066666700206213, 36.766666700306814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-186", - "dateofocc": "2012-05-24", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "KENYA:Chemical tanker was boarded on 24 May while berthed at 04:02 S - 039:38 E, Berth No. 8, Mombasa Port. A robber armed with a knife boarded a chemical tanker at berth during cargo operations. The robber attacked the duty officer on deck rounds, inj", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.633333299976755, -4.033333299753622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-187", - "dateofocc": "2012-05-17", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT", - "descriptio": "PHILIPPINES:Tug boat boarded on 17 May at Talicud Island. A tug towing a laden barge departed from Sasa port, Davao City at a slow speed heading to Thailand as a port of destination. 90 into minutes into the departure, the crew noticed 10 small boats su", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.766666699587745, 6.816666700102644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-188", - "dateofocc": "2012-05-22", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BANGLADESH:Tanker boarded on 22 May while at anchor at 22:15 N ¿ 091:44 E, 3.9 nm northwest of Patenga Point Light. Pirates armed with knives boarded the anchored tanker, stole ship stores and escaped. The incident was reported to the coast guard who im", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-189", - "dateofocc": "2012-06-01", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA:Tanker boarded on 01 June at 06:19 N - 003:29 E, Lagos Anchorage. Three armed robbers boarded the tanker from a wooden boat. The alarm was raised and the crewretreated into the citadel. After four hours the crew emerged from the citadel and found", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.483333300111724, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-190", - "dateofocc": "2012-06-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk Carrier boarded on 04 June at 03:57 N - 098:46 E, Belawan Outer Anchorage, Indonesia. Seven robbers armed with long knives boarded an anchored bulk carrierat the forecastle. The duty A/B and D/O noticed the robbers and raised the alarm. Se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-191", - "dateofocc": "2012-05-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SINGAPORE:Fishing vessel boarded while underway on 23 May at 04:50 N ¿ 099:04 E, Malacca Straits. Armed pirates boarded the fishing vessel and took hostage six crewmembersand hijacked the vessel. Upon receiving the information, the MMEA immediately sent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.066666699713551, 4.833333300110382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-192", - "dateofocc": "2012-06-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "GULF OF OMAN:Possible pirate activity observed in the vicinity of 25:32N 056:59E, 43 nm SW of Bandar-e-jask, Iran, involving two small craft with reported weapons. Forecasted weather conditions are currently marginal for small boat activity in this area", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.983333299593539, 25.53333329979057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-193", - "dateofocc": "2012-06-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:The previously hijacked vessel \"Mt Royal Grace\" is seen moving and her last position was reported as Lat 11:59N - 050:37E on 07.06.2012 at 0550 UTC. It appears that the Somali pirates are still onboard. All vessels are advised to keep wel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.616666700260055, 11.98333329993693] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-32", - "dateofocc": "2013-02-02", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:On 02 February, a chemical tanker experienced an attempted boarding at 03-55N 098-48E, at the Belawan Anchorage. Six robbers armed with knives in a wooden motor boat approached the anchored vessel. One of the robbers attempted to board by ladde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.799999999583463, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-33", - "dateofocc": "2013-01-31", - "subreg": "91", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "PHILIPPINES:On 31 January, a general cargo ship was boarded at 14-33N 120-54E, at the Manila South Quarantine Anchorage. Three robbers in a boat approached and boarded the anchored vessel. Alert crew members noticed the robbers near the forecastle store", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.900000000028399, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-34", - "dateofocc": "2013-02-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA:On 11 February, the general cargo ship SAFMARINE SAHEL was fired upon at 04-06N 006-52E, approximately 10.5 nm southwest from Bonny River fairway buoy. While the cargo ship was underway, it noticed a speedboat approaching from portside containing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.866666699969358, 4.100000000208126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-37", - "dateofocc": "2013-02-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "NIGERIA:On 06 February, a tug towing a barge was fired upon in vicinity of 05-10N 006-12E, along the River Forcados at the Angiama Community area of Bayelsa. Pirates ambushed the tug and barge, which was being escorted by a military vessel while transiti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.10999999988644, 4.829999999881011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-38", - "dateofocc": "2013-02-13", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER FORWARD FORTUNE", - "descriptio": "INDONESIA:On 13 February, the tanker FORWARD FORTUNE was boarded at 01-06N 103-36E, at the Nipah Anchorage. Robbers boarded the vessel during ship-to-ship transfer operations, stole engine spares, and escaped when after the crew spotted them and raised a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-39", - "dateofocc": "2013-02-12", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "TANKER TORM GARRONE", - "descriptio": "INDONESIA:On 12 February, the anchored tanker TORM GARRONE was boarded at 01-17S 116-47E, at the Balikpapan Inner Anchorage. On sighting the robbers, Master raised the alarm and mustered the crew. Robbers escaped with ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.783333300268396, -1.283333299889478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-40", - "dateofocc": "2013-02-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER STARGATE", - "descriptio": "INDONESIA:On 12 February, the bulk carrier STARGATE was boarded at 01-42N 101-27E, at the Dumai Anchorage. Three robbers armed with long knives boarded the anchored vessel using a rope and a hook attached to a long pole. Duty Officer noticed the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-41", - "dateofocc": "2013-02-06", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER INCE INEBOLU", - "descriptio": "INDONESIA:On 06 February, the bulk carrier INCE INEBOLU ship was boarded at 01-41S 116-38E, at the Adang Bay Anchorage. Three robbers armed with knives boarded the anchored vessel via the anchor chain and attacked the duty crewman on the forecastle, who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.683333299722563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-42", - "dateofocc": "2013-02-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG ARMADA TUGAS 1", - "descriptio": "NIGERIA:On 17 February, the tug ARMADA TUGAS 1 was boarded and personnel kidnapped at 03-57N 005-20E, approximately 40 nm WSW of Brass. Pirates boarded the vessel and kidnapped 6 officers. The remaining 12 crew members were unharmed and there was no dama", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.333333299676895, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-43", - "dateofocc": "2013-02-17", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER AFRICAN JOY", - "descriptio": "NIGERIA:On 17 February, the bulk carrier AFRICAN JOY was boarded at 06-27N 003-23E at Berth No.2, Apapa, Lagos. Robbers in a wooden boat approached the berthed vessel. One robber boarded the ship, broke into the forward store, and stole ship's stores, in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-44", - "dateofocc": "2013-02-18", - "subreg": "61", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "CARGO SHIP", - "descriptio": "SOMALIA:On 18 February, a cargo ship was fired upon at 07-14N 052-17E, approximately 150 nm ESE of Eyl. Two white speed boats approached and fired upon the vessel while underway. Onboard armed security team returned fire, resulting in the skiffs moving a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.283333300430797, 7.233333300008155] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-45", - "dateofocc": "2013-02-14", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIA:On 14 February, a tanker was boarded at 09-54N 076-08E at the Cochin Anchorage. Three robbers boarded the anchored vessel. Alert Duty Officer noticed movement on the forecastle deck and raised the alarm. Upon hearing the alarm and seeing crew's ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.133333299808157, 9.900000000035959] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-227", - "dateofocc": "2013-07-15", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "LANDING CRAFT RENOVATION", - "descriptio": "GABON:On 14 July, the Gabon-flagged underway landing craft RENOVATION was boarded at 00-29S 008-51E, at Port Gentil. Approximately 20 armed robbers in a speed boat approached and boarded the landing craft underway. They stole crew personal belongings and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.850000000136902, -0.483333300223364] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-228", - "dateofocc": "2013-07-24", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIA:On 24 July, the anchored Singapore-flagged chemical tanker BUNGA LUCERNE was boarded at 22-48N 070-03E, at the Kandla Anchorage. An able bodied seaman and a deck cadet, who were carrying out routine work on the forecastle of the anchored chemical t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.049999999777867, 22.799999999823626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-229", - "dateofocc": "2013-07-21", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "PRODUCT TANKER", - "descriptio": "VIETNAM:On 21 July, the Singapore-flagged berthed product tanker KIRANA TRITYA was boarded at the Nha Be Terminal. Five robbers in a small boat approached the berthed product tanker. Two robbers armed with knives managed to board the tanker using a rope", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.749999999975444, 10.699999999702129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-230", - "dateofocc": "2013-07-17", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA:On 17 July, an underway general cargo ship was boarded at 01-07N 104-52E,approximately 7 nm northeast of Pulau Mapur. Roughly ten robbers, armed with guns and knives, boarded the underway general cargo ship. They entered the bridge and assaulte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.866666700440703, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-231", - "dateofocc": "2013-07-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "SINGAPORE STRAIT:On 24 July, 2040Z, in 01-18N 104-41E about six pirates in a speed boat armed with knives boarded a tug towing a barge. They entered crew cabins and took hostage all crew members and stole crew personal properties and tug properties and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-232", - "dateofocc": "2013-07-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG SURYA WIRA 5", - "descriptio": "SINGAPORE STRAIT:On 24 July, the underway Singapore-flagged tug SURYA WIRA 5 was boarded at 01-16N 104-37E, approximately 3nm northeast of Tanjung Berakit. Roughly seven pirates, in a speed boat, armed with knives, boarded the underway tug. They took hos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-233", - "dateofocc": "2013-07-28", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "LPG TANKER", - "descriptio": "SINGAPORE STRAIT:On 28 July, position 01-6.3N 104-10.9E, duty A/B on board a LPG Tanker noticed about eight robbers armed with knives boarding the vessel from the poop deck. Duty officer was informed, alarm raised. All crew stayed inside the accommodat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.181666700378059, 1.105000000367568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-234", - "dateofocc": "2013-07-19", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER LOULOU", - "descriptio": "NIGERIA:On 24 July, the anchored Nigeria-flagged product tanker LOULOU was boarded at 04-16N 007-56E, at the Eked Offshore Anchorage, approximately 40 nm southeast of Port Harcourt. Pirates reportedly boarded the vessel, destroyed the bridge laptop, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.933333299940841, 4.266666699705411] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-235", - "dateofocc": "2013-07-31", - "subreg": "56", - "hostility_": "ROBBERS", - "victim_d": "MERCHANT VESSEL", - "descriptio": "EGYPT:On 31 July, an anchored merchant vessel was boarded in the vicinity of 31-10N 029-51E, at the Alexandria Port. An AB on duty noticed a robber inside the Bosun forward store and immediately informed the Duty Officer. Upon further inspection, it was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.84999999991669, 31.166666699945836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-236", - "dateofocc": "2013-07-27", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "Chemical tanker", - "descriptio": "BANGLADESH:On 27 July, the Denmark-flagged anchored chemical tanker TORM LOIRE was boarded in the vicinity of 22-13N 091-46 E, at the Chittagong Anchorage. While awaiting berthing instructions, the duty crew on routine patrol noticed a robber lowering r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-237", - "dateofocc": "2013-07-27", - "subreg": "62", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "EGYPT:On 27 July, the Singapore-flagged anchored container ship HONG KONG BRIDGE was boarded at 29-50N 032-34E, at the Suez Anchorage. Upon boarding the vessel, the robbers were spotted by the crew, who then raised the alarm. After hearing the alarm, th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.566666699811265, 29.833333300019547] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-238", - "dateofocc": "2013-07-29", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "LPG TANKER", - "descriptio": "INDONESIA:On 29 July, the Panama-flagged anchored LPG tanker REEFERENCE POINT was boarded at 01-06N 104-10E, at the Tanjung Uban Anchorage. Duty AB on board the LPG tanker noticed approximately eight robbers, armed with knives, boarding the vessel from t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-470", - "dateofocc": "2011-11-17", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "VIETNAM: Oil tanker boarded and robbed 17 November at 2010 LT while anchored in position 10-13N 107-04E, Mui Vung Tao, Vietnam. The two armed robbers with steel rods were spotted by the duty watchmen who alerted the duty officer who raised the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.216666700032761] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-471", - "dateofocc": "2011-10-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOAT AND BARGE", - "descriptio": "OFF PULAU BINTAN, INDOANESIA: Armed pirates boarded a tug towing a loaded barge underway from Sarawak to Johor. They took hostage the crewmembers, tied their hands and locked them in a cabin. The pirates hijacked the vessel and sailed into Malaysian wate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.300000000243301, 1.49999999994418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-472", - "dateofocc": "2011-11-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BELAWAN ANCHORAGE, INDONESIA: Robbers boarded a chemical tanker at anchor. Robbers stole ship's stores and escaped unnoticed. Master reported to port authority.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.791666699996938, 3.936666699865611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-473", - "dateofocc": "2011-10-27", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NATUNA SEA, INDONESIA: Twelve pirates armed with guns boarded the tanker underway. Pirates took control of the ship, tied up the crew and navigated the vessel to an unknown position. On 28 Oct, the owners were able to establish contact with the ship and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-474", - "dateofocc": "2011-11-29", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Armed pirates in a skiff approached and fired upon a bulk carrier underway. Master raised the alarm, carried out evasive maneuvers and all crew except bridge team and armed security retreated into the citadel. The pirates attempted to board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.599999999657655, 15.016666699828249] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-475", - "dateofocc": "2011-11-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Six pirates armed with guns and rpgs in two skiffs approached and fired upon a bulk carrier underway. Master raised alarm, increased speed and all crew except the bridge team mustered in the citadel. Armed security team on board the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.049999999836359, 12.316666699830876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-476", - "dateofocc": "2011-11-30", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier (FANEROMENI) fired upon by as many as 14 pirates in two skiffs on 30 November at 1405Z while underway in position 12-18N 044-03E, approximately 42 miles southeast of Perim Island, Yemen. The armed security onboard returned fire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.049999999836359, 12.299999999933732] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-477", - "dateofocc": "2011-11-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Crude oil tanker boarded 30 November at 2245 local time while anchored in position 01-42N 101-30E, approximately 3 miles east-northeast of Dumai, Indonesia. The alert crew raised the alarm and the robbers escaped. Nothing stolen. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-478", - "dateofocc": "2011-12-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DUMAI PORT ANCHORAGE, INDONESIA: Four robbers armed with knives boarded an anchored crude oil tanker, took the duty oiler as hostage and entered the engine store room. The robbers stole ship stores, released the oiler and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.464444400233162, 1.688888900020743] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-479", - "dateofocc": "2011-12-03", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA: Bulk carrier boarded and robbed on 3 December while anchored in position 03-50N 077-10W, approximately 7 nm southwest of Buenaventura, Colombia. The robbers boarded unnoticed during heavy rain, stole the ship's stores, and escaped. The duty cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.166666699843518, 3.833333300078039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-480", - "dateofocc": "2011-10-30", - "subreg": "94", - "hostility_": "PIRATES", - "victim_d": "OFFSHORE SUPPORT VESSEL", - "descriptio": "TIANJIN BULK CHEMICAL ANCHORAGE, CHINA: Two robbers boarded an anchored off-shore support vessel. Alert duty crew noticed the robbers, raised alarm and chased the robbers. Nothing stolen and no casualty.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.945000000440928, 38.920555599552074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-481", - "dateofocc": "2011-12-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: A bulk carrier underway was chased and fired upon by pirates. Master took preventive measures and the onboard security team returned fire resulting in the pirates aborting and moving away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.999999999587715, 20.650000000158798] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-483", - "dateofocc": "2011-11-26", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "EGYPT: Liquefied gas tanker boarded on 26 November at 2048 UTC while at anchor in position 29-46N 032-35E, approximately 12 nm south of Suez. Alert crew raised the alarm and the robbers jumped over the side with nothing stolen. (Operator)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.583333299883634, 29.766666700080407] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-484", - "dateofocc": "2011-12-08", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA: Bulk carrier boarded 8 December at 0040 LT while anchored in position 03-42S 114-26E, approximately 24 nm south-southeast of Bandjermasin. The robbers boarded using a grappling hook, opened the hawse pipe cover, and were discovered by an aler", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-194", - "dateofocc": "2012-06-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:The previously hijacked vessel \"Mt Smyrni\" was last reported in position at Lat 12:02.8N - 50;41.1E on 07.06.2012 at 0534 UTC. It appears that the pirates are still onboard. All vessels are advised to keep well clear of this vessel as the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.685000000226296, 12.046666700370736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-195", - "dateofocc": "2012-06-10", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "EGYPT:Bulk carrier boarded on 10 June at 31:13 N - 029:42 E, El Dekheila Anchorage, Egypt. An anchored bulk carrier was boarded by robbers via the hawse pipe by forcibly removing the secured anchor chain cover. The portside watertight door padlock was br", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.70000000031655, 31.216666699812549] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-196", - "dateofocc": "2012-06-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA:Tanker was approached on 12 June at 13:20 N ¿ 042:56 E, Red Sea. A tanker underway noticed a white skiff with two outboard motors approach her at more than 25 knots. Initially two pirates were observed in the skiff and as the skiff closed five m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.933333300173388, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-197", - "dateofocc": "2012-06-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "OMAN:Chemical Tanker was chased on 09 June at 24:52 N - 056:38 E 12 nm east of Al Bulaydah, Oman. Pirates in four boats chased a chemical tanker underway. Two boats approached from stern and positioned itself not more than five meters from the tanker's p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.633333299627225, 24.866666699652171] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-198", - "dateofocc": "2012-06-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN:Bulk Carrier approached on 18 June at 12:19 N - 043:57 E, Gulf of Aden. Six skiffs with 4-6 pirates in each skiff approached a bulk carrier underway at 25 knots from the starboard bow. The Master raised alarm, increased speed, altered course", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.950000000102932, 12.316666699830876] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-199", - "dateofocc": "2012-06-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "OMAN:Marshall Island Flagged, US owned, M/V LNG ARIES was attacked by a skiff with 5-6 pirates onboard on 20 June at 20:50 N - 059:30 E, 35 nm northeast of Masirah Island, Oman. The skiff had no visible ladders onboard but opened fire with machine guns a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.500000000021203, 20.833333299728508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-200", - "dateofocc": "2012-06-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA:Bulk Carrier was boarded on 17 June at 17:00 N - 082:18 E, Kakinada Anchorage, India. Robbers boarded the anchored bulk carrier. The duty A/B on rounds heard two robbers talking to each other on the forecastle. He immediately informed the 2/O on th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.300000000398825, 16.999999999995794] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-201", - "dateofocc": "2012-06-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUGBOAT", - "descriptio": "MALAYSIA:Robbers boarded an anchored Tug on 17 June at 01:38 N-110:28 E, Kuching Anchorage, Malaysia. Robbers boarded an anchored tug and barge. They broke open containers, stole the cargo and escaped unnoticed. The master reported the incident to the lo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.466666699902362, 1.633333299647177] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-202", - "dateofocc": "2012-06-18", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN:A merchant vessel reported coming under fire at 0928Z on 18 June in position 14:28N - 050:45E, approximately 230 NM Northwest of Socotra Island in the Gulf of Aden. This area will remain high risk for at least the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.749999999963109, 14.466666700395024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-203", - "dateofocc": "2012-06-20", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "ARABIAN SEA:Dhow attacked in vicinity 20 29N - 059 03E at 201200 UTC Jun 12. Vessels are advised to keep well clear of this position and to exercise extreme caution if in vicinity.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.050000000321461, 20.483333299762137] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-46", - "dateofocc": "2013-02-20", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 20 February, a bulk carrier was boarded at 07-09S 112-40E in the vicinity of Gresik, Surabaya. While under pilotage and awaiting berthing, the vessel was boarded by robbers, who stole ship's stores and escaped unnoticed. Incident reported to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.666666700333167, -7.150000000380544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-47", - "dateofocc": "2013-02-20", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 20 February, an anchored tanker was boarded at 01-23S 116-56E, at the BalikpapanAnchorage. During bunkering operations, the Master saw two robbers with long swords on the forecastle stealing mooring ropes. He raised the alarm and mustered th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.933333299868536, -1.383333299622905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-48", - "dateofocc": "2013-02-18", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:On 18 February, a container ship was boarded at 00-08N 106-18E, approximately 52 nm ENE of Pulau Penjantan, while underway. The Duty Officer noticed two masked pirates on the bridge wing attempting to enter the bridge. Alarm raised and crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.300000000275645, 0.133333300048321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-49", - "dateofocc": "2013-02-18", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 18 February, a chemical tanker was boarded at 01-42N 101-27E, at the Dumai Inner Anchorage. Two robbers armed with long knives boarded the anchored vessel using a portable ladder. Duty A/B noticed the robbers and informed the Duty Officer, w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-50", - "dateofocc": "2013-02-15", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH:On 15 February, a bulk carrier was boarded at 22-15N 091-42E, at the Chittagong Anchorage. Robbers armed with long knives boarded the anchored vessel via the anchor chain. Alert duty A/B noticed the robbers and raised the alarm. The robbers th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-51", - "dateofocc": "2013-02-14", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "VIETNAM:On 14 February, a container ship was boarded at 20-37N 106-51E, at the Haiphong Anchorage. Robbers boarded the anchored vessel via the anchor chain by breaking the locks on the hawse pipe cover. They broke into the forepeak, stole ship's stores a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.849999999708871, 20.616666700189228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-52", - "dateofocc": "2013-02-10", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP WALVIS 7", - "descriptio": "NIGERIA:On 10 February, the cargo ship WALVIS 7 was boarded and personnel kidnapped at 03-33N 006-35E, approximately 45nm off Bonny River. Twelve heavily armed pirates approached, fired upon, and boarded the vessel while underway. Alarm raised and most o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.583333299942126, 3.549999999875581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-53", - "dateofocc": "2013-02-07", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP ESTHER C", - "descriptio": "NIGERIA:On 07 February, the general cargo ship ESTHER C was boarded and personnel kidnapped at 03-40N 005-53E, approximately 40nm SSE of Brass. A gang of approximately 17 pirates armed with AK47 assault rifles attacked, boarded and hijacked the vessel w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.88333330000944, 3.666666700405472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-54", - "dateofocc": "2013-02-27", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "PERU:On 27 February, a tanker experienced an attempted boarding at 04-34S 081-18W, at the Talara Anchorage. Two robbers in a small motorized boat attempted to board the anchored vessel via the anchor chain. Alert duty crew noticed the robbers and informe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.299999999675833, -4.566666700013741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-338", - "dateofocc": "2017-12-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 08 December, a merchant vessel reported being boarded near 04-11N 007-00E, vicinity of Bonny River. Nigerian Navy vessel responded, but pirates had already gone. Ship and crew are safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-55", - "dateofocc": "2013-02-24", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "COLUMBIA:On 24 February, an LPG tanker was boarded in the vicinity of 10-18N 075-31W, at the Cartagena \"A\" Anchorage. Four robbers boarded the anchored vessel via the anchor chain and hawse pipe. The robbers captured and tied up the duty A/B, who had sig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-56", - "dateofocc": "2013-02-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PASSENGER VESSEL", - "descriptio": "NIGERIA:On 25 February, a passenger boat was boarded and personnel kidnapped at 04-37N 008-22E, in the Ibaka Channel, Calabar River. The vessel was attacked and boarded by approximately 20 armed pirates in two speedboats. The pirates were reported to hav", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.366666699568214, 4.616666699671782] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-57", - "dateofocc": "2013-02-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP KOTA BAHAGIA", - "descriptio": "NIGERIA:On 22 February, the cargo ship KOTA BAHAGIA was fired upon and endured multiple attempted boardings at 03-51N 005-57E, approximately 30 nm SSW of Brass. A gand of approximately six pirates armed with automatic rifles in a skiff launched from a mo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.949999999773297, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-58", - "dateofocc": "2013-02-25", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "MERCHANT SHIP", - "descriptio": "OMAN:On 25 February, a merchant ship reported a suspicious approach by one skiff in an area approximately 15 nautical miles north of Masirah Island, Oman. No shots were fired but the merchant ship reported sighting weapons aboard the skiff.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.8833332999248, 20.833333299728508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-239", - "dateofocc": "2013-07-27", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 27 July, the Hong Kong-flagged anchored chemical tanker GLOBAL PEACE was boarded at 07-05S 112-39E, at the Gresik Inner Anchorage. Unidentified persons were spotted at the forecastle paint store entrance. The alarm was raised and crew alerte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.65000000043608, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-240", - "dateofocc": "2013-07-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG SURYA WIRA 2", - "descriptio": "INDONESIA:On 25 July, the underway Singapore-flagged tug was SURYA WIRA 2 was boarded at 01-18N 104-41E, approximately 8nm northeast of Tanjung Berakit. Roughly six pirates, in a speed boat, armed with knives, boarded a tug with barge in tow. They entere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-241", - "dateofocc": "2013-07-10", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER GUANABARA", - "descriptio": "INDONESIA:On 10 July, the anchored Singapore-flagged crude oil tanker GUANABARA was boarded at an Indonesia Anchorage. Vessel was boarded and robbed at an undisclosed Indonesian Anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.099999999715408, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-242", - "dateofocc": "2013-07-10", - "subreg": "91", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP CAPE MAHORN", - "descriptio": "PHILIPPINES:On 10 July, the anchored Cyprus-flagged container ship CAPE MAHORN was boarded at a Philippines Port/ Anchorage. Vessel was boarded and robbed at an undisclosed Philippines Port/ Anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.783333300397771, 14.48333329956813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-243", - "dateofocc": "2013-07-31", - "subreg": "56", - "hostility_": "robber", - "victim_d": "container ship MARY SCHULTE", - "descriptio": "EGYPT:On 31 July, the Liberia-flagged berthed container ship MARY SCHULTE was boarded in the vicinity of 31-10N 029-51E, at Berth No. 49, Alexandria Port. An AB on duty noticed a robber inside the Bosun forward store. He immediately informed the Duty Off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.84999999991669, 31.166666699945836] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-244", - "dateofocc": "2013-07-31", - "subreg": "57", - "hostility_": "robbers", - "victim_d": "bulk carrier ATHOS", - "descriptio": "IVORY COAST:On 31 July, the Cayman Islands-flagged anchored bulk carrier ATHOS was boarded at 05-13N 004-03W, at the Abidjan Anchorage. Robbers boarded the ship at anchor using a long pole with a hook. The crew spotted them and raised the alarm. On heari", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.049999999650765, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-245", - "dateofocc": "2013-07-30", - "subreg": "57", - "hostility_": "gunboat", - "victim_d": "chemical tanker HIGH JUPITER", - "descriptio": "NIGERIA:On 30 July, the Hong Kong-flagged underway chemical tanker HIGH JUPITER was fired upon at 03-31N 006-05E, approximately 45 nm south of Brass. A gunboat claiming to be a Nigerian navy boat called a chemical tanker on VHF and asked details of vesse", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.083333300375671, 3.516666699906011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-491", - "dateofocc": "2011-12-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "INDONESIA: Six robbers armed with knives boarded a tug towing a barge and took hostage the six crew members. The robbers stole crew personal belongings and cash before escaping in their speed boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.350000000045384, 1.217499999842858] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-246", - "dateofocc": "2013-08-01", - "subreg": "62", - "hostility_": "two skiffs", - "victim_d": "LPG tanker", - "descriptio": "YEMEN:On 01 August, an underway LPG tanker experienced a suspicious approach by two skiffs in vicinity of 13-40N 042-39E, near the Jazirat Hanisha Al Kabir Island when a Yemeni-style skiff shadowed the vessel at a distance of 1 nm while another approache", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.64999999997093, 13.666666699829534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-247", - "dateofocc": "2013-08-02", - "subreg": "71", - "hostility_": "robber", - "victim_d": "tanker MARE NOSTRUM", - "descriptio": "INDONESIA:On 2 August, the Italy-flagged anchored tanker MARE NOSTRUM was boarded at 01-06N 103-38E, at the Nipah Anchorage. When a crewmember noticed a robber outside the accommodation area, he immediately retreated into the bridge and informed the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-248", - "dateofocc": "2013-07-25", - "subreg": "91", - "hostility_": "robbers", - "victim_d": "container ship APL LOS ANGELES", - "descriptio": "PHILIPPINES:On 25 July, the Gibraltar-flagged anchored container ship APL LOS ANGELES was boarded and robbed at an undisclosed port/anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.783333300397771, 14.48333329956813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-249", - "dateofocc": "2013-07-21", - "subreg": "91", - "hostility_": "robbers", - "victim_d": "container ship HELMUTH RAMBOW", - "descriptio": "PHILIPPINES:On 21 July, the Antigua and Barbuda-flagged anchored container ship HELMUTH RAMBOW was boarded and robbed at an undisclosed port/anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.783333300397771, 14.48333329956813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-250", - "dateofocc": "2013-08-11", - "subreg": "57", - "hostility_": "Hijackers", - "victim_d": "Chemical tanker", - "descriptio": "NIGERIA:On 11 August, gunmen hijacked the anchored Marshall Islands-flagged chemical tanker SP ATLANTA near the port of Lagos. On 13 August, the vessel along with its crew, were released.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-251", - "dateofocc": "2013-08-11", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "NIGERIA:On 11 August, robbers in a small skiff attempted to board the anchored Liberia-flagged product tanker FPMC 25 at 06-18N 003-26E, at the Lagos Anchorage. Master raised the alarm and mustered the crew, while embarked armed guards fired warning shot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.433333300244954, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-252", - "dateofocc": "2013-08-04", - "subreg": "62", - "hostility_": "Three skiffs", - "victim_d": "Crude oil tanker", - "descriptio": "ARABIAN SEA:On 4 August, a Liberian-flagged crude oil tanker experienced a suspicious approach approximately 110 nm southeast of Muscat, Oman. Three skiffs containing 3 individuals each, approached at 20 knots. The tanker crew mustered in the citadel and", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.966666699618145, 22.316666700154258] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-485", - "dateofocc": "2011-12-06", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CEMENT CARRIER", - "descriptio": "INDONESIA: Cement carrier boarded and robbed 6 December at 0515 LT while anchored in position 01-42S 116-38E, approximately 32 nm south-southwest of Balikpapan. The crew noticed the robbers escaping with a mooring line and discovered that the forecastle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.699999999619706] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-486", - "dateofocc": "2011-12-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DUMAI QUARANTINE ANCHORAGE, INDONESIA: Three robbers armed with long knives boarded an anchored tanker. They entered into the accommodation and threatened the duty A/B. Once the robbers escaped, the A/B informed the bridge. All crew alerted and a search", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.493333300196639, 1.708333299896935] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-487", - "dateofocc": "2011-12-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA: Tanker boarded 10 December at 0340 LT while anchored in position 01-42N 101-29E, approximately 2 nm northeast of Dumai. Three robbers boarded, entered the engine room, took a motorman hostage and stole engine spares before escaping. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-488", - "dateofocc": "2011-12-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSELS", - "descriptio": "45 MILES OFF PANGKOR ISLAND MALAYSIA: Four pirates in a speed boat attacked and hijacked two fishing vessels carrying out fishing operation. Malaysian Maritime Enforcement Agency (MMEA) received information from the owners and coordinated with the Royal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [99.833333299585377, 4.416666700204928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-489", - "dateofocc": "2011-12-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Two skiffs approached and fired upon a tanker underway. A ladder was sighted on one of the skiffs. Master made evasive maneuvers while the armed security team onboard fired warning shot. The skiffs slowed down and returned fire resulting in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.03333330003619, 12.600000000033333] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-490", - "dateofocc": "2011-02-21", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "MANILA NORTH ANCHORAGE, PHILIPPINES: Robbers boarded an anchored ship unnoticed and stole ship's properties and escaped. Later duty A/B on deck patrol noticed padlock to the forward store broken and ship's property stolen. Incident reported to CSO and po", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.866666700058772, 14.600000000098021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-492", - "dateofocc": "2011-12-22", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SURABAYA INNER ANCHORAGE, INDONESIA: Duty crew onboard an anchored bulk carrier noticed two boats moving away from the vessel with mooring lines trailing in the water. Alarm sounded and all crew mustered. Authorities informed via local agent.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.662777799853416, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-493", - "dateofocc": "2011-12-22", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "PERU: Tanker boarded on 22 December at 0400 LT while anchored in position 04-34.2S 081-18.8W in the Talara Anchorage. Robbers boarded and entered the forward store. Alert duty watchman spotted the hawse pipe cover was open and alerted the officer of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.313333300418208, -4.570000000243112] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-494", - "dateofocc": "2011-12-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "INDONESIA: Barge boarded on 24 December at 0930 LT while it was being towed by a tug in position 01-10N 103-39E, approximately 15 nm southwest of Singapore, at Western Boarding Ground 'B'. Robbers disguised themselves as merchants in boats attempting to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-495", - "dateofocc": "2011-12-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA: Chemical tanker boarded and robbed by three people on 25 December at 0100 LT while anchored in position 01-42.4N 101-28.6E, while in the Dumai Inner Anchorage. They entered the engine room through the engine room's skylight door and stole gene", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.476666700124213, 1.706666699694608] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-496", - "dateofocc": "2011-12-27", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ECUADOR: Container ship boarded by five robbers with long knives on 27 December at 0145 LT while anchored in position 02-21.4S 079-59.9W in the Guayaquil Inner Anchorage. They broke open three containers, but escaped without stealing anything after seein", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.998333300416107, -2.356666699969253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2011-497", - "dateofocc": "2011-12-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "ARABIAN SEA: Chemical tanker (ENRICO IEVOLI) hijacked by five pirates in one speedboat on 27 December at 0403 UTC while underway in position 18-18N 057-36E, approximately 216 nm northeast of Salalah, Oman. The vessel was transiting from Fujairah, United", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.599999999689999, 18.300000000127739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-1", - "dateofocc": "2011-12-12", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG AND BARGE", - "descriptio": "MALACCA STRAIT: Six robbers armed with knives boarded a tug towing a barge and took hostage the six crew members. The robbers stole crew personal properties and cash before escaping in their speed boat. Vessels are advised to use caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.350000000045384, 1.225000000227567] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-204", - "dateofocc": "2012-06-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "Bulk Carrier", - "descriptio": "YEMEN:Bulk carrier fired upon on 27 June at 14-22N 054-38E, 110 nm North of Socotra Island. Pirates in a dhow approached the vessel while underway. The Master raised the alarm and took evasive maneuvers. As the dhow approached, the onboard security team", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.633333299562537, 14.366666699762277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-205", - "dateofocc": "2012-06-25", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "LPG TANKER", - "descriptio": "OMAN:LPG Tanker approached on 25 June at 25-15N 057-16E, 48 nm East of Fujairah, Oman. Pirates armed with guns in two skiffs approached the vessel while underway and closed to within 0.6 nm. The Master fired warning flares and pyrotechnics, increased spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.266666699620771, 25.249999999588113] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-206", - "dateofocc": "2012-06-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH:Container ship boarded on 26 June at 22-10N 091-42 E, at Chittagong Anchorage \"B\". Two pirates armed with knives boarded the anchored vessel following a heavy rain shower. One of the pirates attacked a duty crewman at the aft station, who imme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-62", - "dateofocc": "2013-02-18", - "subreg": "63", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER", - "descriptio": "BANGLADESH:On 18 February, the tanker JASMINE EXPRESS was boarded at 22-11N 091-46E, at the Chittagong \"C\" Anchorage. After STS discharge operations, the crew on an anchored tanker while waiting for further instructions discovered that two STS mooring ro", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-207", - "dateofocc": "2012-07-02", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ECUADOR:Container ship boarded on 2 July at 02-33S 080-06W, 25 nm southwest of Guayaquil. Two speed boats with six pirates approached and boarded the vessel while underway using hooks attached to ropes and ladders. The Master raised alarm. The crew muste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.100000000176635, -2.550000000051909] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-208", - "dateofocc": "2012-06-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "NIGERIA:Tanker fired upon on 30 June at 04-01N 006-06E, 70 nm southwest of Port Harcourt. Armed pirates in a boat chased and fired upon the vessel while underway from Bonny River.Nigerian Navy personnel onboard returned fire, resulting in the pirates abo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.100000000272814, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-209", - "dateofocc": "2012-06-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "NIGERIA:Container ship awaiting berthing instructions was approached on 30 June at 02-38N 006-09E by five armed pirates in a wooden speed boat with two outboard engines. The fired upon the vessel, damaging some bridge windows and equipment. The vessel ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.150000000139528, 2.633333299679521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-210", - "dateofocc": "2012-07-03", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "TANZANIA:Container ship boarded on 3 July at 6-50S 039-17E, at Dar Es Salaam. Robbers boarded the berthed vessel, stole ships stores and escaped unnoticed. The theft was later noticed by the duty A/B while on rounds. The incident was reported to Port Sec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.283333300010383, -6.833333300383742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-211", - "dateofocc": "2012-07-04", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "LPG CARRIER", - "descriptio": "INDIA:LPG carrier boarded on 4 July at 17-39N 083-23E, at Visakhapatnam anchorage. Six robbers in a long wooden boat with sail and oars came alongside the anchored vessel. Two robbers boarded the vessel and stole ship's properties. The Duty Officer notic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.383333300267452, 17.650000000061766] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-212", - "dateofocc": "2012-06-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "VIETNAM:Chemical tanker boarded on 27 June at 10-41N 106-45E, Nha Be Terminal, Ho Chi Minh City. Robbers boarded the berthed vessel during cargo operations, stole the fire wire and escaped. The duty A/B noticed foot prints and the missing fire wire while", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.749999999975444, 10.683333299804929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-213", - "dateofocc": "2012-06-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA:Chemical tanker boarded on 25 June at 05-32N 003-32E. Twelve pirates armed with guns approached the vessel in a speed boat and boarded. The crew was forced to muster in the mess room, but the Master and Chief Engineer were allowed to remain on t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.533333299978437, 5.533333300043068] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-214", - "dateofocc": "2012-06-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "NIGERIA:On 30 June at 0615 local time, a vessel was fired upon by pirates in 02-40.0N 006-08.3E, but managed to evade the attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.138333299599537, 2.666666700373128] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-59", - "dateofocc": "2013-02-22", - "subreg": "62", - "hostility_": "SUSPECIOUS CRAFT", - "victim_d": "CARGO SHIP", - "descriptio": "GULF OF OMAN:On 22 February, a cargo ship was fired upon at 23-08N 060-49E, approximately 130 nm southeast of Muscat, Oman.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.816666700050348, 23.133333299892797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-60", - "dateofocc": "2013-01-31", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER MEGACORE PANTHEA", - "descriptio": "OMAN:On 31 January, the tanker MEGACORE PANTHEA experienced a suspicious approach in the vicinity of 21-23N 059-59E, approximately 33 nm East of Ash Sharqiyah. Vessel sighted a white skiff 3 miles off the starboard quarter. Skiff was proceeding in the sa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.983333299690571, 21.383333300061054] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-61", - "dateofocc": "2013-02-20", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER RED RUM", - "descriptio": "INDONESIA:On 20 February, the LPG tanker RED RUM was boarded at 05-34S 104-35E, at the Teluk Semangka Anchorage. Engine room stores were robbed from the vessel while carrying out ship-to-ship transfer operations. The robbery was discovered only after dep", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, -5.566666700046085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-64", - "dateofocc": "2013-03-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "VESSEL ARMADA TUAH 22", - "descriptio": "NIGERIA:On 04 March, the vessel ARMADA TUAH 22 was hijacked at 03-42N 005-39E, approximately 50 nm southwest of Brass. Contact with the vessel's owner was lost and the vessel did not respond to radio calls, and the vessel's AIS was turned off. Unconfirme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.649999999673696, 3.700000000375042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-65", - "dateofocc": "2013-03-02", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "FISHING TRAWLER", - "descriptio": "NIGERIA:On 02 March, a fishing trawler was attacked at 04-07N 005-36E, approximately 25 nm from the Bayelsa Coast. Unconfirmed reports state that the Captain was killed during the attack. The pirates managed to escape, prior to the arrival of the Nigeria", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.599999999806982, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-66", - "dateofocc": "2013-03-04", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER AL BUHAIRA", - "descriptio": "YEMEN:On 4 March, the tanker AL BUHAIRA experienced a suspicious approach at 14-17N 049-51E, at approximately 40 nm southeast of Mukalla City. Four skiffs with approximately six persons in each skiff approached the underway vessel from the port bow, amid", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.849999999664192, 14.283333300101219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-67", - "dateofocc": "2013-03-04", - "subreg": "62", - "hostility_": "ROBBERS", - "victim_d": "DHOW", - "descriptio": "BAHRAIN:On 04 March, a dhow was fired upon and a crewman was kidnapped approximately 60 nm north of Al Dair. The Bahraini-registered vessel was attacked by four armed men in two boats. The dhow was forced to stop and was dragged from the location of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.433333299966307, 26.616666700383234] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-68", - "dateofocc": "2013-03-04", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER CASTLEGATE", - "descriptio": "INDONESIA:On 04 March, the bulk carrier CASTLEGATE was boarded at 03-33S 114-26E, at the Taboneo Anchorage. The anchored vessel was boarded by robbers, who stole ship's stores and escaped unnoticed. Master reported the incident to Port Control.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.550000000084253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-69", - "dateofocc": "2013-02-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER STOLT RINDO", - "descriptio": "INDONESIA:On 27 February, the tanker STOLT RINDO was boarded at 01-42N 101-29E, at the Dumai Quarantine Anchorage. The anchored vesel was boarded by robbers, who stole engine spares and escaped unnoticed. The incident was discovered by one of the crew wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-70", - "dateofocc": "2013-03-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:On 12 March, robbers boarded a chemical tanker at anchor at the Belawan Anchorage, stole ship's stores, and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.783333299686319, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-71", - "dateofocc": "2013-03-16", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA:On 16 March, an anchored bulk carrier was boarded at 11-08N 074-16W, at the Puerto Prodeco Anchorage. Duty officer onboard the vessel noticed an unidentified person on the forecastle and immediately advised the deck security guard and port secur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.266666700379233, 11.133333300404047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-253", - "dateofocc": "2013-08-10", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 10 August, the anchored Isle of Man-flagged bulk carrier STAR MANX was boarded at 00-16S 117-36E, at the Samarinda Anchorage. Three robbers in boiler suits boarded the anchored bulk carrier which was waiting to link up with a cargo barge. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.599999999831766, -0.266666699784764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-254", - "dateofocc": "2013-08-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical/gas tanker", - "descriptio": "INDONESIA:On 4 August, the Marshall Islands-flagged anchored chemical/gas tanker GARNET EXPRESS was boarded and robbed at an undisclosed port/anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.0000000001437, -9.999999999978058] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-255", - "dateofocc": "2013-07-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Oil/chemical tanker", - "descriptio": "INDONESIA:On 30 July, the anchored Marshall Islands-flagged oil/chemical tanker GARNET EXPRESS was boarded and robbed at an undisclosed port/anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.0000000001437, -9.999999999978058] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-3", - "dateofocc": "2011-12-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA: Four robbers armed with knives boarded an anchored tanker unnoticed and entered the engine room. They took hostage the 2nd Engineer and motorman, forced them to open the spare store and tied their hands. The robbers stol", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-256", - "dateofocc": "2013-08-15", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "NIGERIA:On 15 August, the Nigeria-flagged product tanker NORTE was boarded in the Gulf of Guinea. On 17 August, the vessel was reportedly chased by vessels from the Nigerian Navy; to include two Navy ships of destroyer-size, 6 gun boats, and patrol plane", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.99999999957538, 5.500000000073555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-257", - "dateofocc": "2013-08-15", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 15 August, the anchored Marshal Islands-flagged tanker BLUEGREEN TIGRE experienced an attempted boarding in the vicinity of 06-21N 003-28E, at the Lagos Anchorage. Approximately 8-10 robbers, in a speed boat, attempted to place a hook on the t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.466666700039298, 6.349999999606382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-258", - "dateofocc": "2013-08-12", - "subreg": "57", - "hostility_": "Gunboats", - "victim_d": "Offshore support vessel", - "descriptio": "NIGERIA:On 12 August, a Nigeria-flagged offshore support vessel was fired upon approximately 35nm off the Nigerian coast. Two gunboats with approximately 7 - 8 pirates on board fired upon the vessel. A near-by patrol boat responded to the emergency calls", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.800000000140813, 5.549999999940269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-259", - "dateofocc": "2013-08-12", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical tanker", - "descriptio": "NIGERIA:On 12 August, the anchored Marshall Islands-flagged chemical tanker SP ATLANTA was hijacked at 06-19N 003-27E, at the Lagos Anchorage. Approximately 11 pirates, armed with guns, boarded and hijacked the chemical tanker at anchor. They stole crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.450000000142154, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-260", - "dateofocc": "2013-08-16", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "BANGLADESH:On 16 August, the anchored Liberia-flagged container ship HENRIETTE SCHULTE was boarded at 22-10N 091-42E, at the Chittagong Anchorage. Four robbers, armed with knives, boarded the anchored container ship. The Officer of the Watch spotted them", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-261", - "dateofocc": "2013-08-15", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Trawler", - "descriptio": "BANGLADESH:On 15 August, a fishing trawler was hijacked, along with the kidnapping of 15 fishermen along the Meghna River. A gang of pirates attacked three trawlers in the Talia Char area. When the fishermen tried to resist the bandits, they opened fire,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.699999999591284, 22.799999999823626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-262", - "dateofocc": "2013-08-14", - "subreg": "63", - "hostility_": "Hijackers", - "victim_d": "Trawlers", - "descriptio": "BANGLADESH:On 14 August, two fishing trawlers were hijacked, along with the kidnapping of 21 fishermen, along the Meghna River. Local authorities managed to rescue 10 of the kidnapped fishermen soon after the incident.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.699999999591284, 22.799999999823626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-263", - "dateofocc": "2013-08-10", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "BANGLADESH:On 10 August, the anchored Singapore-flagged container ship KOTA HARTA was boarded at 22-09N 091-47E, at the Chittagong Anchorage. Three robbers boarded the ship from the poop deck, using a hook and rope. Upon discovering the robbers, the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 22.149999999757654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-264", - "dateofocc": "2013-08-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 2 August, the underway Thailand-flagged product tanker DANAI 6 was boarded at 01-23N 104-30E, approximately 9nm north of Bintan Island. Six pirates, armed with knives and guns, boarded the vessel. The pirates fired at the glass panel of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.499999999677868, 1.383333300313609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-265", - "dateofocc": "2013-08-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Livestock carrier BRAHMAN EXPRESS", - "descriptio": "INDONESIA:On 23 August, the Philippines-flagged berthed live stock carrier BRAHMAN EXPRESS was boarded in the vicinity of 03-47N 098-42E, at the Belawan Port. Three robbers, in a motor boat, approached a berthed live stock carrier. Two robbers boarded th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-2", - "dateofocc": "2011-12-19", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-24N 046-31E at 1045Z on 19 December. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [46.516666700397309, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-4", - "dateofocc": "2011-12-20", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GUAYAQUIL DATA PILOT STATION, ECUADOR: A container vessel was boarded by around 12 robbers while underway. The robbers took hostage the bosun, tied his hands, then opened ten containers and stole contents. Crew alerted the port control and the coast guar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.981666700343737, -2.348333299658634] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-5", - "dateofocc": "2011-12-30", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CELEBES SEA: Seven pirates in a small flat bottom boat chased and attempted to board a bulk carrier underway. The vessel enforced anti piracy measures, rigged fire hoses, increased speed, made evasive maneuvers and sounded ship's whistle resulting in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.066666700425003, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-6", - "dateofocc": "2011-12-26", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BAY OF BENGAL: Deck watchman onboard an anchored container vessel noticed three small boats with around 25 robbers near the stern of the vessel with a few robbers onboard as well. He alerted the bridge and secured the accommodation. Seeing alert crew the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-7", - "dateofocc": "2012-01-01", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "TABONEO ANCHORAGE, INDONESIA: Duty AB onboard an anchored bulk carrier noticed a robber inside the hawse pipe, trying to break open the lock. A boat with two more robbers was noticed nearby. Alarm raised and crew mustered. Seeing alert crew the robber es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.450000000134537, -3.733333299653964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-8", - "dateofocc": "2012-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Bulk carrier M/V DELFA chased and fired upon by pirates in noe skiff on 04 Jan at 0200Z near position 13-10N 049-12E, in the Gulf of Aden. Onboard security team fired flares to no effect, they then returned gunfire, causing the skiff to ret", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-9", - "dateofocc": "2012-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Pirates in a skiff chased and fire upon a bulk carrier underway. Onboard security team fired flares to warn the pirates which were ignored and later only when the security team returned fire the skiff aborted the attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.199999999598219, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-10", - "dateofocc": "2012-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF ADEN: Pirates in a skiff chased and attempted to board a bulk carrier underway. The vessel enforced anti-piracy measures, increased speed and made evasive maneuvers resulting in the pirates moving away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.196666700106448, 12.243333299783444] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-11", - "dateofocc": "2012-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN: Four pirates in a skiff maintained a parallel course with a crude tanker before suddenly increasing speed to 25 knots and coming alongside in an attempt to board. No ladders were seen on the skiff. Master raised the alarm, commenced evasive", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.183333300438676, 12.233333300169818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-12", - "dateofocc": "2012-01-04", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF ADEN: Merchant vessel attacked in 12-17N 044-10E at 0822Z on 04 Jan. Vessels requested to keep a sharp lookout and exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.16666670036625, 12.283333300036531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-13", - "dateofocc": "2012-01-05", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Six pirates in a skiff approached a bulk carrier underway. Master contacted a warship in the vicinity when the skiff came to a distance of 2.5 miles and the warship advised that a helicopter will be proceeding to the location. Alarm raised,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.983333299722915, 22.449999999857255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-14", - "dateofocc": "2012-01-05", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "CALLAO ANCHORAGE, PERU: Two robbers armed with knives boarded an anchored container vessel unnoticed, stole ship stores and escaped. Duty crew noticed the theft during thier routine rounds and raised alarm. Port control informed and a patrol boat sent ou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.205000000069504, -12.12833330038859] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-15", - "dateofocc": "2012-01-07", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "HO CHI MINH TERMINAL, VIETNAM: Duty A/B onboard a berthed container vessel noticed a small boat near the shipside with three robbers attempting to board the vessel. Duty A/B raised alarm resulting in the robbers escaping empty handed. Local security info", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.716666700005874, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-16", - "dateofocc": "2012-01-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "85 MILES SOUTH OF BONNY ISLAND, NIGERIA: About eight pirates armed with AK-47s in a skiff launched from a fishing trawler chased, fired upon and attempted to board a container ship underway. The Master increased speed, took evasive maneuvers and crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.466666700168673, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-215", - "dateofocc": "2012-07-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BENIN:Bulk carrier boarded on 17 July at 06-17N 002-28E, Cotonou Anchorage. Two robbers armed with guns boarded the anchored vessel, entered the Master's cabin and stole ship's cash. The robbers escaped in a small wooden boat. No injuries to the crew wer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.466666700006954, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-216", - "dateofocc": "2012-07-15", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP OLIVIA", - "descriptio": "GUINEA:German-flagged container ship OLIVIA boarded on 15 July at 09-13N 013-47W, approximately 22 nm southwest of Conakry. Seven pirates armed with guns and knives boarded the vessel while awaiting berthing instructions. The pirates entered the bridge a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.78333329984406, 9.216666700000417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-217", - "dateofocc": "2012-07-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 17 July at 01-43N 101-27E, Dumai Anchorage. Seven robbers armed with knives boarded the anchored vessel, threatened the ship's crew with knives,broke the padlocks to three stores, and attempted to steal ship's property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-218", - "dateofocc": "2012-07-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CONTAINER VESSEL", - "descriptio": "MOZAMBIQUE:Robbers boarded a container vessel at berth, stole ship's stores and escaped unnoticed. Master informed port authorities and local agent. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.833333300181266, -19.81666669983241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-219", - "dateofocc": "2012-07-31", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "COLOMBIA:Bulk carrier boarded on 31 July at 03-49N 077-09W, Buenaventura Anchorage. Three robbers in a black motor boat boarded the anchored vessel and broke the padlocks on the forecastle paint locker and forward stores. The duty crew spotted the robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.149999999946317, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-220", - "dateofocc": "2012-05-17", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "NIGERIA:Vessel boarded on 17 May at 04-39N 004-45E, 45. Pirates armed with guns approached a landing craft at a speed of 7 knots. Master raised the alarm, stopped the main engines, and instructed the crew to muster in the citadel. By the time the pirates", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.750000000274099, 4.649999999641352] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-221", - "dateofocc": "2012-07-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 22 July at 01-06N 103-28E, Karimun Transhipment Anchorage. Robbers in a long wooden boat boarded the anchored tanker and entered the engine room. The engine room crew notified the bridge and the alarm was raised. The Third Eng", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.466666699675955, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-222", - "dateofocc": "2012-07-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BARGE/TUGBOAT", - "descriptio": "MALACCA STRAIT:Barge robbed sometime between 13 and 20 July while being tow by a tug between Penang, Malaysia and Pasir Gudang Port, Malaysia. Upon arrival, shipyard representatives inspected the barge and informed the Master that cargo on the barge's de", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.233333300317781, -5.20000000018257] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-223", - "dateofocc": "2012-07-27", - "subreg": "92", - "hostility_": "PIRATES", - "victim_d": "TUG WITH BARGE", - "descriptio": "MALAYSIA:Tug towing a barge hijacked on 27 July between Kudat Port, Malaysia and Bangi Island, Sabah, Malaysia. Pirates in a speed boat attacked the tug and forced the twelve crewmembers into a life raft and set them adrift. The hijackers sailed the tug", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.284166699760817, 7.938888900447694] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-224", - "dateofocc": "2012-06-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "NIGERIA:A container ship awaiting berthing instructions was approached by five armed pirates in a wooden speed boat with two outboard engines. As the pirates approached, they fired upon the vessel damaging some bridge windows and equipment. The vessel ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.158333299726053, 2.64833330044894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-81", - "dateofocc": "2013-03-24", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP CAPE NORVIEGA", - "descriptio": "INDONESIA:On 24 March, a container ship CAPE NORVIEGA was boarded at 05-59S 106-54E, at the Tanjung Priok Anchorage. During routine rounds, the ship's crew found the steering gear room open and it was discovered that some items inside the store were miss", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-225", - "dateofocc": "2012-07-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "TOGO:Duty Office aboard an anchored chemical tanker noticed on radar a contact approaching at a speed of five knots. Lookouts directed the search light towards the approaching boat and 12 armed robbers were identified. Alarm raised and ship's horn sounde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.299999999577949, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-72", - "dateofocc": "2013-03-14", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER ORANGE STARS", - "descriptio": "GULF OF ADEN:On 14 March, the underway tanker ORANGE STARS experienced a suspicious approach at 13-39N 050-48E, approximately 107 nm south-southeast of Al Mukalla, Yemen. Four suspicious dhows along with skiffs were noticed nearby the vessel. From this g", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.799999999829822, 13.64999999993239] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-73", - "dateofocc": "2013-03-14", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER KILIAN S", - "descriptio": "INDONESIA:On 14 March, the anchored bulk carrier KILIAN S was boarded at 01-40S 116-39E, approximately 25 nm SSW of the Balikpapan Port. Three robbers armed with long knives boarded the vessel. The alert duty seaman spotted the robbers attempting to ente", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.649999999666079, -1.666666699650136] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-74", - "dateofocc": "2013-03-24", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP OCEAN CHARGER", - "descriptio": "IVORY COAST:On 24 March, the berthed cargo ship OCEAN CHARGER was boarded in the vicinity of 05-17N 004-01W, at the Abidjan Port. Shore security guard onboard the vessel noticed two robbers at the aft mooring station. He immediately informed the Duty Off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.283333299810181] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-75", - "dateofocc": "2013-03-26", - "subreg": "56", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "EGYPT:On 26 March, a berthed container ship was boarded at 31-14N 032-18E, at the Port Said West Terminal. Six robbers in a boat armed with knives came alongside. Four robbers boarded the vessel and injured an onboard security guard. The robbers stole sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.299999999681177, 31.233333299884976] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-76", - "dateofocc": "2013-03-25", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER", - "descriptio": "YEMEN:On 25 March, an underway tanker experienced a suspicious approach at 14-01N 051-33E, approximately 141 nm south-southwest of Al Mukalla, Yemen. A group of boats closed to within 0.8 nm of the vessel, who displayed weapons resulting in the approach", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.549999999629222, 14.016666699795906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-77", - "dateofocc": "2013-03-24", - "subreg": "61", - "hostility_": "ROBBERS", - "victim_d": "CONYAINER SHIP JPO SAGITTARIUS", - "descriptio": "TANZANIA:On 24 March, the berthed container ship JPO SAGITTARIUS was boarded at 06-50S 039-17E, at the Dar es Salaam Port, Berth No. 11. A robber boarded the vessel via the forward mooring ropes. The duty A/B noticed the robber, who threatened the A/B wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.283333300010383, -6.833333300383742] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-78", - "dateofocc": "2013-03-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 27 March, an anchored bulk carrier was boarded at 03-56 N 098-47E, at the Belawan Anchorage. Robbers boarded the vessel and stole ship's stores from forecastle bosun store and escaped. The theft was discovered after the robbers had left the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.783333299686319, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-79", - "dateofocc": "2013-03-26", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 26 March, an anchored bulk carrier was boarded at 03-40S 114-26E, at the Taboneo Anchorage. Robbers boarded the vessel and were noticed by the alert duty crew, who informed the Duty Officer. Alarm raised and crew alerted. Upon seeing the ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.666666699714824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-80", - "dateofocc": "2013-03-25", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA:On 25 March, an anchored cargo ship was boarded at 01-42N 101-27E, at the Dumai Inner Anchorage. Five robbers armed with knives and guns boarded the vessel, took four duty crew members hostage and tied their hands with rope. Two of the hostages", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-82", - "dateofocc": "2013-03-23", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Five robbers armed with long knives in a small boat boarded the tanker from the starboard quarter using a rope. The watchman was tied up with ropes and was found when the forward watchman went to relieve him. The Duty Officer was immediately in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-83", - "dateofocc": "2013-03-22", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "TANKER NORD OPTIMISER", - "descriptio": "BANGLADESH:On 22 March, the anchored tanker NORD OPTIMISER was boarded at 22-15N 091-44E, at the Chittagong Anchorage. Robbers boarded the vessel during anchoring operations. They stole ship's stores and properties before escaping. Port authorities, Coas", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-266", - "dateofocc": "2013-08-23", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 23 August, the Marshall Islands-flagged anchored bulk carrier TEQUILA SUNRISE was boarded at 01-15S 117-36E, at the Samarinda Working Anchorage. The Deck Cadet on duty noticed the forward store had been forced open. He immediately informed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.599999999831766, -1.249999999919908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-267", - "dateofocc": "2013-08-23", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 23 August, an anchored bulk carrier was boarded at 00-16S 117-36E, at the Muara Berau Anchorage. Five robbers, armed with knives, boarded an anchored bulk carrier. Three of the robbers caught the duty crewman, threatened him with a knife on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.599999999831766, -0.266666699784764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-268", - "dateofocc": "2013-09-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA:On 4 September, an underway chemical tanker was fired upon at position 04-11N 005-34E, 20 nm south of Pennington Oil Terminal. A speed boat approached the chemical tanker with intent to board. The duty officer raised the alarm, alerted the crew a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.566666699837413, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-269", - "dateofocc": "2013-08-27", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP NADIR", - "descriptio": "BANGLADESH:On 27 August, the anchored Marshall Islands-flagged container ship NADIR was boarded while at position 22-11N 091-42E, Chittagong Anchorage. Approximately 16 robbers in two boats approached the ship. Five robbers armed with long knives boarded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-270", - "dateofocc": "2013-08-04", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "PRODUCT TANKER ST. MICHAELIS", - "descriptio": "BANGLADESH:On 4 August, the anchored Hong Kong-flagged product tanker ST. MICHAELIS was boarded at 22-11N 091-41E, at the Chittagong Anchorage. While at anchor, robbers boarded the vessel from astern. When the alarm was raised, the crew locked itself in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.683333299726485, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-271", - "dateofocc": "2013-09-03", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "VIETNAM:On 3 September, an anchored chemical tanker was boarded at 10-13N 107-02E, at the Vung Tau Anchorage. Six robbers disguised as fishermen boarded a chemical tanker at anchor. Duty crewman noticed the robbers and informed the bridge. The alarm was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.216666700032761] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-272", - "dateofocc": "2013-08-28", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM:On 28 August, the anchored Marshall Islands-flagged bulk carrier was boarded while at position 20-56N 107-19E, Cam Pha Anchorage. Six robbers boarded the ship via the anchor chain and hawse pipe by removing the cover and anchor lashing. They cut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.316666700205133, 20.933333300361255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-273", - "dateofocc": "2013-08-18", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "BARGE M3320", - "descriptio": "SINGAPORE:On 18 August, the underway Malaysian-flagged barge M3320 was boarded at 01-15N 104-07E, approximately 5.6 nm south of Tanjung Setapa. While underway, unidentified persons onboard 2-3 small wooden boats approached and boarded the barge, while in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-25", - "dateofocc": "2012-01-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "GULF OF GUINEA: A suspicious boat approached a drifting bulk carrier. Duty crew spotted the boat and raised alarm. The boat closed onto and fired upon the vessel. All crew retreated into the citadel. After nearly 12 hours the crew emerged from the citade", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.214999999908684, 3.356666699792925] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-274", - "dateofocc": "2013-08-17", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "PRODUCT TANKER MORESBY 9", - "descriptio": "INDONESIA:On 17 August, the anchored Honduras-flagged product tanker MORESBY 9 was boarded at 01-20N 104-16E, approximately 1.83 nm southeast of Teluk Ramunia. While at anchor, 10 robbers armed with machetes, wearing face masks, approached the vessel, in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.266666700241444, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-275", - "dateofocc": "2013-08-16", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER KAYU EBONI", - "descriptio": "INDONESIA:On 16 August, the anchored Panama-flagged bulk carrier KAYU EBONI was boarded at 00-16S 117-36 E, at the Muara Berau Anchorage. Five robbers armed with knives boarded the anchored bulk carrier. Three of the robbers caught the duty crewman, thre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.599999999831766, -0.266666699784764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-276", - "dateofocc": "2013-09-16", - "subreg": "72", - "hostility_": "ROBBER", - "victim_d": "CHEMICAL TANKER FEN", - "descriptio": "INDONESIA:On 16 September, a berthed chemical tanker FEN was boarded by a single robber at position 07-09S 112-40E, Gresik Port. The robber boarded the ship while the crew was busy connecting the cargo hoses. The robber broke into the paint store and sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.666666700333167, -7.150000000380544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-17", - "dateofocc": "2012-01-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "IVORY COAST: Two robbers armed with long knives boarded an anchored container ship. They took hostage the duty watchman, stole his radio, ship's stores and escaped. The watchman informed the bridge who raised the alarm. Port control informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.043055600415755, 5.218611099748898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-18", - "dateofocc": "2012-01-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "LAGOS, NIGERIA: Around ten pirates armed with guns boarded a drifting chemical tanker. The pirates destroyed the communication equipment, stole ship's cash and properties, crew's cash and belongings and escaped. One crew member was injured during the inc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.096666699946411, 5.858333299626452] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-19", - "dateofocc": "2012-01-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "JAKARTA ROADS, INDONESIA: Around seven armed robbers boarded an anchored container ship. Duty watchman found the steering gear door open and entered to investigate. The robbers caught the watchman, took him hostage, covered his eyes with plastic and stol", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.854999999965344, 6.103333299602866] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-20", - "dateofocc": "2012-01-12", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "Naval Auxiliary Ship", - "descriptio": "WESTERN INDIAN OCEAN: Six pirates in a skiff approached, fired upon and attempted to board a naval auxiliary ship underway from the stern. The naval force-protection team from the ship returned fire in self defense forcing the pirates to abort the attemp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.000000000034277, -1.616666699783423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-21", - "dateofocc": "2012-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 14-51N 056-03E at 0943Z on 12 Jan. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.050000000224429, 14.850000000330965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-22", - "dateofocc": "2012-01-17", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "PIPE LAYER", - "descriptio": "93 MILES OFF SOCOTRA ISLAND, YEMEN: Armed pirates in a skiff approached a pip layer vessel underway. The armed security team onboard showed their weapons and made their presence known. The pirates aborted the approach and moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.733333300227628, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-23", - "dateofocc": "2012-01-11", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "BALIKPAPAN INNER ANCHORAGE, INDONESIA: Three robbers armed with long knives boarded a tanker via the anchor chain. They were spotted by the duty A/B who reported to the bridge duty officer. Alarm raised. The robbers stole ship's stores and escaped in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.283333299889478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-24", - "dateofocc": "2012-01-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Lookouts onboard a tanker underway noticed six pirates in a skiff approaching their vessel at a distance of 3.5 miles. At a distance of around 300 meters the onboard unarmed security team engaged the skiff with the LRAD and the non-essential", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.283333299725541, 15.066666699694963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-26", - "dateofocc": "2012-01-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BINTAN ISLAND, INDONESIA: Four robbers wearing masks, armed with choppers and knives in a boat approached an anchored container ship. Two of the robbers attempted to board the ship by climbing the anchor chain. Duty crew noticed the robbers and informed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.701388900395614, 1.404722199892376] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-27", - "dateofocc": "2012-01-13", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CALLAO ANCHORAGE, PERU: Six robbers armed with long knives attempted to board an anchored bulk carrier via the anchor chain. Alert crew noticed the robbers, raised alarm and crew mustered. Upon hearing the alarm, the robbers aborted the attempted boardin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.205000000069504, -12.12833330038859] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-28", - "dateofocc": "2012-01-13", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ADANG BAY ANCHORAGE, INDONESIA: Five robbers boarded an anchored bulk carrier via the forecastle while duty were busy tending to cargo operations. When duty crew returned to forecastle, he saw two robbers who pushed him and escaped in a waiting boat. On", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.683333299722563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-29", - "dateofocc": "2012-01-16", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel attacked in 15-02N 058-14E at 0814Z on 16 January. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.233333299858828, 15.033333299900676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-30", - "dateofocc": "2012-01-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL/LIFERAFTS", - "descriptio": "CHITTAGONG, BANGLADESH: While waiting at anchorage for STS operations, the duty crew onboard noticed two liferafts on Portside missing. The incident was reported to local authorities through local agents.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.726666700033718, 21.301666700251815] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-226", - "dateofocc": "2012-07-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "TOGO:Five robbers in a wooden boat approached an anchored chemical tanker. Alarm raised, crew mustered in the citadel and TOGO Navy notified. The robbers aborted the attempt and moved away upon seeing the Navy patrol boat approaching. Later, two boats w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.27500000009428, 6.041666699920199] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-227", - "dateofocc": "2012-07-21", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "EGYPT:Bulk carrier was robbed on 21 July at 31-09N 029-48E, El Dekheila Port. Six robbers in two boats approached the berthed vesel during cargo operations. Without boarding, the robbers cut and escaped with four mooring line eyes. The vessel remained al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.800000000049977, 31.150000000048692] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-228", - "dateofocc": "2012-08-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BARGE JACSON 33", - "descriptio": "NIGERIA:Accommodation barge JACSON 33 boarded on 4 August, at approximately 35 nm off the coast of Bonny, Nigeria. The offshore supply and support barge employed six Nigerian Naval personnel as an onboard security team. During the pre-dawn attack, an unk", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-229", - "dateofocc": "2012-07-27", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TOGO:Tanker approached on 27 July at 06-00N 001-17E, approximately 8 nm from Lome, Togo. Robbers in three boats approached and attempted to board the anchored vessel. The Master raised the alarm and the crew activated fire hoses to repel the boats. The r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-230", - "dateofocc": "2012-08-06", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 6 August at 06-00S 106-53E, Tanjung Priok Anchorage, Jakarta. Four robbers boarded the anchored vessel, broke into the aft store and stole ship's property. Duty O/S noticed the robbers, raised the alarm, and pursued the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-231", - "dateofocc": "2012-08-02", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:Chemical tanker boarded on 2 August at 1-43.5N 101-26.0E, Dumai Anchorage. Five robbers armed with long machetes and knives boarded the anchored chemical tanker. Three crewmembers were taken hostage and had their hands tied. The robbers stole e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.724999999794079] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-232", - "dateofocc": "2012-07-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:Chemical tanker boarded on 28 July at 07-11S 112-43E, Tanjung Perak Port, Surabaya. Two robbers armed with knives boarded the berthed vessel and stole ship's property. Later, the crew found the robbers and recovered the stolen items.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.71666670019988, -7.183333300350114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-233", - "dateofocc": "2012-07-27", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SOUTHERN RED SEA:Two white skiffs with seven armed pirates in each approached a bulk carrier from both sides while underway in the Traffic Separation Scheme south of Hanish Al Kubra Island. When the skiffs closed to within 0.2 nm of the vessel, ladders", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.64999999997093, 13.566666700096107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-234", - "dateofocc": "2012-08-10", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "SIERRA LEONE:Bulk carrier boarded on 10 August at 08-30N 013-32W, Freetown Outer Anchorage. Three robbers armed with long knives boarded the anchored vessel. The Duty Officer spotted the robbers and raised the alarm. The crew mustered and the Master noti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.533333299611172, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-235", - "dateofocc": "2012-08-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "BANGLADESH:Container ship boarded on 9 August at 22-09N 091-44E, Chittagong Inner Anchorage. A gang of approximately 10 robbers armed with long knives boarded the anchored vessel from the stern, captured one crewmember and threatened him with their knive", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.149999999757654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-236", - "dateofocc": "2012-08-10", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:At 0600Z on 10 August, a vessel was attacked from a dhow in 03-22S 083-12E, but managed to evade a hijacking.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.199999999798422, -3.366666699615223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-237", - "dateofocc": "2012-08-21", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "GUINEA:Cargo vessel boarded on 21 August at 8-50N 013-58W, approximately 23 nm southwest of Conakry Port. Seven armed robbers in a fast boat boarded the anchored vessel during heavy rain. Six of the robbers boarded the vessel and entered the bridge by br", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.966666700137864, 8.833333300239758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-238", - "dateofocc": "2012-08-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH:Bulk carrier boarded on 17 August at 21-52N 091-41E, Kutubdia Anchorage. An unknown number of robbers boarded the anchored vessel,stole ship's stores and escape unnoticed. The theft was later discovered by a duty crewman while making rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.683333299726485, 21.86666669955514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-84", - "dateofocc": "2013-03-21", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER GLOBAL ANDES", - "descriptio": "INDONESIA:On 21 March, the anchored bulk carrier GLOBAL ANDES was boarded at 07-05S 112-39E, at the Gresik Inner Anchorage. Four robbers boarded the bulk carrier, forced their way into the forward store, and stole ship's property. When noticed by the cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.65000000043608, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-85", - "dateofocc": "2013-03-30", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER SEA HERMES", - "descriptio": "NIGERIA:On 30 March, the tanker SEA HERMES was fired upon at 03-57N 006-41E, approximately 22 nm ssw of Bonny. A small skiff containing 8 to 10 pirates was sighted fast approaching the tankers starboard bow. Master and Duty Officer flashed a light and sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.68333329967561, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-86", - "dateofocc": "2013-04-02", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP ALPHA KIRAWIRA", - "descriptio": "SOMALIA:On 02 April, the cargo ship ALPHA KIRAWIRA was fired upon at 00-52N 044-01E, approximately 13nm South of Baraawe. Around seven to eight armed pirates in a skiff approached and fired upon a general cargo ship underway. The on board armed security", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.016666699866789, 0.866666699775351] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-87", - "dateofocc": "2013-04-03", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER SHER E PUNJAB", - "descriptio": "INDONESIA:On 3 April, an anchored bulk carrier SHER E PUNJAB was boarded at 01-43S 116-38E at the Adang Bay Anchorage. Two robbers armed with a gun and knives boarded the vessel from the forecastle and held a duty crewman hostage at knifepoint. The Duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.71666670041617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-88", - "dateofocc": "2013-03-30", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG BOURBON LIBERTY 308", - "descriptio": "SINGAPORE:On 30 March, the tug BOURBON LIBERTY 308 was boarded at 1-20N 104-04E. Pirates boarded the vessel and left several hours later, presumably after robbing the crew and stealing vessel's valuables.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.066666699875213, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-239", - "dateofocc": "2012-08-17", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDIAN OCEAN:Vessel attacked in 01-16N 058-07E at 170952Z August.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.116666700052974, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-89", - "dateofocc": "2013-03-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING TRAWLERS", - "descriptio": "BANGLADESH:On 25 March, three fishing trawlers were hijacked in the vicinity of 21-26N 091-35E, approximately 20 nm off the coast of Cox's Bazaar. A gang of 20 to 25 pirates attacked the 34 fishermen onboard the three trawlers. The crews were beaten, sho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.583333299993058, 21.433333299927767] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-90", - "dateofocc": "2013-03-27", - "subreg": "63", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "VESSEL SEA PIONEER", - "descriptio": "MALDIVES:Vessel SEA PIONEER reported possible mothership activity in 07-40.1N 074-14.5E.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [74.241666699787515, 7.668333299837855] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-91", - "dateofocc": "2013-03-28", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "FISHING VESSEL", - "descriptio": "SOMALIA:On 28 March, a fishing vessel was hijacked at 11-52N 051-18E, off Raas Caseyr. Pirates boarded and hijacked the vessel and took her 20 crew members hostage. Vessel was rescued later that day. The vessel and crew members were unharmed and proceede", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [51.300000000295654, 11.866666700131077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-92", - "dateofocc": "2013-04-05", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "TANKER NEW CENTURY", - "descriptio": "INDIA:On 05 April, the tanker NEW CENTURY experienced an attempted boarding at 17-39N 083-24E, at the Visakhapatnam Anchorage. Seven robbers in three fishing boats approached the anchored vessel. Two robbers managed to reach the ship's rail using hooks a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.400000000164596, 17.650000000061766] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-93", - "dateofocc": "2013-04-09", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER WESTGATE", - "descriptio": "VIETNAM:On 09 April, robbers boarded the berthed bulk carrier WESTGATE at 10-34N 107-01E, at the Ho Chi Minh Port, and stole items from the vessel. They robbers escaped undetected.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.016666700105532, 10.566666699999075] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-94", - "dateofocc": "2013-04-06", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER MAERSK BERING", - "descriptio": "INDONESIA:On 06 April, robbers boarded the anchored tanker MAERSK BERING at 03-56N 098-41E, at the Belawan Anchorage and stole items from the vessel. The robbery was reported to authorities and local agent, who laterr informed the Master that the robber'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-95", - "dateofocc": "2013-04-04", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER GARDEN CITY RIVER", - "descriptio": "INDONESIA:On 04 April, robbers boarded the anchored crude oil tanker GARDEN CITY RIVER at 01-42N 101-29E, at the Dumai Anchorage. The robbers stole engine spares and escaped unnoticed. The theft was not detected until the following day when bare foot pri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-96", - "dateofocc": "2013-04-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER IVER EXACT", - "descriptio": "INDONESIA:On 03 April, four men in a small boat approached the anchored chemical tanker IVER EXACT at 01-42N 101-25E, at the Dumai Anchorage. Upon detecting the boat, the duty officer shouted at them using loudhailer and flashed a light. The watchman ble", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.416666699744553, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-97", - "dateofocc": "2013-03-29", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 29 March, an anchored bulk carrier was boarded at 01-11S 117-16E, at the Belawan Anchorage. Two robbers armed with long knives boarded the vessel and stole ship's stores from the forecastle store. They were spotted by the crew and the alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.266666699762482, -1.18333330015605] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-277", - "dateofocc": "2013-09-15", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:On 15 September, anchored chemical tanker CARTOLA was boarded by four robbers at position 01-04N 103-38E Nipah Anchorage. Duty crew noticed four robbers on the poop deck. Duty officer was informed, alarm raised and crew mustered. Seeing alerted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-278", - "dateofocc": "2013-08-31", - "subreg": "26", - "hostility_": "Unknown boarder", - "victim_d": "Catamaran", - "descriptio": "PANAMA:On 31 August, an anchored catamaran experienced an attempted boarding at position 09-38N 079-34E, Isla Grande Anchorage. Vessel¿s owner heard voices outside the boat while anchored late at night and investigated. He found one person attempting t", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.566666699741234, 9.633333299905871] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-279", - "dateofocc": "2013-09-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 23 September, robbers boarded the Marshall Islands-flagged tanker Armada Ali at position 01-07N 103-37E, Nipah Anchorage. Three robbers armed with knives boarded an anchored tanker during transfer operations. Duty crewmen challenged the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-270", - "dateofocc": "2012-09-14", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "MALAYSIA:Tanker engaged in ship-to-ship transfer operations was boarded by six robbers in a speed boat armed with a gun and long knives. Crewmembers were taken hostage. The robbers escaped in their speed boat after having stolen personal belongings and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.083333299915296, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-280", - "dateofocc": "2013-09-23", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Offshore supply tug", - "descriptio": "MALAYSIA:On 23 September, underway offshore supply tug JM DAMAI experienced a boarding at position 04-52N 104-05 E, approximately 22 nm east-northeast of Pulau Tenggul. Eight pirates wearing masks armed with a hand gun and long knives in a high speed cra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.08333329994764, 4.866666699904727] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-281", - "dateofocc": "2013-09-21", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk freighter", - "descriptio": "INDONESIA:On 21 September, anchored bulk freighter USOLIE was boarded at position 00-16S 117-41E, Samarinda Anchorage. Ten robbers armed with knives and steel bars boarded the ship during cargo operations. They took hostage a duty crewman conducting rout", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.683333299667993, -0.299999999754334] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-282", - "dateofocc": "2013-10-01", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 1 October at 0355 local time, four robbers in a wooden boat approached and boarded an anchored chemical tanker at position 01-10N 103-58 E, the Batam Anchorage. When a crewmember noticed the robbers, he raised the alarm and the crew mustered", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-283", - "dateofocc": "2013-09-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 27 September at 1440 local time, five robbers in a wooden boat approached an anchored tanker at position 3-58N 98-45E, Belawan Anchorage. One robber managed to board via the hawse pipe. When the duty seaman noticed the robber, he raised alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.96666669960581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-284", - "dateofocc": "2013-09-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 21 September, at 2230 local time, duty crew on board an anchored tanker in the Jakarta Anchorage noticed five robbers disembarking the vessel and escaping in a small unlit boat near the stern. The alarm was raised and all crew mustered. U", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.083333299685023] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-285", - "dateofocc": "2013-10-06", - "subreg": "25", - "hostility_": "Unknown", - "victim_d": "Sailing vessel", - "descriptio": "GRENADA:On 6 October between 0145 and 0430, perpetrator(s) boarded sailing vessel SOULMATIE in Prickly Bay by Calabash beach. The owners were not present when the incident occurred, but found the perpetrator(s) forced open the locked companionway and sto", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.699999999761474, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-286", - "dateofocc": "2013-10-03", - "subreg": "25", - "hostility_": "Unknown", - "victim_d": "Sailing vessel", - "descriptio": "ST. VINCENT AND THE GRENADINES:On 3 October at 2040, a group of men with machetes boarded sailing vessel RAINBOW off Union Island at Frigate Island. They attacked the two people onboard; one of whom fought off the attackers. Local rescue, Coast Guard, an", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.399999999661816, 12.600000000033333] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-287", - "dateofocc": "2013-09-26", - "subreg": "24", - "hostility_": "Unknown", - "victim_d": "Catamaran", - "descriptio": "TOBAGO:On 26 September at 0100, four men boarded a cruising catamaran in Bloody Bay. A crewmember was restrained and threatened with a pistol while the captain attempted to repel the men and was hit with the flat side of his own machete. Another captain", - "hostilityt": 5, - "hostilit_D": "Unknown", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.599999999995646, 11.299999999901388] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-288", - "dateofocc": "2013-09-23", - "subreg": "53", - "hostility_": "Robbers", - "victim_d": "Sailing vessel", - "descriptio": "ITALY:On 23 September, robbers stole a dinghy from the owners of an anchored sailing vessel at Portopalo di Capo Passero in Sicily had used to access the pier. The owners returned the next morning to file a police report.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [15.099999999664533, 36.699999999643637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-31", - "dateofocc": "2012-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF OMAN: Petroleum Tanker HAPPY BIRD fired upon by pirates in two skiffs on 12 January near position 14-51N 056-03E, approximately 170 nm southeast of Salalah, Oman. Onboard security team returned fire, prompting skiffs to break off attack and depar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.050000000224429, 14.850000000330965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-32", - "dateofocc": "2012-01-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "DUAMI INNER AHCNORAGE, INDONESIA: Four robbers armed with knives boarded an anchored tanker. They entered the engine room, tied up the duty engineer and stole ship's stores. They took the duty engineer to the stern and disembarked into a waiting boat. No", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.456666699997641, 1.704999999667507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-89", - "dateofocc": "2015-04-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Merchant Ship", - "descriptio": "MALAYSIA:On 25 April, two robbers boarded an underway merchant ship approximately 7 nm south of Pengerang. The robbers were spotted by a duty crewman who raised the alarm. The robbers escaped empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-33", - "dateofocc": "2012-01-03", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MANILA ANCHORAGE, PHILIPPINES: A container ship at anchor was boarded by a group of people via the anchor chain. When bosun went forward to heave up anchor he noticed the hawse pipe cover open and small boat moving away from the ship. On investigating i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.885000000158243, 14.609999999711647] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-34", - "dateofocc": "2012-01-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "DUMAI INNER ANCHORAGE, INDONESIA: Armed robbers boarded an anchored chemical tanker and held the duty motor man as hostage. The duty engineer noticed the robbers and informed the duty officer who raised the alarm. Upon hearing the alarm, the robbers esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-35", - "dateofocc": "2012-01-21", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "CHITTAGONG OUTER ANCHORAGE, BANGLADESH: Duty watchman onboard an anchored bulk carrier heard a small boat apprach the vessel. He then noticed movement on the forecastle deck and informed the duty officer. On reaching the forcastle the duty watchman and d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.736666699647344, 22.233333299593937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-36", - "dateofocc": "2012-01-23", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "DAR ES SALAAM, TANZANIA: Two skiffs with five pirates in each skiff approached a chemical tanker underway. Vessel enforced anti-piracy measures, increased speed, deployed security team. When skiff approached closer to the vessel, the security team fired", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.333333299877097, -6.683333299884282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-37", - "dateofocc": "2012-01-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "RED SEA: Security team onboard a bulk carrier underway reported two skiffs were approaching the vessel. There were a total of seven skiffs in the vicinity. The 1st skiff had six pirates armed with AK47s. No weapons were seen in the 2nd skiff which had fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.030833299778635, 13.206666699616846] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-38", - "dateofocc": "2012-01-12", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "ARABIAN SEA: Pirates in skiffs approached a LPG tanker underway. The tanker enforced anti-piracy measures, sent distress message and ordered armed guards to standby. When skiffs approached closer than 1000 meters, warning shots were fired and the skiffs", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [56.533333299893798, 14.861666699971636] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-39", - "dateofocc": "2012-01-25", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "KANDLA ANCHORAGE, INDIA: Ten robbers boarded an anchored general cargo ship, stole ship stores and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.016666700086944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-40", - "dateofocc": "2012-01-14", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "GULF OF ADEN: Five armed pirates boarded and hijacked a Dhow and took her eight crew members as hostage. The pirates released fire crew members at Ras Hafoon and maintained control over the remaining three crew and the Dhow.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.133333299834305, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-41", - "dateofocc": "2012-01-28", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDIAN OCEAN: A general cargo ship underway noticed a mother ship lowering a skiff. The skiff with five armed pirates was seen approaching the vessel. The onboard armed security team fired warning flares which were ignored by the skiff. As the skiff appr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [58.233333299858828, 4.91666669977144] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-42", - "dateofocc": "2012-01-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "SANDAKAN INNER ANCHORAGE, SABAH, MALAYSIA: Robbers boarded an anchored chemical tanker. Duty A/B on rounds sighted the robbers armed with long knives and immediatedly informed the duty officer. Seeing crew alertness the robbers escaped with stolen ship's", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-43", - "dateofocc": "2012-01-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "MAKASSAR STRAIT: Bulk carrier boarded on 28 January by four robbers armed with a gun and knives while anchored at position 01-43S 116-38E, Adang Bay Anchorage. The robbers tried to attack a nearby deckhand, who managed to escape and inform the duty offic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.633333299768992, -1.71666670041617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-44", - "dateofocc": "2012-01-27", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF TONKIN: Container ship boarded on 27 January by eight robbers armed with long knives while anchored at position 20-38N 106-53E, Haiphong Anchorage. The robbers took the duty deckhand hostage and forced him into the bosun stores locker and tied hi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, 20.633333300261654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-240", - "dateofocc": "2012-08-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "NIGERIA:Pirates armed with AK-47 assault rifles approached and boarded an anchored barge. They opened fire, killing two naval security officers and injuring two crew members. The pirates stole vessels property and cash and escaped. Incident was reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.666666699603184, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-241", - "dateofocc": "2012-08-21", - "subreg": "51", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "GUINEA:Armed pirates attacked and boarded a cargo vessel. All crew members immediately took shelter in the citadel. The pirates damaged bridge windows, ransacked crew cabins, stole cash and personal effects, and escaped. Master contacted Conakry Port Con", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.971666700394337, 9.264999999840086] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-242", - "dateofocc": "2012-08-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "TOGO:Eight robbers in a wooden craft approached and attempted to board an anchored chemical tanker using a hook attached to a long pole. Alert watchstanders spotted the robbers and raised the alarm. All crew was mustered. Upon seeing crew alertness, the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.266666699608436, 6.050000000406101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-243", - "dateofocc": "2012-08-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER ENERGY CENTURION", - "descriptio": "TOGO:Tanker Energy Centurion hijacked on 28 August at 05-52N 001-24E, Lome Anchorage. An unknown number of pirates boarded and hijacked the vessel. Togo Navy dispatched a patrol boat, which intercepted the tanker and ordered her to stop. The hijacked tan", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.400000000210753, 5.866666699937014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-244", - "dateofocc": "2012-08-28", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 28 August at 00-15S 117-35E, Muara Berau anchorage. An unknown number of robbers boarded the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-245", - "dateofocc": "2012-08-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "SINGAPORE:Tug boarded on 19 August at 01-00N 103-39E, 6.6 nm southeast of Pulau Tekong Kecil. An unknown number of robbers boarded the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-246", - "dateofocc": "2012-08-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "SINGAPORE:Tug boarded on 17 August at 01-04N 103-42E, Singapore Strait. An unknown number of robbers boarded the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.700000000011698, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-247", - "dateofocc": "2012-07-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA:Tug boarded on 23 July at 01-14N 103-0 E, Singapore Strait. An unknown number of robbers boarded the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.016666699976156, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-248", - "dateofocc": "2012-08-28", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TOGO:Armed pirates boarded and hijacked an anchored tanker. The TOGO Navy received the vessel's distress call and dispatched a patrol boat, which intercepted the tanker while underway. Orders to stop the vessel were ignored and the pirates opened fire at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.266666699608436, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-249", - "dateofocc": "2012-08-18", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TOGO:A gang of approximately 16 pirates armed with machine guns boarded a tanker drifting within an anchorage area. The pirates hijacked the vessel and sailed her to an unknown location, while sabotaging the ship's communication equipment, speed boats, r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.233333299814092, 5.833333300142726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-250", - "dateofocc": "2012-09-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER ABU DHABI STAR", - "descriptio": "NIGERIA:Tanker Abu Dhabi Star was boarded and hijacked by pirates on the evening of 4 September at 06-11N 002-55E, Lagos Anchorage. All crew members locked themselves in the citadel safe room.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.916666699706752, 6.183333300109098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-251", - "dateofocc": "2012-09-04", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:Chemical tanker boarded on 4 September at 01-04N 104-08E, Kabil Port anchorage. Four robbers boarded the berthed vessel and entered the engine room, where a crewman confronted them. One of the robbers assaulted the crewman, who then retreated i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-106", - "dateofocc": "2013-04-01", - "subreg": "53", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "BULK CARRIER CONDOR", - "descriptio": "LIBYA:On 01 April, the underway bulk carrier CONDOR experienced a suspicious approach at 34-50N 014-40E, approximately 133nm North-northeast of Tripoli. A group of boats were discovered off the ship's port side. Security team took \"shooting\" position. Cr", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [14.666666699861878, 34.833333300181266] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-252", - "dateofocc": "2012-09-02", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 2 September at 00-13S 117-35E, Muara Berau Anchorage. Five robbers in a speed boat approached and boarded the anchored vessel, broke into the paint and boatswain stores and stole ship's stores and properties. The master", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-253", - "dateofocc": "2012-08-31", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 31 August at 00-13S 117-35E, Muara Berau Anchorage. An unknown number of robbers boarded the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-98", - "dateofocc": "2013-03-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "NIGERIA:Armed pirates attacked and boarded a supply ship underway. at 3-57.3N 5-21.0E, about 57 nm WSW of Brass.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.349999999574038, 3.954999999965139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-99", - "dateofocc": "2013-04-14", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP", - "descriptio": "ECUADOR:On 14 April, a cargo ship under pilotage was boarded at 02-18S 079-55W, at Guayaquil. A group of armed robbers in a boat approached and boarded a container ship departing from the berth. The alarm was raised and the crew mustered in the accommoda", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.916666699707605, -2.299999999818965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-100", - "dateofocc": "2013-04-13", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "TANKER UNIQUE GUARDIAN", - "descriptio": "PERU:On 13 April, an anchored tanker UNIQUE GUARDIAN was boarded at 04-34S 081-19W, at the Talara Anchorage. Duty watch man on board an anchored chemical tanker sighted two robbers armed with long knives and notified C/O who raised the alarm. Upon hearin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.316666699572977, -4.566666700013741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-101", - "dateofocc": "2013-04-16", - "subreg": "57", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER CAP THEODORA", - "descriptio": "GULF OF GUINEA:On 16 April, the underway tanker CAP THEODORA was fired upon at 01-48N 006-46E approximately 36 nm west-northwest of Principe Island. The crew raised the alarm, activated the SSAS, initiated distress signals, and started the fire pump. Cre", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 1.800000000043781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-102", - "dateofocc": "2013-04-11", - "subreg": "51", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP RMS BAERL", - "descriptio": "SIERRA LEONE:On 11 April, the anchored cargo ship RMS BAERL was boarded at 08-30N 013-11W at Freetown Inner Roads. Master on board the anchored general cargo ship noticed a boat approaching and sent the able bodied seaman (AB) to investigate. Master then", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.183333299644801, 8.50000000017053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-103", - "dateofocc": "2013-04-13", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER DENSA JAGUAR", - "descriptio": "INDONESIA:On 13 April, the berthed bulk carrier DENSA JAGUAR was boarded at 07-05S 112-39E, at the Surabaya Port. Three robbers in a small boat armed with long knives approached the berthed ship. Duty A/B noticed the robbers, informed the D/O and retreat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.65000000043608, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-104", - "dateofocc": "2013-04-16", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP SHAMROCK", - "descriptio": "COLOMBIA:On 16 April, the anchored cargo ship SHAMROCK was boarded at 10-22N 075-33 W, at the Cartagena Inner Anchorage. The Officer of the Watch (OOW) observed a boat with several persons maneuvering in the vicinity of the vessel. Two watchmen were sent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.549999999714714, 10.366666699632901] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-105", - "dateofocc": "2013-04-15", - "subreg": "22", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP MAERSK NIENBURG", - "descriptio": "ECUADOR:On 15 April, the cargo ship MAERSK NIENBURG under pilotage was boarded at 02-18S 079-55W, at Guayaquil. A group of armed robbers in a boat approached and boarded a container ship departing from the berth. The alarm was raised and the crew muster", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.916666699707605, -2.299999999818965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-339", - "dateofocc": "2017-12-07", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 07 December, a vessel reported being attacked near 14-32N 042-47E, vicinity ofHodeida, Yemen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.783333299673927, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-107", - "dateofocc": "2013-04-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP BOSUN", - "descriptio": "NIGERIA:On 24 April, the underway cargo ship BOSUN was fired upon at 03-51N 005-40E, approximately 32 nm off the Niger Delta. The 3rd Officer observed one skiff approaching the vessel. The pirate's skiff approached from the starboard abeam, increased spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.66666669957084, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-289", - "dateofocc": "2013-09-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Fishing vessels", - "descriptio": "BANGLADESH:Between 14 and 15 September, robbers kidnapped 65 fishermen from their vessels from the sea and in the Sundarbans, near Dublar Char. The robbers looted fish and nets worth about $12,846, and demanded a ransom of approximately $1,285 for each f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.500000000092086, 21.799999999791282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-290", - "dateofocc": "2013-10-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product tanker SKS DONGGANG", - "descriptio": "INDONESIA:On 7 October at 0342 local time, four robbers with knives boarded product tanker SKS DONGGANG performing ship-to-ship transfer (STS) operations near position 01-08N 103-25E, Karimun Transhipment Area. One robber remained in their boat. Another", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-291", - "dateofocc": "2013-10-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 7 October at 0345 local time, five robbers boarded anchored tanker PIONEER EXPRESS during STS operations near position 01-08N 103-25E, Karimun Transhipment Anchorage. Robbers boarded via the poop deck and attempted to enter the accommodation", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-292", - "dateofocc": "2013-10-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 6 October at 0410 local time, six robbers dressed in black boarded anchored tanker ARMADA ALI near position 01-09N 103-35E Nipah anchorage and tried to enter the accommodation area. The alert duty officer raised the alarm and sounded the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-293", - "dateofocc": "2013-10-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 6 October at 0242 local time, robbers attempted to board an anchored tanker that was preparing for STS operations near position 01-09N 103-35E, Nipah anchorage. The duty crewmember noticed suspicious boats near aft of the vessel. As he appro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-294", - "dateofocc": "2013-10-05", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 5 October at 0040 local time, robbers with knives boarded anchored tanker HS CARMEN that was awaiting cargo operations near position 08-10S 117-33E, Santan anchorage. The duty crew noticed movements at the forecastle, informed the bridge, an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -8.166666700310032] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-295", - "dateofocc": "2013-09-26", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 26 September at 0200 local time, eight robbers armed with knives boarded anchored bulk carrier ROSALIA D'AMATO at position 01-02S 117-15E, the the Samarinda Anchorage. They stole ship's stores and departed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.249999999865395, -1.03333329965659] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-296", - "dateofocc": "2013-09-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tugboat", - "descriptio": "SINGAPORE:On 22 September at 0735, crew onboard underway tug BUDGET 17 in the Malacca Strait TSS Westbound Lane notice multiple people onboard the barge in tow BUDGET 27 that were stealing iron scrap metal pieces. There were three small boats in the vici", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.700000000011698, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-297", - "dateofocc": "2013-09-11", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 11 September, four robbers boarded a tanker engaged in STS operations at Nipah anchorage via the poop deck. The alert crewmembers deterred the robbers; the robbers then retreated. The port authorities were notified of the incident by radio b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.19999999957821, -0.99999999968702] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-298", - "dateofocc": "2013-10-01", - "subreg": "24", - "hostility_": "ROBBERS", - "victim_d": "FISHING VESSELS TARA 1 AND OMI 5", - "descriptio": "SURINAME:On 1 October at 1100, fishing vessels TARA 1 and OMI 5 were attacked near Coronie in the Corentyne River. Five masked men armed with cutlasses attacked the TARA 1, threw two tied-up fishermen overboard, and kidnapped a third. They destroyed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.116666700229302, 5.899999999906584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-299", - "dateofocc": "2013-10-15", - "subreg": "61", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "MOZAMBIQUE:On 15 October at 2050 local time, three robbers with knives approached a berthed container ship in a small wooden boat near position 19-49S 034-50E, Berth Number Five in Beira Port. One of the robbers boarded the ship and was noticed. The alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.833333300181266, -19.81666669983241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-301", - "dateofocc": "2013-10-09", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "FISHING TRAWLERS", - "descriptio": "BANGLADESH:On 9 October, unidentified individuals fired at two fishing trawlers in the Bay of Bengal near Charfashion Upazila. They hijacked a fishing trawler and kidnapped 21 fishermen onboard. Twenty-two fishermen jumped into the sea and were later res", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.833333300193601, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-45", - "dateofocc": "2012-01-27", - "subreg": "24", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BRAZIL: Bulk carrier experienced an attempted boarding on 27 January while at anchor at 00-02N 050-59W, Macapa Anchorage, Amazon River, Brazil. The deck watch crew noticed four robbers climbing up the anchor chain and trying to remove the hawse pipe cove", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-50.983333299608205, 0.033333300314894] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-46", - "dateofocc": "2012-01-26", - "subreg": "22", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "COLOMBIA: Container ship chased on 26 January by three suspected armed pirates while underway near position 02-26N 079-18W, approximately 45 miles from Tumaco, Colombia. The suspected pirates were described as wearing \"black military style uniforms\". The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.299999999611146, 2.433333300212666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-47", - "dateofocc": "2012-02-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "POINT NOIRE ANCHORAGE, THE CONGO:Duty watch onboard an anchored container ship noticed wet foot prints on the deck and the padlock to the bowthruster room broken. He informed the OOW who noticed a small boat alongside the vessel near the starboard midshi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.7833332995707, -4.766666700379915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-48", - "dateofocc": "2012-02-01", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "BATAM OUTER ANCHORAGE, INDONESIA: Robbers boarded an anchored chemical tanker, stole ship's stores and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-49", - "dateofocc": "2012-02-06", - "subreg": "91", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "MANILA MICT ANCHORAGE, PHILIPPINES: A duty crew onboard an anchored container ship waiting for pilot was taken hostage by robbers using a long knife. They tied up the duty crew, hit him and stole ship's stores. Another crew approaching the anchor station", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.888333300387671, 14.611666699738691] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-50", - "dateofocc": "2012-02-06", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Pirates in two white colored skiffs approached a chemical tanker uderway. OOW informed the Master who raised teh alarm and activated anti-piracy measures. As the skiffs approached, the onboard security team fired warning shots which were ig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.133333300384095, -5.049999999683109] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-51", - "dateofocc": "2012-02-07", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "STRAIT OF MALACCA, KARIMUN STS ANCHORAGE: Three robbers armed with rods boarded an anchored product tanker. Duty crew on rounds sighted the robbers on the poop deck and immediately raised the alarm. Seeing the alerted crew, robbers escaped empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.478333300391228, 1.103333300340523] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-52", - "dateofocc": "2012-02-08", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "VLCC", - "descriptio": "WESTERN INDIAN OCEAN, EAST OF SEYCHELLES ISLAND: OOW onboard a VLCC sighted two skiffs approaching. The VLCC increased speed to maimum and made evasive maneuvers and applied anti piracy measures. The skiff had five pirates carrying guns and a ladder. Onb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.983333299690571, -4.299999999883653] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-53", - "dateofocc": "2012-02-08", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "ARABIAN SEA: Merchant vessel hijacked in 13-32N 058-36E on 8 February at 1438Z. Vessels are advised to keep 100 miles clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [58.599999999722343, 13.53333330030182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-54", - "dateofocc": "2012-02-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "GHANA: Offshore tug boarded by four robbers on 9 February while berthed at position 04-53N 001-45W, Takoradi Port. The robbers, armed with long knives, threatened duty watchman and stole ship's stores, and escaped in a waiting canoe. No crew injuries and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.750000000385739, 4.883333299977096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-55", - "dateofocc": "2012-02-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Bulk carrier hijacked on 7 February while underway near position 16-03N 062-26E, approximately 520 miles off Socotra Island, Yemen. UKMTO was first notified about the potential hijacking when the vessel owner informed them that he could not", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.433333300354377, 16.049999999830163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-56", - "dateofocc": "2012-02-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "RED SEA: About 6-7 pirates in each skiff chased a general cargo ship and approached within 200 meters with intnet to board. The vessel enforced anti-piracy measures and contacted warship on VHF. The skiffs aborted the attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.318333300136374, 12.738333299992803] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-57", - "dateofocc": "2012-02-06", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "RED SEA: Pirates in two skiffs chased a LPG tanker underway and approached within .2 miles. The tanker enforced anti-piracy measures, altered course and managed to evade the attack.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.291666699551058, 12.730000000406278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-58", - "dateofocc": "2012-02-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCT TANKER", - "descriptio": "BENIN: Product tanker boarded on 9 February while adrift, awaiting orders, near position 04-57 N 002-16 E, approximately 83 nm South of Cotonou. Pirates boarded and hijacked the ship and sailed to an unknown location. Awaiting further reporting. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.278333300355996, 4.961666700281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-254", - "dateofocc": "2012-08-31", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:Bulk carrier boarded on 31 August at 01-42N 10127E, Dumai Anchorage. Three armed robbers carrying long knives approached and boarded the anchored vessel.The robbers took several crew members hostage but other crew members who saw the boarding w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-255", - "dateofocc": "2012-09-09", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "OIL TANKER", - "descriptio": "NIGERIA:Oil tanker fired upon while underway on 9 September at 06-09N 002-53E, approximately 34 nm southwest of Lagos during voyage from Lome to Lagos. An unknown number of pirates fired several shots at the vessel in an attempt to board. Non-essential c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.883333299912408, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-256", - "dateofocc": "2012-09-07", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIA:Chemical tanker hijacked on 7 September near 21-40N 088-01E, Sagar Anchorage, Haldia. Four armed robbers carrying knives and rods boarded the anchored vessel from the aft. Duty crew members spotted the robbers and immediately informed the Chief Of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.016666700390374, 21.666666700088285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-257", - "dateofocc": "2012-09-11", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:Container ship boarded on 11 September at 03-54N 098-46E, at Belawan Anchorage. Five robbers approached the anchored vessel in a small boat. Two robbers boarded the vessel and broke into the forward storeroom, stealing ship's property. Upon see", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-258", - "dateofocc": "2012-09-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "LPG TANKER", - "descriptio": "INDONESIA:LPG tanker boarded on 8 September at 05-34S 104-36E, at Teluk Semangka Anchorage. Five armed robbers carrying sticks boarded the vessel from a small fishing boat. A duty crew member noticed the robbers and informed the bridge, who raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.600000000310615, -5.566666700046085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-259", - "dateofocc": "2012-09-03", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:Chemical tanker boarded on 3 September at 03-55N 098-46E, at Belawan Anchorage. Six armed robbers carrying guns and knives boarded an anchored chemical tanker using hook attached to a bamboo pole. A crewman noticed the robbers and attempted to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-269", - "dateofocc": "2012-09-22", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker hijacked on 22 September at 01-15N 103-09E, in the vicinity of Tanjung Piai. Six pirates boarded and robbed the vessel armed with machetes and a gun. The pirates tied up 16 crew members and escaped with cash, laptops, mobile phones and p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.083333299915296, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-260", - "dateofocc": "2012-09-05", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "NIGERIA:A large group of heavily armed pirates boarded a drifting chemical tanker. The crew shut down and disabled all machinery, retreated into the citadel, and contacted their owners for assistance. Upon receipt of this distress message, the IMB Piracy", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.933333299779122, 6.183333300109098] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-261", - "dateofocc": "2012-08-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY SHIP", - "descriptio": "CONGO:Robbers boarded an anchored supply ship and broke into various store rooms, stole ship's stores and properties and escaped Unnoticed. The theft was later noticed by the duty crew on security rounds. Incident reported to Port Authority.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-262", - "dateofocc": "2012-08-19", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "INDONESIA:Four masked robbers in a small boat armed with guns and knives approached and boarded a tug towing a barge. They took hostage all crew members, tied them up and stole cash and personal belongings before escaping. Master reported the incident to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.653333300374413, 0.95083329971277] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-263", - "dateofocc": "2012-09-08", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "LPG TANKER", - "descriptio": "CAMEROON:LPG tanker boarded on 8 September at 04-03N 009-41E, Douala Port Facility. The ship was boarded while the shore security watch was on a break. The robbers took the deck cadet hostage, and stole ship's stores. Before escaping, they released the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-264", - "dateofocc": "2012-09-19", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "BANGLADESH:Bulk carrier boarded on 19 September at 22-15N 91-45E, at Chittagong Anchorage. Two armed robbers carrying knives boarded the ship while at anchor and held a crew member hostage at knifepoint. Four additional robbers boarded the ship via the h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-265", - "dateofocc": "2012-09-21", - "subreg": "26", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "HAITI:Cargo ship was boarded on 21 September at 18-09N 072-01W, Port-Au-Prince. The anchored vessel was boarded by three armed robbers carrying machetes. A watchman conducting routine rounds discovered the robbers on the forecastle. The robbers attacked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.016666700081657, 18.149999999628278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-108", - "dateofocc": "2013-04-22", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP HANSA MARBURG", - "descriptio": "NIGERIA:On 22 April, the container ship HANSA MARBURG was boarded at 02-31N 006-50E, approximately 133nm South of Port Harcourt. Armed pirates boarded a container ship underway. They kidnapped four crew members and escaped. No injuries were reported to t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.83333330017507, 2.516666699873667] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-109", - "dateofocc": "2013-04-22", - "subreg": "57", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "OIL TANKER CAP THEODORA", - "descriptio": "GULF OF GUINEA:On 22 April, the crude oil tanker CAP THEODORA was attacked near position 03-06N 007-08E, approximately 77 nm south of Bonny, Nigeria. During this attack, the vessel was approached by a speedboat with five or six men on board while underwa", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 3.16666669993964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-110", - "dateofocc": "2013-04-18", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP CORINTH", - "descriptio": "CONGO:On 18 April, the anchored cargo ship CORINTH experienced an attempted boarding at 04-44S 011-48E, at the Pointe Noire Anchorage. Three robbers in a small boat approached and attempted to board an anchored ship. Alert duty crew spotted the robbers c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.80000000036722, -4.733333299686308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-111", - "dateofocc": "2013-04-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER LEON DIAS", - "descriptio": "NIGERIA:On 13 April, the tanker LEON DIAS was boarded at 03-48N 006-25E, approximately 30nm Southeast of Brass. Vessel issued a distress signal, reported being under attack, and boarded by pirates. Although no further details are available; it is presum", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.416666700269616, 3.800000000108469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-112", - "dateofocc": "2013-04-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "SUPPLY VESSEL GYRE, ESCORT BOAT BLUE JAY", - "descriptio": "NIGERIA:On 13 April, the offshore supply vessel GYRE and escort boat BLUE JAY were fired upon at 04-43N 008-20E, approximately 5nm South of Parrot Island. A fast boat was spotted moving on intercept course towards the OSV. Escort boat, Blue Jay, interce", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.333333299773926, 4.716666700304529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-113", - "dateofocc": "2013-04-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER NADIYA MELISENDE", - "descriptio": "INDONESIA:On 24 April, the underway tanker NADIYA MELISENDE was boarded at 01-17N 104-50E, approximately 16 nm north-northeast of Bintan Island. Pirates armed with a gun and knives boarded a product tanker and robbed the crew of cash money, personal belo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.833333299747039, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-114", - "dateofocc": "2013-04-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER AD PHOENIX", - "descriptio": "INDONESIA:On 23 April, the underway tanker AD PHOENIX was boarded at 01-19N 104-47E, approximately 15 nm north-northeast of Bintan Island. Five pirates armed with a pistol and long knives, in a high speed wooden craft, approached and boarded the asphalt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.783333299880326, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-115", - "dateofocc": "2013-04-17", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER IVS MAGPIE", - "descriptio": "VIETNAM:On 17 April, the anchored bulk carrier IVS MAGPIE was boarded in the vicinity of 20-58N 107-19E, at the Cam Pha Outer Anchorage. Three robbers boarded a bulk carrier via the forward bow and hawse pipe, unnoticed. Duty AB noticed them in the proc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.316666700205133, 20.966666700155542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-116", - "dateofocc": "2013-03-28", - "subreg": "56", - "hostility_": "ROBBERS", - "victim_d": "SUPPLY SHIP NOR CHIEF", - "descriptio": "EGYPT:On 28 March, the anchored supply ship NOR CHIEF was boarded at 31-14N 032-18E, at the Port Said Anchorage. While anchored, four robbers boarded the ship. Two duty AB's conducting security checks discovered the robbers on the main deck. Upon seeing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [32.299999999681177, 31.233333299884976] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-117", - "dateofocc": "2013-04-02", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP WEHR BLANKENESE", - "descriptio": "VIETNAM:On 02 April, the cargo ship WEHR BLANKENESE was boarded in the vicinity of 10-45N 106-42E, at the Ho Chi Minh City Port. Robber's boarded the vessel, broke the padlock to the paint store, and stole 14 drums of paint.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.70000000010873, 10.749999999568843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-118", - "dateofocc": "2013-04-01", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER CRANE", - "descriptio": "BANGLADESH:On 01 April, the bulk carrier CRANE was boarded at 22-15N 091-44E, at the Chittagong Anchorage `A'. The vessel was attacked while discharging. During a routine patrol of vessel by ship staff, approx. 6 robbers armed with long knives were foun", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-300", - "dateofocc": "2013-10-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "TANKER ISLAND SPLENDOR", - "descriptio": "SOMALIA:On 11 October at 0918 UTC, pirates in two skiffs fired upon the tanker ISLAND SPLENDOR approximately 237 nm east of Hobyo. The master raised the alarm, sounded the ship's whistle, increased speed, and mustered the crew. The armed embarked securit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [52.516666699691996, 5.316666699604468] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-302", - "dateofocc": "2013-10-09", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "TRAWLER", - "descriptio": "BANGLADESH:On 9 October, unidentified individuals boarded a trawler in the bay near the Tin Char area and stole goods, including fish fries (small fish) worth between $8,992 to $10,277.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.850000000090802, 22.000000000157456] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-303", - "dateofocc": "2013-10-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER NORD NIGHTINGALE", - "descriptio": "INDONESIA:On 12 October at 2000 local time, three robbers in a small boat approached and boarded anchored chemical tanker NORD NIGHTINGALE near position 06-10S 106-48E, Jakarta Tanker Anchorage. The alert duty crew noticed the robbers and shouted at them", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.799999999842157, -6.166666700245344] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-304", - "dateofocc": "2013-10-10", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "OIL PRODUCT TANKER DANAI 4", - "descriptio": "MALAYSIA:On 10 October at 0530 local time, nine hijackers wearing masks and carrying guns boarded underway oil product tanker DANAI 4 with a speedboat 20 nm southeast of Pulau Aur. They hijacked the tanker, took the crew hostage, and destroyed all the co", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.749999999910756, 2.199999999876866] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-305", - "dateofocc": "2013-10-10", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER PORT HAINAN", - "descriptio": "INDONESIA:On 10 October at 0315 local time, five robbers with long knives boarded anchored bulk carrier PORT HAINAN near position 01-57N 118-05E, Muara Berau anchorage, Samarinda. They held one crewmember hostage while they broke into storage and stole s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 1.949999999643978] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-306", - "dateofocc": "2013-10-20", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "LPG tanker", - "descriptio": "DOMINICAN REPUBLIC:On 20 October, a moored LPG tanker was boarded by two robbers at position 18-24N 070-01W, Rio Haina Refidomsa. Alert duty crew noticed the robbers lowering the rescue boat engine to a waiting escape boat. Alarm sounded and the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.01666670001697, 18.399999999861166] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-307", - "dateofocc": "2013-10-19", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "GUYANA:On 19 October, an anchored bulk carrier was boarded by four robbers armed with knives at position 06-48N 058-10W, Georgetown Port. The robbers threatened the duty crewman on the forecastle deck, slapped him and forced him to open the forecastle st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.8000000002055] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-308", - "dateofocc": "2013-10-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore supply vessel", - "descriptio": "NIGERIA:During the early hours of 23 October, pirates attacked the U.S.-flagged offshore supply vessel C RETRIEVER near Brass and kidnapped the captain and chief engineer, both U.S. citizens.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.233333299975811, 4.316666699572124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-309", - "dateofocc": "2013-10-20", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 20 October, an anchored tanker was boarded by three robbers at position 17-36N 083-26E, Visakhapatnam Anchorage. The robbers were able to steal ship's stores and escape when spotted by crewmembers on duty.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.433333300134166, 17.600000000195053] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-310", - "dateofocc": "2013-10-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 22 October, an anchored chemical tanker was boarded from the stern by four armed robbers at position 01-42N 101-26E, Dumai Inner Anchorage. Alert deck watch crew noticed the robbers and raised the alarm, which caused the robbers to flee empt", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-311", - "dateofocc": "2013-10-22", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "LPG tanker", - "descriptio": "INDIA:On 22 October, an anchored LPG tanker was boarded by seven armed robbers at position 22-49N 070-06E, Kandla Anchorage. They forced open the forward storeroom and stole ship's property. Duty crewman on watch noticed the robbers and raised the alarm.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.099999999644581, 22.81666669972077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-312", - "dateofocc": "2013-10-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 22 October, an anchored chemical tanker was boarded at position 03-47N 098-46E, Belawan Anchorage. Duty crew on routine rounds notice the mid-ship storeroom lock broken and ship stores stolen. Port authorities were informed. Robbers escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-313", - "dateofocc": "2013-10-19", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 19 October, Six robbers armed with long knives boarded an anchored bulk carrier via the anchor chain at position 00-14S 117-33E, Muara Berau Anchorage. The robbers took hostage two duty watchmen, tied them up, and stole their personal belong", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -0.23333329999042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-59", - "dateofocc": "2012-02-10", - "subreg": "72", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA: General cargo ship boarded on 10 February while anchored at position 07-06 S 112-39 E, Gresik Port Inner Anchorage. The robbers managed to steal ship's stores and escaped unnoticed. Incident reported to port authorities. (IMB)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.663333300279078, -7.108333300100355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-60", - "dateofocc": "2012-02-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "ARABIAN SEA, SOUTHEAST OF MASIRAH ISLAND: C/O onboard a container ship underway noticed two suspicious boats in the vicinity. He informed the Master and started tracking the boats. It was observed that a red hull fishing vessel and a white skiff were cha", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [61.53333330005546, 18.733333299930393] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-61", - "dateofocc": "2012-02-11", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP", - "descriptio": "NIGERIA: General cargo ship fired upon 11 February while underway near position05-11 N 003-27 E, approximately 74 nm south of Lagos fairway buoy. Bridge crew noticed two boats approaching from astern. As the boats closed the cargo ship, they fired upon t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.450000000142154, 5.183333300076754] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-62", - "dateofocc": "2012-02-13", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "NIGERIA: Bulk carrier boarded on 13 February while adrift while awaiting berthinginstructions near position 04-43 N 003-44 E, approximately 110 nm south of Lagos. The pirates took the chief cook hostage and forced him to take them to Master's cabin. They", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.733333300344611, 4.716666700304529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-63", - "dateofocc": "2012-02-12", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "VIETNAM: Bulk carrier at anchor boarded on 12 February while anchored at position 20-40 N 107-14 E, Cailan Outer Anchorage. A gang of seven robbers boarded using a hook and a rope. Duty crewman noticed the robbers and informed bridge who raised the ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.233333299644812, 20.666666700055941] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-64", - "dateofocc": "2012-02-07", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "ARABIAN SEA: Pirates attacked and hijacked a bulk carrier underway. Pirates sailed the vessel towards Somalia coast. Awaiting further details.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.433333300354377, 15.99999999996345] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-65", - "dateofocc": "2012-02-15", - "subreg": "63", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDIA: Tanker experienced an attempted boarding on 15 February while anchored at position 09-57 N 076-02 E, 2.5 nm south of SPM Cochin Anchorage. Approximately 20 robbers in two boats approached the tanker and attempted to board. The lookout crew noticed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.03333330007473, 9.949999999902673] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-66", - "dateofocc": "2012-02-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "LAGOS ANCHORAGE, NIGERIA: OOW on board an anchored chemical tanker noticed two heavily armed pirates on deck and raised the alarm. Master contacted the navy on VHF ch 16 but received no response. Non-essential crew locked themselves in a safe location. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-67", - "dateofocc": "2012-02-18", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN: Chemical tanker attacked on 18 February while underway near position 05-29S 064-02E, approximately 500 nm east of the Seychelles. One skiff notedapproaching ship from 2 nm. As the skiff closed to a half nautical mile, it stopped and five to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [64.03333329968666, -5.483333300385027] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-266", - "dateofocc": "2012-09-24", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "DHOW", - "descriptio": "OMAN:Dhow attacked on 24 September near 15-45 N 055-26E. An unknown number of pirates attempted a failed hijacking on the dhow.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.43333330012797, 15.749999999730505] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-267", - "dateofocc": "2012-09-25", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG/BARGE", - "descriptio": "INDONESIA:Towed barge boarded on 25 September at 01-01N 104-01E, 6.8 nm northwest of Bintan Island. Officers on watch aboard the tug noticed two robbers had boarded the barge. The Alarm was raised, SSAS was activated, and a distress call was sent on VHF.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.0166667000085, 1.016666700274811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-268", - "dateofocc": "2012-09-24", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker attempted to be boarded on 24 September at 01-01N 103-04E, at the Nipah Anchorage. Two robbers attempted to board the anchored vessel from the port quarter. An alert crew member noticed the robbers and raised the alarm, and the crew was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.06666669984287, 1.016666700274811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-271", - "dateofocc": "2012-09-13", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker hijacked on 13 September at 01-14N 103-09E, off Tanjung Piai. Six pirates hijacked the vessel in an attempt to transfer bunker fuel to a second vessel. Robbers tied up the crew and escaped with cell phones and laptops as a Coast Guard pa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.083333299915296, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-272", - "dateofocc": "2012-09-08", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "INDONESIA:Tanker boarded on 8 September at 01-49.2N 103-48.6E, 5 nm SE of Tanjung Piai, Johor. An unknown number of robbers boarded the anchored vessel during heavy rain squalls and stole ship's property items and escaped unnoticed. The theft was later", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.810000000258071, 1.820000000170353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-273", - "dateofocc": "2012-09-29", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:Three robbers armed with knives boarded an anchored chemical tanker at forecastle. They held the duty A/B at knifepoint, tied him up, and stole ship's stores. Duty officer raised the alarm upon sighting the robbers and mustered the crew. Seei", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-274", - "dateofocc": "2012-09-16", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDONESIA:While at anchor, six robbers in an unlit boat boarded a container ship using a grappling hook and rope. They broke into the safety store and the deck store and stole equipment and ship's properties. Alarm raised and crew mustered. The robbers e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.916666700372105, -6.033333299818253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-275", - "dateofocc": "2012-08-17", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "INDONESIA:During security rounds in the accommodation area, duty watchman noticed an unknown person on the main deck and notified the duty officer, who raised the alarm. Upon hearing the alarm, the robbers escaped in a small timber boat. The crew was mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.175000000094542, 1.106666700394669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-276", - "dateofocc": "2012-09-06", - "subreg": "93", - "hostility_": "PIRATES", - "victim_d": "BARGE", - "descriptio": "INDONESIA:Barge boarded on 6 September in Straits of Malacca at 09-41N 103-48E. An unknown number of robbers boarded the barge while being towed by the tug Lady Cynthia. An internal door on the port side was forced open and the robbers escaped with 40 ca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.799999999745182, 9.683333299772585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-277", - "dateofocc": "2012-10-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF GUINEA:Vessel ORFEAS possibly hijacked on 6 October at 05-12.56N 004-03.68W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.061388899615906, 5.209444400236464] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-278", - "dateofocc": "2012-10-05", - "subreg": "62", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER VESSEL", - "descriptio": "EGYPT:Container vessel boarded on 10 October near 29-27N 14-32E, at Suez Anchorage. Four robbers boarded the anchored vessel via a hawse pipe. They broke into a container and stole contents while the duty crew were tending to the Suez Canal mooring boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [32.549999999914121, 29.81666669994712] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-279", - "dateofocc": "2012-09-15", - "subreg": "56", - "hostility_": "PIRATES", - "victim_d": "BULK CARRIER", - "descriptio": "EGYPT:Bulk carrier boarded on 15 September near 31-11N 29-46E, Alexandria. An unknown number of robbers boarded the vessel while at anchor. Crewmember discovered and confronted the robbers and sounded the alarm. Upon seeing the crewmembers approaching, t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.766666700080407, 31.183333300018262] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2012-281", - "dateofocc": "2012-10-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "TOGO:Tanker hijacked on 4 October near 04-48N 001-25E. Twelve armed robbers boarded the vessel while at anchor. The 14 crewmembers were held captive under threats of harm, while the attackers transferred the ship's fuel to a waiting bunker barge. Afterwa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.416666700107896, 4.800000000140813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-119", - "dateofocc": "2013-03-28", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER THEOMETOR", - "descriptio": "INDONESIA:On 28 March, the anchored bulk carrier THEOMETOR was boarded at 01-08S 117-15E, at the Muara Jawa Anchorage, Samarinda. A/B on routine security rounds on board the ship noticed robbers near the bosun store trying to remove mooring ropes. They p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.249999999865395, -1.133333300289337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-120", - "dateofocc": "2013-04-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP CITY OF GUANGZHOU", - "descriptio": "NIGERIA:On 26 April, the underway container ship CITY OF GUANGZHOU experienced an attempted boarding at 03-48N 004-57E, approximately 83 nm west-southwest of Brass. Pirates in a boat attempted to attack a container ship underway. Master raised alarm, swi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.94999999974101, 3.800000000108469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-339", - "dateofocc": "2013-11-23", - "subreg": "71", - "hostility_": "ROBBER", - "victim_d": "CARGO SHIP", - "descriptio": "INDONESIA:On 23 November, an anchored cargo ship experienced a boarding near position 03-55N 098-45E, Belawan Anchorage. Duty officer on bridge noticed one robber escaping from the vessel. Upon investigation, the crew discovered that the robber had manag", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-121", - "dateofocc": "2013-04-25", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP CITY OF XIAMEN", - "descriptio": "NIGERIA:On 25 April, the underway container ship CITY OF XIAMEN was boarded at 04-10N 005-30E, approximately 45 nm west-southwest of Brass. Heavily armed pirates boarded underway ship. The ship raised the alarm and the crew took shelter in the citadel. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.500000000073555, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-122", - "dateofocc": "2013-04-30", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CARGO SHIP KOHINOOR", - "descriptio": "INDONESIA:On 30 April, a berthed cargo ship KOHINOOR was boarded at 03-47N 098-42E, at the Belawan Port. Robbers boarded a berthed general cargo ship while crews were involved with customs and immigration and getting the ship ready to discharge. Duty AB", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-123", - "dateofocc": "2013-04-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER FAIRCHEM MAVERICK", - "descriptio": "INDONESIA:On 27 April, the berthed tanker FAIRCHEM MAVERICK was boarded in the vicinity of 03-47N 098-42E, at the Belawan Port. Two robbers in a boat approached and boarded the berthed tanker and broke into the tank cleaning gear locker and stole the shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-124", - "dateofocc": "2013-04-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "INDONESIA:On 24 April, the underway tug was boarded at 04-10N 005-30E, approximately 53 nm north-northeast of Bintan Island. Fifteen pirates armed with guns and long knives in three high speed boats boarded a tug underway. They took hostage nine crew me", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.500000000073555, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-125", - "dateofocc": "2013-04-19", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER SINGAPORE RIVER", - "descriptio": "INDONESIA:On 19 April, the anchored tanker SINGAPORE RIVER was boarded at 01-41N 101-30E, at the Dumai Inner Anchorage. Four robbers armed with knives boarded the anchored tanker from the poop deck and caught and tied up the duty A/B at knife-point. They", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-126", - "dateofocc": "2013-04-24", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "VESSEL", - "descriptio": "GULF OF GUINEA:Possibly hijacked in 03-51.3N 005-40.5E at 242245Z APR. Vessels are advised to keep clear of this position and to exercise extreme caution.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.675000000056684, 3.855000000231655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-127", - "dateofocc": "2013-04-26", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CONTAINER SHIP", - "descriptio": "GULF OF GUINEA:On 26 April 2013 at 1830 UTC, a container ship was attacked by armed pirates around the vicinity of position 03-46N 005-08E, off Nigerian coast. The vessel increased speed and managed to evade the attack. Pirates may still be in the area", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.13333330021004, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-128", - "dateofocc": "2013-04-23", - "subreg": "71", - "hostility_": "PIRATES", - "victim_d": "TUG", - "descriptio": "SOUTH CHINA SEA:232030Z April, 01-36N 105-23E. 15 pirates armed with guns and long knives in three high speed boats boarded a tug underway. They took hostage nine crew members, assaulted some of the crew and tied them up. They ransacked all cabins, st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.383333300079585, 1.599999999677607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-130", - "dateofocc": "2013-05-05", - "subreg": "62", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:On 5 May, an underway tanker experienced an attempted boarding at 13-40N 048-30E, approximately 63 nm south-southwest of Al Mukalla, Yemen. Four high speed skiffs, with three persons in each skiff, approached the tanker in groups of two, fr", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.499999999665476, 13.666666699829534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-131", - "dateofocc": "2013-05-06", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "GULF OF GUINEA:On 06 May 2013, at 0010 UTC, a merchant vessel was attacked by pirates around the vicinity of position 05-41.0N 001-26.2E. All crew are in the citadel and TOGO Navy armed personnel onboard still monitoring the situation. Pirates may stil", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.436666700234468, 5.683333299643266] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-132", - "dateofocc": "2013-05-04", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO SHIP FRIO ATHENS", - "descriptio": "NIGERIA:On 4 May, the underway cargo ship FRIO ATHENS was fired upon at 03-49N 006-41E, approximately 33 nm southwest of Bonny. Six to eight pirates in a speed boat chased and fired upon an underway refrigerated cargo ship. The vessel enforced anti-pirac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.68333329967561, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-314", - "dateofocc": "2013-10-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 19 October, three robbers boarded an anchored tanker at position 01-25N 104-34E, 11 nm north of Tanjung Berakit, Pulau Bintann. Duty crew noticed the robbers in the engine room, raised the alarm and mustered the crew. Upon hearing the alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-315", - "dateofocc": "2013-10-30", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDIA:On 30 October, an underway chemical tanker experienced a boarding near position 22-49N 70-05E, approximately 2.5 nm SW of Outer Tuna Buoy, Kandla Anchorage. During routine rounds, duty crewman noticed two robbers boarding the vessel near the amidsh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.083333299747437, 22.81666669972077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-316", - "dateofocc": "2013-10-28", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "BANGLADESH:On 28 October, an anchored container ship experienced a boarding at position 21-50N 091-38E, Chittagong Anchorage. Duty crewman noticed five to six robbers at the poop deck while conducting routine rounds. He immediately informed bridge and th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.633333299859771, 21.833333299760852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-317", - "dateofocc": "2013-10-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Asphalt tanker", - "descriptio": "SINGAPORE STRAIT:On 30 October, an underway asphalt tanker experienced a boarding near position 01-21N 104-24E, near the Horsburgh Lighthouse. Five robbers armed with guns and long knives boarded the ship unnoticed. They took hostage the Watch Officer a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.399999999944441, 1.350000000344039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-318", - "dateofocc": "2013-10-26", - "subreg": "93", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "Chemical tanker", - "descriptio": "MALAYSIA:On 26 October, an underway chemical tanker experienced an attempted boarding near position 03-40N 103-55E, approximately 35 nm ESE of Kuantan Port. Two speed boats approached and tried to come alongside the ship while underway. Duty Officer rais", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.916666700275073, 3.666666700405472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-319", - "dateofocc": "2013-10-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 27 October, an anchored chemical tanker experience a boarding near position 03-56N 098-45E, Belawan Outer Anchorage. Three skiffs approached the ship from the stern, forward and amidships. From the aft skiff, three robbers boarded the vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-320", - "dateofocc": "2013-10-23", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 23 October, an anchored tanker experienced a boarding near position 07-05S 112-39E, Gresik Anchorage. Two robbers in a small unlit boat approached and boarded the ship. Alert crew on watch noticed the robbers near the forecastle, raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.65000000043608, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-321", - "dateofocc": "2013-11-06", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Merchant vessel", - "descriptio": "INDIAN OCEAN:On 6 November, a merchant vessel reported a pirate attack near position 05-40S 046-59E, approximately 450 nm east-southeast of Mombasa, Kenya. The ship reported being attacked by five heavily armed pirates in one skiff, with the pirates rep", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.983333300169477, -5.666666699779512] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-322", - "dateofocc": "2013-11-02", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "INDIA:On 2 November, an anchored container ship experienced a boarding near position 21-40N 088-01E, Sagar Anchorage. 15 armed robbers boarded the ship and were spotted by ship's duty officer, who raised the alarm. The robbers were stealing ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.016666700390374, 21.666666700088285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-323", - "dateofocc": "2013-11-04", - "subreg": "71", - "hostility_": "robbers", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:On 4 November, an anchored chemical tanker experienced an attempted boarding near position 03-54N 098-46E, Belawan Anchorage. Duty crew spotted one boat with robbers attempting to board the tanker via anchor chain but alert crew thwarted the bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-324", - "dateofocc": "2013-11-11", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "Chemical tanker Torm Kansas", - "descriptio": "INDIAN OCEAN:On 11 November, the Denmark-flagged chemical tanker TORM KANSAS was attacked near position 07-19S 048-36E, approximately 180 nm northwest of Providence Island, Seychelles. Up to six armed pirates approached the tanker in a skiff. Officer on", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.600000000298223, -7.316666699877828] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-50", - "dateofocc": "2015-03-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 18 March near position 01-16N 104-16E, three robbers boarded an underway bulk carrier. The duty crew noticed the robbers and informed the bridge. The alarm was raised and all of the crew mustered at the bridge. The master informed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.266666700241444, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-51", - "dateofocc": "2015-03-20", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "MALAYSIA:On 20 March near position 06-00N 119-13E, persons in four speed boats approached a bulk carrier underway. The master raised the alarm, called the Malaysian Navy via VHF channel, increased speed and took evasive maneuvers. The crew mustered and a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.216666699960456, 5.999999999640067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-52", - "dateofocc": "2015-03-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 20 March near position 01-14N 103-58E, four robbers boarded a bulk carrier underway. The duty engineer spotted the robbers and informed the bridge. Alarm was raised, the crew mustered and the master informed the Vessel Traffic Informa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-53", - "dateofocc": "2015-03-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply Vessel", - "descriptio": "NIGERIA:On 19 March near position 04-14N 008-02E, around 19 nm south of Kwa Ibo, six pirates armed with rifles boarded a supply vessel. The master raised the alarm and sent an SSAS alert. The crew mustered. Two crew members were kidnapped and ship's prop", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.033333299674268, 4.233333299911124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-54", - "dateofocc": "2015-03-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "SINGAPORE STRAIT:On 20 March near position 01-07N 103-34E, seven robbers with knives boarded an underway container ship. They robbed the 2nd engineer of his personal belongings, tied him up and escaped. The duty wiper on routine rounds noticed the 2nd en", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-55", - "dateofocc": "2015-03-23", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "COLOMBIA:On 23 March, two robbers boarded a sailing yacht near position 10-24N 075-32W, Club Nautico, Cartagena. The owner of the yacht yelled a warning at the robbers, who jumped overboard to escape.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.399999999602471] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-56", - "dateofocc": "2015-03-25", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Refrigerated Cargo Ship", - "descriptio": "IVORY COAST:On 25 March, four robbers boarded a berthed refrigerated cargo ship near position 05-15N 004-00 W, Fishing Port Berth DNP 23, Abidjan. The Second Officer on routine rounds noticed the padlock to the central store room missing. As he opened t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.999999999784052, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-57", - "dateofocc": "2015-03-23", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "SOMALIA:On 23 March, an Iranian-flagged fishing boat was reportedly hijacked while illegally fishing near Ceel Huur, in the Mudug region of the country. Initial reports suggested that local maritime police had arrested the illegal fishermen and impounded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.333333300168192, 5.0666667002709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-58", - "dateofocc": "2015-03-23", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Wood Chip Carrier", - "descriptio": "VIETNAM:On 23 March, robbers boarded an anchored wood chip carrier near position 20-43N 107-11E, Cailan Outer Anchorage. The robbers broke into the forward store room, stole ship's property and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.183333299778099, 20.716666699922655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-59", - "dateofocc": "2015-03-25", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 25 March, four robbers armed with knives boarded an anchored bulk carrier near position 20-41N 107-17E, 8.4 nm southeast of Hon Gai. When the duty officer raised the alarm, the robbers fled with some of the ship's stores. Agent and port author", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.283333300410845, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-60", - "dateofocc": "2015-03-12", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tug Boat", - "descriptio": "BANGLADESH:On 12 March, armed robbers boarded an anchored tug near position 22-06N 091-44E, Chittagong Anchorage and stole ship's stores and properties. The alarm was raised and crew mustered. As the crew approached the robbers, they threw stones at the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.099999999890883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-61", - "dateofocc": "2015-03-16", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 16 March, an unknown number of robbers boarded an anchored product tanker near position 17-38N 083-25E, Visakhapatnam anchorage. The robbers stole ship's stores and escaped unnoticed. The theft was detected the next morning.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.416666700061796, 17.633333300164622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-62", - "dateofocc": "2015-03-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 21 March, five robbers armed with a gun and knives boarded an anchored bulk carrier near position 03-56N 098-45E, Belawan Anchorage. They took hostage a duty crewman and tied him up. The robbers stole ship's stores from the paint locker and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-63", - "dateofocc": "2015-03-31", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Yachts", - "descriptio": "BRAZIL:During the last week of March, there were two boardings of sailing yachts near position 12-59S 038-42W, Ilha de Itaparica. One boarding occurred during night hours while the other occurred during the day. Four local individuals were reportedly arr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.69999999991694, -12.983333300177947] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-250", - "dateofocc": "2015-11-25", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "COLOMBIA:On 25 November, four robbers boarded an anchored sailing yacht in Taganga Bay near position 11-16N 074-12W. They assaulted the owners of the boat and stole money, electronics and other valuables before escaping.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.199999999716056, 11.266666699931818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-251", - "dateofocc": "2015-11-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cargo Ship", - "descriptio": "NIGERIA:On 26 November, pirates in two speedboats boarded the Cyprus-flagged cargo ship SZAFIR near position 04-00N 006-00E, 70 nm southwest of Port Harcourt. Eleven crewmen managed to retreat and secure themselves in the engine room. The pirates kidnapp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.999999999640067, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-252", - "dateofocc": "2015-12-01", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tug Boat", - "descriptio": "REPUBLIC OF THE CONGO:On 01 December at 0400 LT near position 04-45S 011-50E, Pointe Noire Anchorage, 3 persons in a boat approached and tried to board an anchored tug. An alert duty crewman directed the search light towards the boat. The alerted crew ap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.83333330033679, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-253", - "dateofocc": "2015-11-26", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "VIETNAM:On 26 November, five armed pirates boarded a Vietnamese fishing boat anchored approximately 30 nautical miles south of Suoi Ngoc Island near position 09-05N 115-27E. During the boarding, a Vietnamese fisherman was shot and killed while he was try", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.450000000166824, 9.083333299573326] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-254", - "dateofocc": "2015-11-25", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDIA:On 25 November, three robbers armed with knives in a small boat approached an anchored bulk carrier near position 17-03N 082-24E, Kakinada Anchorage. Two robbers boarded the ship and began to collecting ship's stores. A deck crewman on routine roun", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.400000000132252, 17.049999999862507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-255", - "dateofocc": "2015-11-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "INDONESIA:On 20 November, three persons in a wooden boat attempted to board a barge being towed by a tug near position 01-10N 103-40E, 2.1 nm north-northeast of Nipah Island. The Master raised the general alarm and made a PA announcement. All crew gather", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.666666700042128, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-256", - "dateofocc": "2015-12-02", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 2 December at 0615 LT in the Sikka Crude Tanker Anchorage, near position 22-40N 069-58E, 5 robbers armed with iron rods boarded an anchored product tanker. They entered the tank cleaning store by breaking the padlock. The duty AB on routine roun", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.966666699941584, 22.666666700120629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-257", - "dateofocc": "2015-12-04", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 4 December at 2100 LT in the Campha Outer Anchorage, near position 20-42N 107-10E, 6 robbers armed with long knives in a wooden boat approached an anchored bulk carrier. Three of the robbers boarded the vessel and threatened the crew on watch.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.166666699705672, 20.700000000025511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-258", - "dateofocc": "2015-12-08", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 8 December at 0020 LT in the Tianjin Anchorage near position 38-59N 117-51E, armed robbers with long knives in a wooden fishing boat approached an anchored bulk carrier. Three of the robbers boarded the vessel. The alerted crew spotted the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.850000000064597, 38.983333299910782] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-259", - "dateofocc": "2015-12-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 8 December at 1355 LT in the Belawan Anchorage near position 03-57N 098-47E, the duty watchman on routine rounds onboard an anchored chemical tanker noticed a person on the main deck. The watchman notified the watch officer who in turn raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.783333299686319, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-260", - "dateofocc": "2015-12-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "THAILAND:On 3 December near position 07-04N 098-22E, two pirates armed with guns hijacked a Thailand-flagged fishing vessel south of Phuket. The pirates abandoned the six crew members on a nearby island. The crew was subsequently rescued by a patrol boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.366666699780808, 7.066666700335588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-261", - "dateofocc": "2015-12-08", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Ore Carrier", - "descriptio": "CHINA:On 8 December, two robbers boarded an anchored ore carrier near position 38-42N 118-48E, in the Caofeidian Anchorage. The robbers were spotted by the duty oiler on the aft deck trying to open the diesel oil tank manhole cover. The oiler shouted at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.800000000230284, 38.699999999708268] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-262", - "dateofocc": "2015-12-15", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 15 December at 0800 LT in Vung Tau Anchorage near position 10-14N 107-02E, robbers boarded a container ship unnoticed. They boarded the vessel while the crew was busy preparing to anchor and stole ship's stores. The theft was noticed during ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-214", - "dateofocc": "2016-09-10", - "subreg": "73", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "PAPUA NEW GUINEA:On 10 September, eight robbers boarded a boat and stole personal property in the vicinity of Madang, 05-02S 145-56E. Several of the passengers jumped overboard and swam ashore to Pig Island where they alerted police. Local authorities we", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [145.933333299907076, -5.033333299785909] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-215", - "dateofocc": "2016-09-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 14 September at 1500 LT in 22-13.5N 091-41.2E, at Chittagong, duty crew on an anchored bulk carrier noticed the store room broken into. Upon alerting the crew and carrying out a search, it was noticed that mooring gang employed onboard the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.683333299726485, 22.233333299593937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-216", - "dateofocc": "2016-09-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "INDONESIA:On 09 September between 0001Z and 0600Z in 00-43N 104-10E, at Galang Batam, the chief engineer on an anchored OSV noticed the spare cabinet and lockers broken into with some items missing. Incident reported to authorities who boarded and inspec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 0.71666670017521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-217", - "dateofocc": "2016-09-21", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "GUINEA:On 21 September, six robbers armed with guns fired upon and boarded the container ship WINDHOEK, anchored near position 09-18N 013-45W, Conakry Anchorage. Ship's Master activated the SSAS alert, raised the alarm and locked the accommodation area.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.74999999987449, 9.2999999998367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-218", - "dateofocc": "2016-09-16", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 16 September at approximately 2:50am, suspected sea robbers attempted to board tanker HANZE KOCHI vicinity 03-28N 005-59W, 50 nm off Bayelsa State, Nigeria. Due to naval personnel engagement, the sea robbers were not able to board the ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-5.983333299951539, 3.466666700039298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-219", - "dateofocc": "2016-09-20", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Fishing Trawler", - "descriptio": "BANGLADESH:On 20 September, 47 fishermen were abducted and 25 trawlers were looted by forest robbers in the Sundarbans in Bangladesh, vicinity 21-33N 088-47E. The robbers beat the fisherman and then demanded ransom. It is notable that in the past 12 days", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.783333300262257, 21.549999999558338] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-220", - "dateofocc": "2016-09-18", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Trawler", - "descriptio": "BANGLADESH:On 18 September, 15 fishermen from 15 different trawlers were kidnapped by pirate gangsin a river near Bhola, Bangladesh, vicinity 22-15N 090-52E. The kidnappers took three mobile phones, cash and also demanded a large ransom for each of the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.866666699987945, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-221", - "dateofocc": "2016-09-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "INDONESIA:On 16 September, the chief engineer conducting routine rounds on a vessel anchored near position 00-43N 104-10E, Galang, Batam, noticed the spares cabinet and lockers broken into and some items missing. The incident was reported to the authorit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 0.71666670017521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-222", - "dateofocc": "2016-09-23", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "MOROCCO:On 23 September at 0145 LT in 33-36N 007-37W, port of Casablanca, duty crew onboard an anchored bulk carrier observed two suspicious persons hiding on the jetty. The persons attempted to board the vessel at four different times but were unsuccess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-7.616666699977486, 33.599999999813178] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-223", - "dateofocc": "2016-09-22", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VENEZUELA:On 22 September at 2350 LT in 10-09.7N 064-46.8W, at Barcelona anchorage, four small fishing vessels engaged in fishing around an anchored tanker. Robbers disguised as fisherman boarded the tanker, stole ship's property and escaped unnoticed. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.783333299694732, 10.166666700166047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-224", - "dateofocc": "2016-09-26", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "VIETNAM:On 26 September at 1920Z in 10-15.3N 107-01.0E, at Vung Tau anchorage, routine rounds onboard an anchored cargo ship noticed three robbers near the paint locker. Two robbers stole paint drums, while the third acted as a lookout. Fearing for his s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.016666700105532, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-225", - "dateofocc": "2016-09-28", - "subreg": "83", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "TONGA:Escaped offender on stolen 40 foot S/V Sea Oak. Vessel was on transit between Vavau(18-36S 173-59W) and Toku Island (18-09S 174-12W).", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-173.99999999988583, 2.000000000410012] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-226", - "dateofocc": "2016-09-27", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA: On 27 September vicinity 05-10N 119-17E, NE Sabah state, a group of armed men boarded a fishing boat and kidnapped the captain. The six-member group used white speedboat with green and yellow stripes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.283333299899596, 5.166666700004328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-227", - "dateofocc": "2016-09-27", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 27 September, vicinity 05-10N 119-17E, NE Sabah state, a group of armed men boarded a fishing vessel and looted the vessel. The six-member group of men used a white speedboat with green and yellow stripes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.283333299899596, 5.166666700004328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-228", - "dateofocc": "2016-09-02", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "HAITI:On 02 September at 0200 LT vicinity 18-35N 072-20W, Port Au Prince anchorage, two robbers boarded an anchored bulk carrier. They threatened the crew with a long knife and stones. The alarm was raised and the crew mustered. Seeing the alert crew, th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.333333300253685, 18.583333300330253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-164", - "dateofocc": "2014-07-05", - "subreg": "92", - "hostility_": "Armed robebrs", - "victim_d": "Fishing boat", - "descriptio": "PHILIPPINES:On 5 July, armed persons in a small motorboat approached and fired upon a fishing boat near position 06-58N 118-30E, vicinity of Mapun de Tawi-Tawi. The fishermen jumped into the water to save their lives and were able to swim back to their b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.500000000130626, 6.966666699702841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-165", - "dateofocc": "2014-07-04", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 4 July, pirates hijacked the product tanker MORESBY 9 while underway near position 03-23N 105-08E, approximately 34 nm west-northwest of Anambas Island. The pirates took hostage the crew and damaged the communications equipment. Owners repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.133333299846697, 3.38333330037824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-166", - "dateofocc": "2014-07-11", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Fishing boat", - "descriptio": "SURINAME:On 11 July, armed men attacked and boarded a Guyanese fishing boat off Suriname. At least four crew members are still unaccounted for and the captain of the boat survived by clinging to floating debris after being thrown overboard by the attacke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-54.450000000201499, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-167", - "dateofocc": "2014-07-10", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "TRINIDAD AND TOBAGO:On 10 July, robbers boarded an underway tanker in the vicinity of Port of Spain. Eight to ten men reportedly boarded the ship from the stern using three small fishing boats. The men were armed with machetes, knives, one 9mm pistol, an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.566666700058477, 10.633333299938215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-168", - "dateofocc": "2014-07-15", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 15 July, product tanker ORIENTAL GLORY, enroute from Singapore to Sandakan, Malaysia was hijacked near position 01-44N 105-07E, 44 nm north-northeast of Pulau Bintan. Pirates stole part of the cargo, nearly 2,500 metric tons of gas oil, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.116666699774271, 1.733333300279924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-169", - "dateofocc": "2014-07-15", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "LPG tanker", - "descriptio": "INDONESIA:On 15 July, robbers boarded an anchored LPG tanker near position 01-29N 104-43E, 17 nm north-northeast of Pulau Bintan. The robbers were able to board the ship unnoticed and escape with ship's property and spare parts. Duty motorman noticed foo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.716666699941186, 1.483333300047036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-170", - "dateofocc": "2014-07-09", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "General cargo ship", - "descriptio": "INDONESIA:On 9 July, robbers boarded an underway general cargo ship near position 01-59N 108-28E, approximately 37 nm west-southwest of Pulau Merundung. The robbers briefly took the Master hostage, stole his personal properties, and escaped. During the i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.466666699837674, 1.983333299613548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-171", - "dateofocc": "2014-07-09", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 9 July, six robbers boarded an anchored product tanker near position 01-27N 104-38E, approximately 13 nm north-northeast of Pulau Bintan. Duty crewman on routine rounds noticed the robbers on the stern and informed the duty officer who raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-172", - "dateofocc": "2014-07-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Oil Rig and Gunboat", - "descriptio": "NIGERIA:On 23 July, armed criminals attacked an oil rig in Gbarain, in Southern Ijaw Local Government Area of the state. The gunmen approached the facility and opened fire on the policemen, who had taken strategic positions and repelled the attempt, kill", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.933333299876153, 4.466666700071642] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-173", - "dateofocc": "2014-07-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Passenger Boat", - "descriptio": "NIGERIA: On 20 July, gunmen suspected to be sea pirates attacked a passenger boat on the Ogbia-Nembe in Bayelsa State waterways, killed two persons and stole cash and valuables from boat passengers. According to news reports, the boat ran into a robbery", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.333333299709238, 4.783333300243669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-174", - "dateofocc": "2014-07-13", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 13 July, pirates boarded unnoticed on an underway product tanker near position 02-01N 104-29E, 24 nm south of Pulau Aur. Duty Officer saw a small boat maneuvering near the vessel and raised the alarm. Seeing alerted crew, the pirates escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.483333299780725, 2.016666700307155] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-149", - "dateofocc": "2014-06-17", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 17 June, the product tanker ARSENAL and accompanying tug PAWAI reportedly went missing. The two vessels last known position was near 01-31N 104-29E, approximately 12 nm east of Bandar Penawar, Malaysia.UPDATE:Product tanker ARSENAL is unlikel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.483333299780725, 1.516666699841323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-263", - "dateofocc": "2015-12-16", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "DR CONGO:On 16 December, two robbers armed with knives in a boat boarded an anchored general cargo ship near position 05-50S 013-25E, Matadi Anchorage. Five accomplices waited in the boat. When the robbers were spotted by the duty crewmen the robbers fle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.416666699596647, -5.833333300351399] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-264", - "dateofocc": "2015-11-13", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 13 November 5 robbers armed with knives boarded a berthed bulk carrier during cargo operations near position 06-04S 106-51E, Berth 115, Jakarta Port. They were noticed by the crew who raised the alarm. Upon seeing the alerted crew, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.849999999708871, -6.066666699612597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-265", - "dateofocc": "2015-12-16", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 16 December, an unknown number of robbers boarded an anchored bulk carrier during cargo operations near position 20-50N 107-20E, Campha Anchorage. The robbers were able to steal ship's properties and escape unnoticed. The theft was noticed by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.333333300277559, 20.833333299728508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-266", - "dateofocc": "2015-12-09", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH:On 9 December two pirate gangs attacked several groups of fishermen in the Sundarbans near position 21-25N 089-11E and kidnapped approximately 100 fishermen. There were 22 boats carrying the attackers, reportedly from the Jahangir Bahini pirat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.183333300095285, 21.416666699855341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-267", - "dateofocc": "2015-12-14", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 14 December, a duty officer onboard an anchored bulk carrier noticed a suspicious boat alongside the starboard quarter of the vessel near position 38-19N 118-20E, Tianjin Anchorage. The duty officer informed the Master. The alarm was raised and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.333333299734022, 38.316666699772384] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-268", - "dateofocc": "2015-12-05", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "DR CONGO:On 5 December, three robbers boarded an anchored bulk carrier via the anchor chain near position 04-45S 011-47E, Pointe Noire Anchorage. The duty crewman on routine rounds noticed the robbers, raised the alarm and the crew was mustered. Upon see", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.7833332995707, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-269", - "dateofocc": "2015-12-18", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 18 December, five robbers armed with guns in a speed boat approached and attempted to board an underway bulk carrier near position 05-57N 119-50E, 6.8 NM northwest of Doc Can Island. The second officer increased speed and commenced evasive", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.833333300232198, 5.949999999773297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-270", - "dateofocc": "2015-12-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 24 December near position 22-46N 070-02E, Kandla Anchorage, robbers boarded an anchored tanker unnoticed. They stole ship's properties and escaped. The incident was discovered later in the day.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.033333299880667, 22.766666699854056] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-271", - "dateofocc": "2015-12-27", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 27 December at 2200 LT near position 03-44S 114-26E, Taboneo Anchorage, four boats approached an anchored bulk carrier. One robber climbed the anchor chain and tried to enter through the hawse pipe. The robbers were spotted by the duty crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.733333299653964] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-272", - "dateofocc": "2015-12-29", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 29 December at 0255 LT near position 38-48N 118-16E, the Caofeidian Anchorage, five robbers in a large boat came alongside an anchored bulk carrier. They attempted to board the vessel. However, the alerted crew spotted the boat and raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.266666699794882, 38.800000000341072] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-273", - "dateofocc": "2015-12-09", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Yachts", - "descriptio": "ST MARTIN:On 9 December near position 18-04N 063-06W, Nettle Bay, two sailing yacht crews reported having a small boat and outboard motor stolen while they were anchored. In both instances, the thieves cut through the heavy steel chains and locks securin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.099999999626846, 18.066666699791995] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-274", - "dateofocc": "2015-12-20", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "TRINIDAD AND TOBAGO:On 20 December, an 80-foot sailing yacht sailing from Chaguaramas, Trinidad Island to Port Louis Grenada was boarded in the vicinity of the Hibiscus Gas Platform, approximately 30 miles north of Trinidad Island near position 11-08N 06", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.516666700191706, 11.133333300404047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-275", - "dateofocc": "2015-12-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Fishermen", - "descriptio": "BANGLADESH:On 24 December, robbers kidnapped three fishermen from a group fishing approximately 50 nm south-west of Kuakata near position 20-50N 88-46E. The robbers later attacked another group of fishermen, stealing their outboard motor and leaving them", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.76666670018983, 20.833333299728508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-276", - "dateofocc": "2015-12-19", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 19 December, an unknown number of robbers boarded an anchored tanker unnoticed near position 14-35N 120-49E, Manila Anchorage. The robbers stole ship's properties and escaped. The incident was discovered later in the day.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.816666700192059, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-277", - "dateofocc": "2015-12-01", - "subreg": "73", - "hostility_": "Robbers", - "victim_d": "Yacht", - "descriptio": "PAPUA NEW GUINEA:On 1 December, a 60-foot Sweden-flagged yacht on a circumnavigation of the world arrived at Wewak, East Sepik Province near position 03-31S 143-37E. During the first night at anchor, the yacht was boarded by approximately 10 armed robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [143.616666699670418, -3.516666700114683] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-1", - "dateofocc": "2016-01-01", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 01 January during the early morning hours near position 38-48N 118-19E in the Tianjin Outer Anchorage, in foggy conditions robbers boarded an anchored bulk carrier unnoticed. They opened the aft diesel oil tank and stole part of the oil. The rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.316666699661596, 38.800000000341072] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-2", - "dateofocc": "2015-12-30", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 30 December at 0015 LT near position 22-37N 069-55E in Sikka Anchorage, two robbers in a small fast craft boat boarded an anchored tanker. The duty crew noticed the robbers, raised the alarm which mustered the crew. Upon seeing the alerted crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.91666670007487, 22.616666700253916] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-3", - "dateofocc": "2016-01-04", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Unidentified Vessel", - "descriptio": "CONGO:On 4 January, three robbers boarded an anchored vessel near position 04-47S 011-52E, Pointe Noire Anchorage. The duty crewmen spotted the robbers on deck and raised the alarm. The robbers jumped overboard and escaped in their rowboat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.866666700131077, -4.783333299553021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-4", - "dateofocc": "2015-12-27", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 27 December an unknown number of pirates attacked an anchored tanker near position 05-35N 005-00E, approximately 10 nm west of Warri. The attack was reportedly repelled by an onboard detachment of Nigerian Navy personnel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.999999999607724, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-5", - "dateofocc": "2016-01-12", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Merchant Ship", - "descriptio": "NIGERIA:On 12 January near position 06-17N 003-12E, a merchant ship in the Lagos Secure Anchorage Area reported to local authorities of being followed by five men in a speedboat. The merchant ship soon after reported that they had seen two men in the rud", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.19999999990921, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-6", - "dateofocc": "2016-01-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vehicle Carrier", - "descriptio": "NIGERIA:On 19 January near position 03-52N 005-33E, 1000 - 1300 LT, around 37 NM SW of Bayelsa, pirates in two speed boats chased and fired on an underway vehicle carrier. The master raised the alarm and the SSAS. The crew mustered and activated the wate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.549999999940269, 3.866666699872383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-7", - "dateofocc": "2016-01-13", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "BELIZE:On 13 January near position 17-15N 088-05W, four robbers armed with guns boarded an anchored sailing yacht near Middle Long Cay. The robbers sexually assaulted a female passenger and stole cash, electronics, passports and an outboard motor.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.083333299638866, 17.250000000228681] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-8", - "dateofocc": "2016-01-20", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Unknown Vessel", - "descriptio": "COTE D'IVOIRE:On 20 January, two robbers armed with knives boarded an anchored vessel near position 05-13N 004-02W, Abidjan Anchorage. The robbers were spotted on the aft deck by duty crewmen, who then raised the alarm. The robbers escaped with mooring l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.033333299753622, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-9", - "dateofocc": "2016-01-19", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Unknown Vessel", - "descriptio": "CONGO:On 19 January, two robbers with knives boarded an anchored vessel near position 04-45S 011-50E, Pointe Noire Anchorage. The robbers were spotted by a duty crewman, who raised the alarm. The robbers were able to escape with ship's properties.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.83333330033679, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-10", - "dateofocc": "2016-01-09", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Oil Platform", - "descriptio": "NIGERIA:On 9 January, a speedboat with five armed men approached the AUNTU JULIE oil platform in the Coinoil Oil Field, near position 04-25N 005-35E. The MV SUNSHINE, the security vessel for the area approached the speed boat. Both boats briefly exchange", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 4.416666700204928] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-11", - "dateofocc": "2016-01-15", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Offshore Support Vessel", - "descriptio": "INDONESIA:On 15 January, four robbers boarded an anchored offshore support vessel near position00-44N 104-09E, Galang Anchorage, Batam. The duty oiler noticed the robbers via the security camera and informed the duty officer. The alarm was raised and the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.149999999711497, 0.73333330024758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-12", - "dateofocc": "2016-01-11", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDIA:On 11 January, an unknown number of robbers boarded an anchored bulk carrier near position 22-46N 069-59E, Kandla OTB Anchorage, Kandla Port. The robbers were able to steal ship' stores and escape unnoticed. The theft was noticed by the crew while", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.983333300013953, 22.766666699854056] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-13", - "dateofocc": "2016-01-11", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDIA:On 11 January, eight robbers boarded an anchored chemical tanker near position 22-46N 070-02E, Kandla Anchorage. They were noticed near the forecastle store room armed with knives. The duty crewman raised the alarm and crew mustered on the bridge.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.033333299880667, 22.766666699854056] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-338", - "dateofocc": "2013-11-24", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:On 24 November, an anchored chemical tanker experienced an attempted boarding near position 01-42N 101-29E, Dumai anchorage. Robbers attempted to board the vessel via the poop deck and were spotted by alert crew who raised the alarm and started", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-340", - "dateofocc": "2013-11-22", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "PRODUCT TANKER", - "descriptio": "INDONESIA:On 22 November, an anchored product tanker experienced a boarding near position 01-41N 101-27E, Dumai Port. The robbers boarded the ship unnoticed during cargo operations. They stole engine spare parts and escaped. The theft was noticed during", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-341", - "dateofocc": "2013-11-26", - "subreg": "27", - "hostility_": "ROBBERS", - "victim_d": "YACHT", - "descriptio": "GRAND CAYMAN:On 26 November, robbers boarded a moored yacht near position 19-20N 081-21W, West Bay, Grand Cayman and stole an outboard motor and navigation equipment. The incident was reported to local police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.350000000441867, 19.333333300129652] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-342", - "dateofocc": "2013-11-25", - "subreg": "61", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "KENYA:On 25 November, robbers boarded a berthed container ship at position 04-04S 039-41E, Mombasa Container Port and stole ship's stores. The theft was detected during routine rounds by the duty crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.683333299843468, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-343", - "dateofocc": "2013-12-02", - "subreg": "93", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER VESSEL", - "descriptio": "VIETNAM:On 2 December, robbers boarded a drifting container vessel near position 20-37N 107-10E, near Norway Islands, Haiphong and stole ship's property. The theft was noticed by the duty crew during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.166666699705672, 20.616666700189228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-344", - "dateofocc": "2013-12-01", - "subreg": "71", - "hostility_": "ROBBER", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 1 December, a robber armed with a knife boarded an anchored tanker conducting STS operations near position 01-06N 103-38E, Nipah Anchorage. When the duty crewman saw the robber during routine rounds, he notified the duty officer who raised t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-345", - "dateofocc": "2013-11-29", - "subreg": "71", - "hostility_": "SUSPICIOUS CRAFT", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 29 November, the crew of an anchored tanker near position 01-06N 103-36E, Nipah Anchorage, noticed a speedboat approaching their vessel. The crew raised the alarm resulting in the speedboat departing the area.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-346", - "dateofocc": "2013-11-27", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "OIL TANKER", - "descriptio": "INDONESIA:On 27 November, three robbers with knives boarded an anchored oil tanker near position 1-06N 103-38 E, Nipah Anchorage. When the duty crewman on routine rounds spotted the robbers, he informed the duty officer who raised the alarm. Seeing the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-347", - "dateofocc": "2013-11-23", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "GENERAL CARGO SHIP", - "descriptio": "INDONESIA:On 23 November, three robbers with knives boarded an anchored general cargo ship near position 05-59S 105-55 E, Tanjung Priok Anchorage. They entered the engine room through the boiler platform located on the poop deck. One of the robbers took", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.916666700339761, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-348", - "dateofocc": "2013-11-16", - "subreg": "71", - "hostility_": "ROBBER", - "victim_d": "PRODUCT TANKER", - "descriptio": "INDONESIA:On 16 November, the duty officer on an anchored product tanker near position 03-54N 098-46E, Belawan Anchorage, noticed a small wooden boat near the vessel. The crew members subsequently searched the tanker and found a robber stealing ship stor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-349", - "dateofocc": "2013-12-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "BULK CARGO SHIP", - "descriptio": "GULF OF ADEN:On 9 December at 0348 UTC, five suspected armed pirates in a skiff approached a bulk cargo ship near position 12-52N 047-52E, approximately 122 nm northwest of Bosaso, Somalia. The master raised alarm, activated fire hoses, sounded ship's ho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.866666700395967, 12.866666700163421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-350", - "dateofocc": "2013-12-09", - "subreg": "62", - "hostility_": "PIRATES", - "victim_d": "TANKER", - "descriptio": "GULF OF ADEN:On 9 December at 0330 UTC, five suspected pirates in a skiff attacked a tanker near position 12-50N 047-49E, approximately 122 nm northwest of Bosaso, Somalia. The Master raised alarm, activated fire hoses, increased speed, took evasive mane", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.816666699629934, 12.833333300369134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-351", - "dateofocc": "2013-12-10", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 10 December, five robbers boarded an anchored tanker near position 01-25N 104-41 E, near Palau Bintan while the crew was busy performing tank cleaning procedures. The duty engineer in the engine room noticed the robbers and informed bridge w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-176", - "dateofocc": "2014-07-25", - "subreg": "57", - "hostility_": "Suspicious boat", - "victim_d": "General cargo vessel", - "descriptio": "TOGO:On 25 July, a boat with eight persons aboard was seen to suspiciously approach an anchored general cargo vessel near position 06-05N 001-16E, Lome Anchorage. Master raised the alarm, alerted crew and authorities and sounded the ship's horn. Seeing t", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.266666699608436, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-177", - "dateofocc": "2014-07-23", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "RED SEA:On 23 July, A tanker underway in a narrow part of the Bab el Mandeb observed a suspicious vessel on a converging course near position 12-33N 043-27E, 5 nm southeast of Perim Island. As this vessel closed to a distance of 1 nm, a skiff appeared fr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.4499999996371, 12.550000000166619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-178", - "dateofocc": "2014-07-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "MALAYSIA:On 25 July, Ten robbers armed with guns and knives boarded the anchored product tanker JI XIANG near position 01-19N 104*15E, 2 nm south of Teluk Ramunia, Johor. They stole crew personal belongings and cash and escaped. During the robbery, one c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.250000000344244, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-179", - "dateofocc": "2014-07-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 25 July, four robbers in a speed boat approached an anchored product tanker near position 03-55N 098-45E, Belawan Anchorage. One of the robbers made an attempt to board the tanker but aborted it and moved away upon seeing the duty Bosun. Soo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-180", - "dateofocc": "2014-07-25", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 25 July, Three armed robbers in a wooden boat approached and boarded an anchored bulk carrier near position 00-15N 117-34E, Muara Berau Anchorage. They took hostage a duty crewman and tied him up. He managed to escape and informed the duty o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, 0.249999999678892] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-181", - "dateofocc": "2014-07-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "BANGLADESH:On 24 July, three robbers boarded an anchored tanker near position 22-10N 091-46E, Chittagong Anchorage. Ship's alarm raised, all crew mustered and Port Control notified. Seeing the crew alertness, the robbers escaped with stolen ship's proper", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-182", - "dateofocc": "2014-07-19", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 19 July, Four robbers in a fishing boat boarded an anchored tanker via the anchor chain near position 13-44N 121-02E, Batangas Anchorage 'A'. Duty crewmen on routine rounds spotted the robbers and raised the alarm. The robbers escaped with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-183", - "dateofocc": "2014-08-04", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "DEMOCRATIC REPUBLIC OF CONGO:On 4 August, two robbers in a small boat attempted to board an anchored bulk carrier using grappling hooks and ropes near position 05-52S 013-24E, Matadi Inner Anchorage. Duty crew noticed the robbers and raised the alarm. Se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.399999999699503, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-184", - "dateofocc": "2014-07-31", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:On 31 July, seven robbers armed with knives boarded an anchored container ship via the stern deck near position 22-10N 091-46E, Chittagong Anchorage. Duty crew spotted the robbers stealing ship's stores and raised the alarm. As the crew muster", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-185", - "dateofocc": "2014-08-09", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Underway vessel", - "descriptio": "GULF OF GUINEA:On 9 August, up to three small boats approached, and fired upon the underway vessel transiting 200 nautical miles south of the Nigerian shoreline. The ship's crew reported hearing multiple gun shots, including automatic gunfire coming from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.116666700169958, 0.933333299714491] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-186", - "dateofocc": "2014-08-11", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 11 August, four robbers in a wooden boat boarded an anchored chemical tanker near position 03-54N 098-46E, Belawan Outer Anchorage. One of the robbers boarded the vessel and attempted to steal ship's stores from the forecastle store. Duty cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-187", - "dateofocc": "2014-08-08", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 8 August, two robbers boarded an anchored bulk carrier near position 00-17S 117-41E, Muara Berau Anchorage. Duty crewman spotted the robbers and raised the alarm. Seeing the crew's alertness, the robber escaped. Upon searching the vessel it", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.683333299667993, -0.283333299857134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-64", - "dateofocc": "2015-04-01", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Anchored Ship", - "descriptio": "GUINEA:On 1 April, six robbers boarded an anchored ship near position 09-30N 013-42W, 2.7 nm south of the fairway buoy at Conakry. An alert deck officer sounded the general alarm and informed the captain. The deck watch informed the watch officer that th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.700000000007776, 9.500000000202874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-65", - "dateofocc": "2015-03-21", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "FPSO", - "descriptio": "NIGERIA:On 21 March, six armed pirates boarded an anchored Floating, Production, Storage and Offloading ship near YOHO position 04-02N 007-31E, 36 nm southeast of the Bonny Islands. The pirates entered the accommodation area, but were deterred by the sou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.516666700035387, 4.033333300444269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-66", - "dateofocc": "2015-03-30", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Dredger", - "descriptio": "INDIA:On 30 March, four robbers in a fishing boat approached an anchored dredger near position 16-59N 082-18E, Kakinada Inner Anchorage. Two robbers boarded the ship. They were noticed by the 2nd Officer on routine rounds, who informed the bridge and rai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.300000000398825, 16.983333300098593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-67", - "dateofocc": "2015-03-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "INDONESIA:On 29 March, three robbers boarded a cargo ship near position 01-05N 103-35E, 3.8 nm south-southwest of Nipah Island. Duty crewman saw the robbers and raised the alarm. The crew mustered on the bridge and all the water tight doors were secured.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-68", - "dateofocc": "2015-03-25", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "THAILAND:On 25 March, four robbers armed with knives boarded a berthed bulk carrier near position 13-17N 100-31E, Dolphin Buoy No.16, Bangkok. Crewmembers raised the alarm and mustered. Seeing the crew response, the robbers fled with stolen ship's proper", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.516666700344956, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-69", - "dateofocc": "2015-03-22", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Tug Boat", - "descriptio": "MALAYSIA:On 22 March, ten pirates armed with guns and knives hijacked a tug towing a barge near position 02-51N 104-31E, 18 nm east of Tioman Island. They entered the bridge and apprehended the bridge team, then took them to the Chief Engineer's cabin wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.516666699575012, 2.849999999942838] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-70", - "dateofocc": "2015-04-01", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "On 1 April near position 09-15N 013-43W, Conakry Anchorage, Guinea, six robbers in a blue hulled fishing boat attempted to board an anchored container ship using a hook attached to a long pole. One of the robbers pointed a gun towards the Duty Watchman w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.249999999969987] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-71", - "dateofocc": "2014-04-03", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "MALAYSIA:On 3 April near position 05-48N 118-05E, Berth NO. 4, Sandakan Port. Two robbers boarded a berthed general cargo ship. The alarm was raised and the crew mustered. Seeing the alerted crew, the robbers escaped with stolen ship's properties. Local", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-72", - "dateofocc": "2015-03-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 19 March, three robbers boarded an underway bulk carrier near position 01-16N 104-16E, 5.5 nm north of Batam Island. Duty crewman noticed the robbers and informed the bridge. The alarm was raised and the entire crew mustered at the bridge. T", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.266666700241444, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-73", - "dateofocc": "2015-04-01", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Petroleum Product Tanker", - "descriptio": "INDONESIA:On 1 April, up to 25 pirates armed hijacked the underway petroleum product tanker MT DONGFANG GLORY near position 02-09N 107-32E, 62 nm north of Pulau Uwi. They took the crew hostage, damaged all the bridge equipment, and stole crew personal be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.53333329974447, 2.150000000010152] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-74", - "dateofocc": "2015-03-15", - "subreg": "28", - "hostility_": "Pirates", - "victim_d": "Sailboat", - "descriptio": "HONDURAS:On 15 March, four armed pirates hijacked a rented sailboat enroute from Belize to the Honduran island of Roatan. The pirates threatened the married couple and the boat captain with violence, and grounded the sailboat in Escondido Bay, in Jeanett", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-87.399999999603324, 15.833333299566789] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-14", - "dateofocc": "2016-01-07", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 7 January, three robbers boarded an anchored bulk carrier near position 20-43N 107-09E, Hon Cam anchorage. During routine rounds, a duty crewman heard voices near the forecastle. As he approached to investigate he saw the three men with knives", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.149999999808529, 20.716666699922655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-15", - "dateofocc": "2016-01-05", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 5 January, an unknown number of robbers boarded an anchored bulk carrier near position 20-41N 107-10E, Hong Gai Anchorage. The robbers stole ship's stores and escaped unnotic Ved. The theft was discovered by duty crewmen later in the day.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.166666699705672, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-16", - "dateofocc": "2016-01-28", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 22 January, a bulk carrier reported being followed near position 05-15N 003-13E, approximately 70 nm south of Lagos. The ship was reportedly followed at a distance of 7 miles and lost the suspicious vessel after a speed increase and course cha", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.216666699806353, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-17", - "dateofocc": "2016-01-23", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDIA:On 23 January, a duty crewman onboard an LPG tanker anchored near position 17-39N 083-24E, Visakhapatnam Anchorage on routine rounds, noticed foot marks on the upper deck aft area. Alarm raised and a thorough search was made. It was reported that", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.400000000164596, 17.650000000061766] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-18", - "dateofocc": "2016-01-25", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "VENEZUELA:On 25 January, an unknown number of robbers boarded an anchored general cargo ship near position 10-16N 064-34W, Guanta Anchorage. The robbers were able to steal ship's properties and escape unnoticed. The incident was noticed later by the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.566666700155452, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-19", - "dateofocc": "2016-01-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 29 January, the tanker LEON DIAS was reportedly hijacked near Brass near position 04-16N 006-14E. Subsequent media reports indicate that the ship has been released, after five crewmen including the ship's Captain, were kidnapped. Two Filipinos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.233333299975811, 4.266666699705411] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-20", - "dateofocc": "2016-01-15", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug Boat", - "descriptio": "NIGERIA:On 15 January, ten pirates in a speedboat chased and fired upon an underway tug near position 04-05N 005-25E, 30 nm southwest of Bayelsa. The crew locked themselves in the safe area of the ship. The pirates then boarded the tug, damaged its navig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.416666700237272, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-21", - "dateofocc": "2016-02-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "LNG Tanker", - "descriptio": "NIGERIA:On 5 February near position 04-10N 006-58E around 0720 LT, about 16 nm sw of Bonny Island, approximately seven people wearing dark boiler suits with red caps in a speed boat chased and attempted to board an underway LNG tanker. The alarm was rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.966666699702841, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-22", - "dateofocc": "2016-02-02", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "GUYANA:On 5 February, robbers boarded an anchored container ship near position 06-49N 058-11W, Georgetown Port Anchorage. A duty crewman spotted the robbers near the paint locker and raised the alarm. The Ship Master notified the Coast Guard and a boat w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.183333300200786, 6.816666700102644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-23", - "dateofocc": "2016-02-03", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PERU:On 3 February, seven robbers in two speedboats came alongside an anchored product tanker near position 12-00S 077-12W, Callao Port Anchorage. Two robbers boarded the vessel but were spotted by the alert crew resulting in the robbers escaping without", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.000000000042746] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-24", - "dateofocc": "2016-02-05", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "NIGERIA:On 5 February, 6 robbers boarded the Singapore-flagged container ship SAFMARINE KURAMO near position 04-02N 006-54E, 60 nm south west of Bonny River. A Nigerian Navy ship responded to the boarding causing the robbers to flee the ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.899999999938927, 4.033333300444269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-25", - "dateofocc": "2016-02-09", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "DEMOCRATIC REPUBLIC OF THE CONGO:On 09 February near position 05-52S 013-02E at 0210 LT, Boma Anchorage, four robbers armed with knives in a motor boat approached and boarded an anchored bulk carrier. The duty crew on watch noticed the robbers and in for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.033333299835988, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-26", - "dateofocc": "2016-02-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "IVORY COAST:On 11 February at 2100 UTC near position 04-00N 004-00W, around 70 NM south of Abidjan, reports were received that approximately 6 pirates attacked an underway tanker. The tanker is missing and the fate of the crew is unknown.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.999999999784052, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-27", - "dateofocc": "2016-02-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 11 February at approximately 1500 UTC near position 03-36N 005-35E, around 56 NM SW of Bayelsa, reports were received that an unknown number of pirates attacked an underway tanker. Nigerian authorities were notified. The tanker is missing and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 3.599999999742295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-352", - "dateofocc": "2013-12-07", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 7 December, four robbers armed with knives boarded anchored tanker conducting STS operations near position 01-07N 103-35 E, Nipah Anchorage. Upon discovering the robbers, the duty engineer raised the alarm. Seeing the crew response, the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-353", - "dateofocc": "2013-12-05", - "subreg": "72", - "hostility_": "ROBBER", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 5 December, a robber attempted to board an anchored bulk carrier near position 03-43S 114-25E, Taboneo Anchorage via the hawse pipe. Duty crew on routine rounds saw the robber and immediately informed the duty officer who raised the alarm. U", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.716666699581538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-354", - "dateofocc": "2013-12-04", - "subreg": "63", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDIA:On 4 December, three robbers boarded an anchored bulk carrier near position 22-47N 070-05E, Kandla Anchorage. The Officer on Watch spotted the robbers and raised the alarm. Seeing crew response, the robbers escaped with stolen ship property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.083333299747437, 22.783333299926483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-355", - "dateofocc": "2013-12-16", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "PRODUCTS TANKER MT. ALTHEA", - "descriptio": "NIGERIA:On 16 December, ten pirates attacked the Marshall Islands-flagged oil products tanker MT ALTHEA and its 18 crewmembers approximately 35 nm off the Niger Delta. After boarding the vessel, the pirates kidnapped the Ukrainian captain and a Greek eng", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.416666700269616, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-356", - "dateofocc": "2013-12-03", - "subreg": "57", - "hostility_": "PIRATES", - "victim_d": "CARGO VESSEL", - "descriptio": "CAMEROON:On 3 December, pirates boarded a coastal cargo vessel near position 04-20N 08-45E, approximately 10 nm off the Cameroon coast. Two speedboats with eight pirates in each boat attacked the vessel and briefly board the vessel before a security team", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.750000000403475, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-357", - "dateofocc": "2013-12-18", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:On 18 December, three robbers boarded an anchored bulk carrier near position 00-15S 117-35E, Muara Berau Anchorage, Samarinda. They broke into the forward store and stole ship property. The robbers departed the area in their wooden boat after t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-358", - "dateofocc": "2013-12-16", - "subreg": "72", - "hostility_": "ROBBER", - "victim_d": "CRUDE OIL TANKER", - "descriptio": "INDONESIA:On 16 December, a robber boarded an anchored crude oil tanker near position 00-06S 117-34E, Santan Anchorage. Upon discovering the robber, the bridge raised the alarm which caused the robber to flee. The crew subsequently searched the ship and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.100000000287423] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-359", - "dateofocc": "2013-12-12", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:On 12 December, three to four robbers boarded an anchored tanker near position 01-06N 103-37E, Nipah Anchorage. They were immediately spotted by the duty officer who raised the alarm. Upon seeing the crew response, the robbers fled in their boa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-360", - "dateofocc": "2013-11-09", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDIAN OCEAN:07-20S 048-37E, Around 180nm NW of Providence Island, off Somalia. About 5 to 6 pirates armed with rifles in a skiff approached a chemical tanker underway. OOW raised the alarm and the armed security team on board fired rocket flares followe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.616666700195424, -7.333333299950255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-361", - "dateofocc": "2013-11-09", - "subreg": "72", - "hostility_": "ROBBERS", - "victim_d": "BULK CARRIER", - "descriptio": "INDONESIA:03-40S 114-26E, Taboneo Anchorage. On 9 November robbers boarded an anchored bulk carrier unnoticed. They broke into the bosun store and escaped with ship's stores and properties. The theft was noticed by the duty crew during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.666666699714824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-362", - "dateofocc": "2013-07-11", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "INDONESIA:01-07N 103-37E, Nipah Ship to Ship anchorage area. On 11 July, an alert crew member on-board a tanker carrying out ship to ship opperations, noticed 4 robbers on the poop deck and a fifth robber was in the process of climbing on board. The crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-363", - "dateofocc": "2013-07-26", - "subreg": "91", - "hostility_": "ROBBERS", - "victim_d": "CONTAINER SHIP", - "descriptio": "PHILIPPINES:Manila South Harbor Quarantine Anchorage, 14-33N 120-55E. An unknown number of robbers boarded an anchored container ship unnoticed and escaped with ship's properties. Duty crew on routine rounds noticed foot prints on the forecastle deck and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-364", - "dateofocc": "2013-10-03", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "TANKER", - "descriptio": "NIGERIA:04-12N 006-56E, Bonny Outer Anchorage.While at anchor, an on duty able bodied seaman on board a tanker informed the bridge that one skiff with six robbers was approaching the vessel. As the skiff approached the alarm was raised, and all crew ente", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.933333299908497, 4.199999999941554] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-188", - "dateofocc": "2014-08-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG tanker", - "descriptio": "INDONESIA:On 4 August, three robbers boarded an anchored LPG tanker near position05-34S 104-38E, Teluk Semangka Anchorage. Deck patrol noticed the robbers, raised the alarm and the crew mustered. Hearing the alarm and seeing the crew alertness, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, -5.566666700046085] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-189", - "dateofocc": "2014-08-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "MALAYSIA:On 2 August, six robbers armed with guns in a skiff attempted to board an underway product tanker near position 05-24N 100-05E, 6 nm west of Penang Island. Duty crew noticed the robbers and informed the duty officer who raised the alarm and swit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.083333299818264, 5.400000000340071] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-190", - "dateofocc": "2014-08-14", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Research vessel", - "descriptio": "CONGO:On 14 August, three robbers armed with knives boarded an anchored research vessel 5 nm north of Pointe-Noire. The vessel's crew raised the alarm and mustered. Upon seeing the crew response, the robbers fled empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.749999999601187, -4.666666699747168] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-191", - "dateofocc": "2014-08-18", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Bulk carrier", - "descriptio": "RED SEA:On 18 August, four skiffs approached an underway bulk carrier approximately 19 nm north of the Bab El Mandeb. As the skiffs approached the vessel, the Master raised the alarm, increased speed, commenced evasive manoeuvres while non-essential crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.283333300139759, 12.966666699896848] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-192", - "dateofocc": "2014-08-15", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing boat", - "descriptio": "SOUTH CHINA SEA:On 15 August, a Vietnamese fishing boat was reportedly boarded by persons from a Chinese vessel near the Hoang Sa (Paracel) archipelago. The fishing boat was near Phu Lam Island when a Chinese vessel appeared and chased after it. The Chin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.316666700366909, 16.833333299599133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-193", - "dateofocc": "2014-08-27", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "IVORY COAST:On 27 August, 12 armed pirates boarded a drifting product tanker near position 04-43N 003-30W, 45 nm southeast of Abidjan. They stole money, personal belongings and equipment from the ship while holding the crew hostage. Before departing the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.500000000008868, 4.716666700304529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-194", - "dateofocc": "2014-08-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 26 August, seven pirates armed with guns in a five meter long skiff fired upon an underway product tanker near position 04-08N 005-33E, 24 nm southwest of the Bayelsa State coastal area. The tanker increased speed and commenced evasive maneuve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.549999999940269, 4.133333300177696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-195", - "dateofocc": "2014-08-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 26 August, a speed boat with six armed pirates approached an underway product tanker near position 04-14N 005-13E, 33 nm southwest of Bayelsa State coast. Onboard Nigerian naval armed security opened fire at the pirates, who returned fire. Two", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.216666699871041, 4.233333299911124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-196", - "dateofocc": "2014-08-20", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "GHANA:On 20 August, three robbers in a canoe boarded an anchored offshore tug near position 04-54N 001-43W, Takoradi Anchorage. Duty crewman on routine rounds noticed the robbers attempting to steal the outboard engine of the vessel's rescue boat. He inf", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.71666670041617, 4.89999999987424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-197", - "dateofocc": "2014-08-28", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Oil Product Tanker", - "descriptio": "MALAYSIA:On 28 August, six armed pirates hijacked the Thailand-flagged oil product tanker, V.L. 14 approximately 30 nm north of Pulau Tioman. The vessel was en route from Singapore to Bangkok carrying 1,296 tons of lube oil. The pirates boarded from ster", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.250000000344244, 2.499999999976524] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-198", - "dateofocc": "2014-08-25", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "INDIA:On 25 August, an underway bulk carrier was twice approached by armed persons in skiffs near position 08-21N 076-36E, 22 nm west of Kovalam. On the first approach a skiff with five armed persons approached to within 100 meters of the vessel. Four ho", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.600000000304419, 8.34999999967107] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-75", - "dateofocc": "2015-04-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:During the weekend of 11-12 April, ten pirates in two speedboats boarded MT IMAS near Lagos Anchorage. The crew of the ship was able to make a distress call, resulting in a Nigerian Navy patrol ship quickly responding and capturing one of the pir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-76", - "dateofocc": "2015-04-10", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Passenger Boat", - "descriptio": "NIGERIA:On 10 April suspected robbers boarded a passenger boat and robbed five aides to the Deputy Speaker of the Bayelsa State House of Assembly, Chief Sam Ateki, along the waterways of Brass in Brass Local Government Area of the State.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.083333300375671, 4.299999999674981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-77", - "dateofocc": "2015-04-09", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 9 April, two robbers boarded an anchored product tanker near position 06-17N 003-23E, Lagos Anchorage. The onboard Nigerian Naval personal spotted the robbers and fired warning shots resulting in the robbers jumping overboard to escape. A Nige", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-78", - "dateofocc": "2015-04-11", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 11 April, duty crewman onboard a bulk carrier anchored near position 01-25N 104-37E, 12 nm north-northeast of Bintan Island, noticed robbers on the poop deck. He immediately informed the duty officer. The alarm was raised and crew alerted. S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-79", - "dateofocc": "2015-04-08", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Small Fishing Boats", - "descriptio": "BANGLADESH:On 8 April, pirates boarded and looted three small fishing boats, and kidnapped three fishermen, near the Sunderbans. Initially, 25 other fishermen were taken hostage, and then all but three were released. A ransom has been demanded and local", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.916666699789971, 21.933333300393599] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-80", - "dateofocc": "2015-04-03", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "MALAYSIA:On 3 April, two robbers boarded a berthed general cargo ship near position 05-48N 118-05E, Sandakan Port Berth No. 4. The alarm was raised and the crew mustered. Seeing the crew alertness, the robbers escaped with stolen ship properties. Local p", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-81", - "dateofocc": "2015-04-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:Four robbers armed with long knives boarded an underway tanker. The duty crew noticed the robbers in the engine room and raised the alarm. Upon hearing the alarm and seeing the alerted crew, the robbers escaped empty handed.VTIS was info", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.666666700042128, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-82", - "dateofocc": "2015-04-20", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "SOUTH CHINA SEA, SOUTHERN PART:Pirates armed with knives boarded a bulk carrier underway. They took all the crew hostage. The pirates then stole the ship's and crew's cash, properties, documents and the crew's personal belongings and then escaped. No inj", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.300000000211014, 3.599999999742295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-83", - "dateofocc": "2015-04-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SOUTH CHINA SEA, SOUTHERN PART:On 21 April near position 02-28N 104-26E, a nine meter long, light green fishing boat with two outboard engines approached a tanker underway from the stern. The Master raised the alarm, sounded the fog horn and increased sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.433333299914011, 2.466666700006954] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-84", - "dateofocc": "2015-04-16", - "subreg": "26", - "hostility_": "Pirates", - "victim_d": "Sailing Vessel", - "descriptio": "HAITI:On 16 April, six armed pirates boarded the Australia-flagged sailing vessel PELIKAAN near position 19-36N 072-59W, Petit Port a Piment. The married couple aboard the yacht cooperated with the pirates, but were still violently attacked by the pirate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.983333300319657, 19.60000000025974] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-85", - "dateofocc": "2015-03-30", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "DOMINICA:On 30 March, two armed robbers boarded a small sailing yacht anchored in the southern end of Prince Rupert Bay. The robbers threatened the boat's captain with a gun, stealing his wallet, cash, laptop computer, phone and VHF radio. The incident w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.483333300397419, 15.550000000263651] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-86", - "dateofocc": "2015-04-17", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "INDIA:On 17 April, seven Tamil Nadu fishermen were injured during an attack allegedly by pirates suspected to be from Sri Lanka, according to local police. The fishermen were fishing off Kodiakarai when they were attacked by assailants who came in a fast", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.899999999601789, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-87", - "dateofocc": "2015-04-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 16 April, five robbers armed with knives boarded an underway bulk carrier near position 01-03N 103-40E, 4.6 nm south-southeast of Nipah Island. The robbers were able to enter the engine room store unnoticed. The duty oiler on routine rounds", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.666666700042128, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-28", - "dateofocc": "2016-02-14", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 14 February at 0300 LT near position 13-43N 121-02E, Batangas Anchorage, robbers boarded an anchored product tanker and escaped with ship's properties. The CO who was preparing the tanker for berthing noticed the grappling hook marks on th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-29", - "dateofocc": "2016-01-27", - "subreg": "28", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "NICARAGUA:On 27 January, a large motor yacht on passage between Colon, Panama and Roatan, Honduras was nearly rammed and boarded by a 60-foot steel fishing boat near position14-30N 081-55W, off the east coast of Nicaragua, north of Isla Providencia, Colo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.916666699772293, 14.500000000364594] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-30", - "dateofocc": "2016-01-14", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Yacht", - "descriptio": "U.S. VIRGIN ISLANDS:On 14 January, a French citizen, en route from South Carolina, USA, via the Bahamas to Guadeloupe in a sailing yacht anchored overnight on the southwest coast of St. Croix, near Limetree Bay near position 17-41N 64-45W. The following", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.749999999725162, 17.683333300031336] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-31", - "dateofocc": "2016-02-14", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Merchant Vessel", - "descriptio": "NIGERIA:On 14 February, 3 small speed boats made a close-aboard approach to a merchant vessel at anchor in Lagos Port near position 06-23N 003-22E. Several persons were in each boat and they were reportedly carrying siphon hoses. The ship raised the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.383333299575952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-32", - "dateofocc": "2016-02-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "NIGERIA:On 11 February, a merchant vessel was boarded by up to 10 pirates near position 03-36N 005-37E, 112 nm southwest of the Bonny River. The crew was able to retreat into the citadel and was reportedly safe during the incident.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.616666699704126, 3.599999999742295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-33", - "dateofocc": "2016-02-14", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "PHILIPPINES:On 14 February, according to police reports unidentified gunmen abducted a fishing boat operator and two crewmembers in the southern Philippines near position 06-48N 122-01E. A police spokesman said in a statement that the vessel had been com", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.016666699691314, 6.8000000002055] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-34", - "dateofocc": "2016-02-09", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "PHILIPPINES:On 9 February near position 07-35N 122-45E, three people, including two children, were killed by suspected pirates in an attack offshore of the province of Zamboanga Sibugay. A regional police spokesman said the incident took place around 4:2", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.74999999959357, 7.58333329997447] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-35", - "dateofocc": "2016-01-22", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 22 January, a bulk carrier reported being followed near position 05-15N 003-13E, approximately 70 NM south of Lagos. The ship was reportedly followed at a distance of 7 miles and lost the suspicious vessel after a speed increase and course cha", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.216666699806353, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-36", - "dateofocc": "2016-02-19", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Towed Rig", - "descriptio": "INDIA:On 19 February near position 24-14N 072-17E about 11 NM SSE of Alang, India; robbers in 4 fishing boats approached and boarded a rig being towed by an underway tug. The tug crew noticed the robbers stealing items from the towed rig. Approximately o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [72.283333300178299, 24.233333299658568] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-37", - "dateofocc": "2016-02-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Service Vessel", - "descriptio": "NIGERIA: On 23 February near position 02-40N 007-30E, the BOURBON LIBERTY 251 a service vessel from the French oil services company Bourbon was attacked off the coast of Nigeria. Two crew members from Nigeria and Russia were reportedly abducted.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.500000000138186, 2.666666700373128] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-38", - "dateofocc": "2016-02-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:The chemical tanker MAXIMUS was hijacked 11 February off Abijan, Ivory Coast near position 04-10N 003-55W. There were 18 crew members from India, Pakistan, China, South Korea, Sudan and Ghana when the ship was boarded. The pirates intended to sel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.916666699947768, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-39", - "dateofocc": "2016-02-03", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "KUWAIT:On 3 February, a Kuwaiti-flagged fishing boat was attacked in international waters at approximately 29-10N 049-15E, near Kuwait. The four attackers were believed to be Iranians. The Egyptian fishermen were able to overpower their attackers, report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.250000000364253, 29.166666699881148] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-365", - "dateofocc": "2013-12-19", - "subreg": "71", - "hostility_": "ROBBERS", - "victim_d": "CHEMICAL TANKER", - "descriptio": "INDONESIA:03-55N 098-48E. On 19 December 9nm off Belawan Port robbers boarded an anchored chemical tanker unnoticed. They broke into the ship's forward stores and escaped with the ship's property. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.799999999583463, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2013-366", - "dateofocc": "2013-12-19", - "subreg": "71", - "hostility_": "SUSPICIOUS APPROACH", - "victim_d": "CHEMICAL TANKER", - "descriptio": "MALAYSIA:On 19 December, a speed boat approached at high speed an anchored chemical tanker near position 01-19N 104-16E, approximately 3 nm south of Kampung Tanjun Che Lahom. Crew raised the alarm and the ship search light was directed towards the boat w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.266666700241444, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-1", - "dateofocc": "2013-12-22", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Container vessel", - "descriptio": "BRAZIL:On 22 December, a duty crewman noticed three armed robbers opening cargo containers on an anchored container vessel near position 24-07S 046-19W, Santos Anchorage Area No. 4. The crewman was able to inform the bridge before being taken hostage by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.31666670023975, -24.116666700061444] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-2", - "dateofocc": "2013-12-19", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "MOROCCO:On 19 December, two robbers attempted to board a berthed bulk carrier by climbing the stern mooring rope at position 32-18N 009-14W, Safi Port. Alert duty crew noticed the robbers and informed the duty officer who raised the alarm and mustered th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-9.233333300281515, 32.299999999681177] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-3", - "dateofocc": "2013-12-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 20 December, robbers boarded an anchored chemical tanker near position 03-54N 098-47E, approximately 7 nm from Belawan Port. The robbers broke into the ship forecastle store room, stole parts and equipment and escaped when spotted by duty cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.783333299686319, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-4", - "dateofocc": "2013-12-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 18 December, robbers boarded a berthed tanker at position 03-47N 098-42E, Belawan Port. The robbers broke into the ship's forward store room and escaped with stolen ships property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-5", - "dateofocc": "2013-12-28", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "COLOMBIA:On 28 December, robbers boarded an anchored tanker via the hawse near position 10-18N 075-32W, Mamonal Anchorage, Cartagena. The robbers stole ship's properties and escaped unnoticed. The master reported the robbery to the local police authoriti", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-6", - "dateofocc": "2013-12-31", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "General cargo vessel", - "descriptio": "GHANA:On 31 December, three robbers boarded an anchored general cargo vessel at position 04-53N 001-41W, Takoradi Roads. When spotted by the security watch, the robbers fled without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.683333299722563, 4.883333299977096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-7", - "dateofocc": "2013-12-25", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing vessels", - "descriptio": "PHILIPPINES:On 25 December, pirates attacked a group of three fishing vessels near Zamboanga City. Two fishermen escaped with gunshot wounds and nine remain missing. Authorities suspect the nine missing fishermen were also wounded during the attack. Carg", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.083333299630453, 6.866666699969358] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-8", - "dateofocc": "2013-12-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "SINGAPORE STRAITS:On 18 December, robbers boarded a barge under tow near position 01-15N 104-07E, in the Singapore Straits and stole cargo. The master contacted authorities who dispatched a patrol craft to assist.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.116666699741927, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-9", - "dateofocc": "2013-12-13", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "SINGAPORE STRAITS:On 13 December, robbers boarded a barge under tow near position 01-14N 104-03E, in the Singapore Straits. The robbers were armed with knives and stole cargo before departing.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.04999999997807, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-10", - "dateofocc": "2014-01-08", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Cargo ship", - "descriptio": "LIBERIA:On 8 January, robbers boarded a berthed general cargo ship at position 06-20N 010-48W, Monrovia Port. After hearing some noise, the duty watchman noticed a robber throwing ships properties overboard. Upon seeing the crew response, the robber jump", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.799999999644228, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-11", - "dateofocc": "2014-01-07", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "CAMEROON:On 7 January, three robbers armed with knives boarded a berthed container ship near position 04-02N 009-40E, Douala Port. When the duty crewman noticed suspicious movements at the forecastle and saw one end of a mooring rope floating in the wate", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.666666699700215, 4.033333300444269] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-12", - "dateofocc": "2014-01-03", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "General cargo vessel", - "descriptio": "EQUITORIAL GUINEA:On 3 January, pirates boarded the general cargo vessel SAN MIGUEL near Bata, Equatorial Guinea and kidnapped three crew members. The ship was reportedly boarded approximately 20 miles northwest of Bata.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.200000000103273, 2.133333300113009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-13", - "dateofocc": "2014-01-02", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Gas carrier", - "descriptio": "GABON:On 2 January, five pirates boarded a drifting gas carrier near position 00-59N 008-23E approximately 55 nm west of Corisco Island. When crewmembers notice them, the alarm was raised and the pirates fled. The master reported that there were a few tu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.38333329964064, 0.983333299581204] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-199", - "dateofocc": "2014-08-20", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "RED SEA:On 20 August, six persons in a skiff approached an underway tanker near position 12-48N 043-14E, approximately 19 nm north of the Bab al Mandeb. As the skiff closed to a distance of 0.2 nm, the Master raised the alarm, increased speed, activated", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.233333300273046, 12.800000000399564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-200", - "dateofocc": "2014-08-25", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Trawlers", - "descriptio": "BANGLADESH:On 22 August, four robbers armed with knives boarded an underway bulk carrier near position 22-15N 091-43E, 4 nm west of Patenga, Chittagong. They threatened the duty watchmen who retreated into the accommodation area and locked the doors. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-201", - "dateofocc": "2014-08-25", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Trawlers", - "descriptio": "BANGLADESH:On 25 August, a group of 36 fishermen aboard three trawlers were attacked by a group of pirates near Hatiya Upazila. At least ten of the fishmen were injured, most by gunfire, while ten others were reportedly thrown into the sea. Pirates depar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.24999999992383, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-202", - "dateofocc": "2014-08-22", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 25 August, three persons in a wooden boat approached an anchored chemical tanker position: 06-01S 106-53E, Tanjung Priok Tanker Anchorage. Alert duty crew on routine rounds noticed the boat and informed the duty officer, who raised the alarm", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-203", - "dateofocc": "2014-08-22", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 22 August, twelve pirates armed with knives boarded an underway container ship near position 01-10N 103-34E, 5 nm west-northwest of Nipah Island. They entered the engine room and took hostage the Electical Officer who managed to alert the cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-204", - "dateofocc": "2014-08-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 22 August, three robbers boarded an anchored bulk carrier near position 01-26N 104-37E, approximately 13 nm north-northeast of Bintan Island. Alert duty crewmen noticed the robbers using a bamboo pole to board the ship and alerted the duty o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-205", - "dateofocc": "2014-08-20", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 20 August, robbers boarded an anchored bulk carrier near position 00-14S 117-40E, Samarinda Anchorage. When the duty crewman noticed the forward store room door lock broken, he discovered the mooring ropes were missing. The incident was repo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.666666699595567, -0.23333329999042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-206", - "dateofocc": "2014-08-20", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 20 August, four pirates armed with knives boarded an underway product tanker near position 01-33N 104-46E, approximately 23 nm east of Tg. Berakit. The crewman raised the alarm and the crew mustered. Seeing the crew response, the pirates fle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.766666699807956, 1.549999999810893] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-207", - "dateofocc": "2014-08-20", - "subreg": "61", - "hostility_": "Robber", - "victim_d": "Sailing Vessel", - "descriptio": "MADAGASCAR:On 20 August, one robber armed with a knife boarded the sailing vessel SOLACE while anchored in the port of Diego Suarez. The boarding occurred at 0200 local time and the thief attempted to steal the portable generator, which was on deck, just", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.416666699861537, -12.20000000040892] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-208", - "dateofocc": "2014-09-03", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 3 September, three robbers armed with knives boarded an anchored product tanker near position 22-44N 070-01E, Kandla Outer Anchorage. They threatened the duty crewman who managed to escape and inform the bridge. Alarm raised and crew mustered. S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.016666699808297, 22.733333300059769] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-209", - "dateofocc": "2014-09-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDIA:On 14 September, seven robbers in a boat approached an anchored chemical tanker near position 17-40N 083-23E, Visakhapatnam Anchorage. Four of the robbers boarded the tanker via the stern and stole fire hose nozzles and couplings. Master noticed th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.383333300267452, 17.66666669995891] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-210", - "dateofocc": "2014-09-17", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 17 September, eight armed pirates hijacked a product tanker, ORAPIN 2, enroute to Timor Leste, near position 01-26N 104-50E, 20 nm northeast of Tg Berakit, Bintan Island. The ORAPIN 2 rendezvoused with two smaller tankers and the cargo of ga", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.833333299747039, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-211", - "dateofocc": "2014-09-17", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VIETNAM:On 17 September, three robbers boarded an anchored tanker near position 10-14N 107-03E, Vung Tau Inner Anchorage. Duty crewman on routine rounds spotted the robbers and informed the duty officer who raised the alarm and mustered the crew. Upon he", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-88", - "dateofocc": "2015-04-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "SINGAPORE STRAIT:Six persons armed with guns and long knives in an unlit fast boat approached a container ship underway. As the fast boat drew closer the Master raised the alarm and the entire crew mustered.The duty AB directed the Aldis lamp towards the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-90", - "dateofocc": "2015-05-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALACCA STRAIT:On 2 May eight armed pirates boarded a tanker which was bound from Singapore to Myanmar. They hijacked the tanker and took the Master and crew as hostages. They ordered the tanker to anchor at position 02-19N 101-40E, around 13 nm SSW of P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.666666699977498, 2.316666700406813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-91", - "dateofocc": "2015-05-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 4 May near position 01-04N 103-37E, a skiff increased speed and came alongside a bulk carrier underway. The alerted crew spotted the skiff and informed the bridge. The master raised the alarm, announced the situation on the PA and mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-92", - "dateofocc": "2015-04-24", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "GUINEA:On 24 April, a duty crewman aboard an anchored bulk carrier near position 09-25N013-43W, 5 nm south of Conakry spotted a small wooden boat with eight persons attempting to board the vessel. The alarm was raised and the crew mustered. Seeing the cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.416666700366591] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-93", - "dateofocc": "2015-04-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 21 April, a nine meter long, light green fishing boat with two outboard engines approached an underway tanker near position 02-28N 104-26E, 4 nm east of Pulau Aur, Johor. The Ship's Master raised the alarm, sounded the fog horn, increased spe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.433333299914011, 2.466666700006954] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-94", - "dateofocc": "2015-04-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "BANGLADESH:On 24 April, a duty crewman aboard an anchored product tanker spotted one small motor boat approaching from the starboard quarter near position 22:07 N - 091:47 E, Chittagong Outer Anchorage 'C'. The alarm was raised and the crew mustered on t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": null - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 27.116666699949747] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-95", - "dateofocc": "2015-04-25", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 25 April, six armed robbers boarded a bulk carrier at anchor near position 22-06N 091-45E, Chittagong OPL. The alarm was raised, the crew mustered and Port Control informed. The robbers stole ship's properties and escaped. Later the Coast G", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-96", - "dateofocc": "2015-04-25", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Cotainer Ship", - "descriptio": "BANGLADESH:On 25 April, one robber armed with a long knife boarded an anchored container ship near position 22-11N 091-43E, Chittagong Anchorage. The robber was able to steal ship's stores before being spotted by a duty crewman, who raised the alarm. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.183333299727167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-97", - "dateofocc": "2015-05-01", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 1 May, a duty motorman onboard an anchored product tanker noticed a small boat with five persons circling around the vessel near position 01-43N 101-24E, Dumai Anchorage. The persons attempted to board the vessel from the poop deck. The alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.39999999984741, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-98", - "dateofocc": "2015-05-05", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "BANGLADESH:On 5 May, armed robbers boarded an anchored tanker near position 21-48N 091-42E, Chittagong Outer Anchorage. The robbers began arguing with the two shore watchmen. A duty crewman heard the raised voices and noticed the robbers attacking the wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 21.799999999791282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-99", - "dateofocc": "2015-05-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:Two robbers armed with long knives boarded a bulk carrier underway. The duty crew noticed the robbers and raised the alarm. All crew members mustered in the citadel except the bridge team. The Singapore VTIS was informed. The VTIS advise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.833333299714695, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-40", - "dateofocc": "2016-02-19", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "BANGLADESH:On 19 February, pirates killed a fisherman, wounded four others and kidnapped one from the Kachikhali Balesshar area near position 21-50N 090-51E. The pirates also looted the fish cargo, fishing nets, cash, mobile phone sets and other valuable", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.850000000090802, 21.833333299760852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-41", - "dateofocc": "2016-02-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDIA:On 14 February, four robbers boarded an anchored bulk carrier using a grappling hook and rope near position 22-46N 070-00E, in the vicinity of the Tuna Buoy Anchorage Kandla. A duty crewmember on routine rounds noticed the robbers trying to break o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.999999999911154, 22.766666699854056] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-42", - "dateofocc": "2016-03-04", - "subreg": "25", - "hostility_": "Gunmen", - "victim_d": "Yacht", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 4 March, near position 13-16N 061-16W, several gunmen boarded a yacht anchored at Wallilabou in southwestern St. Vincent. During the course of the boarding, a German citizen aboard the yacht was killed and another pers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.266666699958819, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-43", - "dateofocc": "2016-03-09", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "DR CONGO:On 9 March, a cargo ship at anchor was boarded near position 05-57S 013-03 E, Boma Port. Robbers were spotted by a duty crewman, the alarm was raised and the crew mustered. The robbers managed to escape without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.049999999733132, -5.949999999981969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-44", - "dateofocc": "2016-03-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 5 March, ten armed pirates in a black speed boat approached and opened fire on the tanker MADONNA I near position 04-05N 006-41E, 32 nm southwest of Bonny Island. They boarded the tanker using a grappling hook and ladder. The alarm was raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.68333329967561, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-45", - "dateofocc": "2016-02-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "NIGERIA:On 26 February, an offshore tug underway noticed a speed boat being launched from a mother vessel near position 03-51N 004-39E, 74 nm southwest of the Bayelsa coast. Five armed pirates boarded the tug. The ship's alarm and SSAS were activated. Al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.649999999641352, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-46", - "dateofocc": "2016-03-03", - "subreg": "61", - "hostility_": "Robber", - "victim_d": "Product Tanker", - "descriptio": "KENYA:On 3 March, a robber armed with a knife boarded a berthed product tanker near position 04-04S 039-40E, Mbaraki Wharf North, Mombasa. A duty crewman on routine rounds noticed the robber, who threatened him and escaped with ship's stores. The duty cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.649999999873899, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-47", - "dateofocc": "2016-03-06", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Fishing Boat", - "descriptio": "VIETNAM:On 6 March, a Vietnamese fishing boat was boarded, reportedly by a Chinese crewed boat, near position 16-30N 112-00E, the Paracel Islands. The robbers boarded the boat, stole food and fuel before destroying fishing nets and departing the area. No", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.000000000370051, 16.500000000429281] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-48", - "dateofocc": "2016-03-04", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH:On 4 March, pirates abducted 25 fishermen along with three fishing boats in an area approximately 100 kilometers south of Patharghata under Barguna, near position 21-02N 89-58E. Reportedly, the pirates demanded a large ransom for each fisherma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.966666699689029, 21.033333300094682] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-49", - "dateofocc": "2016-02-15", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 15 February, an unknown number of robbers boarded a berthed tanker near position22-02N 088-06E, Haldia Oil Jetty No 1, Haldia Port. The robbers were able to steal ship's stores and escape. The robbery was noticed when the crew approached the aft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.100000000226657, 22.033333300127026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-50", - "dateofocc": "2016-02-08", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 8 February, five robbers in a boat approached an anchored tanker near position 22-47N 070-00E, Kandla Outer Anchorage. Two robbers boarded the tanker using a grappling hook attached to a rope. The duty officer on the bridge noticed the robbers a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.999999999911154, 22.783333299926483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-51", - "dateofocc": "2016-01-25", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 25 January, five robbers armed with knives boarded an anchored tanker near position 22-47N 070-02E, 12 nm southwest of Kandla. The duty crewman on routine rounds noticed the robbers near the forecastle and informed the duty officer who raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.033333299880667, 22.783333299926483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-52", - "dateofocc": "2016-03-02", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "ST LUCIA:On 2 March, three robbers, armed with a pistol, a machete, and a club, boarded an anchored sailing yacht in the harbor at Soufriere, near position 13-51N 061-04W, confronting eight passengers. The robbers demanded money at gunpoint. They were gi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.066666699592645, 13.850000000298621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-14", - "dateofocc": "2014-01-07", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 7 January, two robbers boarded an anchored chemical tanker near position 07-05S 112-39E, Gresik Inner Anchorage. They threatened the duty watch keeper, with a knife and stole ship's stores. When other crewmembers noticed the robbers and rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.65000000043608, -7.08333329971731] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-15", - "dateofocc": "2014-01-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 6 January, six robbers armed with knives boarded an anchored chemical tanker near position 03-55N 098-46E, Belawan Outer Anchorage. The robbers boarded the ship via the anchor chain. The alert crew spotted the robbers and raised the alarm, w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-16", - "dateofocc": "2014-01-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 3 January, robbers boarded an anchored chemical tanker near position 03-57N 098-47E, Belawan Anchorage. The robbers stole ships property and escaped unnoticed. Incident reported to port authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.783333299686319, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-17", - "dateofocc": "2014-01-03", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 3 January, three robbers armed with a gun boarded an anchored bulk carrier at position 00-17S 117-40E, Muara Berau Anchorage, while it was carrying out loading operations. They took hostage a duty crewman on routine rounds, tied him up and s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.666666699595567, -0.283333299857134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-18", - "dateofocc": "2013-12-31", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Yachts", - "descriptio": "SAINT MARTIN:Yacht owners reported a number of robberies during 2013 to include six robberies of boats anchored in Simpson and Marigot Bay during a one night period in late December. Many of the thefts throughout the year consisted of electronics and nav", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.099999999626846, 18.033333299997707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-19", - "dateofocc": "2014-01-10", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "INDONESIA:On 10 January, robbers boarded a berthed container ship at position 06-06S 106-53E, Jakarta Container Terminal. The robbers were able to steal engine spare parts before departing the vessel undetected. The theft was noticed by duty engineer aft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-20", - "dateofocc": "2014-01-09", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 9 January, eight robbers boarded an anchored bulk carrier ship via the anchor chain near position 03-42S 114-26E, Taboneo Anchorage. When the watchman detected the robbers, he shouted for help and alerted the duty officer. Seeing the crew re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-21", - "dateofocc": "2014-01-18", - "subreg": "62", - "hostility_": "Hijackers", - "victim_d": "Merchant vessel", - "descriptio": "A merchant vessel reported being hijacked at 1539Z on 18 JAN in position 15-31N 39-57E, approximately 40NM east of Massawa, Eritrea. This area will remain high risk for at least the next 24-48 hours.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [39.949999999973556, 15.516666700294081] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-22", - "dateofocc": "2014-01-17", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Yacht", - "descriptio": "ST LUCIA:On 17 January, robbers boarded a yacht berthed in the port of Vieux Fort and attacked the boat owner and his wife. The 62 year old owner of the boat died from injuries sustained in the attack. Local press reports indicate that three persons were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.949999999962017, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-23", - "dateofocc": "2014-01-18", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Petroleum tanker", - "descriptio": "ANGOLA:On approximately 18 January, pirates possibly hijacked the Liberian-flagged petroleum tanker KERALA seven nautical miles from Luanda, Angola. The tanker was fully laden with gas oil. The owners of the vessel lost contact with the ship on 18 Januar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [12.999999999866418, -8.68333329994897] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-24", - "dateofocc": "2014-01-17", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "OMAN:On 17 January, pirates fired upon the Marshall Islands-flagged product tanker NAVE ATROPOS near position 15-06N 054-23E, approximately 115 nm south of Salalah, Oman. Pirates were operating from a skiff that was launched from a nearby mother ship. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [54.383333300228912, 15.099999999664533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-25", - "dateofocc": "2014-01-16", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "TANZANIA:On 16 January, robbers boarded a berthed bulk carrier at Dar Es Salaam port and stole ship's stores without being detected.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.283333300010383, -6.816666700311316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-26", - "dateofocc": "2014-01-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "General cargo ship", - "descriptio": "INDONESIA:On 16 January, four robbers boarded a general cargo ship near position 06-02S 106-53E, Tanjung Priok Anchorage. The robbers, who arrived in a small speed boat, were armed with a gun and long knives. They took the duty watchman hostage and engin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.033333299818253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-27", - "dateofocc": "2014-01-24", - "subreg": "56", - "hostility_": "Gunmen", - "victim_d": "Tankers", - "descriptio": "LIBYA:Gunmen are threatening tankers near Hariga as part of a blockade to prevent crude oil exports from the Hariga oil terminal in eastern Libya. Ships attempting to dock at the Harigas terminal could be attacked.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [24.000000000222144, 32.066666700244753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-28", - "dateofocc": "2014-01-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tugboat", - "descriptio": "NIGERIA:On 26 January, pirates attacked a tugboat near the Brass River crude oil export terminal in the Niger Delta, kidnapping the ship's captain and an engineer. Sources said that the tugboat was coming from Port Harcourt in Rivers State and transiting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.233333299975811, 4.283333299777837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-212", - "dateofocc": "2014-09-18", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Vehicle Carrier", - "descriptio": "BANGLADESH: On 18 September, twenty five robbers with knives approached an anchored vehicle carrier near position 22-12N 091-47E, Chittagong Outer Anchorage. Ten robbers, armed with knives, boarded via the stern ramp coaming brackets. The alarm was raise", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-213", - "dateofocc": "2014-09-22", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "THAILAND:On 22 September, six armed pirates boarded an underway tanker near position 07-10N 098-12E, 34 nm south-southwest of Phuket Island. They tied up the second officer and duty crewman on the bridge and mustered the rest of the crew in the Mess. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.200000000283524, 7.166666700069015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-214", - "dateofocc": "2014-09-22", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "THAILAND:On September 22, at 2130 LT, position 07-12N 098-00E, around 38 nm SW of Phuket, Thailand; seven armed pirates from a speed boat boarded a product tanker enroute to Penang and hijacked it. They transferred ship bunker to a mother vessel (white c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [97.999999999917293, 7.200000000038585] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-215", - "dateofocc": "2014-09-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 25 September, at 0545 LT, position 01-28N 104-41E around 16 nm NE of TG Berakit, Bintan Island; three robbers boarded an anchored tanker using a boarding hook. Duty A/B on routine rounds noticed the robbers near the poop deck and raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-216", - "dateofocc": "2014-09-27", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "BANGLADESH:On 27 September, four robbers armed with knives boarded an anchored product tanker using hooks attached to ropes near position 21-51N 091-48E, Chittagong Anchorage. They took hostage a duty crewman who was on routine rounds, seized his radio,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 21.849999999657996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-217", - "dateofocc": "2014-10-05", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Supply Tug", - "descriptio": "GUYANA:On 5 October, five robbers armed with knives boarded a berthed offshore supply tug near position 06-47N 058-10W, Georgetown Port. The duty crew discovered the water tight doors to the infirmary and laundry rooms forced open and reported the situat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.783333300308357] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-218", - "dateofocc": "2014-10-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Oil Tanker", - "descriptio": "INDONESIA:On 2 October, the Vietnam-flagged oil tanker SUNRISE 689 went missing and is presumed to have been hijacked soon after leaving Singapore. The SUNRISE 689 was carrying a cargo of 5,226 tons of oil products and a crew of 18.UPDATE: The ship was r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.499999999677868, 1.299999999577949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-219", - "dateofocc": "2014-09-30", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDIA:On 30 September, three robbers in a fishing boat boarded an anchored chemical tanker near position 22-47N 070-03E, Kandla Anchorage. Duty crew on the bridge, noticed the robbers, raised the alarm, sounded ship's horn and mustered the crew. Upon hea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.049999999777867, 22.783333299926483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-220", - "dateofocc": "2014-10-13", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Boat", - "descriptio": "NIGERIA:On 13 October, a gun battle between Nigerian Joint Task Force and suspected pirates left one soldier dead and another injured. The attack occurred along the Ogbia-Brass route of the Nembe waterway of Bayelsa State. The soldiers were apparently tr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.283333299842525, 4.400000000307728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-221", - "dateofocc": "2014-10-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Passenger boat", - "descriptio": "NIGERIA:On 11 October, gunmen attacked a passenger boat near Kiberi-Bio, on the Ogbia-Nembe-Brass waterways in Bayelsa East Senatorial District, leaving four persons missing. Press reports indicate that the gunmen took seized two women and two children,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.283333299842525, 4.400000000307728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-222", - "dateofocc": "2014-09-29", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "THE CONGO:On 29 September, an unknown number of robbers boarded an anchored tug at position04-45S 011-49E, Pointe Noire Anchorage. Duty crewman noticed a small boat with four persons near the vessel Alarm raised and searchlight directed towards the small", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-223", - "dateofocc": "2014-10-15", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Yacht", - "descriptio": "GULF OF ADEN:On 15 October, at 1510 UTC, a motor yacht reported a suspicious approach by one skiff near position 13-33N 050-27E, approximately 90 nm southwest of Al Mukalla, Yemen. The skiff approached the yacht to within 500 meters. Weapons and ladders", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.449999999863451, 13.550000000198963] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-100", - "dateofocc": "2015-05-07", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "DEMOCRATIC REPUBLIC OF CONGO:On 7 May, a duty crewman during routine rounds on a general cargo ship anchored near position 05-52S 013-25E, Ikungulu Anchorage, Matadi, noticed two boats approaching the ship. He immediately informed the duty officer. The r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.416666699596647, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-101", - "dateofocc": "2015-04-24", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "FSO Ship", - "descriptio": "NIGERIA:On 24 April, ten robbers armed with guns and a ladder in a fast wooden boat approached a moored Floating, Storage and Offloading (FSO) ship near position 04-13N 007-23E, 13 nm from Bonny. Four robbers managed to gain access onto the vessel. Duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.383333299608296, 4.216666699838697] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-102", - "dateofocc": "2015-04-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "MALAYSIA:On 25 April, an unknown number of robbers boarded an underway bulk carrier near position 01-20N 104-24E, 7 nm east-southeast of Tanjung Penyusop, Johor. They forced their way into the engine room, stole engine spares and escaped. The theft was n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.399999999944441, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-103", - "dateofocc": "2015-05-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "MALAYSIA:On 6 May, an unknown number of robbers boarded an anchored general cargo ship engaged in bunkering and stores replenishment near position 01-24N 103-08E, 16 nm west-southwest of Pontian District, Johor, The robbers were able to steal ship's prop", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.133333299782009, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-104", - "dateofocc": "2015-05-10", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 10 May, the deck watchman onboard an anchored chemical tanker noticed two robbers trying to gain access into the engine room by opening the skylight near position 01-42N 101-28 E: Dumai Tanker Anchorage. The Duty Officer was informed and the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-105", - "dateofocc": "2015-05-11", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 11 May, robbers in a fishing boat boarded an anchored bulk carrier with a hook attached with ropes near position 10-12N 107-04E, 6.5 nm south of Vung Tau. They broke two padlocks of the deck stores and stole ship's stores and then escaped. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-106", - "dateofocc": "2015-05-05", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 5 May, two robbers attempted to board an underway bulk carrier near position 01-03N 103-37E, 4.9 nm south of Nipah Island. The bridge crew raised the alarm and mustered the crew when they spotted the robber's small boat approaching. Two robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-107", - "dateofocc": "2015-05-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:On 17 May near position 01-05N 103-36E, the Duty Oiler on routine rounds on an underway tanker noticed four robbers in the steering room. He immediately informed the First Enginner who raised the alarm. The Master notified the VTIS Singa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-108", - "dateofocc": "2015-05-15", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "SOUTH CHINA SEA:On 15 May near position 08-19N 108-52E, the Chief Officer onboard an underway heavy lift cargo ship detected some suspicious noises near the aft of the ship. He immediately switched on the deck lights, sent the duty crew to investigate an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.866666699670702, 8.3166666997015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-109", - "dateofocc": "2015-05-01", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "BAHAMAS:On 1 May, two robbers boarded a berthed sailing yacht at the Stuart¿s Cove diving center in New Providence. The robbers shot the boat owner in the head, killing him. The boat owner¿s wife escaped the incident. The robbers escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.983333299614401, 26.683333300322374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-110", - "dateofocc": "2015-05-15", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "GUINEA:On 15 May, six robbers armed with AK-47 rifles boarded an anchored bulk carrier near position 09-25N 013-44W, Conakry Anchorage. The Second Officer saw two robbers on the poop deck and immediately raised the alarm and informed the Master. The robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.733333299977346, 9.416666700366591] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-111", - "dateofocc": "2015-05-14", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply Vessel", - "descriptio": "NIGERIA:On 14 May, pirates boarded two vessels near position 04-01N 007-05E, approximately 23 nm south of Port Harcourt. A platform supply vessel was boarded and then used to attack a self-propelled barge. Pirates kidnapped six crewmembers from one vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.083333300407958, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-53", - "dateofocc": "2016-03-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 11 March, eight pirates in a boat approached an underway tanker near position 02-52N004-52E, 108 nm southwest of the Bayelsa coast. Ship's Master raised the alarm increased speed, commenced evasive maneuvers, activated SSAS, sent distress mess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.866666699904727, 2.866666699840039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-54", - "dateofocc": "2016-03-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 11 March, a vessel reported being fired upon near position 03-30N 005-02E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.033333299577237, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-55", - "dateofocc": "2016-01-28", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 28 January, six robbers in a small boat boarded an anchored product tanker near position 22-49N 070-07E, Kandla Outer Anchorage. Alert duty crewman noticed the robbers and raised the alarm. Hearing the alarm and seeing the crew¿s alertness, the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.116666700441044, 22.81666669972077] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-56", - "dateofocc": "2016-03-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "JAKARTA ANCHORAGE, INDONESIA:On 22 March at 0120 LT near position 06-04S 106-49E, five robbers boarded an anchored bulk carrier. The duty AB on routine rounds was attacked and hit on the head. One robber stood guard near the AB. The remaining robbers ent", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.816666699739358, -6.066666699612597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-57", - "dateofocc": "2016-03-07", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Trawler", - "descriptio": "VIETNAM:On 7 March, a Vietnamese fishing boat, KH 96640 TS, operating in the Paracel Island area, was reportedly rammed and sunk by a much larger ship; painted gray with Chinese characters on the prow. Five crewmembers were able to escape into a very sma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.333333300439222, 16.666666699926566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-58", - "dateofocc": "2016-03-22", - "subreg": "73", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "BITUNG PORT, INDONESIA:At night on 22 March while conducting cargo operations in position 01-26N 125-11E, robbers broke into the safety locker of a berthed chemical tanker. They stole ships equipment and escaped unnoticed. Incident reported to owners.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.183333300360232, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-59", - "dateofocc": "2016-03-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On March 30 at 0130 LT, near position 06-00S 106-54E, Jakarta anchorage, robbers in three skiffs approached and attempted to board an anchored bulk carrier. The alarm was sounded and the crew mustered. The crew repelled the robbers with water c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -5.99999999984874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-60", - "dateofocc": "2016-03-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:On 26 March, pirates attacked the chemical tanker SAMPATIKI near position 04-20N005-10E, approximately 30 nm from the Bayelsa coastline. The pirates ransacked the ship and kidnapped five crewmembers. On 09 May, the five hostages were reportedly r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.166666700004328, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-61", - "dateofocc": "2016-03-26", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Tug and Barge", - "descriptio": "PHILIPPINES:On 26 March, the tug BRAHMA 12 and barge ANAND 12 were attacked and the crew of 10 Indonesian sailors was kidnapped. The crew was transporting coal from Indonesia tothe Philippines when they were hijacked. Subsequent reporting indicates that", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.216666699992857, 6.133333300242384] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-62", - "dateofocc": "2016-03-25", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Tug and Barge", - "descriptio": "PHILIPPINES:On 25 March a tug and barge was boarded by pirates. The barge was let loose and the tug and its ten crew members were taken hostage. The tug was abandoned off Languyan island near position 05-16N 120-05E. The tug was ransacked and all communi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.216666699960456, 4.816666700037956] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-63", - "dateofocc": "2016-04-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 3 April at 2345 LT in Jakarta anchorage in position 05-59S 106-54E, five robbers boarded an anchored container ship using a hook attached to a rope. Crewmembers raised the alarm after noticing the robbers. The robbers jumped overboard and es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-64", - "dateofocc": "2016-04-01", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 01 April at 0145 LT at the Samarinda anchorage in 00-15S 117-35E, the duty officer aboard an anchored bulk carrier heard voices on the forecastle deck. The alarm was sounded. Robbers escaped with ship's stores. Master notified Coast Guard bu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-65", - "dateofocc": "2016-03-23", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Vehicle Carrier", - "descriptio": "PERU:On 23 March two robbers wearing face masks boarded an anchored vehicle carrierpreparing for berthing operations near position 12-01S 077-12W, Callao Anchorage No.1. Duty crewman on routine rounds noticed movement near the forecastle store and report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-29", - "dateofocc": "2014-01-25", - "subreg": "57", - "hostility_": "Gunmen", - "victim_d": "Patrol boat", - "descriptio": "NIGERIA:On 25 January, gunmen attacked a Joint Task Force patrol boat near the Nembe-Bassanbiri Community in Nembe, Bayelsa. The attack left a soldier badly injured.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.383333299575952, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-30", - "dateofocc": "2014-01-23", - "subreg": "57", - "hostility_": "Gunmen", - "victim_d": "Ferry", - "descriptio": "NIGERIA:On 23 January, gunmen attacked a local ferry transiting near the coastal town of Ekeni in Southern Ijaw Local Government Area. The attack claimed the life of a local businesswoman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 4.700000000407385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-31", - "dateofocc": "2014-01-28", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "TANZANIA:On 28 January, robbers boarded the bulk carrier SAM JAGUAR berthed at a port in Tanzania and stole several lengths of 115 meter ropes. The robbers managed to depart the vessel without being detected.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.366666699671441, -6.816666700311316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-32", - "dateofocc": "2014-02-04", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "General cargo ship", - "descriptio": "CONGO:On 4 February, two robbers armed with long knives boarded an anchored general cargo ship near position 04-46S 011-52E, Pointe Noire Roads. The Duty Officer, while on routine rounds, noticed the robbers at the forecastle store room and raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.866666700131077, -4.766666700379915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-33", - "dateofocc": "2014-01-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "NIGERIA:On 30 January, at approximately 0430 local time, three pirates attacked and boarded the tug LAMNALCO HAWK near position 04-15N 005-35E, in vicinity of Pennington Terminal, Bayelsa State. Crew locked themselves in the citadel. Pirates departed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-34", - "dateofocc": "2014-01-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore supply vessel", - "descriptio": "NIGERIA:On 29 January at approximately 2215 local time, pirates attacked and boarded the offshore supply vessel CEE JAY near position 04-20N 005-17E, near off Bayelsa State coast. Pirates kidnapped the ships Master and Chief Engineer and robbed the crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.283333299810181, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-35", - "dateofocc": "2014-02-01", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 1 February, five robbers armed with knives boarded an anchored chemical tanker near position 01-42N 101-25E, Dumai Inner Anchorage. The robbers entered into the engine room and took hostage the duty oiler and second engineer. As the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.416666699744553, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-36", - "dateofocc": "2014-01-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 18 January, robbers fired upon and boarded an anchored bulk carrier ORIENTAL SAPPHIRE while at Kabil Anchorage in Batam. After boarding the vessel, the robbers went to the engine room. The crew locked themselves in the bridge and reported th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.149999999711497, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-37", - "dateofocc": "2014-02-06", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore supply vessel", - "descriptio": "NIGERIA:On 6 February, pirates attacked and boarded the Barbados-flagged offshore supply vessel PSV MARINER SEA off the Bayelsa State coast. Pirates directed the vessel to a particular spot on the coast, near 03-49N 005-43E and then departed the ship, ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.716666700336873, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-38", - "dateofocc": "2014-02-06", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 6 February, pirates attacked the Panamanian flagged tanker CHER approximately 75 nm west-southwest of Brass approximately 1000 local time.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.10000000024047, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-39", - "dateofocc": "2014-02-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 5 February, a drifting tanker experienced a suspicious approach near position 03-46N 006-24E: approximately 30 nm southeast of Brass Terminal. Watchmen on the ship sighted a skiff with six persons armed with rifles approaching the vessel and l", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.400000000372415, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-40", - "dateofocc": "2014-02-08", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "General cargo ship", - "descriptio": "GULF OF ADEN:On 8 February, twelve suspected pirates in three skiffs approached an underway general cargo ship near position 12-24N 043-32E, approximately 15 nm southeast of Perim Island, Yemen. The skiffs approached at high speed from the port and starb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.533333300372703, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-41", - "dateofocc": "2014-02-10", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 10 February, six robbers armed with guns and long knives boarded an anchored bulk carrier near position 01-21N 104-41E, approximately 10 nm northeast of Tg. Berakit, Pulau Bintan. When the duty oiler spotted the robbers in the engine room, h", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.350000000344039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-42", - "dateofocc": "2014-02-10", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "LPG tanker", - "descriptio": "INDIA:On 10 February, robbers boarded an anchored LPG tanker near position 17-37N 083-24E, Visakhapatnam Anchorage. The robbers escaped unnoticed with ships properties. The crew informed Port Control.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.400000000164596, 17.616666700092196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-43", - "dateofocc": "2014-02-05", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 5 February, five robbers armed with knives boarded an anchored chemical tanker near position 01-25N 104-34E, approximately 11 nm north of Tg. Berakit, Pulau Bintan. When the duty watchman on routine rounds noticed foot prints in the engine r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-224", - "dateofocc": "2014-10-15", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Merchant vessel", - "descriptio": "GULF OF ADEN:On 15 October, at 10:50 UTC, a merchant vessel was approached by a suspicious dark blue hull colored skiff with four person onboard, near position 12-41N 048-40E, approximately 90 nm northwest of Bosaso, Somalia. The closest point of approac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.666666700062137, 12.683333299869616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-225", - "dateofocc": "2014-10-12", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 12 October, three robbers boarded an anchored bulk carrier near position03-42S 114-25E, Taboneo Anchorage. When a duty crewman on rounds noticed the robbers, he informed the duty officer who raised the alarm, sounded the ship's fog horn, and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-226", - "dateofocc": "2014-10-11", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "VIETNAM:On 11 October, three robbers boarded a moored bulk carrier near position 10-43N 106-46E, Mooring Buoys, Ho Chi Minh City. During routine rounds duty cadet noticed the paint storeroom's lock missing. Upon approaching the storeroom the cadet was co", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.766666699872587, 10.716666699599273] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-227", - "dateofocc": "2014-10-08", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "BANGLADESH:On 8 October, twelve robbers armed with knives boarded an anchored bulk carrier near position 21-47N 091-46E, 3 nm west of Kutubdia Island. The crew raised the alarm raised, mustered, and notified Port Control. Seeing the crew response, the ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 21.783333299894139] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-228", - "dateofocc": "2014-10-05", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG tanker", - "descriptio": "INDONESIA:On 5 October, four robbers armed with knives boarded an anchored LPG tanker near position 05-35S 104-34E, Teluk Semangka Anchorage. Duty crewman noticed the robbers and raised the alarm. Upon hearing the alarm and seeing the crew alertness, the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, -5.583333300118511] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-229", - "dateofocc": "2014-10-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 22 October, five persons armed with knives boarded an anchored bulk carrier near position 01-25N 104-35E, 11 nm north-northeast of Tg Berakit. The duty crewman spotted the robbers and raised the alarm. Upon hearing the alarm and seeing the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-230", - "dateofocc": "2014-10-21", - "subreg": "81", - "hostility_": "Pirates", - "victim_d": "Fishing boat", - "descriptio": "PHILIPPINES:On 21 October, a Taiwanese-flagged fishing boat, FV CHUAN YU TSAI NO. 1, was looted by pirates traveling in two boats approximately 245 nautical miles east of Mindanao. The pirates reportedly took the boat's fishing gear, but did not board th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [130.683333300088407, 7.63333329984124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-231", - "dateofocc": "2014-10-21", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Container ship", - "descriptio": "VIETNAM:On 21 October, four small boats approached a drifting container ship near position10-09N 107-06E, 10 nm south of Vung Tau. Two boats approached the stern and persons in the boats asked duty crew men if they had any scrap items available. As the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.099999999941815, 10.150000000268903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-232", - "dateofocc": "2014-10-21", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "MALAYSIA:On 21 October, pirates armed with knives and guns hijacked an underway product tanker near position 01-48N 104-31E, 24 nm east-southeast of Tg Sedili Besar. The pirates took hostage the crew and had the Master anchor the vessel. The pirates dama", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.516666699575012, 1.800000000043781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-233", - "dateofocc": "2014-10-20", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 20 October, two robbers boarded an underway bulk carrier near position01-08N 103-29E, 4 nm east of Palau Karimun. The junior engineer raised the alarm when he spotted the robbers near the engine room. The crew mustered and searched the vesse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.483333299748381, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-234", - "dateofocc": "2014-10-19", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "LPG tanker", - "descriptio": "INDONESIA:On 19 October, two robbers boarded an underway LPG tanker near position 01-10N103-32E, 7 nm east-northeast of Palau Karimun Kecil. Duty crewman saw robbers escaping from steering flat and informed the bridge. Duty officer raised the alarm and m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.533333299615094, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-235", - "dateofocc": "2013-10-18", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 18 October, five robbers armed with long knives boarded an underway tanker near position 01-08N 103-28E, 3 nm east of Palau Karimun Kecil. The robbers went to the engine room, took third engineer hostage, stole engine spare parts and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.466666699675955, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-236", - "dateofocc": "2014-10-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 17 October, six robbers boarded an anchored bulk carrier near position 05-30S105-18E, Tarahan Anchorage. Duty crewman spotted robbers and raised alarm. The robbers escaped with engine spare parts.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.300000000243301, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-112", - "dateofocc": "2015-05-15", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 15 May, an unknown number of robbers boarded a berthed product tanker during cargo operations near position 23-01N 070-13E, Kandla Port. They stole ship's property and escaped. The Duty crewman on routine rounds noticed the theft and raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.016666700086944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-113", - "dateofocc": "2015-05-15", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 15 May, up to 30 pirates in six fishing boats hijacked the Malaysia-flagged tanker MT ORIENTAL GLORY off Bruit Island in Malaysia. The armed men forced the crew to take the vessel to another location further south where they transferred appro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.216666699701761, 2.583333299812807] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-114", - "dateofocc": "2015-05-16", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 16 May, an unknown number of robbers boarded an anchored bulk carrier near position 21-46N 091-42E, 7 nm west of Kutubdia Island. The robbers stole ship's property and escaped. The duty crew on routine rounds noticed the theft and raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 21.766666699821712] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-115", - "dateofocc": "2015-05-17", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "BANGLADESH:On 17 May, three robbers armed with long knives boarded an anchored general cargo ship near position 22-12N 091-43E, Chittagong Outer Anchorage. The duty crewman saw the robbers and raised the alarm, sounded the ship's whistle and directed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-116", - "dateofocc": "2015-05-22", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Anchored Vessel", - "descriptio": "COTE D'IVOIRE:On 22 May, two armed robbers in a wooden boat approached an anchored vessel near position 05-20N 004-01W, Abidjan Anchorage. The wooden boat appeared similar to those used by local fishermen. One of the robbers attempted to board the ship,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.016666699681195, 5.333333299676895] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-117", - "dateofocc": "2015-05-26", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 26 May, three robbers in a small boat attempted to board an anchored tanker near position 06-26N 003-20E, Tincan Berth No. 1, Lagos. The duty crewman on deck watch saw the robbers and raised the alarm. Upon seeing the crews response, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-118", - "dateofocc": "2015-05-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 4 May, four robbers boarded an underway bulk carrier near position 01-05N 103-46E, 1 nm south-southwest of Pulau Takong Besar. Duty crew spotted the robbers and informed the Bridge. The alarm was raised and the crew mustered. Seeing the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.766666699775612, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-119", - "dateofocc": "2015-05-16", - "subreg": "72", - "hostility_": "Suspicious Approach", - "victim_d": "Passenger Vessel", - "descriptio": "PHILIPPINES:On 16 May, several small inflatable speedboats made a suspicious approach on an underway passenger vessel near position 04-10N 121-10E, 69 nm south-southeast of Bintoulan Island. At a distance of 0.5 nm, the ship's master increased speed and", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.16666670015843, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-120", - "dateofocc": "2015-05-20", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 20 May, three robbers boarded an anchored product tanker near position 13-44N 121-02E, Batangas Anchorage. The robbers used a hook attached with rope to board the vessel while the crew was busy with pilot arrangements and berthing procedur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-121", - "dateofocc": "2015-05-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 20 May, an unknown number of robbers boarded an anchored product tanker near position 01-42N 101-28E, Dumai Anchorage. The robbers boarded unnoticed and broke the padlock of the aft engine room casing door. However, nothing was stolen. The m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-122", - "dateofocc": "2015-05-22", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 22 May, an unknown number of robbers boarded an anchored container ship near position 10-11N 107-03E, Vung Tau Roads. The Duty Bosun on routine rounds noticed the forward paint locker had been broken into. Upon checking, he found foot prints v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-123", - "dateofocc": "2015-05-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 23 May, four robbers boarded an underway container ship near position 01-02N 103-39E, 5 nm south of Pulau Nipah. A crewman spotted the robbers near the aft deck and alerted the other crewmembers. Seeing the alerted crew, the robbers escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-124", - "dateofocc": "2015-05-27", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 27 May, one robber boarded a berthed product tanker near position 23-01N 070-13 E, Jetty OJ4, Kandla. A duty crewman on routine rounds saw the robber and raised the alarm. The robber managed to escape with stolen ship's stores in a small boat wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.016666700086944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-81", - "dateofocc": "2016-04-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "INDONESIA:On 18 April, one robber boarded an anchored vessel near position 03-56N 098-45E, Belawan Anchorage. Duty crewman on routine rounds noticed a robber on the forecastle deck and informed the duty officer who raised the alarm. Upon hearing the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-66", - "dateofocc": "2016-04-01", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:On 1 April, duty officers onboard a chemical tanker underway near position03-54N 005-41E, 41 nm southwest of Brass noticed a black speed boat approaching. Master raised the alarm, sent distress messages, took anti-piracy preventive measures and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.683333299643266, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-67", - "dateofocc": "2016-04-01", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "MALAYSIA:On 1 April, eight armed pirates in a speed boat boarded an underway tug near position04-07N 118-55E, 17 nm east of Pulau Sipadan. They stole crew personal belongings then kidnapped four crew members and escaped. The remaining crew members sailed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.916666699860798, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-68", - "dateofocc": "2016-04-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "Nigeria:On 07 April at 0920Z in position 03-18.6N 005-23.9E, 75nm SW of Brass, seven pirates in a wooden speed boat armed with automatic weapons approached a drifing taker waiting for cargo loading instructions. The pirates attempted to board the tanker", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.400000000340071, 3.316666700439157] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-69", - "dateofocc": "2016-04-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:On 11 April at 0130 LT, in 02-48.4N 006-40.9E, 118 nm SW of Port Harcout, eight pirates in a speed boat armed with rifles boarded a chemical tanker while enroute from Douala to Abidjan. The pirates stole cash, ship's property and cew belongings.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.68333329967561, 2.800000000076125] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-70", - "dateofocc": "2016-04-10", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 10 April at 1000 LT, in position 03-17.8N 005-31.0E, about 74 nm SW of Brass, seven pirates in a skiff approached a drifting tanker awaiting berthing instructions. The pirates attempted to board the tanker using an expandable ladder but failed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.516666699970699, 3.299999999642637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-71", - "dateofocc": "2016-04-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 11 April at 2156Z in 04-07.33N 005-24.12E, vessel attacked by pirates. Master raised the alarm and raised the SSAS alarm. Crew members assembled in the citadel. Two crew members kidnapped. Nigerian Navy boarded the vessel for the investigation", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.400000000340071, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-72", - "dateofocc": "2016-04-12", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 12 April at 0730 LT in position 06-54S 110-22E, at Semarang anchorage, three robbers boarded a container ship. Robbers were in the engine room when the alarm was raised. Crew mustered after hearing alarm. Robbers escaped with spare engine pa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.366666700168878, -6.9000000001476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-75", - "dateofocc": "2016-04-12", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "COLOMBIA:On 12 April, three robbers armed with guns and a knife boarded an anchored bulk carrier near position 03-53N 077-04W, Buenaventura anchorage. Duty crewman on routine rounds noticed the robbers on the forecastle deck and reported to the duty off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.066666700110034, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-77", - "dateofocc": "2016-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 19 April at 1815 LT, a tanker reported that it was approached by a small boat near position 03-53N 005-22E, while transiting from Calabar, Nigeria, to Lome, Togo. The small craft approached from the starboard quarter and later came alongside t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.366666700370558, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-78", - "dateofocc": "2016-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 19 April a vessel reported being attacked near 03-03N 004-50E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.833333300110382, 3.050000000309069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-79", - "dateofocc": "2016-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 19 April a vessel reported being attacked near 03-37N 004-45E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.750000000274099, 3.616666699639438] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-80", - "dateofocc": "2016-04-18", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 18 April, pirates attempted to board an underway tanker near position03-54N 005-38E, 31 nm southwest of Bayelsa. The armed guard onboard the tanker opened fire while the Master carried out evasive maneuvers resulting in the pirates aborting th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.633333299776552, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-82", - "dateofocc": "2016-04-15", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "MALAYSIA:On 15 April, armed persons in a speed boat fired upon and boarded the tug boat HENRY near Pondo Sibugal, Sitangkai town, 04-40N 119-24E. One crewman was injured by gunfire. The armed persons then kidnapped four crew members and escaped. The Mala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.400000000429486, 4.666666700437816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-44", - "dateofocc": "2014-02-05", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "BANGLADESH:On 5 February, robbers boarded an anchored bulk carrier near position 22-15N 091-45E, Chittagong Anchorage. During routine rounds, duty crewman noticed the four robbers near the stern lowering ships stores into two wooden boats with three robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-45", - "dateofocc": "2014-02-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 19 February, six pirates in a small boat attempted to board an underway tanker near position 03-57N 005-18E, 26 nm southwest of Pennington Oil Terminal. The pirates approached the tanker and tried to hook onto a boarding ladder. Upon detecting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.299999999707325, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-46", - "dateofocc": "2014-02-13", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "RO-RO Vessel", - "descriptio": "SOMALIA: On 13 February, five armed individuals in a skiff chased and fired on the Sierra Leone flagged RO-RO vessel ANDREA near position 01-07N 044-34E, 3 nm north of Barawe, Somalia. The armed embarked security team returned fire and after 20 minutes t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.566666700199335, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-47", - "dateofocc": "2014-02-14", - "subreg": "71", - "hostility_": "Robber(s)", - "victim_d": "Anchored container ship", - "descriptio": "INDONESIA:On 14 February, a robber(s) boarded an anchored container ship near position 05-59S 106-55E, Jakarta Roads. When the duty crewman on routine rounds noticed an unlit small wooden boat quickly leaving the stern of the ship, the crew raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.916666700372105, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-48", - "dateofocc": "2014-02-06", - "subreg": "71", - "hostility_": "Robber(s)", - "victim_d": "Underway cargo ship", - "descriptio": "INDONESIA:On 6 February at approximately 0615 local time, five robbers armed with knives boarded an underway cargo ship near position 01-03N 103:36E, southern Singapore Strait. The robbers entered the engine room and threatened the duty crew who immediat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-49", - "dateofocc": "2014-02-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Underway container ship", - "descriptio": "INDONESIA:On 6 February at approximately 0630 local time, seven robbers armed with knives boarded an underway container ship near position 01:05 N 103:33 E, southern Singapore Strait. The robbers entered the engine room and tied up the electrical officer", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.550000000411558, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-50", - "dateofocc": "2014-02-13", - "subreg": "61", - "hostility_": "PIRATES", - "victim_d": "MERCHANT VESSEL", - "descriptio": "SOMALIA:On 13 February at 1400Z, a merchant vessel was fired on by pirates at 01-07N 044-07E.No injuries or damages were reported.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [44.116666699600216, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-51", - "dateofocc": "2014-02-20", - "subreg": "57", - "hostility_": "ROBBERS", - "victim_d": "SUPPLY SHIP", - "descriptio": "REPUBLIC OF THE CONGO:On 20 February at 0050Z in the Pointe Noire Anchorage, 04-54S 11-49E. Robbers boarded an anchored supply ship using a piece of rope. They stole ship's properties and escaped when the duty crew spotted them.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.900000000082912] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-52", - "dateofocc": "2014-02-09", - "subreg": "25", - "hostility_": "Boarders", - "victim_d": "Yacht", - "descriptio": "BRITISH VIRGIN ISLANDS:On 9 February, two masked men boarded an anchored yacht in Fat Hogs Bay. The owner heard them climbing on board and attempt to open the companion way doors. When the yacht owner yelled, the boarders proceeded to run away with the o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.566666700155452, 18.433333299830736] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-53", - "dateofocc": "2014-02-10", - "subreg": "25", - "hostility_": "Boarders", - "victim_d": "Yachts", - "descriptio": "ST MARTIN:Between late January and early February, a notable increase in boardings and thefts on yachts was noted by boat crews transiting the area. During this time period, there were at least two burglaries of unoccupied boats; four dinghy thefts; thre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.116666700423366, 18.083333299864421] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-132", - "dateofocc": "2015-06-03", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Timber carrier", - "descriptio": "MALAYSIA:On 3 June, pirates in speed boats hijacked the Indonesian-flagged timber carrierKM MUTIARA off Palau Bangka. The crew of the KM MUTIARA were thrown or forced to jump overboard. Local fishermen later rescued most of the crewmembers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.54999999960927, -2.016666699616508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-54", - "dateofocc": "2014-02-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "BANGLADESH:On 24 February, ten robbers boarded an anchored chemical tanker near position 22-15N 091-43E, Chittagong Anchorage. The robbers, who were armed with knives, arrived in an unlit wooden boat and boarded the tanker using grappling hooks. The duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-55", - "dateofocc": "2014-02-20", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Tug and cargo vessel", - "descriptio": "BANGLADESH:On 20 February, the crew on a tug towing a general cargo vessel to scrap observed five fishing boats approach the cargo vessel under tow near position 21-00N 091-37E, approximately 75 nm south of Chittagong. Two of the fishing boats came along", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.616666699787345, 21.000000000125112] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-56", - "dateofocc": "2014-03-04", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Underway bulk carrier", - "descriptio": "NIGERIA:On 4 March, armed pirates attempted to board an underway bulk carrier near position 04-00N 005-16E, approximately 60 nm west-southwest of Brass. The pirates in two skiffs chased and fired upon the vessel during the attempted boarding. The vessel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.266666699737755, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-237", - "dateofocc": "2014-10-15", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "BANGLADESH:On 15 October, two robbers boarded an anchored bulk carrier near position 21-46N091-47E, Chittagong Lightering Anchorage. Duty crewman on routine rounds saw the robbers, who threatened then attacked him. Duty crewman notified Duty Officer who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 21.766666699821712] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-238", - "dateofocc": "2014-10-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 14 October, five robbers boarded an anchored bulk carrier near position01-28N 104-37E, 14 nm north-northeast of Bintan Island. Duty Engineer on security rounds saw the robbers and raised the alarm. Robbers escaped empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-239", - "dateofocc": "2014-10-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG tanker", - "descriptio": "INDONESIA:On 14 October, five robbers boarded an anchored LPG tanker near position05-56S 106-46E, Bay of Jakarta. Duty Officer on bridge saw the robbers breaking into store room via CCTV on the bridge and raised the alarm. Robbers escaped empty handed in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.766666699872587, -5.933333300084826] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-240", - "dateofocc": "2014-10-14", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing boat", - "descriptio": "INDONESIA:On 14 October, four gunmen in a speedboat attacked an Indonesian flagged fishing boat in an area approximately 22 nm east of Banggi Island, in northern Sabah. Two crewmen from the fishing boat sustained injuries from gun fire and were taken to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.64999999969848, 7.266666699802443] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-241", - "dateofocc": "2014-10-14", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Oil/Chemical Tanker", - "descriptio": "MALAYSIA:On or about 14 October, pirates hijacked the 3,200-dwt SRIKANDI 515 which was en route from Gresik to Kalimantan with 3,100 tons of palm oil. The vessel left on 8 October, but by 17 October it had not reached its destination. The captain and 10", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.499999999904219, -6.250000000081627] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-242", - "dateofocc": "2014-10-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 27 October, two robbers armed with knives in a small boat boarded an underway bulk carrier near position 01-04N 103-36E, 11 nm east-northeast of Pulau Karimun Besar. Alarm was raised, crew mustered, and a search was carried out. Upon hearing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-243", - "dateofocc": "2014-10-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 26 October, four robbers in a small boat with a green canopy, armed with knives and bolos boarded an anchored container ship near position 01-24N 104-35E, 10 nm north of Tg. Berakit, Bintan Island. Duty crewman noticed the robbers attempting", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-244", - "dateofocc": "2014-10-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 24 October, twelve robbers in two boats approached an anchored bulk carrier near position 22-15N 091-43E, Chittagong Anchorage. Three robbers armed with long knives boarded the ship using hooks attached with ropes. They took hostage three s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.250000000390401] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-245", - "dateofocc": "2014-10-24", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VENEZUELA:On 24 October, two robbers armed with knives boarded an anchored bulk carrier near position 10-16N 064-35W, Guanta Anchorage. When the duty officer noticed the store room door open, he instructed two crew members to check. Upon arrival at the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-246", - "dateofocc": "2014-11-06", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Anchored Vessel", - "descriptio": "TOGO:On 6 November, nine robbers twice attempted to board an anchored vessel near position 06-02N 001-15E, Lome Anchorage using ropes with hooks. The crew raised the alarm and used fire pumps to prevent the robbers from boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.033333299609581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-247", - "dateofocc": "2014-11-04", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "NIGERIA:On 4 November, six pirates in a boat approached and fired upon an underway container vessel near position 04-03N 005-28E, 30 nm from the Bayelsa Coast. The pirates managed to come alongside the vessel, destroy part of the razor wire, and attempte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.466666700103985, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-248", - "dateofocc": "2014-11-04", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA: On 4 November, pirates boarded an underway tanker near position 03-00N 006-45E, approximately 77 nm south-southeast of Brass.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.750000000338787, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-249", - "dateofocc": "2014-11-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "MALAYSIA:On 4 November, the duty crewman on an anchored offshore tug near position 01-13N 103-34E, 4 nm southeast of Tanjung Piai, Johor, saw a robber on the main deck and immediately notified the bridge. The crew raised the alarm raised and mustered. Se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-125", - "dateofocc": "2015-06-01", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 01 June near position 22-16N 091-43E about 3.7 nm west of Patenga, Bangladesh, 5 robbers with knives boarded an anchored bulk carrier with a rope ladder. The robbers tried to attack the crew watchman. The alarm was raised and the crew muste", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.716666700420149, 22.266666700287544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-126", - "dateofocc": "2015-06-02", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Unidentified Vessel", - "descriptio": "TOGO:On 2 June, a vessel at anchor near position 06-08N 001-17E, Lome Anchorage, reported several small boats posing as fishing boats making repeated approaches to vessels at anchor, taking advantage of the heavy rain which impaired visibility. The vesse", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 6.133333300242384] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-127", - "dateofocc": "2015-06-04", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 4 June, pirates hijacked an underway product tanker near position 02-21N 104-22E,8 nm southwest off Pu Aur. They took hostage all crew members, altered course and sailed the vessel until it rendezvoused with another vessel into which part of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.366666699974871, 2.350000000376383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-128", - "dateofocc": "2015-06-08", - "subreg": "26", - "hostility_": "Pirates", - "victim_d": "Cargo vessel", - "descriptio": "PANAMA:On 8 June, local authorities received a report stating that robbers had boarded the Venezuelan-flagged cargo vessel VFM ALITA near the Atlantic entrance to the Panama Canal, about 50 miles north of Panama City. The two crewmembers onboard the ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.51666669987452, 9.816666700199676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-129", - "dateofocc": "2015-06-05", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "COLOMBIA:On 5 June, an unknown number of robbers boarded an anchored product tanker near position 03-51N 077-05W, Buenaventura Inner Anchorage. A duty crewman on routine rounds noticed the paint store room padlock had been broken. Upon checking, he found", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.08333330018246, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-130", - "dateofocc": "2015-06-08", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Cargo ship", - "descriptio": "DR CONGO:On 8 June, six robbers armed with bolos in a wooden boat boarded an anchored general cargo ship near position 04-44S 011-45E, Pointe Noire Anchorage. A duty crewman saw two of the robbers. One of the robbers chased the duty crewman who managed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.749999999601187, -4.733333299686308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-131", - "dateofocc": "2015-06-04", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "VIETNAM:On 4 June, two robbers boarded an anchored container ship near position10-05N 107-02 E, Vungtau Anchorage. A duty crewman on rounds noticed the robbers and informed the duty officer who raised the alarm and mustered the crew. Seeing the crew resp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.08333329960567] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-135", - "dateofocc": "2015-06-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "MALACCA STRAIT:On 17 June, at approximately 0221 Local Time, three robbers boarded the Brazil-flagged bulk carrier DENSA SHARK near position 01-05N 103-42E, approximately 1.1 nm south-southwest of Pulau Takong Kecil. The robbers were sighted in the engin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.700000000011698, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-136", - "dateofocc": "2015-06-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LNG Tanker", - "descriptio": "MALACCA STRAIT:On 17 June, at approximately 0503 Local Time, five robbers boarded the Norway-registered LNG tanker CLIPPER POSH near position 01:08 N - 103:46 E, approximately 3.9 nm northeast of Pulau Takong Kecil. The robbers were sighted in the engine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.766666699775612, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-137", - "dateofocc": "2015-06-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Oil Tanker", - "descriptio": "MALACCA STRAIT:On 17 June, at approximately 0525 Local Time, five robbers boarded the Panama registered oil tanker PRO TRIUMPH near position 01-03N 103-36E, approximately 6.9 nm southwest of Pulau Takong Kecil. The five perpetrators were sighted in the e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-138", - "dateofocc": "2015-06-13", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "INDONESIA: On 13 June, five pirates armed with guns and knives boarded a tug and barge near position 01-35N 105-00E, 35 nm northeast of Pulau Bintan. They stole the crew's and ship's properties and damaged the ship's communication equipment before escapi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.0000000001437, 1.583333299780463] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-83", - "dateofocc": "2016-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore Supply Vessel", - "descriptio": "NIGERIA:On 19 April, in 03-30N 004-50E about 97 nm SW of Brass, pirates attacked and boarded an underway offshore supply vessel. The alarm was raised and crew mustered. Pirates robbed and kidnapped two crew members. All remaining crew retreated to the ci", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.833333300110382, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-84", - "dateofocc": "2016-04-24", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "YEMEN:On 24 April at 2115Z , vessel was attacked in 14-25.8N 049-08.0E near port of Al Mukalla.Persons in two small skiffs fired shots at vessel. Armed security aboard vessel fired warning shots in return. Vessel reported safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.133333299834305, 14.433333299701417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-85", - "dateofocc": "2016-04-28", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "NIGERIAOn 28 April, a speedboat made a suspicious pass against an anchored tanker near position 04-19N 004-26E, vicinity of Bonga Oil Platform. Armed guards on the vessel fired warning shots and the speedboat moved away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.433333300277297, 4.316666699572124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-76", - "dateofocc": "2016-04-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore Supply Vessel", - "descriptio": "NIGERIA:On 20 April at 0530 LT, an offshore supply vessel reported being attacked and boarded near position; 03-39N 006-08E, 39 nm SW of Brass. Alarm was raised and all but two crew members on board went to citadel. The Nigerian Navy boarded the ship for", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.133333300242384, 3.649999999609008] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-86", - "dateofocc": "2016-04-21", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PERU:On 21 April, deck watchman on routine rounds onboard an anchored crude oil tanker, near position 12-01S 077-13W, Callao Anchorage No.12, noticed a robber attempting to break into the forecastle store room. Duty officer informed, alarm raised, fog ho", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.216666699710231, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-88", - "dateofocc": "2016-04-21", - "subreg": "92", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 21 April, crew onboard an underway bulk carrier noticed a speed boat approaching at high speed near position 10-38N 120-34E, 18 nm east of Dalanganem Island. Alarm raised, whistle sounded, crew mustered and fire hoses activated. The boat c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.566666699959114, 10.633333299938215] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-89", - "dateofocc": "2016-04-28", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 28 April at 1112 LT in 03-56N 004-43E, around 67 nm SW of Baylesa, pirates in a speed boat approached and opened fire on an underwent tanker. Alarm was raised, crew mustered and SSAS was activated. Master performed evasive maneuvers while onbo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.716666700304529, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-90", - "dateofocc": "2016-04-25", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "CONGO:On 25 April at 0200 LT in 04-45S 011-50E, at the Point Noire inner anchorage, two robbers boarded an anchored general cargo ship. Robbers escaped with ship's property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.83333330033679, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-91", - "dateofocc": "2016-04-30", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 30 April at 0650 LT in 17-35.4N 083-24.9E, in Visakhapatnam anchorage, robbers approached and boarded an anchored tanker. Crew noticed two robbers on the poop deck trying to open deck locker. Officer was informed and sounded the alarm. Crew must", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.416666700061796, 17.583333300297909] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-92", - "dateofocc": "2016-04-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore Supply Vessel", - "descriptio": "NIGERIA:On 20 April at 0430Z in 03-39N 006-50E, around 39 nm SSW of Brass, pirates attacked and boarded an underway offshore supply vessel. Crew retreated to the citadel. Pirates escaped before Nigerian Navy boarded vessel. All crew reported safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.83333330017507, 3.649999999609008] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-93", - "dateofocc": "2016-05-04", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "On 04 May at 0020 LT in 03-54.1N 005-17.6E, around 44 nm SW of Baylesa, armed pirates approached, fired upon and attempted to board an underway tanker. Armed guards aboard the tanker exchanged fire resulting in the pirates aborting the attack. All crew r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.299999999707325, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-94", - "dateofocc": "2016-05-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "On 05 May at 0226Z in 03-54N 005-32E, around 36 nm SW of Baylesa, armed pirates chased and fired upon an underway tanker. Pirates aborted attempt after anti piracy measures were performed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.533333300043068, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-95", - "dateofocc": "2016-05-03", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "DROC:On 3 May, robbers boarded an anchored vessel near position 05-51S 01326E, Matadi Anchorage. The robbers were seen by crewmen, who raised the alarm. The robbers escaped with stolen ship¿s stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.433333299669073, -5.850000000248542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-96", - "dateofocc": "2016-05-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 05 May at 1552Z in 03-50.9N 005-24.9E, around 43 nm SW of Baylesa, pirates in two speed boats chased and fired upon an underway tanker. Attack was aborted due to presence of Naval personnel and anti-piracy measures.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.416666700237272, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-97", - "dateofocc": "2016-05-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 07 May at 1500Z in 03-42N 005-10E, around 58nm SW of Baylesa, pirates with automatic weapons approached, fired upon and attempted to board an underway tanker. Master raised the alarm and took evasive maneuvers. The crew mustered in the citadel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.166666700004328, 3.700000000375042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-98", - "dateofocc": "2016-05-07", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "LNG Tanker", - "descriptio": "INDONESIA: On 7 May, merchant tanker HAI SOON 12, underway from Singapore to Sunda Straits was boarded by armed pirates near position 02-04.48S 108:39.27E, around 21 nm S of Pulau Serutu. They took hostage all crew members and hijacked the tanker. As the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [108.650000000306704, -2.066666700382541] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-57", - "dateofocc": "2014-03-04", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore supply vessel", - "descriptio": "NIGERIA:On 4 March at approximately 0130 local time, pirates boarded the Nigerian- flagged offshore supply vessel PRINCE JOSEPH 1 and kidnapping three crewmembers near position 04-17N 007-53E, Bight of Bonny, off Akwa Ibom State. After the pirates depart", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.883333300074128, 4.283333299777837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-58", - "dateofocc": "2014-03-06", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Merchant vessel", - "descriptio": "OMAN:On 6 March, three suspicious white skiffs approached a merchant vessel near position 22-27N 060-29E, approximately 122 nm southeast of Muscat, Oman. The skiffs with two persons onboard each skiff approached the ship to within a half mile. After self", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.486666700210549, 22.451666699884356] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-59", - "dateofocc": "2014-02-28", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Underway bulk carrier", - "descriptio": "PAKISTAN:On 28 February, suspected pirates in a skiff chased an underway Bangladeshi-flagged bulk carrier, MV CRYSTAL GOLD near position 24-33N 062-44E, approximately 40 nm southeast of Gwadar, Pakistan. The pirates reportedly chased for up to four hours", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [62.733333299554658, 24.54999999965537] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-60", - "dateofocc": "2014-03-03", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "RED SEA:On 3 March, pirates approached an Iranian-flagged tanker near the Bab al Mandeb Strait, in the southern Red Sea. Iranian Navy Commander Rear Admiral Habibollah Sayyari told reporters that the armed pirates attempted to attack the ship twice and t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.333333300006473, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-61", - "dateofocc": "2014-03-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Underway tanker", - "descriptio": "INDONESIA:On 6 March, four robbers boarded an underway tanker near position 01-11N 103-26E, approximately 3 nm from Pulau Karimun Kecil. The robbers were armed with knives and arrived in a speed boat. When the crew raised the alarm, the pirates escaped e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.433333299881667, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-141", - "dateofocc": "2015-06-01", - "subreg": "83", - "hostility_": "Robbers", - "victim_d": "Sailing Yachts", - "descriptio": "FRENCH POLYNESIA:At least five sailing yachts have been boarded since the beginning of June in the port of Uturoa, on the northern end of Raiatea Island. Various items have been stolen, including cash, valuables and electronics. Reportedly, one person wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [-151.416666699771582, -16.733333300074378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-62", - "dateofocc": "2014-03-01", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Anchored bulk carrier", - "descriptio": "BANGLADESH:On 1 March, four robbers boarded an anchored bulk carrier near position 22-14N 091-44E, Chittagong Anchorage. The robbers who were armed with knives boarded the ship from the stern. When the duty crew spotted the robbers and raised the alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.233333299593937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-63", - "dateofocc": "2014-03-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Underway tanker", - "descriptio": "SINGAPORE STRAIT:On 3 March near 01-11N 103-26E, four robbers armed with knives in a speed boat boarded a tanker underway. Alarm raised and crew alerted. Seeing the allerted crew the robbers escaped immediatly. Nothing was stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-64", - "dateofocc": "2014-03-03", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply vessel", - "descriptio": "NIGERIA:On 3 March at 19:12 LT near 04-11N 005-44E approximately 7 pirates in a speed boat boarded a supply vessel and hijacked it. They took crew members hostage and used the vessel as a mother vessel to attack and hijack other vessels. They also stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.733333300409299, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-65", - "dateofocc": "2014-03-06", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply vessel", - "descriptio": "NIGERIA:On 6 March, pirates boarded the Nigerian-flagged supply vessel PRIME LADY while in transit from Onne to the Utpotiki oil field near position 04-11N 005-44E, approximately 15 nm offshore. The Captain and one other crew member were reportedly kidna", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.733333300409299, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-66", - "dateofocc": "2014-03-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore tug", - "descriptio": "NIGERIA:On 5 March, pirates boarded the underway Nigerian-flagged offshore tug ASHA DEEP southwest of Brass. Three crewmembers were reportedly taken hostage. On 7 March, Nigerian Naval forces rescued three Indian nationals kidnapped from this ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.783333300308357, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-67", - "dateofocc": "2014-03-09", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "INDIA:On 9 March, three robbers armed with knives boarded an anchored product tanker near position 09-56N 076-09E, Kochi Anchorage. When the duty officer spotted the robbers, stealing ships stores, he raised the alarm. The crew members rushed to the scen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.149999999705301, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-68", - "dateofocc": "2014-03-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Crude oil tanker", - "descriptio": "INDONESIA:On 6 March, at approximately 0515 hours local time, four robbers boarded the underway Marshall Islands-flagged crude oil tanker SEA VOYAGER off Pulau Karimun Kecil. The robbers arrived on a fishing vessel and where armed with knives. Upon detec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-69", - "dateofocc": "2014-03-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Crude oil tanker", - "descriptio": "INDONESIA:On 6 March, at approximately 0535 hours local time, five robbers boarded the underway Liberian-flagged crude oil tanker ORPHEAS off Pulau Karimun Kecil. The robbers were armed with knives and managed to steal some engine spares. The crew was no", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-70", - "dateofocc": "2014-03-10", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 10 March, at approximately 0150 hours local time, four robbers boarded the underway Cyprus-flagged bulk carrier CAPE VENI southwest of Pulau Nipa in the traffic separation schemes eastbound lane. The robbers who arrived on a small boat were", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.900000000377929, 1.199999999844522] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-250", - "dateofocc": "2014-11-07", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "COLOMBIA:On 7 November, an unknown number of robbers boarded an anchored bulk carrier near position 03-49N 077-09W, Buenaventura Anchorage. The duty crewman on routine rounds noticed the hawse pipe cover opened and the securing chain broken. The ship¿s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.149999999946317, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-251", - "dateofocc": "2014-11-12", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Unidentified Vessel", - "descriptio": "NIGERIA:On 12 November, two suspicious motor boats approached a vessel near position 04-32N 005-15E near TULIA Terminal. When the vessel altered course in order to avoid close contact with the motor boats, pirates fired at the accommodation area of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.249999999840611, 4.533333300010781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-252", - "dateofocc": "2014-11-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:On 5 November, the Malta-flagged chemical tanker BASAT and its 14 Turkish crew members were attacked by Nigerian pirates in Nigerian waters while en route from Douala, Cameroon to Abidjan, Ivory Coast. Few details are known, but the pirates board", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.050000000406101, 3.450000000142154] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-253", - "dateofocc": "2014-11-12", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Cargo Ship", - "descriptio": "RED SEA:On 12 November, an Israeli-flagged cargo ship was reportedly attacked by pirates in the Strait of Bab-el-Mandeb. Security guards stationed aboard the transport ship repelled the attack. The incident occurred as the ship made its way from East Asi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.333333300006473, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-254", - "dateofocc": "2014-11-08", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 8 November, five robbers boarded an anchored bulk carrier during cargo operations near position 00-17S 117-36E, Muara Berau Anchorage, Samarinda. The robbers took hostage two duty crewmen, tied them up, and then broke into the forecastle sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.599999999831766, -0.283333299857134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-255", - "dateofocc": "2014-11-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA: On 8 November, duty watchman on routine rounds onboard an anchored chemical tanker near position 01-28N 104-38E, 14 nm north-northeast of Tanjung Berakit, Bintan Island, noticed three persons on the stern of the ship. One of them was armed wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-256", - "dateofocc": "2014-11-04", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH: On 4 November, an armed group attacked a group of fishing boats near the Kuakata Beach area in the Patuakhali District, kidnapping up to 14 fishermen and stealing one of their fishing boats.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.116666700188489, 21.816666699688426] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-257", - "dateofocc": "2014-11-16", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bitumen Tanker", - "descriptio": "IVORY COAST: On 16 November, eight robbers armed with Kalashnikov machine guns and knives boarded an anchored bitumen tanker near position 05-12N 004-02W, Abidjan Outer Anchorage. They tried to hijack the vessel, but the Second Engineer managed to immob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.033333299753622, 5.199999999973898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-258", - "dateofocc": "2014-10-25", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 25 October, 10 robbers in a high-speed boat approached an anchored product tanker and hid under the tanker's bow flare near position 06-19N 003-24E, Lagos Anchorage. One of the robbers boarded the vessel and rigged three hoses into the forwar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-259", - "dateofocc": "2014-11-20", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH: On 20 November, six robbers armed with knives boarded a bulk carrier during anchoring operations near position 21-48N 091-48E, Kutubdia Anchorage. When duty crew saw the robbers on the poop deck lowering mooring ropes over the side, the alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 21.799999999791282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-260", - "dateofocc": "2014-11-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 19 November, five persons armed with knives boarded an anchored tanker near position 01-29N 104-51E, 22 nm northeast of Tanjung Berakit, Bintan Island. The alarm was raised and crew mustered. Seeing the crew response, they confronted the dec", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.84999999964424, 1.483333300047036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-261", - "dateofocc": "2014-11-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA: On 16 November, four robbers boarded an underway chemical tanker near position 01-08N 103-30E, 5 nm east of Pulau Karimun Kecil. Duty crew noticed the robbers and raised the alarm. Upon seeing the crew response, the robbers fled. A search of t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-139", - "dateofocc": "2015-06-12", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Wood Chip Carrier", - "descriptio": "INDONESIA:On 12 June, a Duty Officer onboard an anchored wood chip carrier saw an unlit boat in close proximity to the ship near position 04-00N 098-54E, Belawan anchorage. He informed the duty crewman on deck, who reported that 7 robbers had just boarde", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.90000000021621, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-140", - "dateofocc": "2015-06-11", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "BANGLADESH:On 11 June four robbers boarded an anchored chemical tanker near position 22-12N 091-47E, CUFL Jetty, Chittagong. The Chief Officer saw the robbers on deck and raised the alarm. Seeing an alerted crew, the robbers escaped empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 22.199999999624367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-142", - "dateofocc": "2015-06-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:On 16 June near position 01-04N 103-34E, five robbers armed with knives boarded a tanker approaching the Eastern Anchorage Area. They took one crew member hostage and stole ship's properties and escaped. The alarm was sounded. The crew m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-143", - "dateofocc": "2015-06-20", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:On 20 June, three robbers armed with long knives in a speed boat boarded a container ship approaching the anchorage point near position 22-10N 091-42E, Chittagong B Anchorage. The bridge duty officer informed a deck crewman who shouted at the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.699999999623628, 22.166666699654797] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-144", - "dateofocc": "2015-06-22", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "BANGLADESH:On 22 June, during heavy rain robbers boarded an anchored container vessel near position 22-09N 091-44E, Chittagong Anchorage. A duty crewman saw the robbers attempting to enter the accommodation area. He informed the Duty Officer who raised t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.149999999757654] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-145", - "dateofocc": "2015-06-26", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "TOGO:On 26 June, at the Lome Anchorage near position 06-01N 001-17E, approximately 7 suspected robbers in 2 boats approached and came alongside an anchored container ship. Upon seeing the robbers attempting to board the ship, the duty officer raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.283333299680805, 6.016666700436531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-146", - "dateofocc": "2015-06-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:On 27 Jun near position 01-06N 103-32E, 8 robbers armed with knives boarded a tanker underway. The alarm was raised, the Ship Security Alert System was activated and non-essential crew mustered into the citadel. The robbers escaped with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.533333299615094, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-147", - "dateofocc": "2015-06-27", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "KENYA:On 27 June, robbers armed with long knives boarded a tanker near position 04-02S 039-38 E, Shimanzi Oil Terminal, Mombasa. They were spotted by a duty crewman who alerted the duty officer. The duty officer raised the alarm and the crew mustered. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.633333299976755, -4.033333299753622] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-148", - "dateofocc": "2015-06-27", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 27 June, robbers boarded an anchored tanker near position 13-44N 121-02 E, Batangas Anchorage. The robbers broke into the forepeak store room and escaped with ship's properties. A duty crewman on routine rounds noticed the theft and inform", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-149", - "dateofocc": "2015-06-24", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 24 June, two robbers armed with long knives boarded a bulk carrier during cargo operations near position 00-18S 117-40E, Muara Berau Anchorage, Samarinda. They boarded the vessel via the anchor chain and forced their way thru the hawse pipe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.666666699595567, -0.299999999754334] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-150", - "dateofocc": "2015-06-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 26 June, robbers armed with long knives boarded an underway bulk carrier from the stern near position 01-06N 103-44E, 1 nm east-southeast of Pulau Takong Kecil. As they broke the padlock to the engine room entrance, the alarm was raised and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.733333299981268, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-151", - "dateofocc": "2015-06-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 26 June, an unknown number of robbers boarded a tanker underway probably near position 01-11N 103-25E, 2.5 nm northeast of Pulau Karimun Kecil. The robbers stoleship's properties and escaped. The incident was discovered later in the day.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-73", - "dateofocc": "2016-04-15", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "MALAYSIA:On 15 April at 1739 LT in position 04-31N 119-00E, pirates in a speed boat approached and boarded an underway tug. Pirates opened fire, kidnapped four crew members and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.999999999697138, 4.516666699938355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-74", - "dateofocc": "2016-04-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "INDONESIA:On 17 April at 2345 LT in 01-30N 104-52E, approximately 24nm NE of Bintan Island, four robbers in a wooden boat approached and attempted to board an anchored ship. The robbers aborted the attempt after the crew mustered after hearing the ship a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.866666700440703, 1.49999999994418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-99", - "dateofocc": "2016-05-02", - "subreg": "61", - "hostility_": "Robber", - "victim_d": "Product Tanker", - "descriptio": "KENYA:On 02 May at 0110LT in vicinity 04-03S 039-39E, one robber boarded a berthed product tanker. Alert crew noticed the robber and raised the alarm. Crew mustered and rushed to the location. Upon hearing the alarm and seeing the crew alertness, the rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.649999999873899, -4.049999999650765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-100", - "dateofocc": "2016-05-08", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDIA:On 08 May at 0730 LT in 17-37.1N 083-22.0E, three persons in a fishing boat approached an anchored LPG tanker. They boarded the tanker using a heaving line and a hook. Watch noticed the persons and ordered them to leave.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.366666700195026, 17.616666700092196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-101", - "dateofocc": "2016-05-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 08 May at 2050 LT in 03-20N 109-36E, while enroute from Labuan to Kuantan the engineer noticed some unauthorized persons trying to enter the accommodation space. The alarm was sounded and all deck lights were turned on. Crew mustered and a s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.599999999573015, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-102", - "dateofocc": "2016-04-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "INDONESIA:On 25 April at 0400 LT in 01-09.35N 103-56.68E, four robbers in a wooden boat approached and boarded an anchored dredge via the stern. They stole ship's properties and escaped. Incident reported to authorities who boarded the ship the following", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.950000000244643, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-103", - "dateofocc": "2016-05-09", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 09 May at 2106 LT in 10-11N 107-04E, robbers boarded an anchored container ship and stole ship's stores. The alarm was raised and the robbers escaped. Port control informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.066666699972245, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-104", - "dateofocc": "2016-05-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 5 May, armed pirates in a speed boat chased and fired upon a tanker underway near position 03-53N 005-36E, 34 nm SW of the Bayelsa coast. Ship's Master made loudspeaker announcement and all crew was mustered on the bridge. Attack was aborted d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.599999999806982, 3.883333299944752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-105", - "dateofocc": "2016-05-04", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 4 May, robbers armed with knives boarded an anchored bulk carrier near position00-15S 117-40E, Samarinda Anchorage. Alarm was raised and crew was mustered. The robbers escaped with stolen ship's properties.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.666666699595567, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-106", - "dateofocc": "2016-05-04", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 4 May, robbers boarded a bulk carrier underway near position 01-20S 116-52E, Balikpapan. The robbers stole ship properties and escaped unnoticed. The theft was noticed by the duty crew on routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.866666699929397, -1.333333299756191] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-107", - "dateofocc": "2016-05-05", - "subreg": "57", - "hostility_": "Militants", - "victim_d": "Offshore Oil Facility", - "descriptio": "NIGERIA:On 5 May, militants attacked the Okan offshore oil facility, vicinity 05-30N 005-00E, located in the Escravos Bay in the Niger Delta region. A group known as the Niger Delta Avengers has claimed responsibility for the attack. The facility has bee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.999999999607724, 5.500000000073555] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-108", - "dateofocc": "2016-05-03", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "VIETNAM:On 3 May, a Vietnam-flagged fishing ship was rammed and subsequently sunk while operating in the Paracel Island group vicinity 16-40N 112-20E. The incident occurred late at night, though the crew of the fishing ship believed that the ship that ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.333333300439222, 16.666666699926566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-109", - "dateofocc": "2016-04-24", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 24 April, an unauthorized person boarded a berthed bulk carrier conducting cargo operations near position 35-21N 119-32E, Rizhao Port. Duty crewman noticed the person hiding on the poop deck area and raised the alarm. Seeing the alerted crew, th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.53333330013254, 35.349999999644922] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-110", - "dateofocc": "2016-04-23", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "CHINA:On 23 April, duty crewman on routine rounds noticed a hose inserted into a diesel oil tank. The ship was anchored near position 37-50N 120-01E, Longkou Anchorage. Duty officer on the bridge was informed and alarm was raised. Upon hearing the alarm,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.016666699626626, 37.833333300278298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-111", - "dateofocc": "2016-05-16", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN: On 16 May at 0512Z, five skiffs made a suspicious approach on an underway container ship near position 14-45N 050-58E, near Al Mukalla. Ship¿s Master raised the alarm, increased speed and mustered the crew. As the skiffs closed to 0.5 nm, a ladde", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.966666700226426, 14.749999999698161] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-112", - "dateofocc": "2016-05-12", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "VENEZUELA:On 12 May at 2150 LT in 10-11.3N 064-47.0W, Puerto Jose anchorage, four robbers armed with steel pipes boarded an anchored LPG tanker. Duty crew on routing rounds noticed the robbers and raised the alarm. Seeing the alerted crew the robbers esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.783333299694732, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-71", - "dateofocc": "2014-03-12", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tugboat", - "descriptio": "NIGERIA:On 12 March at approximately 0130 local time, criminals boarded the tugboat SOMKE in the Nembe Local Government Area of Bayelsa, northeast of Brass and kidnapped the vessel's captain. The kidnappers and hostage subsequently disappeared into nearb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.249999999872955, 4.316666699572124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-72", - "dateofocc": "2014-03-12", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tugboat", - "descriptio": "NIGERIA:On 12 March at approximately 0130 local time, criminals boarded the tugboat EBIZAR in the Nembe Local Government Area of Bayelsa, northeast of Brass and kidnapped the vessel's captain. The kidnappers and hostage subsequently disappeared into near", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.249999999872955, 4.316665999899612] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-73", - "dateofocc": "2014-03-22", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Passenger vessel", - "descriptio": "NIGERIA:On 22 March, several armed men boarded a passenger vessel near position 04-46N 006-01E, approximately 30 nm northwest of Brass and robbed the passengers. The men were traveling in a speedboat boarded the vessel near Okpotuwari, in Bayelsa State.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.016666700436531, 4.766666700171243] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-74", - "dateofocc": "2014-03-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Crude oil tanker", - "descriptio": "NIGERIA:On 20 March at approximately 0130 local time, four pirates in a speedboat attacked the Liberian-flagged crude oil tanker CRETE near position 04-14N 005-00E, approximately 40 nm offshore of Bayelsa State, Nigeria. The oil tanker issued a distress", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.999999999607724, 4.233333299911124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-75", - "dateofocc": "2014-03-23", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Chemical tanker", - "descriptio": "RED SEA:On 23 March, five skiffs with three persons in each skiff, approached an underway chemical tanker at high speed near position 13-18N 042-52 E, approximately 50 nmnorthwest of Perim Island, Yemen. The ship's Master raised the alarm, mustered the c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.866666700234305, 13.299999999966076] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-76", - "dateofocc": "2014-03-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 20 March, three robbers boarded an anchored tanker using a rope near position 05-59S 105-55E, at Cigading Anchorage. The duty crewman spotted the robbers and reported the activity to the duty officer on the bridge. The duty officer raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.916666700339761, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-77", - "dateofocc": "2014-02-06", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical tanker", - "descriptio": "NIGERIA:On 6 February at 10:55 local time, position 04-01N 005-01E, around 60 nm east of Brass, Nigeria eight armed pirates in a speedboat chased a chemical tanker underway. The vessel raised alarm, made evasive maneuvers, sent a distress message and act", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.016666700404187, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-86", - "dateofocc": "2014-04-12", - "subreg": "24", - "hostility_": "Robber", - "victim_d": "Anchored Bulk Carrier", - "descriptio": "BRAZIL:On 12 April, a robber armed with a knife boarded an anchored bulk carrier near the position 01-04S 048-29W, Mosqueiro Pilot Station Anchorage. The robber was detected when the Duty Officer saw movement near the forecastle and directed the watchmen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-48.483333299977005, -1.066666700350197] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-79", - "dateofocc": "2014-04-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 2 April, four robbers boarded an anchored tanker from the stern near position 01-24N 104-43E, approximately 12 nm northeast of Palau Bintan. When the duty crewman noticed the robbers, he informed the bridge. The alarm was raised and the cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.716666699941186, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-80", - "dateofocc": "2014-04-01", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "VIETNAM:On 1 April, three robbers boarded a container ship near position 20-52N 107-07E, Cailan Channel. The robbers were attempting to break into the forward store space when they were noticed by the crew. The crew raised the alarm, mustered, and activ", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.116666699838959, 20.866666700422115] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-81", - "dateofocc": "2014-03-31", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 31 March, four robbers boarded an underway bulk carrier near position 01-06N 103-34E, approximately 9 nm east-northeast of Pulau Karimun Besar. The robbers went to the engine room, threatening the Duty Oiler with a knife, tied him up, and fl", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-82", - "dateofocc": "2014-03-31", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 31 March, four robbers boarded an anchored tanker near position 01-24N 104-41E, approximately 12 nm north-northeast of Tanjung Berakit, Pulau Bintan. When the duty crewman noticed the robbers boarding the vessel near the stern, he informed t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-262", - "dateofocc": "2014-11-16", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 16 November, seven robbers armed with knives boarded an anchored bulk carrier near position 01-14S 117-35E, Muara Berau anchorage, Samarinda. When the duty crew on routine rounds noticed the robbers on the forecastle, he immediately notified", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -1.233333300022764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-263", - "dateofocc": "2014-11-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 16 November, five robbers boarded an anchored bulk carrier near position 01-38N 104-55E, 30 nm northeast of Tg. Berakit, Bintan Island. When the duty engineer saw the robbers, he immediately informed bridge. The bridge raised the alarm and m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.916666700307417, 1.633333299647177] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-264", - "dateofocc": "2014-11-13", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 13 November, two robbers boarded an anchored tanker near position 01-14N 103-28E, 2 nm SW of Tanjung Piai. When the engine room crew discovered the robbers in the steering gear room, they informed the duty officer who raised the alarm and mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.466666699675955, 1.233333299814092] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-265", - "dateofocc": "2014-11-11", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 11 November, three robbers boarded a berthed LPG tanker near position 01-04N 104-12E, Tanjung Uban Jetty No.1. The robbers fled when the second engineer raised the alarm after discovering them in the engine room and steering gear room. Termi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.19999999957821, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-266", - "dateofocc": "2014-11-21", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 21 November, an unknown number of robbers boarded a tanker near position 06-19N 003-24E, Lagos Anchorage. All ship's crew retreated into the citadel. After waiting an hour, the crew conducted a search of the vessel; it was reported to have be", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.40000000027544, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-267", - "dateofocc": "2014-11-25", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 25 November, five robbers boarded an anchored product tanker near position 09-58N 076-14E, Kochi Anchorage. They broke into the paint store room and stole items from it. Duty crew noticed the robbers and informed the duty officer who raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.233333300440904, 9.966666699799816] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-268", - "dateofocc": "2014-11-23", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:On 23 November, two robbers armed with long knives boarded an anchored container ship near position 22-07N 091-48E, Chittagong Anchorage. Duty crewman on rounds saw the robbers and raised the alarm. Upon hearing the alarm and seeing the crew r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 22.116666699788084] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-269", - "dateofocc": "2014-11-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 23 November, six robbers armed with knives boarded an underway bulk carrier near position 01-07N 103-29E, 4 nm east-southeast of Pulau Karimun Kecil. The robbers entered the engine room and were seen by duty oiler and the second engineer who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.483333299748381, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-270", - "dateofocc": "2014-11-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 22 November, three robbers boarded an underway chemical tanker near position 01-07N 103-30E, 5 nm east-southeast of Pulau Karimun Kecil. The robbers entered the engine room and tried to take hostage the duty oiler who managed to escape and r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-159", - "dateofocc": "2015-07-24", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 24 July near position 01-03N 103-39E a duty oiler and chief engineer on board an underway bulk carrier sighted 2 robbers armed with knives in the engine room stealing engine spares. The emergency alarm was raised, the crew mustered an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-271", - "dateofocc": "2014-11-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 22 November, three robbers boarded an anchored LPG tanker near position 01-24N 104-41E, 12 nm north-northeast of Tg. Berakit, Bintan Island. Second mate on routine rounds saw the robbers with bags on their back on the poop deck. He immediat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-272", - "dateofocc": "2014-11-20", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "VIETNAM:On 20 November, two robbers in a speedboat boarded an anchored LPG tanker near position 10-15N 107-09E, Vung Tau. Duty crew spotted the robbers and raised the alarm. Seeing the crew response, the robbers fled without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.149999999808529, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-273", - "dateofocc": "2014-11-19", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 19 November, an unknown number of robbers boarded a drifting container ship unnoticed and escaped with ship¿s stores near position 10-12N 107-15E, 11 nm southeast of Vung Tau. Duty crew discovered footprints on the main deck in the vicinity o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.250000000441275, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-274", - "dateofocc": "2014-11-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "SAO TOME AND PRINCIPE:On 30 November, an underway tanker experienced an attempted boarding near position00-45S 006-15E, 47 nm south-southwest of Sao Tome and Principe Island. The Ship's Master observed a black hull tug boat lowering a speed boat with eig", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.249999999872955, -0.750000000353396] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-152", - "dateofocc": "2015-07-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 04 July at the Belawan International Container Terminal near position 03-43N 098-42E, three robbers in a wooden boat approached a berthed container ship. The duty watchman noticed two robbers boarding the ship near the forward deck. He shout", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.699999999850036, 3.716666700272185] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-153", - "dateofocc": "2015-06-25", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "HONDURAS:On 25 June, a sailing vessel anchored near position 16-06N 086-55W, East Harbor, Utila Island, experienced the second boarding and robbery in ten days. Both incidents involved night-time boardings with mostly dive gear being stolen. There were n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.916666699933955, 16.099999999696877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-154", - "dateofocc": "2015-07-05", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDIA:On 5 July, five persons in a boat approached an anchored product tanker and attempted to board using the anchor chain near position 17-40N 083-24E: Vishakhapatnam Anchorage. The duty watchman raised the alarm and informed the bridge. Seeing the ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.400000000164596, 17.66666669995891] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-155", - "dateofocc": "2015-06-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 17 June, five robbers boarded an underway LPG tanker near position 01-04N 103-36E, 5.6 nm southwest of Pulau Nipah. The alarm was raised and the crew mustered. Seeing the crews alertness, the robbers escaped empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-156", - "dateofocc": "2015-07-11", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "VIETNAM:At the Vung Tau Anchorage near position 10-10N 107-05E, an unnoticed robber boarded an anchored product tanker, stole ship's stores and escaped. The incident was noticed later in the day and reported to the authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.083333300044671, 10.166666700166047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-157", - "dateofocc": "2015-07-14", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Container Ship", - "descriptio": "TOGO:On 14 July, near position at 06-07N 001-16E, Lome Anchorage, the deck watch of an anchored container ship noticed a wooden boat with 5 individuals and no lights circling the vessel with the intention of climbing on board. The alarm was raised, the c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.266666699608436, 6.116666700169958] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-158", - "dateofocc": "2015-07-15", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "Vietnam:On 15 July, 8 robbers in 2 wooden boats boarded a berthed bulk carrier near position at 10-45 N 106-42 E, in the Fertilizer Terminal, Ho Chi Minh City Port. The duty crewman on routine rounds noticed the robbers and informed the duty officer who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.70000000010873, 10.749999999568843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-160", - "dateofocc": "2015-07-25", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:On 25 July near position 01-04N 103-36E, persons in an unlit boat attempted to board an underway tanker. The anti-piracy crew observed the boat approaching to 20 meters. The crew flashed lights resulting in the boat aborting the attempt", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-161", - "dateofocc": "2015-07-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "SINGAPORE STRAIT:On 26 July near position 01-04N 103-37E, the duty engineer onboard an underway product tanker discovered 3 robbers in the engine room near the incinerator space. The robbers fled to the poop deck. The engineer immediatly closed and locke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-162", - "dateofocc": "2015-07-21", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "SEYCHELLES:On 21 July near position 04-37S 055-28E, an unknown number of robbers boarded an anchored sailing yacht in Victoria Harbour and stole personal electronic items, a small amount of cash and the yacht's dinghy tied alongside the yacht. The robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.466666699922314, -4.616666699880454] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-163", - "dateofocc": "2015-07-21", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "SEYCHELLES:During the week of 21 July near position 04-37S 55-28E, two robbers boarded an anchored sailing yacht in Victoria Harbour. The yacht owner attempted to defend himself and his wife using a flare gun, but one robber took the flare gun away from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.466666699922314, -4.616666699880454] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-164", - "dateofocc": "2015-07-20", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "KENYA:On 20 July, two robbers attempted to board a berthed product tanker during cargo operations near position 04-04S 039-40E, Mbaraki Terminal, Mombasa Port. The alerted crew and shore watchmen noticed the robbers as they attempted to gain access via t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.666666699771042, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-113", - "dateofocc": "2016-05-15", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:On 15 May at 0242 LT in 22-06N 091-45E, at Chittagong \"C\" anchorage, seven robbers in a small boat came alongside and attempted to board an anchored container ship. Alert crew noticed the robbers and informed the duty officer who raised the al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 22.099999999890883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-114", - "dateofocc": "2016-05-11", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "TOGO:On 11 May at 0131Z in 06-05.7N 001-15.0E, at Lome anchorage, seven robbers in a wooden boat approached an anchored product tanker. One robber managed to board the tanker using a manrope. Alert crew noticed the robbers and notified the duty officer w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.100000000272814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-115", - "dateofocc": "2016-05-11", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "TOGO:On 11 May, seven robbers in a wooden boat approached an anchored product tanker, with one robber getting aboard the tanker near position 06-05N 001-15E, Lome Anchorage. Alert crew noticed the robbers and informed the duty officer who in turn raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.249999999711235, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-116", - "dateofocc": "2016-04-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "MALAYSIA:On 16 April at 0345 LT in 01-23N 104-28E, five unauthorized persons were noticed by the duty crew onboard a pipe laying barge. They tried to communicate with the duty crew in their local dialect. The duty crew did not respond and the persons wal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.466666699708298, 1.383333300313609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-117", - "dateofocc": "2016-05-18", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 18 May between 0001 and 0400 LT in 00-14S 117-34E, at Samarinda anchorage, a robber boarded an anchored bulk carrier. Robber stole ship's property and escaped. Incident was discovered during later rounds by crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.23333329999042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-118", - "dateofocc": "2016-05-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "INDONESIA:On 21 May at 0330 LT in 01-10N 103-58E, Batam anchorage, six robbers in a skiff approached an anchored tug. Four robbers wearing ski masks managed to board the vessel. Duty officer raised the alarm and crew mustered. Upon hearing the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.966666700141786, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-119", - "dateofocc": "2016-04-29", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Ore Carrier", - "descriptio": "CHINA:On 29 April at 0020 to 0140 LT at 38-55.5N 119-13.8E, at Jingtang anchorage, duty crew onboard an anchored ore carrier noticed the diesel oil level gauges lower than normal. The diesel oil tank vents were found to be damaged with indications that o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.233333300032882, 38.933333300044069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-120", - "dateofocc": "2016-03-27", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 27 March at 0610 LT vicinity 32-16N 119-25E, at Yangzhou terminal, robbers disguised as stevedores boarded bulk carrier during cargo operations and escaped with ship's property. Duty crew noticed the theft and raised the alarm. Crew mustered and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.416666700326687, 32.266666699711607] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-121", - "dateofocc": "2016-02-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:Between 27 April and 03 March vicinity 06-06S 106-48E, at Tanjung Prick port berth 202, unauthorized persons boarded a bulk carrier while at berth and escaped with ship's properties. The ship departed from berth to Jakarta anchorage where the t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.799999999842157, -6.099999999582167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-122", - "dateofocc": "2016-05-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Research Veseel", - "descriptio": "INDONESIA:On 19 May at 0430 LT in 01-11N 103-57E, at Batam anchorage, four robbers in a small vessel boarded an anchored research vessel. They stole ship's properties and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.950000000244643, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-123", - "dateofocc": "2016-05-23", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SOUTH AFRICA:On 23 May at 2000 LT vicinity 29-52N 031-01E, at Durban port, an unauthorized person disguised as bunker crew boarded a berthed tanker. Person entered accommodation area and stole ship's properties and crew cash. Incident reported to port co", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [31.016666700345695, -29.866666700022563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-124", - "dateofocc": "2016-05-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDIA:On 14 May at 0400 LT in 23-02N 070-13E, at Kandla port, a robber boarded a berthed LPG tanker and stole ship's properties and escaped. The incident was discovered later during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.216666700174471, 23.03333330015937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-125", - "dateofocc": "2016-05-28", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SURINAME:On 28 May vicinity 05-46N 056-52W, in Nickerie, police arrested five people allegedly involved in a pirate attack that left one man dead and three others missing at sea. They said the four crew members were aboard a boat in Surinamese waters whe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-56.866666699996358, 5.766666700203587] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-126", - "dateofocc": "2016-05-25", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 25 May, a UK-flagged yacht was boarded by two masked men, one with a gun, while anchored in Tobago Cays, vicinity 12-38N 061-21W. The intruders demanded money and hit the Captain several times on the head with the yach", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.349999999795102, 12.633333300002903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-83", - "dateofocc": "2014-03-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 29 March, four robbers boarded an underway product tanker near position 01-07N 103-30E, approximately 6 nm east of Pulau Karimun Kecil. The robbers wore masks and were armed with knives. Once onboard, the robbers went to the engine room and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-84", - "dateofocc": "2014-04-05", - "subreg": "62", - "hostility_": "Two skiffs and a dhow", - "victim_d": "Merchant vessel", - "descriptio": "OMAN:On 5 April, two skiffs and a dhow approached a merchant vessel to within 300 meters by near position 20-15N 059-02E, approximately 15 nm from Masirah Island, Oman. When an armed embarked security team fired warning shots, the skiffs turned away.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [59.03333330042426, 20.250000000325713] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-85", - "dateofocc": "2014-02-23", - "subreg": "71", - "hostility_": "Robbers on fishing boats", - "victim_d": "Barge under tow", - "descriptio": "SINGAPORE STRAIT:On 23 February at 1430 local time, ten robbers from six fishing boats boarded a barge under tow near position 01-11N 103-34E. The Master of the tug sounded the alarm and reported the boarding to VTIS Central, Singapore. The robbers depar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-87", - "dateofocc": "2014-04-14", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Oil Tanker", - "descriptio": "GULF OF ADEN:On 14 April, seven persons armed with an RPG in a white-and blue skiff approached an oil tanker near position 12-25N 043-43E, south of the Bab El Mandeb Strait in the Gulf of Aden. The ship's master raised the alarm, sounded the ship's whist", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.716666699767131, 12.416666699564303] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-127", - "dateofocc": "2016-05-25", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "GUATEMALA:On 25 May, a sailing yacht was boarded at night in a marina area of Rio Dulce, vicinity15-49N 088-45W. The thieves stole an outboard motor from a dinghy that was chained to the yacht.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.749999999602039, 15.816666700393739] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-88", - "dateofocc": "2014-04-13", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "YEMEN:On 13 April, four persons in a skiff approached an underway chemical tanker near position 13-58N 055-32E, approximately 106 nm northeast of Socotra Island, Yemen. The master raised alarm, increased speed, and mustered the non-essential crew members", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [55.533333299861454, 13.966666699929192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-89", - "dateofocc": "2014-04-05", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Chemical Tanker", - "descriptio": "RED SEA:On 5 April, five persons in a skiff approached an underway chemical tanker near position 12-35N 043-26E, Bab El Mandeb Strait, Red Sea. The master raised alarm, altered course, and directed non-essential crew members to muster in a safe room. Whe", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.4333332997399, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-90", - "dateofocc": "2014-04-09", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Anchored Bulk Carrier", - "descriptio": "INDONESIA: On 9 April, nine robbers armed with knives boarded an anchored bulk carrier near position 03-54N 098-46E, Belawan Anchorage. The duty crewmen on routine rounds spotted the robbers and informed the duty officer who raised the alarm, sounded shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-91", - "dateofocc": "2014-04-23", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Anchored tanker", - "descriptio": "NIGERIA:On 23 April, three individuals in a small boat approached an anchored tanker carrying out STS operations near position 06-17N 003-21E, 6.3 nm south-southwest of Lagos breakwater. The suspected robbers tried to board the ship via the anchor chain.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.35000000040867, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-92", - "dateofocc": "2014-04-21", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "LNG tanker", - "descriptio": "NIGERIA:On 21 April, an unlit small boat made a sudden course change, increased speed, and made a close pass by an LNG tanker near position 03-41N 006-18E, approximately 37 nm south of Brass. The master raised the alarm, increased speed, altered course,", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.299999999739669, 3.683333299578578] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-93", - "dateofocc": "2014-04-17", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Underway bulk carrier", - "descriptio": "GULF OF ADEN:On 17 April, five armed persons in a skiff approached an underway bulk carrier near position 12-24N 043-42E, approximately 21 nm southeast of Perim Island, Yemen. The ship's master raised alarm, mustered the crew, increased speed and charged", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.699999999869988, 12.399999999667159] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-94", - "dateofocc": "2014-04-22", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "MALAYSIA:On 22 April, up to ten heavily armed pirates boarded and hijacked the product tanker, MT NANIWA MARU No 1, near position 02-59N 100-54E, 3 nm west-northwest of One Fathom Bank, near Port Klang. The pirates pumped out 3 million liters of the 4.5", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.900000000280897, 2.983333299645892] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-95", - "dateofocc": "2014-04-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Anchored product tanker", - "descriptio": "INDONESIA:On 21 April, an unknown number of robbers boarded an anchored product tanker near position 01-24N 104-34E, 11 nm north of Palau Bintan. The robbers stole spare parts and property before escaping undetected. The thefts were subsequently noticed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-275", - "dateofocc": "2014-11-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 8 November, eight pirates armed with machine guns and explosives in a speed boat approached and opened fire on an underway tanker near position 04-24N 005-03E, Pennington Oil Terminal. Ship's Master raised the alarm, commenced evasive maneuver", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.050000000373757, 4.400000000307728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-276", - "dateofocc": "2014-11-27", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Bulk Cargo Carrier", - "descriptio": "INDIA:On 27 November, one person boarded an anchored bulk cargo carrier waiting to discharge cargo near position 20-55N 088-07E, 40 nm south of the Sagar Islands. The robber boarded the ship from a small boat carrying six other persons. The robber was sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.116666700123858, 20.916666700288829] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-277", - "dateofocc": "2014-12-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "On 6 December, position 02-15N 104 49E, armed robbers boarded a tanker underway. They shot a crew member in the head, stole crew properties and escaped. Authorities sent a helicopter and evacuated the injured crew member and sent him to a hospital for tr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.81666669967467, 2.249999999743579] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-147", - "dateofocc": "2016-07-01", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MARTINIQUE:On 01 July, a robber boarded an anchored sailing yacht in Ansa Mitan, vicinity14-32N 061-05W. Robbers stole a small outboard motor. Local authorities were notified.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.083333299665014, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-278", - "dateofocc": "2014-12-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bitumen Tanker", - "descriptio": "MALAYSIA:On 7 December, approximately 0430 Local Time, as many as seven robbers boarded the bitumen tanker VP ASPHALT 2, loaded with 2,300 tons of bitumen near position 02-15N 104-49E, 20 nm southeast of Pulau Aur, Johor, Malaysia. The robbers checked wh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.81666669967467, 2.249999999743579] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-279", - "dateofocc": "2014-12-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 7 December, 20 armed robbers in a boat approached an underway product tanker, with five robbers boarding the vessel near position 01-31N 104-35E, 17 nm west-southwest of Tanjung Punggai, Johor, using ladders and cutting through the razor wire", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.516666699841323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-280", - "dateofocc": "2014-11-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 4 November, four robbers in small boat boarded an anchored LPG tanker near position 01:29N - 104:40E, 16 nm north-northeast of Tg Berakit, Bintan Island. Duty crewman spotted the robbers and informed the duty officer who raised the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.483333300047036] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-281", - "dateofocc": "2014-11-04", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 4 November, three robbers in a small wooden boat boarded an anchored bulk carrier near position 01-26N 104-39E, 13 nm north-northeast of Tg Berakit, Bintan Island. Duty crewman spotted one robber onboard the vessel. He informed the duty offi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.650000000177329, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-282", - "dateofocc": "2014-11-26", - "subreg": "82", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "PAPUA NEW GUINEA:On 26 November, 4 robbers boarded a sailing yacht near position 04-20S 152-16E, Kokopo, New Britain Island. They tied up the captain and threatened him and a passenger with a machete. The passenger chased one robber from the boat, and th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [152.266666699995085, -4.333333299853223] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-283", - "dateofocc": "2014-11-15", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "SINGAPORE STRAIT:On 15 November, position 01-08N 103-30E four robbers boarded a chemical tanker underway. The duty crew noticed the robbers and raised the alarm.Seeing the alerted crew the robbers escaped. A search was carried out throughout the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-284", - "dateofocc": "2014-12-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "SOUTH CHINA SEA, SOUTHERN PART:On 6 December near 01-31N 104-35E, around 20 persons in a boat approached a product tanker underway. Five people managed to board the vessel using ladders and by cutting through the razor wire. The second officer noticed th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.516666699841323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-285", - "dateofocc": "2014-12-13", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Research Vessel", - "descriptio": "POINTE NOIRE ANCHORAGE, THE CONGO:On 13 December near 4-46S 011-50E, 4 robbers in a small rowing boat approached an anchored research vessel. Two robbers boarded the vessel entered the engine room and stole ship's properties. The duty AB on routine round", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.83333330033679, -4.766666700379915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-286", - "dateofocc": "2014-12-12", - "subreg": "28", - "hostility_": "Suspicious approach", - "victim_d": "Sailing yacht", - "descriptio": "HONDURAS:On 12 December, a sailing yacht experienced a suspicious approach near position14-11N 082-16W, approximately 29 nm southeast of Cayos Miskitos. The yacht master reported that an unlit fishing boat at first shadowed the yacht for some time and th", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.266666699738607, 14.183333300367792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-165", - "dateofocc": "2015-07-26", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "ANDAMAN SEA:On 26 July, two pirates boarded the Indonesia-flagged fishing boat MAJU JAYA near position 04-53N 098-37E, approximately 60 nm north of Balewan. The pirates ransacked the fishing boat, stole the vessel's documents, electronics, personal mobil", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.616666700013752, 4.883333299977096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-166", - "dateofocc": "2015-07-28", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Tug Boat", - "descriptio": "MALAYSIA:On 28 July near position 03-25N 103-55E, a tug with a barge under tow departed Batam Anchorage at 1600 local time for Kuantan Port, Malaysia. An on duty crewman discovered some properties on the barge were missing during the routine check the fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.916666700275073, 3.416666700172584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-167", - "dateofocc": "2015-07-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 30 July near position 01-05N 103-42E, 5 robbers armed with long knives in a small unlit speed boat approached an underway bulk carrier.One of the robbers attempted to board the ship using a hook attached to a rope. The alerted crew no", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.700000000011698, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-168", - "dateofocc": "2015-08-03", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Trawlers", - "descriptio": "BANGLADESH:On 3 August near position 21-35N 89-11E, 12 pirates belonging to the Akash Bahini group attacked a group of small fishing trawlers in the Dhansiddhirchar area of the Sundarbans. The pirates ransacked several of the trawlers and kidnapped 12 lo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.183333300095285, 21.583333300427228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-169", - "dateofocc": "2015-08-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 3 August, two robbers armed with knives boarded an anchored chemical tanker near position 03-56N 098-44E, Belawan Anchorage. The duty crewman on routine rounds sighted the robbers at the forecastle and informed the bridge. The alarm was rais", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.733333299819606, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-175", - "dateofocc": "2015-08-09", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:On 9 August near position 01-05N 103-35E, five robbers armed with knives boarded an underway tanker.They entered the engine room, seized and tied up the chief engineer and stole his personal effects. The chief engineer managed to free hi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.583333300381128, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-176", - "dateofocc": "2015-08-09", - "subreg": "72", - "hostility_": "Robber", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 9 August, a surveyor arrived from a service boat and requested the duty officer of an anchored bulk carrier to carry out a draft survey near position 03-42S 114-28E, Taboneo Anchorage. As the duty officer was taking the draft readings a smal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.466666700031737, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-177", - "dateofocc": "2015-08-12", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 12 August near position 04-00N 098-45E, around 13 nm NNE of Belawan, robbers boarded an anchored product tanker via the anchor chain and hawse pipe. The robbers stole ship's properties and fled before being spotted. When the crew returned to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-178", - "dateofocc": "2015-08-12", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "SINGAPORE STRAIT:On 12 August near position 01-07N 103-31E, five robbers armed with long knives boarded a container ship underway. The alarm was raised and the crew mustered. Upon hearing the alarm and seeing the alerted crew, the robbers fled. A search", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.516666700441988, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-179", - "dateofocc": "2015-08-15", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "SINGAPORE STRAIT:on 15 August near position 01-16N 104-08E, while enroute to Tianjin, China a duty crewman onboard a container ship noticed padlocks on 3 store rooms damaged. He immediatly raised the alarm and the crew mustered. Upon hearing the alarm, a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-180", - "dateofocc": "2015-08-16", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "On 16 August at 0800 local time in the Guanta Anchorage near position 10-16N 064-35W, a bosun on routine rounds onboard an anchored general cargo ship noticed 3 store rooms opened and their padlocks broken. He immediatly raised the alarm and the crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.583333300227878, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-181", - "dateofocc": "2015-08-20", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 20 August, a duty crewman onboard a berthed product tanker saw an unauthorized person on deck near position 07-02N 125-39E, New Davao Oil Mill, Davao Port. The duty crewman shouted at the unauthorized person, who jumped overboard and escap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.649999999957117, 7.033333299641924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-182", - "dateofocc": "2015-08-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 20 August, seven robbers boarded an underway bulk carrier near position 01-04N 103-36E, 4.1 nm south-southwest of Pulau Nipah. The crew spotted the robbers and immediately retreated to the bridge. Two crewmen remained in the engine room. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-128", - "dateofocc": "2016-06-06", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "BENIN: On 06 June, an oil tanker underway near position 05-22N 002-24E, approximately 60 nm south of Cotonou, reported that a mother ship and a skiff chased them. The mothership, with an additional skiff on deck, was reportedly 60 meters long with a grey", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.400000000243097, 5.366666700370558] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-129", - "dateofocc": "2016-06-02", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tug and Barge", - "descriptio": "MALAYSIA:On 02 June, the tug EVER PROSPER, towing the barge EVER DIGNITY, was hijacked near Mukah, Sarawak, East Malaysia, vicinity 02-53.8N 112-04.7E. Reportedly, another tug and barge pulled alongside, hijacked the tug and siphoned approximately 3,000", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.083333300206391, 2.899999999809609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-130", - "dateofocc": "2016-06-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "BANGLADESH:On 14 June at 0140 LT in 22-08N 091-44E, at Chittagong anchorage, five robbers boarded an anchored container ship. Security noticed the robbers with long knives on poop deck and informed the watch officer. The alarm was raised and the whistle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.133333299860453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-131", - "dateofocc": "2016-06-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug and Barge", - "descriptio": "MALAYSIA:On 02 June at 2300 LT in 03-07.24N 112-35.14E, around 11nm NNE of Balingian, Sarawak, armed persons in two speed boats approached and boarded a tug towing a barge loaded with crude palm kernel oil. They took all crew members hostage, damaged shi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.583333299772903, 3.116666700072926] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-132", - "dateofocc": "2016-05-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 21 May at 0130 LT in 06-02.5S 106-54.0E, at Jakarta tanker anchorage, robbers boarded an anchored tanker and stole ship's property and escaped. The incident was noticed by third officer during routine rounds. Additional checks revealed that", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.049999999715453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-133", - "dateofocc": "2016-06-16", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "INDONESIA:On 16 June at 0300 LT in 01-10N 103-57E, around 2.5 NM W of Batu Ampar, four robbers armed with guns boarded an anchored heavy lift carrier. They held the duty ab hostage at gun point and stoles ship's engine spares and escaped. Theft reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.950000000244643, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-134", - "dateofocc": "2016-06-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 18 June at 0110 LT in 01-41.9N 101-29.2E, at Dumai anchorage, three robbers boarded an anchored product tanker. Duty ab noticed the robbers and informed the watch officer who raised the alarm and the crew mustered. One of the robbers rushed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-135", - "dateofocc": "2016-06-13", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "ANGOLA:On 13 June at 2145 LT in 08-44.7S 013-17.9E, at Luanda anchorage, a robber boarded an anchored tanker and transferred ship's stores into his boat. Alarm sounded and the crew were able to detain the robber. Port officials and local police were info", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.299999999966076, -8.749999999712827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-136", - "dateofocc": "2016-06-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONEISA:On 21 June at 0540 LT in 01-41.5N 101-30.4E, at Dumai inner anchorage, three robbers armed with knives boarded an anchored bulk carrier. Two robbers managed to enter the engine room via the open skylight. They threatened the duty oiler with kni", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-137", - "dateofocc": "2016-05-27", - "subreg": "27", - "hostility_": "Roobbers", - "victim_d": "Sailing Vessel", - "descriptio": "CUBA:On 27 May, robbers boarded a Canada-flagged sailing yacht anchored near Isla de la Juventud, vicinity 21-45N 082-51W. The robbers were able to steal miscellaneous deck gear and escape unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.850000000040723, 21.749999999924569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-138", - "dateofocc": "2016-06-16", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "VIETNAM: On 16 June, the Vietnam-flagged fishing boat QNg-95821 was reportedly attacked by a Chinese vessel near position 16-11N 112-30E, seven nautical miles from Bom Bay Island. The attacking ship reportedly had a hull number of 31102. The Vietnamese f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.499999999936563, 16.18333330043248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-139", - "dateofocc": "2016-05-15", - "subreg": "81", - "hostility_": "Suspicious Approach", - "victim_d": "Vehicle Carrier", - "descriptio": "MICRONESIA: On 15 May, two fast boats made a suspicious approach against an underway vehicle carrier near position 08-17N 150-53E, between Pisares Island and East Fayu Island. The boats initially called the vessel and asked it to stop. Master raised the", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [150.883333300202025, 8.283333299907213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-96", - "dateofocc": "2014-04-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Anchored product tanker", - "descriptio": "INDONESIA:On 20 April, two robbers in a small boat boarded an anchored product tanker near position 01-26N 104-38E, approximately 12 nm north-northeast of Pulau Bintan. Duty crewman on routine rounds noticed the robbers and informed the duty officer who", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, 1.433333300180323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-97", - "dateofocc": "2014-04-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Anchored general cargo ship", - "descriptio": "INDONESIA:On 19 April, five robbers armed with knives attempted to board an anchored general cargo ship near position 03-55N 098-46E, Belawan Anchorage. They took hostage a duty crewman on the forecastle and stole his personal belongings. The incident wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-98", - "dateofocc": "2014-04-18", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Anchored product tanker", - "descriptio": "INDIA:On 18 April, three robbers in a small boat attempted to board an anchored product tanker near position 09-56N 076-09E, Kochi Anchorage. Duty crew on routine rounds noticed the robbers and informed duty officer on the bridge who raised the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [76.149999999705301, 9.933333300005529] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-99", - "dateofocc": "2014-04-08", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Anchored bulk carrier", - "descriptio": "INDONESIA:On 18 April, three robbers attempted to board an anchored bulk carrier near position 00-13S 117-35E, Samarinda Anchorage. The duty officer noticed the robbers and raised the alarm. Due to the crew response, the robbers departed the area without", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-100", - "dateofocc": "2014-04-17", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Underway product tanker", - "descriptio": "MALAYSIA:On 17 April, 16 armed pirates boarded and hijacked an underway product tanker near position 01-59N 104-25 E, 26 nm south-southwest of Pulau Aur. The pirates then transferred part of the fuel cargo into smaller unknown tankers. Crew and ship prop", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.416666699841585, 1.983333299613548] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-101", - "dateofocc": "2014-03-11", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Anchor handling tug", - "descriptio": "INDONESIA: On 11 March, two skiffs reportedly chased M/V LEWEK EBONY, an anchor handling tug, in an area 250 nm west of Jakarta. The chase prompted the master of the vessel to report a pirate attack in progress and to light off the firefighting monitors", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.900000000280897, -6.200000000214914] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-102", - "dateofocc": "2014-04-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 29 April, pirates approached the product tanker SP BRUSSELS while underway near position 04-56N 004-49E, 35 nm west off coast of Bayelsa State. The armed guards on board fired at the pirates who had boarded. Then most crewmembers and the armed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.816666700037956, 4.93333329984381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-103", - "dateofocc": "2014-05-01", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 1 May at 0530 local time, three robbers armed with knives boarded a drifting product tanker near position 01-29N 104-47E, 20 nm northeast of Pulau Bintan. Duty crew on bridge raised alarm, seeing the alerted crew the robbers retreated empty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.783333299880326, 1.489722199755704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-104", - "dateofocc": "2014-05-01", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "INDONESIA:On 1 May at 0430 local time, a duty crewman on board an anchored general cargo ship saw a small boat approaching from astern near position 01-24N 104-35E, 10 nm north of Pulau Bintan. The small boat then came alongside carrying six robbers arme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-105", - "dateofocc": "2014-04-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 30 April, three robbers boarded an anchored chemical tanker near position 01-24N 104-41E, 12 nm north-northeast of Pulau Bintan. Duty crewman on outine rounds noticed the robbers and informed the duty engineer who raised the alarm. The robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-106", - "dateofocc": "2014-04-30", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "BANGLADESH:On 30 April, two robbers boarded an anchored tanker near position 22-08N 091-41E, Chittagong Anchorage. Crew noticed robbers on stern and raised alarm. Crew mustered and Port Control notified. Seeing the crew alertness, the robbers escaped wit", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.683333299726485, 22.133333299860453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-107", - "dateofocc": "2014-04-24", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 24 April, 20 robbers boarded an anchored bulk carrier at position 21-51N 091-40E, Chittagong OPL, and broke into the forward store room,stole ship's property and escaped. The ship's attempt to contact the local coast guard office failed but", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.666666699654058, 21.849999999657996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-108", - "dateofocc": "2014-04-18", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On April 18, three robbers attempted to board an anchored bulk carrier near position 0-13S 117-35E, Samarinda Anchorage. The duty officer noticed the robbers and raised the alarm. Due to the crew response, the robbers departed the area without", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-109", - "dateofocc": "2014-03-06", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "CONGO:On 6 March, position 4-44.4S 11-44.9E, Pointe Noire Anchorage. Two armed robbers boarded an anchored general cargo ship using a rope. They stole ships properties and escaped when the duty crew spotted them.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.748333299574085, -4.739999999969825] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-287", - "dateofocc": "2014-12-07", - "subreg": "25", - "hostility_": "Armed boarders", - "victim_d": "Sailing yachts", - "descriptio": "DOMINICAN REPUBLIC:There were two reported boardings of sailing yachts at Marina ZarPar in Boca Chica between 7 and 11 December. In both instances, there were several reported attackers armed with knives.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.616666700183885, 18.449999999727879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-288", - "dateofocc": "2014-12-08", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing yachts", - "descriptio": "ST LUCIA:On 8 December, robbers boarded two sailing yachts in one night near position13-51N 061-03W, Soufriere, St Lucia. One of the yacht master reported losing a large amount of cash as a result of the boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.049999999695444, 13.850000000298621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-289", - "dateofocc": "2014-12-13", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Research vessel", - "descriptio": "CONGO:On 13 December, four men in a small row boat approached an anchored research vessel near position 4-46S 011-50E, Pointe Noire Anchorage. Two of the men boarded the vessel and entered the engine room and stole ship's properties. Duty crewman on rout", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.83333330033679, -4.766666700379915] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-290", - "dateofocc": "2014-12-09", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical tanker", - "descriptio": "NIGERIA:On 9 December, pirates attacked an underway chemical tanker approximately 18 nm southwest of Akwa Ibon State. The crew spotted the pirates as they were inbound and raised the alarm. The pirates reportedly attacked the ship for approximately 30 mi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.550000000004957, 4.233333299911124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-291", - "dateofocc": "2014-12-16", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "MOZAMBIQUE:On 16 December, an unknown number of robbers boarded a berthed chemical tanker near position 19-48S 34-49E, Biera Port. A port security watchman noticed one of the robbers armed with a long knife lowering mooring ropes from a berthed chemical", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.81666670010884, -19.799999999935267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-292", - "dateofocc": "2014-12-19", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA: On 19 December, two robbers boarded a berthed tanker using hooks attached with ropes near position 06-26N 003-19E, Capital Oil Jetty, Lagos. When the alarm was raised and the crew responded, the robbers fled empty handed. Lagos Port Control and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.316666700439157, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-293", - "dateofocc": "2014-12-17", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "BANGLADESH:On 17 December, three robbers armed with long knives boarded a product tanker during anchoring operations near position 22-18N 091-46E, Chittagong Anchorage. A duty crew member on routine rounds noticed the robbers stealing ship's stores from", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.300000000257114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-294", - "dateofocc": "2014-12-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 20 December, four robbers wearing face masks and armed with knives boarded an anchored container ship near position 01-23N 104-40E, 11 nm north-northeast of Tg. Berakit, Bintan Island. They took hostage the duty oiler, tied his hands and too", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.383333300313609] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-295", - "dateofocc": "2014-12-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 20 December, robbers boarded an anchored product tanker near position 01-19N 104-08E, 1.5 nm south of Tanjung Setapa, Johor. The robbers entered the engine room and broke open the engine store room¿s padlock, stole engine spares and ship¿s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 1.316666700374469] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-148", - "dateofocc": "2016-06-25", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "DOMINICAN REPUBLIC:On 25 June, a robber boarded an anchored sailing yacht in Santa Barbara de Samana, vicinity 19-12N 069-19W. Robbers escaped with ship's stores unnoticed. Theft was discovered by the duty crew during routine rounds. Incident reported to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.316666700084227, 19.200000000426655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-296", - "dateofocc": "2014-12-20", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "PHILIPPINES:On 20 December, several robbers armed with knives boarded an anchored container ship near position 14-34N 120-54E, Manila South Harbor Quarantine Anchorage. They cut off the razor wire lashing protecting the hawse pipe cover to gain access to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.900000000028399, 14.566666700128451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-297", - "dateofocc": "2014-12-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Underway Vessel", - "descriptio": "INDONESIA:On 23 December, four robbers boarded an underway vessel near position 01-06N 103-32E, Pulau Karimun Kecil. Duty crewman on routine rounds saw the robbers in the engine room and raised the alarm. Robbers escaped without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.533333299615094, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-298", - "dateofocc": "2014-12-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 25 December, eight persons armed with long knives boarded an underway product tanker near position 01-02N 103-38E: 13 nm east of Pulau Karimun Besar. The robbers entered the engine room, tied up the duty oiler, stole engine spares and escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-183", - "dateofocc": "2015-08-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "On 21 August near position 01-06N 103-44E, three robbers boarded an underway product tanker and entered the steering room. The duty crew noticed the robbers and raised the alarm. The crew mustered. Upon hearing the alarm and seeing the alerted crew, the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.733333299981268, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-184", - "dateofocc": "2015-08-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "On 21 August near position 01-11N 103-27E, five robbers in a speed boat approached an underway tanker and attempted to board the vessel using a grappling hook. The duty crew noticed the robbers and raised the alarm. Upon hearing the alarm and seeing the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.449999999778811, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-185", - "dateofocc": "2015-08-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 21 August at 0340 local time, four robbers armed with knives boarded the underway tanker MT NAVIG8 STEALTH SV near position 01-07N 103-29E, approximately 6.3 nm east of Pulau Karimun Besar. The robbers were sighted in the engine room. The ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.483333299748381, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-186", - "dateofocc": "2015-08-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 21 August at 0430 local time, four robbers boarded the underway container ship MV MAERSK LEBU near position 01-10N 103-30E, approximately 5.9 nm east of Pulau Karimun Kecil. The robbers were sighted in the engine room. The master raised the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-187", - "dateofocc": "2015-08-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 21 August at 2329 local time, four robbers boarded the underway bulk carrier MV PEACE BRIGHT near position 01-04N 103-41E, approximately 4.4 nm northwest of Pulau Kepalajerih. The alarm was raised and the perpetrators escaped in a waiting bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-188", - "dateofocc": "2015-08-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 22 August at 0525 local time, four unarmed robbers boarded the underway container ship MV ATOUT near position 01-07N 103-31E, approximately 1.3 nm west of Pulau Takong Kecil. The alarm was raised and the robbers escaped. There was no loss of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.516666700441988, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-189", - "dateofocc": "2015-08-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Oil Tanker", - "descriptio": "INDONESIA:On 22 August at 0535 local time, four robbers armed with knives boarded the underway oil tanker MT ELBTANK DENMARK near position 01-10N 103-49E, approximately 6.3 nm northwest of Pulau Batam. The perpetrators stole the crew's personal effects a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.816666699642326, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-190", - "dateofocc": "2015-08-15", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 15 August, an unknown number of robbers boarded an anchored bulk carrier near position 10-14N 107-03E, Vung Tau Anchorage. They broke into the paint locker, stole ship's stores and escaped. The theft was noticed by the Duty Officer at 0830 loc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-191", - "dateofocc": "2015-08-15", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "MALACCA STRAIT:On 15 August, the Thailand-flagged coastal fishing boat KHF 1989 was hijacked in the Malacca Strait near position 06-14N 098-59E, approximately 40 nm west of Langkawi Island, Malaysia. Pirates forced the crew to move to another boat and or", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.983333300052493, 6.233333299975811] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-192", - "dateofocc": "2015-09-01", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug Boat", - "descriptio": "SINGAPORE STRAIT:On 01 September near position 01-13N 103-55E, robbers boarded the tug MV Permata1 in the Singapore Strait. The bridge crew sent out a distress call, which was answered by the Republic of Singapore Navy (RSN) ship RSS Resilience.The robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.916666700275073, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-193", - "dateofocc": "2015-09-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "SINGAPORE STRAIT:On 8 September near position 01-07N 103-31E, the chief officer onboard a container ship under way noticed the duty engineer laying on the floor bound and gagged with his mouth bleeding. The alarm was raised. Upon searching the vessel it", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.516666700441988, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-194", - "dateofocc": "2015-09-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 7 September near position 01-11N 103-25E, while transiting the Singapore Straits, robbers boarded a bulk carrier and were spotted by the master who raised the alarm and switched on all deck lights. The crew mustered and a search was c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-195", - "dateofocc": "2015-09-02", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "INDONESIA:On 2 September near position 08-22S 117-11E, robbers boarded a sailing yacht anchored in Potopaddu Bay, Sumbawa Island. The robbers were able to steal deck equipment and other valuables and escape.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.183333300101481, -8.366666699776886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-140", - "dateofocc": "2016-06-25", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "COLOMBIA:On 25 June between 0300 and 0600 LT in 10-18.7N 075-32.8W, at Mamonal tanker anchorage, robbers boarded an anchored product tanker and escaped with ship's property. The theft was discovered by the deck crew while performing routine work near the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.549999999714714, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-141", - "dateofocc": "2016-06-28", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 28 June at 0050 LT in 01-28S 116-48E, at Balikpapan anchorage, two unauthorized persons attempted to board an anchored tanker. The duty crew noticed the persons and informed the bridge officer. Alarm was raised and crew mustered. Upon hearin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.466666700183282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-142", - "dateofocc": "2016-06-28", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 28 June at 1945 UTC in 03-00N 105-10E, about 26 NM WSW of Mangkai island, ten pirates boarded a tanker and entered the bridge as the vessel was altering course. The officer and AB on watch where held hostage at gun point and beat them. They", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.166666699640984, 3.000000000442355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-143", - "dateofocc": "2016-06-22", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "PHILIPPINES:On 22 June, vicinity 05-53N 121-44E, armed men believed to be associated with the Abu Sayyaf Group kidnapped seven crewmembers from the tug CHARLES 001 while the tug was towing a barge in the southern Philippines. The operation consisted of t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.733333299664082, 5.88333330000944] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-144", - "dateofocc": "2016-07-03", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "GUINEA:On 03 July at 0450 LT in 09-23.6N 013-41.9W, at Conakry anchorage, six robbers armed with guns and knives boarded an anchored heavy lift vessel. They attacked the duty O/S causing injuries and took the second officer hostage. They opened fire to t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.700000000007776, 9.399999999570127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-145", - "dateofocc": "2016-06-26", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "PERU:On 26 June at 0006 LT in 12-01S 077-11W, at Callao anchorage, robbers boarded an anchored bulk carrier and escaped with ship's stores unnoticed. The theft was discovered by the duty crew during routine rounds at the forecastle. Incident was reported", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-146", - "dateofocc": "2016-07-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 07 July at 0650Z in 03-16N 005-09E, about 89 NM SW of Brass, armed pirates boarded an underway tanker. Alarm raised and all crew retreated to citadel. Crew regained control of the vessel. All crew members reported safe. Vessel continued onto d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.150000000107184, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-149", - "dateofocc": "2016-06-20", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "PUERTO RICO:On 20 June, robbers boarded an anchored sailing yacht in Isabel Segunda Vieques, vicinity 18-09N 065-26W. Stole an outboard motor, boat hook, and personal items. Local authorities were notified.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.433333299760761, 18.149999999628278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-150", - "dateofocc": "2016-06-09", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 09 June, robbers stole an outboard engine attached to the back of a sailing yacht anchored in Union Clifton harbor, vicinity 12-35N 061-25W. Local authorities were notified.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.416666699558959, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-151", - "dateofocc": "2016-06-02", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing yacht", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 02 June, robbers boarded an anchored sailing yacht in Canouan Charlestown Bay, vicinity 12-42N 061-20W. Robbers were able to steal a substantial amount of cash.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.333333299897959, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-152", - "dateofocc": "2016-07-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 07 July at 0727Z, pirates attacked vessel in 03-18N 005-11E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.183333300076754, 3.299999999642637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-153", - "dateofocc": "2016-07-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply Ship", - "descriptio": "NIGERIA:On 07 July at 1400Z, supply ship attacked in 03-15N 005-10E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.166666700004328, 3.249999999775923] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-154", - "dateofocc": "2016-07-03", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDIA:On 03 July at Haldia port, berth No. 4B, vicinity 22-01N 088-04W, robbers boarded a berthed bulk carrier. They entered into the engine room, stole spare parts and escaped unnoticed. The theft was noticed on 06 July after the vessel left port. Local", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [88.066666700257088, 22.016666700054657] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-155", - "dateofocc": "2016-07-08", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 08 July at 2220 LT in 06-25N 003-22E, at Folawiyo Nispan jetty in Lagos, a robber armed with a knife boarded a berthed product tanker. Duty office raised the alarm, sounded the whistle and crew mustered. Upon hearing alarm and seeing crew aler", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.416666700269616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-110", - "dateofocc": "2014-04-20", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "LNG Tanker", - "descriptio": "NIGERIA:On 20 April, position 3-41N 6-18E, around 37nm south of Brass. An unlit suspicious craft underway with a speed of six knots, suddenly altered course, increased speed and approached a passing LNG tanker. The master onboard the LNG tanker raised al", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.299999999739669, 3.683333299578578] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-111", - "dateofocc": "2014-05-05", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SIERRA LEONE:On May 5, 0320 LT, position 8-29N 13-13W, berth No. 2, Freetown Port. Five robbers armed with knives in a boat approached a berthed bulk carrier. Two robbers boarded the ship and took hostage the duty cadet on rounds. They then cut off and s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.216666700338465, 8.483333300273387] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-112", - "dateofocc": "2014-05-04", - "subreg": "57", - "hostility_": "Bandits", - "victim_d": "Dutch and Nigerian Citizens", - "descriptio": "NIGERIA:On 4 May, three Dutch citizens and two Nigerian citizens were kidnapped near the settlement of Letugbene, a river community in Bayelsa State, position 4-51N 5-33E. The group was reportedly touring the area to promote work on a local hospital. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.549999999940269, 4.850000000007526] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-113", - "dateofocc": "2014-05-02", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "RED SEA:On 2 May, two skiffs made a 15 knot approach on an underway bulk carrier near position 15-45N 041-26E, approximately 68 nm northwest of Al Hudaydah, Yemen. Ships Master raised the alarm, increased speed, altered course, activated fire hoses, and", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.433333299675212, 15.749999999730505] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-114", - "dateofocc": "2014-05-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 3 May, five robbers attempted to board an anchored chemical tanker near position 01-24N 104-41E, approximately 12 nm north-northeast of Pulau Bintan. Duty crewman on routine rounds saw a boat alongside the port quarter and saw the robbers at", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-115", - "dateofocc": "2014-05-04", - "subreg": "71", - "hostility_": "Robber", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 4 May, a duty crewman making routine rounds aboard an anchored chemical tanker at position 01-27N 104-35E, approximately 13 nm north of Pulau Bintan, noticed the steering gear rooms door open. Upon approaching, he saw a robber escaping over", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-116", - "dateofocc": "2014-05-05", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "BANGLADESH:On 5 May, four robbers armed with long knives boarded an anchored chemical tanker near position 22-08N 091-46E, Chittagong Roads. The robbers cut the aft mooring rope. Duty officer raised the alarm, mustered the crew in the accommodation area", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.766666700286862, 22.133333299860453] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-117", - "dateofocc": "2014-05-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 7 May, four robbers armed with knives boarded an anchored product tanker near position 01-28N 104-40E, 15 nm north-northeast of Pulau Bintan. Alert duty crewmen saw the robbers on the stern section of the ship and raised the alarm. Hearing t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-118", - "dateofocc": "2014-05-12", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 12 May, four robbers boarded an anchored tanker near position 01-35N 104-32E, approximately 21 nm north of Pulau Bintan. The Third Engineer subsequently saw the robbers in the steering gear room and informed the bridge. Bridge crew raised th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.533333299647438, 1.583333299780463] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-119", - "dateofocc": "2014-04-30", - "subreg": "92", - "hostility_": "Kidnappers", - "victim_d": "Yacht", - "descriptio": "PHILIPPINES:Two German citizens living in the Philippines were reportedly kidnapped in late April from their sailing yacht CATHERINE near Palawan Island while on an island-hopping trip, according to police and press reports. They are reportedly being hel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.73833329982358, 9.835000000299146] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-120", - "dateofocc": "2014-05-03", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "DOMINICA: On 3 May, two men boarded a 43 foot sailing yacht moored south of Roseau and assaulted the owner and passenger onboard. One of the robbers attacked the boat owner while the other attempted to assault the passenger, who used mace on her attacker", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.383333299764672, 15.300000000030707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-121", - "dateofocc": "2014-05-13", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 13 May, two robbers boarded an anchored tanker near position 04-45N 006-59E, Port Harcourt Anchorage. The robbers took two crewmembers hostage and threatened them with knives. The robbers released the crewmembers after stealing mooring ropes.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.983333299775211, 4.750000000274099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-299", - "dateofocc": "2014-12-25", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "VIETNAM:On 25 December, four robbers boarded an anchored general cargo ship near position 20-41N 107-12E, Campha Anchorage. The robbers broke into the forward store room, stole ship's properties and escaped unnoticed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.199999999675242, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-1", - "dateofocc": "2015-01-05", - "subreg": "57", - "hostility_": "Gunmen", - "victim_d": "Houseboat", - "descriptio": "NIGERIA:On 5 January, unidentified gunmen attacked a house boat belonging to Nigeria¿s Joint Task Force near Kula community in Akuku Toru local government area of Rivers state. The attackers kidnapped a Sergeant and stole weapons and ammunition.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 4.733333300376955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-2", - "dateofocc": "2014-12-27", - "subreg": "57", - "hostility_": "Kidnappers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 27 December, Nigerian naval personnel rescued the captain and chief engineer of MT EQUINOX, a Panamanian-flagged tanker, after they were kidnapped and held for ransom for more than two weeks in a hotel in Warri, Delta State. The ship¿s captai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 5.516666699970699] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-3", - "dateofocc": "2014-12-30", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "RED SEA:On 30 December, two skiffs, one with six possible pirates and the other with three possible pirates approached an underway tanker near position 15-06N 042-00E, approximately 6.5 nm west of the Zubair Island Group. Bridge crew raised the alarm and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.999999999904958, 15.099999999664533] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-4", - "dateofocc": "2015-01-07", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing vessels", - "descriptio": "VIETNAM:On 7 January, two Vietnamese fishing vessels were involved in incidents near the Paracel Islands where their catch of fish was stolen and fishing gear and bridge equipment was stolen or damaged.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [110.89999999970496, 16.250000000196337] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-5", - "dateofocc": "2015-01-09", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "COLOMBIA:On 9 January, an unknown number of robbers boarded a general cargo ship during anchoring operations near position 10-18N 075-33W, Cartagena Anchorage. The robbers stole the forward life raft. The theft was noticed by the duty crew during departu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.549999999714714, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-6", - "dateofocc": "2015-01-18", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "GHANA:On 18 January, Ghana's navy freed a tanker ship hijacked off the coast of Nigeria and arrested eight pirates believed to be responsible for seizing it. The small tanker's owners, using an onboard tracking device, informed Ghanaian authorities of it", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.833333300110382, 5.249999999840611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-7", - "dateofocc": "2015-01-14", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "GHANA: On 14 January, eight heavily armed pirates boarded a drifting bulk carrier near position03-24N 001-21E, 157 nm south-southeast of Accra. They opened fire to intimidate the crew. The pirates destroyed the communication equipment, manhandled some cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.350000000344039, 3.40000000027544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-8", - "dateofocc": "2015-01-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 18 January, two robbers boarded an underway bulk carrier near position 01-07N 103-31E, 6nm east of Pulau Karimun Kecil. When the robbers were spotted by the duty crewman on routine rounds, he informed the duty officer who raised the alarm. A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.516666700441988, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-9", - "dateofocc": "2015-01-10", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA: On 10 January, three armed robbers boarded an anchored LPG tanker near position 01-04N 104-10E, Tanjung Uban Anchorage. The robbers then took hostage and secured the duty crewman and entered the engine room storeroom with intention to steal sp", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-10", - "dateofocc": "2015-01-08", - "subreg": "71", - "hostility_": "Robber", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 8 January, one robber attempted to board an anchored tanker near position 01-11N 104-00E, Kabil Port, Batam. Duty watchman heard the sound of a boat engine. Upon checking he found a person attempting to board the ship. Alarm raised and crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.000000000111356, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-11", - "dateofocc": "2015-01-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Supply Vessel", - "descriptio": "NIGERIA:On 23 January, the Nigeria-flagged offshore supply vessel JASCON 24 was attacked near position 03-29N 005-27E, approximately 70 nm from the Nigerian coastline, at the Agbami Oil Field. One Nigerian naval officer was reportedly killed during the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.450000000206785, 3.483333300111724] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-12", - "dateofocc": "2015-01-20", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Bunkering Vessels", - "descriptio": "IVORY COAST:On 20 January, a skiff with eight persons aboard made a suspicious high speed approach toward two ships conducting bunkering operations near position 04-05N 003-50W, 70 nm south-southeast of Abidjan, Ivory Coast. The bunkering vessels raised", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-3.833333300286711, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-196", - "dateofocc": "2015-08-21", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "COLOMBIA:On 21 August a duty crewman on routine rounds onboard a chemical tanker noticed four robbers lowering paint drums into a waiting boat near position 03-49N 077-09W, Buenaventura Inner Anchorage. He immediately informed the duty officer who raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.149999999946317, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-197", - "dateofocc": "2015-09-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE:On 6 September, four robbers boarded an anchored tanker near position 01-16N 103-59E, 3 nm south of Singapore. The thieves broke into the engine room, stole engine spares and escaped unnoticed. Ship's Master informed local authorities of the bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.983333300214213, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-198", - "dateofocc": "2015-09-15", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 15 September near position 01-06N 103-31E, a duty lookout onboard an underway bulk carrier noticed a speed boat alongside the ship. The alarm was raised, the crew mustered and the SSAS was activated. The robbers entered the engine roo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.516666700441988, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-199", - "dateofocc": "2015-09-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 19 September near position 01-11N 103-25E, three robbers armed with a bolo boarded an underway bulk carrier. They entered the engine room stole ship properties and escaped.The duty crew spotted the robbers raised the alarm and the cre", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.416666699809241, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-28", - "dateofocc": "2015-02-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 14 February, ten robbers armed with knives boarded a berthed bulk carrier near position 03-47N 098-41E, Berth 107, Belawan Port. When the duty crewman spotted the robbers, the alarm was raised and the robbers fled with cargo from the ship. L", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-200", - "dateofocc": "2015-09-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 20 September near position 01-04N 103-41E, the alert crew onboard an underway bulk carrier noticed a speed boat with eight persons approaching. The alarm was raised, the crew mustered and VTIS was informed. Anti-piracy measures were d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-201", - "dateofocc": "2015-09-19", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Kacht", - "descriptio": "COLOMBIA:On 19 September near position 10-10N 075-45W, six robbers boarded a sailing yacht anchored in the Rosario Islands area near Cartagena. During the robbery, the wife of the yacht owner was killed. Local authorities are investigating the case.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.750000000080945, 10.166666700166047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-202", - "dateofocc": "2015-09-17", - "subreg": "57", - "hostility_": "Suspicious Vessel", - "victim_d": "N/A", - "descriptio": "GULF OF GUINEA:On 17 September, a suspicious vessel was reportedly operating near position 01-13N 001-50E, approximately 288 nm south of Benin. The vessel was described as having a blue hull, white superstructure and was not displaying AIS. It reportedl", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.833333300013351, 1.216666699741666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-203", - "dateofocc": "2015-09-18", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 18 September, an unknown number of robbers boarded a berthed product tanker near position 13-40N 121-03E, JG Summit Petrochemical Group Jetty No. 1, Batangas. The robbers boarded unnoticed, stole ship's properties and escaped. The theft wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.04999999962854, 13.666666699829534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-204", - "dateofocc": "2015-09-16", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 16 September, an unknown number of robbers boarded an anchored bulk carrier near position 10-14N 107-02E at the Vungtau anchorage. The robbers were able to steal ship's property and escape unnoticed. The incident was discovered later in the da", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-205", - "dateofocc": "2015-09-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA: On 29 September, four robbers armed with machetes boarded a product tanker at anchor near position 01-42N 101-30E, Dumai Anchorage. Upon hearing the intrusion alarm the duty officer contacted the aft duty crewman to investigate. When the aft c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-206", - "dateofocc": "2015-09-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 25 September, an unknown number of robbers boarded an anchored product tanker near position 03-56N 098-45E, Belawan Anchorage. The robbers were able to steal engine spares and escape unnoticed. The crew was mustered and a search of the ship", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-207", - "dateofocc": "2015-09-28", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Fishing Vessel", - "descriptio": "TRINIDAD AND TOBAGO:On 28 September, robbers boarded the fishing vessel LULU near the Hibiscus oil platform approximately 30 nm from the country's northern coast at approximately 11-05N 061-40W. During the robbery, the robbers shot and killed one of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.666666699791904, 11.083333299638014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-208", - "dateofocc": "2015-09-22", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 22 September, a small boat came alongside an anchored product tanker near position 006-16N 003-13E, 14.8 nm south-southwest of Lagos. The persons onboard pretended to be cargo inspectors and produced a fake letter of authorization purportedly", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.216666699806353, 6.266666699770099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-209", - "dateofocc": "2015-10-05", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 5 October, a fishing boat saw five robbers boarding an anchored product tanker near position 03-56N 098-49E, Belawan Anchorage, and notified the tanker. The alarm was raised, the fog horn sounded and the crew mustered. The robbers threatened", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.816666700379926, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-156", - "dateofocc": "2016-07-10", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 10 July at 0500 LT in 03-41.17S 114-25.20E, at Taboneo anchorage, robbers boarded an anchored bulk carrier and escaped with ship's property. The theft was discovered by the duty crew while performing routine rounds. Two mooring ropers were r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-157", - "dateofocc": "2016-07-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore Supply Vessel", - "descriptio": "NIGERIA:On 7 July, the Nigeria-flagged offshore supply vessel PRINCE JOSEPH 1 was attacked near position 03-15N 005-10E, approximately 80 nm southwest of the Bayelsa coast. Nigerian Naval ship MEDIATOR intervened and repelled the attackers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.166666700004328, 3.249999999775923] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-158", - "dateofocc": "2016-07-09", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "VIETNAM:On 9 July, Vietnam-flagged fishing vessel QNg 90479-TS with six sailors on board was attacked and sunk by Chinese vessels at around 11:00 am while fishing near the Paracel Islands, vicinity 16-40N 112-20E. The Vietnamese boat was closed by two Ch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.333333300439222, 16.666666699926566] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-159", - "dateofocc": "2016-07-09", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "MALAYSIA:On 9 July, gunmen kidnapped three Indonesian members of a small boat off Malaysia's eastern state of Sabah, the latest in a string of abductions in a region noted for kidnappings by Islamist militants. It was not immediately clear whether the me", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.966666699695224, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-160", - "dateofocc": "2016-07-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 16 July at 0230Z vessel attacked in 01-00N 006-00E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.999999999640067, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-161", - "dateofocc": "2016-07-16", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "tINDONESIA:On 16 July at 1520Z in 02-55N 105-19E, seven robbers armed with knives boarded the bulk carrier Baltimore. They tied up the master and escaped with cash and ship's property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.316666700140502, 2.916666699706752] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-162", - "dateofocc": "2016-07-17", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Barge", - "descriptio": "CONGO:On 17 July at 0245LT in 04-47.0S 011-47.9E, at pointe noire anchorage, a robber boarded an anchored pipe laying barge. Duty crew on routine rounds noticed the robber and informed the bridge. Alarm raised and crew mustered. Seeing the crew alertness", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.80000000036722, -4.783333299553021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-163", - "dateofocc": "2016-07-16", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 16 July at 1230LT in 07-10N 125-40E, at New Davao oil mill berth, three robbers armed with knives boarded a berthed product tanker. Alarm raised and crew mustered. Upon hearing the alarm and seeing the crew alertness, the robbers escaped w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.666666699854318, 7.166666700069015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-164", - "dateofocc": "2016-07-04", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "CONGO:On 04 July at 0900LT in 04-44.9S 011-48.6E, at pointe noire outer anchorage, robbers in a small boat boarded an anchored pipe laying barge. They stole ship's stores and escaped unnoticed. The theft was noticed during routine rounds and incident was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-165", - "dateofocc": "2016-07-16", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "CONGO:On 16 July at 0450LT in 04-44.9S 011-48.6E, at pointe noire outer anchorage, robbers in a fishing canoe boarded an anchored pipe laying barge. Duty crew noticed the robbers and raised the alarm. Seeing the alerted crew, the robbers escaped with sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-166", - "dateofocc": "2016-07-17", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "HAITI:On 07 July at 2115LT in 18-34N 072-023W, at Port Au Prince E anchorage, robbers boarded an anchored product tanker. Duty crew on routine rounds noticed the robbers. Alarm raised and crew mustered. Seeing the crew alertness, robbers jumped overboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.566666700257827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-168", - "dateofocc": "2016-07-11", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "COLOMBIA:On 11 July vicinity 09-48N 075-50W, near Isla Grande, Rosario Islands area, two robbers armed with knives boarded an anchored sailing yacht. Crew got into an altercation with robbers and eventually repelled them. Nothing reported stolen. Crew re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.833333299917228, 9.800000000302532] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-169", - "dateofocc": "2016-07-01", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "GRENADA:The first week of July vicinity 12-00N 061-45W, Mt Hartman Bay, eight sailing yachts in storage anchorage were boarded. Yachts had numerous items stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.749999999628187, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-171", - "dateofocc": "2016-07-17", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 17 July, vicinity 22-22N 091-48E, pirates attacked a fishing boat operating near the Chittagong Gas Field, leaving one fisherman dead. After shooting at the boat, the pirates boarded and ransacked the ship, in addition to beating the remain", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 22.366666700020971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-122", - "dateofocc": "2014-05-21", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "TOGO:On 21 May, a boat with eight robbers armed with long knives attempted to board an anchored chemical tanker near position 06-03N 001-14E, approximately 4 nm south of Lome Port. When the deck watch saw the boat with the suspected robbers, they raised", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.233333299814092, 6.050000000406101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-123", - "dateofocc": "2014-05-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 23 May, three robbers boarded an anchored bulk carrier near position 06-01S 106-54E, Jakarta Anchorage. Duty crewman on security rounds saw the robbers and raised the alarm. The robbers threatened the duty crewman with a knife and escaped wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-124", - "dateofocc": "2014-05-25", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 25 May, armed pirates boarded an underway tanker near position 01-51N 104-31E, 30 nm south of Pulau Aur. They stole cash, crew personal effects, and provisions and damaged equipment before disembarking the vessel. Following the incident, the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.516666699575012, 1.849999999910551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-125", - "dateofocc": "2014-05-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Processing Ship", - "descriptio": "INDONESIA:On 27 May, three robbers boarded an offshore processing ship using a rope and hook near position 01-28N 104-37E, 14 nm north-northeast of Pulau Bintan. An alert duty crewman spotted the robbers and raised the alarm, resulting in the robbers esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.616666700207759, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-126", - "dateofocc": "2014-05-28", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 28 May four robbers boarded the Liberia-registered bulk carrier Ore Vitoria at 0625 local time while underway southwest of Nipa Anchorage. No further information was provided.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.633333300247841, 1.149999999977808] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-127", - "dateofocc": "2014-05-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical tanker", - "descriptio": "INDONESIA:On 22 May, two robbers boarded an anchored chemical tanker near position 03-47N 098-41E, Belawan Anchorage. Robbers spotted by crew members who raised the alarm. The robbers escaped with stolen ships property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-128", - "dateofocc": "2014-06-02", - "subreg": "13", - "hostility_": "Robbers", - "victim_d": "Tugboat", - "descriptio": "UNITED STATES:On 2 June, robbers stole a small tug boat from the Oyster House pier in East Providence, Rhode Island. The boat was later found aground and half-submerged in the Providence River near Sabin Point. East Providence Police and Fire were alerte", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.386388899567351, 41.818333299638255] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-129", - "dateofocc": "2014-06-02", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "NIGERIA:On 2 June, robbers in two speedboats approached and fired upon an underway bulk carrier near position 04-49N 008-02E, Calabar River. When the robbers got close enough to the ship to see the armed embarked security team, the robbers turned away an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.033333299674268, 4.816666700037956] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-130", - "dateofocc": "2014-06-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "General cargo ship", - "descriptio": "INDONESIA:On 3 June, three robbers attempted to board an anchored general cargo ship near position 06-01S 106-54E, Tanjung Priok. An alert deck watchman saw the robbers and raised the alarm. Seeing the alerted crew, the robbers retreated into their boat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-131", - "dateofocc": "2014-05-31", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 31 May, ten pirates boarded an underway tanker near position 04-03N 112-26E, approximately 60 nm northwest of Bintulu. The robbers tied up the duty officer and lookout and asked them the details of the vessel destination, type of cargo, natio", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.433333300172762, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-132", - "dateofocc": "2014-05-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 29 May, three suspected robbers approached an anchored tanker near position01-34N 104-27E, approximately 22 nm north of Pulau Bintan. Duty crewman spotted the skiff and reported to the duty officer on the bridge, who raised the alarm and must", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.449999999811155, 1.566666699708037] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-133", - "dateofocc": "2014-05-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 29 May, four robbers boarded an underway bulk carrier near position 01-08N 103-30E, 4 nm southwest of Karimun Kecil Island. When the robbers entered the engine room, the duty crewman alerted the duty officer, who raised the alarm and mustere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-134", - "dateofocc": "2014-05-29", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "BANGLADESH:On 29 May, two robbers attempted to board an anchored product tanker near position21-43N 091-47E, Kutubdia Anchorage. Duty crewman saw the robbers on the stern of the ship and notified the duty officer, who raised the alarm. Seeing the crew re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.783333300359232, 21.716666699954999] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-135", - "dateofocc": "2014-05-27", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "SINGAPORE:On 27 May, robbers hijacked the product tanker ORAPIN 4, laden with diesel fuel, shortly after it departed Singapore enroute Thailand. The owners lost contact with the vessel and informed the IMB Piracy Reporting Centre which immediately notifi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.399999999912097, 7.349999999638726] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-136", - "dateofocc": "2014-05-29", - "subreg": "71", - "hostility_": "Intruders", - "victim_d": "Tugboat", - "descriptio": "INDONESIA:On 29 May, at 0042 hours local time, Kien San 1, a Malaysia-registered tugboat loaded with scrap metal, was boarded by four men as the ship was under way northwest of Nipa Anchorage. However, the four men soon made their escape after the Singap", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.399999999912097, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-13", - "dateofocc": "2015-01-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA: On 29 January, two robbers boarded an anchored bulk carrier near position 06-01S 106-55E, Tanjung Priok Outer Roads, Jakarta. Two deck watchmen on routine rounds saw the robbers on the forecastle deck. They immediately informed the duty office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.916666700372105, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-14", - "dateofocc": "2015-01-08", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Barge", - "descriptio": "INDONESIA:On 8 January, robbers in three small boats boarded a barge under tow near position 01-11N 103-37 E, 2.7 nm northwest of Pulau Nipah. They stole some of the cargo and escaped. The tug reported the incident to the local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.616666700175415, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-15", - "dateofocc": "2015-02-03", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Super Tanker", - "descriptio": "NIGERIA:On 3 February, up to a dozen pirates boarded the super tanker MT KALAMOS, killing one crewman and reportedly kidnapping three others. The attack occurred near the Qua Iboe Terminal.UPDATE:According to 25 February reporting, the three kidnapped cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.983333299807555, 4.333333299644551] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-16", - "dateofocc": "2015-02-01", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 1 February, two crewmen on the forecastle of an anchored tanker noticed a boat approaching at high speed near position 05-28N 005-05E, 10 nm southwest of Escravos. As the boat closed, the crew noticed something being thrown towards the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.083333300343327, 5.466666700103985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-17", - "dateofocc": "2015-01-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "GHANA:On 30 January, armed pirates hijacked the Ghana-flagged fishing vessel LU RONG YUAN YU 917 near position 04-26N 001-43W, 27 nm south of Takoradi. The Togo Navy responded and engaged the pirates. Twenty crewmen jumped overboard in an attempt to esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.71666670041617, 4.433333300277297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-18", - "dateofocc": "2015-01-28", - "subreg": "73", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 28 January, chemical tanker MT REHOBOT, sailing under the Indonesian flag, went missing after being hijacked by pirates, but all of the crew members are safe. The ship was reportedly boarded by pirates near Lembeh Island, North Sulawesi. The", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.266666700021233, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-19", - "dateofocc": "2015-01-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug Boat", - "descriptio": "INDONESIA:On 14 January, a duty crewman on board a berthed tug spotted several robbers armed with long knives near position 01-02N 103-54E, PT Idros Private Jetty, Tanjung Uncang, Batam. The duty crewman raised the alarm, armed himself with a long knife", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.900000000377929, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-20", - "dateofocc": "2015-02-03", - "subreg": "73", - "hostility_": "Pirates", - "victim_d": "Merchant Vessel", - "descriptio": "PAPUA NEW GUINEA:On 3 February, MV KWADIMA II was boarded by pirates near Alotau. During the attack, passengers and crew sustained non-life threatening injuries. In addition, some personal items along with translator's notes were stolen or lost; some of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 5, - "victim_l_D": "Merchant Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [150.416666700429914, -10.31666669997486] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-21", - "dateofocc": "2015-02-01", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sail Boat", - "descriptio": "HONDURAS:On 1 February, three armed men boarded an underway sailing boat approximately 15 nm offshore of Puerto Cortez. The men initially approached the sailing boat and asked for gasoline, then quickly boarded the boat. They stole the boat's outboard mo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.1333333004049, 16.049999999830163] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-22", - "dateofocc": "2015-02-05", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:On 5 February, a duty crewman onboard a berthed chemical tanker near position 06-26N 003-22E, ENL Jetty, Lagos Harbor, spotted robbers attempting to board the vessel. He alerted the onboard security team who chased the robbers away. Soon afterwa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-23", - "dateofocc": "2015-02-08", - "subreg": "62", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "GULF OF ADEN:On 8 February, gunmen in four skiffs reportedly made a suspicious approach against the Kuwait-flagged MT BURGAN while the vessel was transiting the Gulf of Aden. The ship was carrying 40,303 tons of aviation fuel and was transiting from the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.000000000098964, 12.366666699697589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-210", - "dateofocc": "2015-10-01", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 1 October, two robbers boarded a tanker via the anchor chain near position 05-49N 118-05E, 1.5 nm north-northeast of Sandakan, Borneo. An alert crewman spotted the robbers and raised the alarm, resulting in the robbers abandoning the collect", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-211", - "dateofocc": "2015-09-30", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 30 September, a stevedore onboard a container ship berthed near position 10-46N 106-44E, Vietnam International Container Terminal, Ho Chi Minh City Port noticed two robbers near the forecastle and alerted the duty crewman who in turn notified", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.7333333000783, 10.766666700365306] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-212", - "dateofocc": "2015-10-10", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "MINDANAO, PHILIPPINES:While enroute to Tambler, General Santos City, a cargo ship about 4.5 NM southeast of Olanivan Island near position 05-27N 125-32E, noticed 2 speed boats with 7 armed persons with guns approaching the vessel. The Master suspecting a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.533333300326603, 5.450000000206785] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-213", - "dateofocc": "2015-10-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 14 October near position 01-07N 103-30E, the duty crew onboard an underway bulk carrier noticed a speed boat approaching the ship. The alarm was raised, the crew mustered and the search light was directed at the speedboat. Upon seeing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-214", - "dateofocc": "2015-10-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "N/A", - "descriptio": "SINGAPORE STRAIT:On 14 October near position 01-07N 103-32E, the 3rd engineer noticed 4 armed robbers with long knives entering the engine room workshop through the aft door. The 3rd engineer and junior engineer were taken hostage and tied up. The robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 12, - "victim_l_D": "Unknown", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.533333299615094, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-215", - "dateofocc": "2015-10-08", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CAMEROON:On 8 October, an unknown number of robbers boarded a berthed bulk carrier near position 04-03N 009-41E, Douala Port. The robbers were able to break the lock to the forecastle store room, steal ship's properties and escape unnoticed. A duty crewm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.683333299772585, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-216", - "dateofocc": "2015-10-15", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 15 October, six robbers boarded the Panama-flagged tanker ALMI SPIRIT in the Kukup Anchorage area of Johor Province, near position 01-20N 103-26E. Forces from the Malaysian Maritime Enforcement Agency responded to the boarding and are investi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.433333299881667, 1.333333300446839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-217", - "dateofocc": "2015-10-12", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH:On 12 October, a group of fishermen came under attack from pirates it the Kuakata Bay region of Patuakhali, near position 21-45N 090-19E. According to the Alipur Trawler Owners' Association, three fishing boats came under attack from the pirat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.3166666996554, 21.749999999924569] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-162", - "dateofocc": "2014-07-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 2 July, two armed robbers in a wooden fishing boat boarded an anchored tanker from the stern near position 01-28N 104-40E, 13 nm northeast of Pulau Bintan. Alert crew spotted the robbers and raised the alarm. Seeing the alerted crew, the rob", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-218", - "dateofocc": "2015-10-06", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 6 October, an unknown number of robbers boarded an anchored product tanker during hours of darkness near position 05-49N 118-09E, Sandakan Anchorage, Sabah. The robbers forced their way into the bosun store room, stole spare parts and escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.150000000164255, 5.8166667000703] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-219", - "dateofocc": "2015-10-05", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "INDONESIA:On 5 October, an unknown number of robbers boarded an anchored general cargo ship near position 06-01S 106-53E, Tanjung Priok Anchorage. They entered into the engine room workshop, stole ship's properties and escaped. The theft was noticed by t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.016666699745883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-220", - "dateofocc": "2015-10-18", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "LPG Tanker", - "descriptio": "CAMEROON:On 18 October near position 02-43N 009-11E, around 45 nm WSW of Kribi, Caneroon; 2 suspicious high speed skiffs appoached an underway LPG tanker. The 2nd officer informed the Master who in turn raised the alarm and made announcements. As the ski", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [9.183333300206129, 2.716666700239841] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-221", - "dateofocc": "2015-10-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "SINGAPORE STRAIT:On 14 October near position 01-11N 103-26E, six robbers boarded an underway tanker using hooks attached with ropes. Two of the robbers entered the engine room and were spotted by the 2nd Engineer. One of the robbers threatened the 2nd En", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.433333299881667, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-222", - "dateofocc": "2015-10-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Refrigerated Cargo Ship", - "descriptio": "On 19 October near position 03-50N 005-35E, armed pirates attacked and boarded a refrigerated cargo ship underway off the Niger Delta. They stole ship's cash, destroyed equipment and kidnapped 4 crew members before escaping. Authorities have been notifie", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.583333299909839, 3.833333300078039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-167", - "dateofocc": "2016-07-20", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "PERU:On 20 July at 0045 LT vicinity 12-01S 077-12W, at Callao anchorage, robbers boarded an anchored bulk carrier. Crew noticed robbers at forecastle and informed watch officer. Alarm raised and crew mustered. Upon hearing the alarm and seeing crew alert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-172", - "dateofocc": "2016-07-20", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PERU:On 20 July at 0430 LT in 04-33.9S 081-18.6W, at Talaro Road, crew aboard an anchored tanker noticed a small motor boat near the starboard anchor chain. One robber was climbing up the chain while one remained in the boat. Duty crew notified the watch", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.316666699572977, -4.566666700013741] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-173", - "dateofocc": "2016-07-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Offshore Supply Vessel", - "descriptio": "NIGERIA:On 07 July at 1430Z in 03-05N 004-53E, around 98 NM SW of Baylesa, three pirates armed with guns fired upon and boarded an underway offshore supply vessel. Alarm raised, distress alert activated and crew retreated to the citadel. Pirates kidnappe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.883333299977096, 3.083333300278639] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-174", - "dateofocc": "2016-07-22", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Cable Laying Vessel", - "descriptio": "RED SEA:On 22 July at 0447Z in 13-37.5N 042-35.9E, 16 pirates in two skiffs armed with an AK47 and a RPG approached and fired upon an underway cable laying vessel. Alarm was raised, SSAS activated and crew retreated to the citadel. UKMTO and a warship ac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.600000000104217, 13.633333300035247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-175", - "dateofocc": "2016-07-24", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 24 July at 2220LT in 00-13.4S 117-33.9E, at Samarinda anchorage, three robbers in a small wooden motor boat approached and boarded an anchored bulk carrier. Duty crew noticed robbers and raised the alarm. Seeing the crew alertness, the robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-176", - "dateofocc": "2016-07-28", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "GHANA:On 28 July at 0350Z, vessel attacked in 04-54N 001-41E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.68333330041321, 4.89999999987424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-177", - "dateofocc": "2016-07-24", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 24 July at 0515 LT in 06-26.1N 003-19.6E, at Capital terminal berth, three robbers in a small boat approached and boarded a berthed tanker. An armed guard on rounds noticed the robber and raised the alarm. Hearing the alarm and seeing crew ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.333333299612207, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-178", - "dateofocc": "2016-07-26", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "GHANA:On 26 July at 0338 LT vicinity 04-57N 001-42W, at Sekondi naval berth in Takoradi, a robber armed with a knife in a small boat boarded a berthed tug. The deck crew noticed the robber and raised the alarm. Seeing the approaching crew, the robber esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.699999999619706, 4.94999999974101] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-179", - "dateofocc": "2016-07-28", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 28 July at 0520 LT vicinity 01-44.8N 101-22.6E, at SDS terminal, Lubuk Gaung, six robbers armed with knives boarded a berthed product tanker and entered the engine room. They took the oiler and third engineer hostage, stole ship's spare part", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.383333299950266, 1.750000000177067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-180", - "dateofocc": "2016-07-30", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Sailing Vessel", - "descriptio": "GRENADA:On 30 July, two men, one armed with a gun, attempted to kidnap two persons and use their sailing yacht to get to Puerto Rico. During the course of the kidnapping, the sailing yacht grounded on a reef, at which point the armed man took the man¿s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.666666699791904, 12.116666700363965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-181", - "dateofocc": "2016-08-07", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CONGO:On 7 August, two robbers boarded an anchored bulk carrier near position 04-44S 011-46E, Pointe Noire Outer Anchorage. The robbers broke into the bosun store room, which triggered an alarm on the bridge. Duty officer raised the alarm and alerted the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.76666670039765, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-182", - "dateofocc": "2016-08-05", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 5 August, four robbers armed with long knives boarded a berthed product tanker near position 06-26N 003-25E, Folawiyo Nispan Jetty, Apapa, Lagos. They took hostage the duty pump man and threatened him with their knives. The robbers put two hos", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.416666700172584, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-183", - "dateofocc": "2016-08-07", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 7 August, three robbers in a small boat boarded an anchored bulk carrier near position 10-15.50N 107-01.26E, Vung Tau Anchorage. Duty crewman on routine rounds noticed the robbers and raised the alarm. All crew mustered on the main deck. Heari", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.016666700105532, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-137", - "dateofocc": "2014-05-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk carrier", - "descriptio": "INDONESIA:On 29 May, Eastern Star, a Vietnam-registered bulk carrier was targeted next by the sea robbers at 0353 hours local time on 29 May as it was under way southwest of Nipa Anchorage. Four men were spotted on board the stern of the vessel. The robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-138", - "dateofocc": "2014-06-10", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Container ship", - "descriptio": "TOGO:On 10 June, seven robbers in a small boat attempted to board an anchored container ship using a long stick with a hook near position 06-0N 001-18E, Lome Anchorage. An alert duty crewman saw the activity and raised the alarm; duty officer notified To", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.299999999577949, 6.016666700436531] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-139", - "dateofocc": "2014-06-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Fishing vessel", - "descriptio": "GHANA:On 5 June, pirates hijacked fishing vessel MARINE 711 in the coastal area of the border between Ghana and Togo. The pirates took the 41 crewmembers hostage and cut power to the communications equipment. They then forced the captain to sail the vess", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [0.73333330024758, 5.033333299577237] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-140", - "dateofocc": "2014-06-04", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Oil product tanker", - "descriptio": "GHANA:On approximately 4 June, pirates hijacked the Liberia-flagged oil product tanker FAIR ARTEMIS and its 24 crewmembers off Ghana. Pirates stole the vessels cargo of gas oil and other items before releasing the vessel. The owner reported that the crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-0.983333299789876, 3.700000000375042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-141", - "dateofocc": "2014-06-10", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 10 June, two robbers boarded an anchored tanker near position 17-37N 083-24E, Visakhapatnam. When the duty officer spotted the robbers and raised the alarm, the robbers disembarked the tanker and escaped in their fishing boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [83.400000000164596, 17.616666700092196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-142", - "dateofocc": "2014-06-08", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "BANGLADESH:On 8 June, six armed robbers in a small boat boarded an anchored tanker using a hooked ladder near position 22-29N 091-41E, Chittagong anchorage. When a duty crewman informed the duty officer on the bridge, who raised the alarm, sounded ships", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.683333299726485, 22.483333299826825] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-143", - "dateofocc": "2014-06-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo ship", - "descriptio": "MALAYSIA:On 7 June, four robbers in a small boat boarded an anchored cargo ship near position 01-40N 104-25E, approximately 10 nm east-northeast of Tanjung Balau, Johor. The robbers boarded the ship from the stern area with a hook and rope, but were spot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.416666699841585, 1.666666700340784] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-144", - "dateofocc": "2014-06-07", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 7 June, ten machete-wielding pirates hijacked the Malaysia-registered tanker MT BUDI MESRA DUA off Bintulu in the oil-rich Sarawak state as the ship sailed from neighboring Singapore. The tanker was carrying about a million liters of diesel f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.083333300238678, 3.38333330037824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-145", - "dateofocc": "2014-06-22", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Merchant tug", - "descriptio": "MALAYSIA:UPDATE:On 22 June, the crew and cargo barge from the still-missing tug MANYPLUS 12 were rescued by a Vietnamese fishing boat near position 08-12N 115-46E, approximately 110nm northwest of Kota Kinabalu. The shipping company originally reported t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.766666700163682, 8.200000000070929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-146", - "dateofocc": "2014-06-10", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Fishing boat", - "descriptio": "PHILIPPINES:On 10 June three robbers hijacked a fishing boat and terrorized its two crewmen in the waters of Margosatubig, Zamboanga Del Sur. The small fishing boat named Ronald, was on its way home when three robbers in a speedboat armed with a 12 gauge", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.150000000325917, 7.59999999987167] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-147", - "dateofocc": "2014-06-14", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "MALAYSIA:On 14 June, pirates hijacked the Honduras-flagged tanker AL MARU near position 02-06N 104-39E, approximately 31 nm off Tanjung Sedili, Johor. Initial investigations revealed that seven pirates armed with pistols and knives boarded the product ta", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.650000000177329, 2.100000000143439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-148", - "dateofocc": "2014-06-19", - "subreg": "73", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "INDONESIA:On 19 June, the owner of the Taiwan-flagged fishing boat KUO RONG 333 lost contact with the vessel. The KUO RONG 333 had departed Palau for the Solomon Islands six days earlier. On 23 June, satellite data helped locate the ship 64 nm northwest", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.26666669985957, -7.85000000031323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-24", - "dateofocc": "2015-02-10", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM: On 10 February, a deck watchman on routine rounds aboard a berthed container ship near position 20-52N 106-40E, Nam Hai Container Terminal, Haiphong saw two robbers near the forward store room and alerted the Duty Officer and local police office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.66666670013916, 20.866666700422115] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-25", - "dateofocc": "2015-02-04", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 4 February, five robbers boarded an anchored container ship near position 10-12N 107-03E, 7 nm south of Vungtau. Alert crew spotted the robbers and raised the alarm. Seeing the crew alertness, the robbers escaped with stolen ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-26", - "dateofocc": "2015-02-15", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "BRAZIL:On 15 February, several armed robbers boarded a sailing yacht near position 02-30S 044-19W, at the Sao Luis Yacht Club in northeast Brazil. During the course of the robbery, the Dutch owner of the yacht was shot in the chest and died on the scene.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-44.316666700175062, -2.500000000185196] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-27", - "dateofocc": "2015-02-02", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Schooner", - "descriptio": "BRAZIL:On 2 February, three knife wielding robbers attempted to board the sailing schooner WINDJAMMER near position 03-45S 038-35W, Fortaleza, Brazil. They tried climbing up to the main deck shouting \"pirata' pirata\" but the crew was able to fend them of", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-38.58333330028637, -3.749999999551108] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-29", - "dateofocc": "2014-02-14", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Anchored Vessel", - "descriptio": "VIETNAM:On 14 February, five robbers boarded an anchored vessel near position 20-37N 106-51E, Haiphong OPL Anchorage. When the duty crewman on routine rounds saw the robbers on the forecastle deck, he raised the alarm and the crew mustered. Upon hearing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.849999999708871, 20.616666700189228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-30", - "dateofocc": "2015-02-13", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALACCA STRAIT:On 13 February, six to eight pirates, armed with pistols and knives hijacked MT LAPIN from a small boat near position 03-11N 100-43E, approximately 40 nm west-southwest of Port Klang, Malaysia. The pirates gathered the crew and took contro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.716666699811867, 3.183333300012066] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-31", - "dateofocc": "2015-02-12", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 12 February, two robbers boarded an anchored bulk carrier using hooks attached with ropes near position 03-41S 114-28E, Taboneo Anchorage. When the duty crewman spotted the robbers, the alarm was raised and the crew was mustered. Seeing the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.466666700031737, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-32", - "dateofocc": "2015-02-12", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 12 February, five robbers armed with knives boarded an anchored bulk carrier near position 20-41N 107-12E, Hongai Outer Anchorage. When the Duty Officer saw movement on the forecastle, he instructed the duty crewman to check the area. When the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.199999999675242, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-33", - "dateofocc": "2015-01-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Anchored Ship", - "descriptio": "INDONESIA:On 22 January, four robbers boarded an anchored ship near position 05-51S 106:56E, Jakarta Anchorage. The Duty Oiler saw the robbers in the engine room. The robbers subdued the crewman, threatening him with a knife. The remaining robbers stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.933333300444474, -5.850000000248542] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-34", - "dateofocc": "2015-02-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 25 February, three robbers boarded an underway bulk carrier near position 01-08N 103-28 E, 3 nm east of Pulau Karimun Kecil. The alarm was raised and the crew mustered. Seeing the crew response, the robbers escaped empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.466666699675955, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-35", - "dateofocc": "2015-02-20", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA: On 20 February, seven pirates armed with guns and knives hijacked the product tanker MT PHUBAI PATTRA 1 near position 02-08N 104-39 E, 18 nm southeast of Pulau Aur. The crew was taken hostage. The pirates transferred part of the cargo of gasoli", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.650000000177329, 2.133333300113009] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-223", - "dateofocc": "2015-10-20", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "COLOMBIA:On 20 October near position 10-19N 075-31W, in Mamonal Anchorage. The Duty Watchman on board an anchored product tanker noticed 2 robbers on the forecastle and informed the Officer on Watch. The alarm was raised, the search light was directed to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-224", - "dateofocc": "2015-10-18", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VIETNAM:On 18 October, a duty crewman on routine rounds onboard an anchored tanker noticed two robbers on the poop deck near position 10-06N 107-06E, Mui Vung Tau Anchorage. He shouted at the robbers then retreated to a safe location and raised the alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.099999999941815, 10.100000000402133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-225", - "dateofocc": "2015-09-29", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Boat", - "descriptio": "VIETNAM:On 29 September near position 16-32N 111-44E, near Luoi Liem Island in the disputed Paracel Island group, a Vietnam-flagged fishing boat QNg 90352 was reportedly rammed and then boarded by a boat carrying uniformed Chinese personnel armed with kn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [111.73333330024002, 16.533333300398851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-226", - "dateofocc": "2015-10-24", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "LIBERIA:On 24 October, 0830 LT, near position 06-20N 010-51W, Monrovia Anchorage. Unnoticed robbers boarded an anchored bulk carrier. They stole ship's properties and escaped. The theft was noticed when the crew noticed the padlock to the safetylocker wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.850000000410262, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-227", - "dateofocc": "2015-10-25", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Oil Platform", - "descriptio": "CAMEROON:On 25 October, a large canoe made a suspicious approach against an oil platform near position 04-19N 008-28E, approximately 11 nm offshore from the Bakassi area. A security vessel responded and the canoe turned around and headed into Nigerian te", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.46666670020096, 4.316666699572124] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-228", - "dateofocc": "2015-10-26", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH:On 26 October, near position 21-40N 089-35E, pirates abducted at least 50 fishermen from the Bay of Bengal, attacking a fleet of more than a hundred fishing boats. They captured 25 of the fishing boats. Eleven fishermen from Patharghata of Bar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.58333329992837, 21.666666700088285] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-229", - "dateofocc": "2015-10-26", - "subreg": "72", - "hostility_": "Hijacking", - "victim_d": "Sailing Yacht", - "descriptio": "INDONESIA:During the week of 26 October near position 08-46S 115-44E, a German-flagged sailing yacht, FARAWAY, was reportedly hijacked in the Lombok Strait near Bali Island. Two German citizens were onboard; no ransom demand has been made.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.733333300369395, -8.766666699609971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-230", - "dateofocc": "2015-10-22", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 22 October, three robbers armed with long knives boarded an underway bulk carrier near position 01-06N 103-32E, 7.5 nm east-northeast of Pulau Karimun Besar. The duty oiler sighted the robbers in the engine room's storeroom and immediately i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.533333299615094, 1.100000000111095] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-231", - "dateofocc": "2015-10-22", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 22 October near position 20-41N 107-13E, Cai Lan Anchorage, a duty crewman on an anti-piracy and robbery watch onboard an anchored bulk carrier noticed six robbers climbing onto the forecastle using a rope attached to a hook. He notified the d", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.216666699572386, 20.683333300128368] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-232", - "dateofocc": "2015-10-31", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "On 31 October between 0017 and 0200 local time near position 22-47N 070-2E, Kandla Anchorage, India; robbers boarded an anchored bulk carrier unnoticed. The duty crew on routine rounds noticed the pad locks to the bosun stores were damaged. Ship's stores", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.033333299880667, 22.783333299926483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-233", - "dateofocc": "2015-10-29", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 29 October, an unknown number of robbers boarded an anchored tanker via the anchor chain near position 22-40N 069-56E, Reliance Crude Anchorage. The robbers stole ship's properties from the forecastle store room and escaped. The theft was notice", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [69.93333330014724, 22.666666700120629] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-234", - "dateofocc": "2015-10-16", - "subreg": "83", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "FRENCH POLYNESIA:On 16 October, an unknown number of robbers boarded an anchored sailing yacht near position 17-29S 149-50W in Maharepa, Moorea. The robbers broke into several cabins on the yacht, stealing personal electronics, navigational equipment and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [-149.833333299612377, -17.483333299873777] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-235", - "dateofocc": "2015-11-03", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Commercial Tug", - "descriptio": "TRINIDAD AND TOBAGO:On 3 November, four robbers boarded an anchored commercial tug, MS. ANNE, in the western end of Chaguaramas Bay, near position 10-40N 061-40W. The robbers demanded cash, jewelry, and cell phones. When they were refused, the pirates to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.666666699791904, 10.666666699732559] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-184", - "dateofocc": "2016-08-03", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 3 August, unidentified gunmen reportedly kidnapped the captain of a fishing boat as it operated northeast of Sabah state on Borneo Island. The kidnappers let the two crewmen go. No group has claimed responsibility.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.000000000434738, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-185", - "dateofocc": "2016-07-29", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 29 July, robbers boarded an anchored bulk carrier near position 10-16.03N 107-01.83E, Vung Tau Anchorage. Duty crewman on routine rounds noticed the robbers and raised the alarm. Seeing the alert crew, robbers escaped with stolen ships stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-186", - "dateofocc": "2016-08-02", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "TRINIDAD AND TOBAGO:On 02 August a vessel with three men onboard approached a sailing vessel vicinity10-49N 061-38W, 10 nm NE of Boca Monos. Robbers pulled alongside yacht and grabbed hold of the sailing yacht but the sea conditions were too rough. The v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.63333329999756, 10.833333300304446] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-187", - "dateofocc": "2016-08-13", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 13 August vicinity 06-26N 003-22E, two robbers boarded a berthed product tanker in Apapa, Lagos. Duty crew noticed the robbers and informed the bridge who raised the alarm and sounded the fog horn. Hearing the alarm, the robbers escaped in the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.433333300341985] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-188", - "dateofocc": "2016-08-17", - "subreg": "56", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "LIBYA:On 17 August, vessel fired upon vicinity 33-09.8N 012-25.7E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [12.433333299636729, 33.166666700010524] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-189", - "dateofocc": "2016-08-17", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "NIGERIA:On 17 August at 1327 LT, nine pirates in a wooden speedboat approached and boarded an underway cargo vessel. Alarm raised and all crew retreated to the citadel. Pirates departed by the time the Nigerian Navy boarded the vessel. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.150000000171872, 3.899999999841896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-190", - "dateofocc": "2016-08-19", - "subreg": "21", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "COSTA RICA:On 19 August, a dinghy and small outboard motor were stolen from a sailing vessel anchored in Golfito Bay.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.166666700037524, 8.616666699801158] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-191", - "dateofocc": "2016-08-24", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "GUINEA:On 24 August, at 0110 LT, seven robbers armed with guns and knives boarded an anchored bulk carrier near position 09-24.5N 013-43.3W, 5.5 nm south of Conakry. Two crewmen were taken hostage and beaten. The robbers escaped with crew's cash and prop", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.716666699904977, 9.416666700366591] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-192", - "dateofocc": "2016-08-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "NIGERIA:On 19 August, two fishermen were kidnapped from the Ibeno area of Akwa Ibom State, vicinity 04-34N 007-59E. A large ransom was reportedly made for their release.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.983333299807555, 4.566666699805069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-193", - "dateofocc": "2016-08-18", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "NIGERIA:On 18 August, six fishermen were kidnapped from the Ibeno area of Akwa Ibom State, vicinity 04-34N 007-59E . A large ransom was reportedly made for their release.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.983333299807555, 4.566666699805069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-194", - "dateofocc": "2016-08-07", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA: On 7 August at 2130 LT, while en route from Singapore to Haiphong, the asphalt tanker AD MATSU was boarded by five pirates armed with guns and knives near position 02-00N 104-52E, 32 nm southeast of Pulau Aur, Johor. The Master and chief office", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.883333299613753, 2.016666700307155] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-195", - "dateofocc": "2016-05-03", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Heavy Lift Carrier", - "descriptio": "COLOMBIA:On 03 May at 0700Z in 10-18.4N 075-33.4W, Cartagena anchorage, robbers boarded an anchored heavy lift carrier. They stole ship's stores and escaped unnoticed. The theft was noticed during routine rounds and incident reported to port control.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.549999999714714, 10.299999999869044] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-196", - "dateofocc": "2016-08-18", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "MALAYSIA:On 18 August in 02-20.9N 104-56.1E, a vessel reported a robbery attempt.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.933333300379843, 2.350000000376383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-197", - "dateofocc": "2016-08-27", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "PERU:On 27 August at 0630Z in 12-01S 077-10.9W, at Callao anchorage, three robbers armed with guns boarded an anchored bulk carrier. Crew on routine rounds managed to notify the bridge before being taken hostage at gunpoint. The alarm was raised, SSAS ac", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-198", - "dateofocc": "2016-08-17", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "GRENADA:On 17 August, robbers boarded a sailing yacht anchored in the Port Louis Marina, vicinity 12-02N 061-45W. They stole a bag containing personal effects and a large amount of cash.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.749999999628187, 12.033333299803644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-199", - "dateofocc": "2016-08-17", - "subreg": "56", - "hostility_": "Pirates", - "victim_d": "Supply Vessel", - "descriptio": "LIBYA:On 17 August, Médecins Sans Frontières (MSF) reported that Luxemburg-flagged tug supply vessel BOURBON ARGOS was taking part in migrant rescue operations 24 nm north of Libyan coast, vicinity 32-46N 15-11E, when they were \"approached and attacked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [15.183333300400136, 32.766666700177439] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-245", - "dateofocc": "2015-11-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "SOMALIA:On 22 November at 1105 UTC near position 06-16N 053-30E, around 232 NM SE of the Somali coast, a fishing vessel was hijacked by pirates.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.499999999827196, 6.266666699770099] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-150", - "dateofocc": "2014-06-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Anchored Ship", - "descriptio": "INDONESIA:On 17 June, four robbers armed with knives boarded an anchored ship near position 03-57N 098-46E, Belawan Anchorage. Duty crewman on security rounds saw the robbers and raised the alarm. Upon hearing the alarm the robbers escaped. During an ins", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 1, - "victim_l_D": "Anchored Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.766666699613893, 3.949999999708666] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-151", - "dateofocc": "2014-06-25", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "COLOMBIA:On 25 June, robbers boarded an anchored tanker near position 10-19N 075-31W. Cartagena Inner Anchorage 'A'. The roving patrol on duty noticed the robbers on the forecastle and informed the duty officer who raised alarm. Search lights were direct", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-152", - "dateofocc": "2014-06-30", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "General Cargo Ship", - "descriptio": "IVORY COAST:On 30 June, two robbers, armed with long knives, in a speedboat boarded an anchored general cargo ship near position 05-13N 004-04W, Abidjan Anchorage. The duty crewman on routine rounds spotted the robbers at stern of the ship and informed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.066666700447229, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-153", - "dateofocc": "2014-06-28", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN:On 28 June, a skiff made a suspicious approach on an underway tanker, TORM SOFIA, near position 13:15N 049:11E, approximately 76 nm south of Al Mukalla, Yemen. The vessel was en route from Sikka, India to New York when it was approached. Acc", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.183333299701019, 13.250000000099305] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-154", - "dateofocc": "2014-06-25", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 25 June, two robbers boarded an anchored tanker near position 13-45N 121-02E, Batangas Anchorage. Duty officer and duty crewman saw movement on the forecastle. Upon investigation, they saw the robbers lowering stolen ship's stores into the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.749999999665818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-155", - "dateofocc": "2014-06-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 25 June, robbers boarded an anchored tanker near position 01-25N 104:34E, 11 nm north of Pulau Bintan. The robbers entered the engine room, stole engine spares and escaped unnoticed. The robbery was later noticed by duty crewman on routine r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.566666700341045, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-156", - "dateofocc": "2014-06-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 26 June, robbers approached an anchored container ship near position 01-24N 104-40E, 11 nm north-northeast of Pulau Bintan. Alert crewman noticed a small boat with ropes and hooks approaching from the stern and raised the alarm. Seeing crew'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.666666700074472, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-157", - "dateofocc": "2014-06-25", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA: On 25 June, five armed robbers boarded an underway chemical tanker near position01-11N 103-52E, 3.6 nm northwest of Pulau Batam. They entered into the engine room, took hostage the third engineer and tied him up. Other crew found the engineer,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.866666700408359, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-158", - "dateofocc": "2014-06-27", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "INDONESIA:On 27 June, robbers boarded an anchored cargo ship near position 01-18S 116-48E, Balikpapan Inner Anchorage. Duty crewman on security rounds found that the padlock to the forecastle store room had been broken and then sighted three robbers arm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.800000000165596, -1.299999999786621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-159", - "dateofocc": "2014-06-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "INDONESIA:On 30 June, robbers boarded an anchored cargo ship near position 01-25N 104:44E, around 15 nm NE of Pulau Bintan. Alert crewman onboard the vessel spotted unauthorized persons, resulting in their escape with stolen ship's stores.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.733333300013612, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-160", - "dateofocc": "2014-06-30", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 30 June, six armed robbers boarded an underway LPG tanker near position 01-07N 103:30E, 5 nm East of Karimun Kecil Island. They entered into the engine room and took hostage an engine room crewman, tied his hands and stole engine spares. Whi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.499999999645524, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-161", - "dateofocc": "2014-06-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vehicle Carrier", - "descriptio": "INDONESIA:On 30 June, five robbers, armed with long knives, boarded an anchored vehicle carrier near position 05-59S 106-54E, Tanjung Priok Anchorage. They entered into the engine room, took hostage the duty oiler, tied him and blind folded him. They sto", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.899999999575641, -5.983333299951539] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2014-163", - "dateofocc": "2014-07-06", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Product tanker", - "descriptio": "INDIA:On 6 July, two robbers in a fishing boat boarded an anchored product tanker near position 22-48N 070-01E, Kandla Anchorage. Duty crew on routine rounds noticed the robbers and raised the alarm resulting in the robbers jumping overboard and escaping", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.016666699808297, 22.799999999823626] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-36", - "dateofocc": "2015-02-15", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH:On 15 February, pirates attacked up to seven fishing boats while they were operating about 50 km south from Sonar Char area. The pirates attacked three fishing boats, initially, when four other boats came to the aid of the other fishing boats", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.50000000012443, 21.533333299661194] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-37", - "dateofocc": "2015-02-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 25 February near position 01-04N 103-36E, four robbers armed with long knives boarded an underway bulk carrier. The fourth engineer noticed the robbers and informed the bridge who raised the alarm, sent an SSAS alert and mustered the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.600000000278271, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-38", - "dateofocc": "2015-02-24", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 24 February near position 01-08N 103-28E, three robbers boarded an underway bulk carrier. Alarm was raised and the crew was mustered. Seeing the crew's alertness the robbers escaped empty handed", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.466666699675955, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-39", - "dateofocc": "2015-03-03", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Reefer Ship", - "descriptio": "NIGERIA:On 3 March, eight robbers boarded a berthed reefer ship near position 06-27N 003-22 E, Apapa Berth No.9, Lagos. Ship's security watch spotted the robbers and raised the alarm. Seeing the crew's alertness, the robbers escaped empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-40", - "dateofocc": "2015-03-30", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "INDONESIA:On 3 March, six robbers attempted to board an anchored cargo ship near position 01-08N 103-55 E, vicinity of Cape Uncang, Batam Island. The robbers were spotted by an Indonesian Navy patrol boat and quickly apprehended. They were carrying two", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.916666700275073, 1.133333300080665] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-41", - "dateofocc": "2015-03-07", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 7 March near position 06-13N 119-50E, a suspected mother vessel disguised as a fishing vessel deployed six high speed skiffs which chased an underway bulk carrier. The persons onboard the skiffs were wearing camouflage clothes circled arou", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.833333300232198, 6.216666699903385] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-42", - "dateofocc": "2015-03-06", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "ST VINCENT AND THE GRENADINES:On 6 March, robbers boarded an anchored sailing vessel through an open window. The robbers rummaged thru a money clip and purse and took $400 in cash while the crew slept unaware on a windy, noisy night. The incident was rep", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.316666699825532, 12.716666699663961] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-43", - "dateofocc": "2015-03-11", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 11 March, a duty crewman onboard a bulk carrier anchored near position 10-15N 107-02E, Vung Tau Anchorage, noticed robbers on deck. He informed the duty officer who raised the alarm and mustered the crew. The robbers managed to steal ship's st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-44", - "dateofocc": "2015-03-08", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "SOUTH CHINA, SOUTHERN PART:On 8 March near position 01-43N 105-50E, seven pirates in a speed boat armed with guns and long knives boarded and hijacked a tanker underway. They took hostage all of the crew members, damaged all of the communication and navi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.833333299779383, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-45", - "dateofocc": "2015-03-07", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Recreational boats", - "descriptio": "VENEZUELA:On 7 March, robbers boarded three weekend motor boats in the Morrocoy National Park. The robbers reportedly spent seven hours ransacking all three boats, stealing all the belongings and valuables of the three families. They departed the area by", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-68.250000000288026, 10.833333300304446] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-46", - "dateofocc": "2015-03-14", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "CONGO:On 14 March, robbers boarded an anchored barge vessel near position 04-45S 011-48 E, Pointe Noire Outer Anchorage. They broke open a store room, stole ship properties and escaped unnoticed. The incident was discovered the next morning.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.80000000036722, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-47", - "dateofocc": "2015-03-12", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Petroleum product tanker", - "descriptio": "NIGERIA:On 12 March, two robbers boarded a berthed petroleum product tanker near position06-27N 003-22E, Terminal 5, Apapa Port, Lagos. Duty pump man noticed the robbers hiding near the hatch cover of No.1 cargo oil tank. He immediately informed the duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-48", - "dateofocc": "2015-03-10", - "subreg": "57", - "hostility_": "Suspicious approach", - "victim_d": "Unspecified vessel", - "descriptio": "GHANA:On 10 March, a suspicious approach was reported near position 04-04N 001-22W, 54 nm south-southeast of Takoradi. The suspicious vessel was described as a 50 meter long gray or white-hulled fishing boat.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.366666699550535, 4.066666700238557] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-49", - "dateofocc": "2015-03-09", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Product tanker", - "descriptio": "INDONESIA:On 9 March, seven pirates in a speed boat, wearing masks and armed with guns and long knives hijacked product tanker MT SINGA BERLIAN near position 01-43N 105-50 E, 37 nm south of Pulau Repong. They took hostage the crew members, damaged all th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.833333299779383, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-236", - "dateofocc": "2015-11-07", - "subreg": "56", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "EGYPT:On 7 November, two robbers armed with knives boarded an anchored container ship near position 31-12N 029-44E, 9.4 nm west of Alexandria. A duty crew man on routine rounds noticed the robbers on the quarter deck. Before he could report the boarding", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [29.73333330028612, 31.199999999915406] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-237", - "dateofocc": "2015-11-10", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 10 November, an unknown number of robbers boarded an anchored container ship near position 10-15N 107-03E, Mui Vung Tau anchorage. The theft was noticed when the crew observed the padlock to the steering gear room broken. A thorough search was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.250000000002331] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-238", - "dateofocc": "2015-11-03", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 3 November, three robbers boarded an anchored bulk carrier via the anchor chain near position 03-42S 114-26E, Taboneo Anchorage. The alarm was raised and crew was mustered. Seeing the crew's alertness, the robbers escaped empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.433333300237337, -3.699999999684394] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-239", - "dateofocc": "2015-10-18", - "subreg": "81", - "hostility_": "Robbers", - "victim_d": "Sailing Yacht", - "descriptio": "PAPUA NEW GUINEA:On 18 October, two robbers boarded an anchored sailing yacht near position 04-11N 144-53E, Hansa Bay in Madang Province. The robbers attacked the boat owner with machetes. Both robbers were eventually thrown overboard and escaped without", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [144.883333300008076, 4.18333330004441] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-240", - "dateofocc": "2015-11-12", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 12 November at 0720 hours LT in the Belawan Outer Anchorage near position 03-56N 098-45E, two robbers boarded an anchored bulk carrier via the hawse pipe. The alarm was raised and the crew mustered. Upon seeing the crew's alertness, the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.933333299811466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-241", - "dateofocc": "2015-11-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "INDONESIA:On 06 November at 1505 hours LT in the Belawan Anchorage near postion 03-47N 098-45E two robbers boarded an anchored container ship. The duty crew on routine rounds noticed the robbers and raised the alarm. Upon hearing the alarm the robbers es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.749999999716749, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-242", - "dateofocc": "2015-11-15", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Trawlers", - "descriptio": "NIGERIA:On 15 November near position 04-17N 007-13E, the local press reported that pirates attacked two trawlers along the Bonny Anchorage in the Rivers State. A spokesman said the recent attacks left two crew members dead, three abducted and two serious", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.216666699935729, 4.283333299777837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-243", - "dateofocc": "2015-11-14", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 14 November, six robbers armed with long knives and iron bars boarded an anchored container ship near position 10-14N 107-02E, Vung Tau Anchorage. The duty deck watchman noticed the robbers and informed the duty officer who raised the alarm an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.033333300177958, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-244", - "dateofocc": "2015-11-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 6 November, five robbers armed with knives boarded a berthed bulk carrier during cargo operations near position 06-04S 106-51E, Berth 115, Jakarta Port. They were noticed by the crew who raised the alarm. Seeing the alerted crew the robbers", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.849999999708871, -6.066666699612597] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-246", - "dateofocc": "2015-11-18", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Cargo Ship", - "descriptio": "HAITI:On 18 November, two robbers boarded an anchored general cargo ship near position18-33N 072-23W, Port-au-Prince Anchorage. A duty crewman noticed the robbers hiding near the forward mooring station and informed the duty officer. As the crewman appro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.383333300120398, 18.550000000360683] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-247", - "dateofocc": "2015-11-18", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "DR CONGO:On 18 November, a robber boarded an anchored product tanker near position 04-45S 011-49E, Pointe Noire Anchorage. A crewman immediately informed the Ship's Master who in turn raised the alarm. The deck crew members rushed to the forecastle. Upon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-248", - "dateofocc": "2015-11-20", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Ship", - "descriptio": "GULF OF ADEN:On 20 November, a bridge lookout onboard an underway general cargo ship saw three skiffs approaching the ship near position 13-12N 049-00 E, approximately 113 NM north of Bosasso, Somalia. The alarm was raised, the crew mustered and a securi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.000000000131308, 13.200000000232592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2015-249", - "dateofocc": "2015-11-19", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Boats", - "descriptio": "BANGLADESH:On 19 November near position 21-50N 89-58E, up to 42 fishermen and 22 fishing boats were captured by a group of pirates in the Bay of Bengal about 50 KM off Patharghata in the Barguna district. Bangladesh Coast Guard officials are investigatin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.966666699689029, 21.833333299760852] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-200", - "dateofocc": "2016-08-25", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 25 August, suspected pirates abducted a fisherman in the Meghna River at Manpura Upazila in Bhola district, vicinity 22-21N 091-12E. Initially, the pirates opened fire at the fishermen who tried to resist them. Frightened, five fishermen ju", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.200000000057116, 22.350000000123828] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-201", - "dateofocc": "2016-08-25", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 25 August, a gang of pirates kidnapped four fishermen for not paying a toll in the Meghna river adjacent to Char Abdullahpur in Ramgati upazila of Lakshmipur, vicinity22-34N 090--59E. When the fishermen refused to pay, the bandits attacked", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.983333299793799, 22.566666700387202] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-202", - "dateofocc": "2016-08-25", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Cruise Ship", - "descriptio": "PHILIPPINES:On 25 August, gunmen attacked the passenger boat MB PRINCESS AJ near Claveria town on the island province of Masbate, vicinity 12-49N 123-14E. The gunmen reportedly fired at the engine of the passenger boat, and instead hit three passengers,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 7, - "victim_l_D": "Passenger Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.233333300162258, 12.816666700296707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-203", - "dateofocc": "2016-09-02", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 02 September at 0820 LT in 07-09.7N 125-39.6E, at New Davao oil mill terminal, duty crew noticed a robber on a berthed product tanker. The alarm was raised and the robber escaped after seeing crew alertness. Ship's property was reported st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.666666699854318, 7.166666700069015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-204", - "dateofocc": "2016-08-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "SINGAPORE STRAIT:On 19 August at 0130 LT in 01-11N 103-52E, four armed robbers attempted to board an underway tug. The alarm was raised and the crew mustered. Seeing the crew alertness, the robbers aborted the attempt and moved away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.866666700408359, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-205", - "dateofocc": "2016-09-06", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MOZAMBIQUE:On 06 September at 0350 LT at jetty number 10 in Beira, crew onboard a berthed tanker noticed robbers stealing ship's property. The alarm was raised. Seeing the alerted crew, the robbers escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.833333300181266, -19.81666669983241] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-206", - "dateofocc": "2016-09-06", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 06 September at 2335 LT at the Dumai inner anchorage, four robbers boarded an anchored bulk carrier and entered engine room. They threatened the duty oiler with knives and tied him up. Robbers proceeded to steal engine spares and then escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.683333300049867, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-207", - "dateofocc": "2016-08-28", - "subreg": "73", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "PAPUA NEW GUINEA:On 28 August, seven armed men boarded a small boat on the way to pick up a local priest and nun at Milne Bay, vicinity 10-22S 150-30E. The robbers forced the boat operator into the water and stole the boat. The operator swam ashore and c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [150.500000000266141, -10.366666699841574] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-208", - "dateofocc": "2016-09-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 08 September at 0345 LT in 01-41.8N 101-29.7E, Dumai inner anchorage, four robbers armed with knives boarded an anchored tanker. Duty engineer informed the bridge after robbers entered through engine room. Duty officer on bridge raised the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-209", - "dateofocc": "2016-09-07", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "SOMALIA:On 7 September, persons on a foreign fishing ship, reportedly fishing illegally in Somali waters, fired on a small group of Somali fishermen near Jawasa-hasani Island, in the lower Jubba region of southern Somalia. Two fishermen were killed and n", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.099999999864735, 6.033333299609581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-210", - "dateofocc": "2016-09-14", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 14 September, five robbers wearing masks and armed with long knives boarded a berthed bulk carrier during cargo operations near position 01-44N 101-23E, Dumai Anchorage. Two crewmen who entered the engine store room were taken hostage, robbe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.383333299950266, 1.733333300279924] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-211", - "dateofocc": "2016-09-14", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 14 September, a group of robbers reportedly kidnapped 20 fishermen and looted valuables from their boats in the Dhanshiddhir Char in Mongla area of Bagerhat in the Sundarbans, vicinity 21-48N 089-44E. Several fishermen who escaped the kidna", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [89.73333330042783, 21.799999999791282] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-212", - "dateofocc": "2016-09-10", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 10 September, seven armed men, believed to be from the Philippines, kidnapped the captain and two crewmen from a fishing boat in Sabah waters near the tourist resort of Pulau Pom Pom off Semporna, vicinity 04-24N 118-52E. The kidnappers took", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.866666699994084, 4.400000000307728] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-213", - "dateofocc": "2016-09-09", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "BANGLADESH:On 09 September, vicinity 21-58N 090-19E, nine robbers boarded the cargo ship BANDHU SARDAR then attacked and robbed the crew. The ship, loaded with clinker was enroute Meghnaghat from Payra sea port when the robbers attacked the crew with lon", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.3166666996554, 21.966666700187886] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-8", - "dateofocc": "2016-12-20", - "subreg": "28", - "hostility_": "Pirates", - "victim_d": "Sailing Vessel", - "descriptio": "NICARAGUA:On 20 December, a sailing vessel was boarded while anchored in Media Luna Cay. The boarding occurred after 13 pangas carrying up to 60 men tried to push the sailing vessel onto a reef where two other wrecks were seen. The apparent leader of the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.133333300243237, 13.983333300001618] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-9", - "dateofocc": "2017-01-03", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 03 January, six persons in two speed boats, armed with automatic rifles, chased and fired upon the general cargo ship OCEAN KINGDOM near position 06-36N 122-41E, 21.6 nm east of Basilan Island. Master raised the alarm and increased speed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.683333299829656, 6.599999999839326] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-68", - "dateofocc": "2017-03-13", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "SOMALIA:On 13 March, Somali pirates hijacked the Comoros-flagged tanker ARIS 13 as the ship was in transit with a cargo of fuel from Djibouti to Mogadishu, in vicinity 11-47N 050-31E.The ARIS 13 sent a distress call, turned off its tracking system and al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.516666699627308, 11.7833332995707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-78", - "dateofocc": "2017-03-23", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 23 March, probable Abu Sayyaf militants boarded the vehicle carrier SUPER SHUTTLE RORO 9, in vicinity 06-32N 122-34E, approximately 19 nm southeast of Sibago Island, in the Moro Gulf. Four crewmen were kidnapped during the boarding, includ", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.566666700023802, 6.533333300075412] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-170", - "dateofocc": "2016-07-18", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Tug and Barge", - "descriptio": "MALAYSIA:On 18 July vicinity 05-16N 119-15E, near Dent Haven Sabah, the tug Serudong 3 and barge Seruding 4, were found abandoned with the engine still operating. The tug carried a crew of five and one of the crewmen has reportedly contacted the shipping", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.249999999930083, 5.266666699737755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-79", - "dateofocc": "2017-03-19", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 19 March, duty crewman on routine rounds onboard a tanker anchored near position 01-42N 101-28E: 0.8 nm off Pulat Rupat, Dumai, noticed one person attempting to climb onboard by using a hook attached to a bamboo stick. The duty crewman infor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.466666699611267, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-80", - "dateofocc": "2017-03-19", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "BANGLADESH:On 19 March, four armed men boarded the container ship SANTA FIORENZA, anchored near position 22-05N 091-48E, Chittagong Anchorage, and stole several gas cylinders. The master reported the incident to the Bangladesh Coast Guard via VHF Channel", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 22.08333329999374] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-81", - "dateofocc": "2017-03-15", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "PHILIPPINES:On 15 March, robbers boarded a chemical tanker anchored near position 13-45N 121-03E, Batangas Anchorage. Duty crewman on routine rounds noticed that the forepeak store room lock was broken and immediately informed the duty officer on the bri", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.04999999962854, 13.749999999665818] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-82", - "dateofocc": "2017-03-11", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 11 March, an unknown number of robbers boarded a chemical tanker anchored near position 01-42N 101-26E, Lubuk Gaung Inner Anchorage, Dumai. The robbers stole ship's properties and escaped unnoticed. The theft was noticed by the duty crew dur", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-83", - "dateofocc": "2017-03-09", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 09 March, duty crewman onboard a product tanker anchored near position05-52S 105-59E, Merak Anchorage OPL, noticed a boat close to the stern and informed the duty officer. Alarm was raised and crew was mustered. Hearing the alarm, one robber", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.9833333002789, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-50", - "dateofocc": "2017-02-21", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "HONDURAS:On 21 February, a sailing yacht anchored near Utila was boarded. A small dinghy and outboard motor was stolen. The dinghy was recovered later that day, by a local dive shop, minus the outboard motor.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.933333300006382, 16.083333299799733] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-51", - "dateofocc": "2017-02-17", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "ST LUCIA:On 17 February, a sailing yacht was boarded and thoroughly ransacked while anchored in Marigot. The incident was reported to local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.033333299798301, 13.966666699929192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-52", - "dateofocc": "2017-02-16", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "ST LUCIA:On 16 February, two fishing rods were stolen from a sailing yacht anchored in Marigot. The incident was reported to local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.033333299798301, 13.966666699929192] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-53", - "dateofocc": "2017-02-09", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "CONGO:On 09 February, duty crewman onboard a supply vessel anchored near position04-45S 011-49E, Pointe Noire Anchorage noticed a small boat alongside near the bow and informed the duty officer. Alarm was raised and crew was mustered. Seeing the crew ale", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.816666700264363, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-54", - "dateofocc": "2017-02-24", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "SRI LANKA:On 24 February, four Tamil Nadu fishermen suffered serious injuries after they were attacked, allegedly by Sri Lankan fishermen, near Kodiyakarai, in vicinity 10-16N 079-49E. The Sri Lankan fishermen first threatened them with hand guns and att", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [79.816666699765506, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-55", - "dateofocc": "2017-02-22", - "subreg": "72", - "hostility_": "Suspicous Approach", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 22 February, bulk carrier DONG HAE STAR was enroute Indonesia when two black speedboats with five individuals aboard each boat pursued them near Pearl Bank off Taganak Island, Tawi-Tawi, in vicinity 06-05N 118-19E. A spokesperson for the W", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.316666699661596, 6.083333300375671] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-56", - "dateofocc": "2017-03-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:Vessel attacked in 04-41N 007-09E on 07 March at 0620Z.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.150000000171872, 4.683333299610922] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-57", - "dateofocc": "2017-03-05", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 05 March, a skiff with six persons onboard approached and followed general cargo ship PHU AN 268 for approximately 1.5 hours. The skiff initially started following the ship near position 06-20N 118-08E, 4.43 nm northeast of Lihiman Island.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.133333300267054, 6.349999999606382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-62", - "dateofocc": "2017-03-02", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "PUERTO RICO:On 2 March, robbers stole a dinghy and outboard motor from a sailing yacht anchored in Sun Bay, Vieques, vicinity 18-05.7N 068-27.3W. The dinghy was recovered later that day, minus the motor and fuel tank.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.449999999657905, 18.099999999761565] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-63", - "dateofocc": "2017-03-01", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "VENEZUELA:On 01 March, three robbers boarded an anchored product tanker near position10-16N 064-42W, Puerto La Cruz. Alert crewman noticed the robbers and raised the alarm. Seeing the crew's alertness, the robbers escaped without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.699999999858449, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-64", - "dateofocc": "2017-02-24", - "subreg": "56", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "LIBYA:On 24 February, HACI TELLI, a Turkey-flagged oil tanker, was seized by an armed group in Libya, with 11 crew members on board held captive, according to Turkish media reports. According to the Deniz Haber Ajansi news agency, the armed group detaine", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [12.083333299670358, 32.949999999747149] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-65", - "dateofocc": "2017-03-09", - "subreg": "62", - "hostility_": "Suspicous Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 09 March 2017 at 0845 UTC in position 13-52N - 050-20E, an MV reported two motherships had deployed four skiffs that approached the MV to within 1 cable. Onboard armed security team showed weapons and skiffs retreated. Vessel is safe.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.33333330023288, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-66", - "dateofocc": "2017-03-07", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 07 March at 0834 UTC in position LAT 13-12N 048-58E, an MV reported being followed by a two skiffs with 16 - 20 armed persons. Skiffs followed astern for 40 minutes. MV is safe.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.966666700161738, 13.200000000232592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-67", - "dateofocc": "2017-02-17", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "INDIA:On 17 February, two robbers boarded an offshore support vessel anchored near position 18:54.23N 072:52.25E, 6.3nm West of JNPT Port, Mumbai. The robbers stole ship's equipment and escaped. Incident reported to Coast Guard who boarded the vessel to", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [72.866666700305132, 18.900000000326997] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-15", - "dateofocc": "2017-01-30", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Warship", - "descriptio": "YEMEN:On 30 January at 1220Z, in the Southern Red Sea a warship was attacked in14-49.1N 042-21.8E. The attack resulted in an explosion. The Houthis used three suicide boats, one of which was successful in striking the rear of the Saudi warship and blew u", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.366666699768473, 14.816666700361395] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-16", - "dateofocc": "2017-01-30", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Container Vesel", - "descriptio": "SIERRA LEONE:On 30 January at 0345Z in 08-27.3N 013-26.4W, Freetown outer anchorage, an anchored container ship was boarded by two robbers. Deck crew alerted the bridge after two robbers were sighted on the forecastle. The alarm was raised, announcement", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.433333299877745, 8.450000000303817] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-17", - "dateofocc": "2017-01-21", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 21 January, a sailing yacht anchored near Young Island was boarded. The thief was able to steal a cell phone, dive watch, and flashlight. A report was made to the local police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.200000000194962, 13.133333299569415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-18", - "dateofocc": "2017-01-19", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "HONDURAS:During the morning hours of 19 January, a France-flagged catamaran transiting from Isla Providencia, Colombia, to Rio Dulce, Guatemala, was boarded two different times during a three-hour period in an area approximately 35 nm east-southeast of t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.733333300410152, 15.916666700127166] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-19", - "dateofocc": "2017-01-19", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "HONDURAS:During the evening hours of 19 January, a sailing yacht was boarded in an area approximately 20 nm from Gordo Bank. The robbers stole computers, electronics, and alcohol. Incident reported to Honduran Navy and local police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-83.416666700270468, 15.416666699661334] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-20", - "dateofocc": "2017-01-19", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "ECUADOR:On 19 January, unknown numbers of robbers boarded a bulk carrier anchored near position 02-43S 080-24W, Guayaquil Outer Anchorage. The robbers stole ship's properties and escaped unnoticed. The theft was noticed by the duty crew during routine ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-80.400000000276293, -2.716666700448513] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-21", - "dateofocc": "2017-01-13", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "HONDURAS:On 13 January, a US-flagged sailing yacht transiting from Puerto Cortez to Roatan was boarded approximately 5 miles off the coast after anchoring in rough weather. Eight armed men boarded the yacht and ransacked it, stealing electronics, a wall", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-86.533333300173297, 16.449999999663248] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-22", - "dateofocc": "2017-01-12", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "REUNION ISLAND:On 12 January, a Canada-flagged sailing yacht was boarded while berthed in Le Port. Two folding bicycles were stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [55.283333299628509, -20.933333299670608] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-23", - "dateofocc": "2017-01-19", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 19 January, three Indonesian crewmen were kidnapped from their boat operating near Taganak in Sabah. A Malaysian Foreign Ministry official later stated that one of the men had been in contact with his family, saying the three men had been kid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.150000000164255, 5.966666699670498] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-24", - "dateofocc": "2017-01-08", - "subreg": "73", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "INDONESIA:On 08 January, a sailing catamaran was boarded while anchored in Sorong Harbor. The thief stole a computer and two cellular phones and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [131.266666700215296, -0.899999999953593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-302", - "dateofocc": "2016-11-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 20 November at 0420Z in 06-19N 003-18E, pirates attempted to board an underway vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.299999999642637, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-303", - "dateofocc": "2016-11-24", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "CONGO:A M/V was attacked in 04-44.4S 011-47.2E on 24 November at 2156Z.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.7833332995707, -4.733333299686308] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-304", - "dateofocc": "2016-11-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:A M/V was hijacked on 29 November at 0900Z in 04-37N 003-40E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.666666700405472, 4.616666699671782] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-38", - "dateofocc": "2017-02-07", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "PERU:On 07 February, an anchored bulk carrier at position 12-01S 077-12W, Callao Anchorage, was boarded by four men from a small boat. The men used climbing ropes to access the vessel where the robbers seized and tied up a crew member then stole items fr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-39", - "dateofocc": "2017-02-06", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "BANGLADESH:On 06 February, an anchored offshore supply vessel at position 21-51N 091-48E, 1nm west of Kutibidja Island, was boarded by unknown assailants. The paint locker was broken into and a large amount of paint was stolen. The crew noticed the theft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 21.849999999657996] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-349", - "dateofocc": "2017-12-16", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "BANGLADESH:On 16 December robbers boarded a barge under tow in 21-14.7N 091-47.5E. Robbers escaped with stolen property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 21.250000000358057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-350", - "dateofocc": "2017-12-16", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 16 December at 1630Z ten to twelve robbers boarded an anchored bulk carrier in20-53.8N 107-16.6E. The robbers boarded using the mooring ropes. The AB noticed robbbers stealing paint drums and raised the alarm. The robbers escaped", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.283333300410845, 20.900000000391685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-241", - "dateofocc": "2016-10-06", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "PERU:On 06 October at 0412 LT in 12-01.1S 077-11.2W, Callao anchorage, robbers in a wooden skiff approached and boarded an anchored cargo ship. They stole ship's property and escaped unnoticed. Theft was discovered by duty AB during routine rounds. Incid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-242", - "dateofocc": "2016-10-14", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "PERU:On 14 October, four robbers approached a cargo ship anchored near position 12-01S 077-11W, Callao anchorage. The crew was alerted and activated the pressurized fire hoses resulting in the robbers aborting the attempted boarding.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.183333299915887, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-243", - "dateofocc": "2016-10-10", - "subreg": "25", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "ST. VINCENT AND THE GRENADINES:On 10 October, one yacht anchored at Chateaubelair, vicinity 13-17.4N 061-15.1W, was boarded by armed men with machetes who injured the captain as he forced the attackers back to their boat. Although a mayday call was made,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.250000000061675, 13.283333300068875] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-244", - "dateofocc": "2016-09-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "NIGERIA:On 16 September, while en route from Port Harcourt to Lagos, 12 pirates armed with guns approached a chemical tanker near position 03-52N 005-20E, 44 nm southwest of Bayelsa. One pirate boarded the vessel and heaved up two aluminum ladders to ass", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.333333299676895, 3.866666699872383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-245", - "dateofocc": "2016-09-12", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "CONGO:On 12 September, an unknown number of robbers boarded an anchored offshore supply ship near position 04-45S 011-50E, Pointe Noire Inner Anchorage. The robbers stole the rescue boat outboard motor. The theft was discovered by the duty bosun during r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [11.83333330033679, -4.749999999583451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-246", - "dateofocc": "2016-10-15", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Naval Vessel", - "descriptio": "YEMEN:On 15 October, initial reports on the latest incident said the crew detected multiple missiles fired toward the USS MASON, which responded with onboard countermeasures to defend itself. No damage was reported to the vessel or other ships accompanyi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.933333300173388, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-247", - "dateofocc": "2016-10-12", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 12 October, four robbers armed with knives boarded a bulk carrier anchored near position 01-42.5N 101-29.3E, Dumai anchorage. One crewmember was taken hostage and threatened with a knife. Property was stolen from the vessel¿s engine room an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.483333299683693, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-248", - "dateofocc": "2016-10-12", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 12 October, three robbers boarded a bulk carrier anchorage near position 10-16.2N107-03.0E, Vung Tau Anchorage. The crew confronted the robbers who then fled. The incident has been reported and is currently being investigated by Vung Tau Port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-249", - "dateofocc": "2016-10-12", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 12 October, two fishermen on a boat off Tigabu Island, vicinity 06-55N 117-28E, were attacked by four armed men, injuring one.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.466666700128712, 6.916666699836071] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-250", - "dateofocc": "2016-10-09", - "subreg": "83", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "FIJI:On 9 October, a small dinghy and outboard motor were stolen from a sailing yacht anchored in Saweni Bay, vicinity 17-38.7S 177-23.6E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [177.399999999607303, -17.650000000270438] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-10", - "dateofocc": "2016-12-15", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 15 December, eight robbers in a skiff approach and attempted to board an anchored tanker using a long ladder, near position 04-21N 008-26E, Qua Iboe Anchorage. Duty officer on the bridge noticed the attempt and informed the Master. Alarm was r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.433333300406673, 4.350000000441014] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-11", - "dateofocc": "2016-12-12", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 12 December, three robbers in a small speed boat attempted to board an anchored product tanker using ropes, near position 06-18N 003-21E, Lagos Anchorage. Alarm was raised and crew was mustered in the accommodation. The armed security team onb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.35000000040867, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-308", - "dateofocc": "2016-11-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "SINGAPORE STRAITS:On 26 November, duty crewmen onboard a tug anchored near position 01-11N 103-39E, 4.1 nm southwest of Pulau Jurong, discovered a store room had been broken into and ship's stores stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-12", - "dateofocc": "2016-12-20", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "PHILIPPINES:On 20 December, suspected Abu Sayyaf militants kidnapped four fishermen from the fishing boat RAMONA 2 in the Celebes Sea, in the area where other Abu Sayyaf-related kidnappings have occurred.UPDATE:Abu Sayyaf bandits beheaded a Filipino fish", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.583333300096228, 5.783333300276013] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-13", - "dateofocc": "2016-12-08", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 08 December, three robbers boarded an anchored bulk carrier near position00-17S 117-39E, Muara Berau Anchorage, Samarinda. Alarm was raised and crew was mustered. Seeing the crew alertness, the robbers escaped with stolen ship's stores. Port", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.64999999969848, -0.283333299857134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-14", - "dateofocc": "2016-11-30", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 30 November, four robbers armed with knives boarded an LPG Tanker, anchored near position 07-46S 109-04E, Cilacap Anchorage. They took hostage a duty crewman and forced him to guide them into the engine room. The robbers then took the duty o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.066666700036933, -7.766666699577627] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-236", - "dateofocc": "2016-10-07", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 7 October, three sea robbers were arrested for robbing four women in a boat in the creeks around Ataba, vicinity 04-25.6N 007-20.6E. The robbers stole money and handsets from the victims.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.349999999638726, 4.433333300277297] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-237", - "dateofocc": "2016-10-09", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Naval Vessel", - "descriptio": "YEMEN:On 9 October, USS MASON, a U.S. Navy guided missile destroyer was targeted in a failed missile attack from territory in Yemen controlled by Iran-aligned Houthi rebels, neither of the two missiles hit the ship. There were no injuries to the sailors", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.46666670040122, 14.033333299868332] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-238", - "dateofocc": "2016-10-12", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Naval Vessel", - "descriptio": "YEMEN: On 12 October, A U.S. Navy destroyer was targeted in a failed missile attack from territory controlled by Houthi rebels, the second such incident in the past four days. USS Mason, which was accompanied by USS Ponce - an amphibious transport dock -", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.933333300173388, 13.183333300335448] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-239", - "dateofocc": "2016-10-07", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "INDONESIA:On 7 October at approximately 4:45 am, a Customs and Excise Office patrol vessel was attacked by a mob in Tanjung Jumpul waters off Asahan regency, North Sumatra, vicinity 02-52.6N 100-07.6E. The four officials reported injuries after the mob t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [100.133333299684978, 2.883333299912408] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-240", - "dateofocc": "2016-10-09", - "subreg": "94", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOUTH KOREA:On 9 October, a 4.5-ton speed boat for the Coast Guard had carried several officers in an operation to capture a Chinese vessel fishing illegally in the area, when another Chinese boat rammed the vessel and fled the scene, causing the Coast G", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.66666669978963, 37.066666700406415] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-305", - "dateofocc": "2016-12-01", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "ANGOLA:On 01 December, two robbers boarded an anchored product tanker near position08-44S 013-17E, Luanda anchorage. Alarm was raised and crew was mustered. Seeing the crew alertness, the robbers escaped with stolen ship's properties.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [13.283333300068875, -8.733333299815683] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-306", - "dateofocc": "2016-12-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "INDONESIA:On 02 December, crewmen onboard a heavy lift vessel anchored near position01-05N 104-10E, Kabil Anchorage, Palau Batam, discovered robbers boarding the ship. Duty officer raised the alarm, made the PA announcement and crew was mustered. Seeing", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 1.083333300213951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-307", - "dateofocc": "2016-12-01", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "INDONESIA:On 01 December, duty crewman on routine rounds onboard an anchored general cargo ship noticed three robbers on the forecastle deck, near position 03-40S 114-27E, Banjaramasin Anchorage. Duty officer raised the alarm and crew was mustered. Seein", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.450000000134537, -3.666666699714824] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-309", - "dateofocc": "2016-11-20", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 20 November, a duty crewman onboard an anchored bulk carrier noticed two robbers on the forecastle deck, near position 03-41S 114-25E, Taboneo anchorage. On seeing the duty crewman, the robbers threatened him with a long knife. Alarm was rai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.68333329978725] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-310", - "dateofocc": "2016-12-07", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 07 December at 2200 LT in 00-14.4S 117-35.1E, Muara Berau anchorage, duty AB onboard an anchored bulk carrier noticed the skylight of the forecastle store open. The cover of the anchor chain was also removed. He saw two robbers in a small bo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.23333329999042] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-311", - "dateofocc": "2016-12-08", - "subreg": "92", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 08 December at 1140 LT in 05-29.3N 119-38.4E, three persons in a blue and white speed boat approached an underway bulk carrier. The Master sounded the ship's whistle continuously, made a PA announcement, increased speed, commenced evasive", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.633333299865967, 5.483333300176355] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-44", - "dateofocc": "2017-02-13", - "subreg": "25", - "hostility_": "Sailing Vessel", - "victim_d": "Robbers", - "descriptio": "ST LUCIA:On 13 February, robbers boarded an anchored sailing yacht at the Soufriere Bat Caves. The robbers were able to steal cash, computers, a camera, and electronics. Incident reported to local authorities.", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.083333299665014, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-45", - "dateofocc": "2017-02-12", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "DOMINICAN REPUBLIC:On 12 February, a robber armed with a knife boarded an anchored sailing yacht in Marina Zar Par. He threatened the couple while stealing cash, a cell phone, a wristwatch and a bottle of rum. He then escaped. Incident reported to local", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.633333300256311, 18.449999999727879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-251", - "dateofocc": "2016-10-21", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PERU:On 21 October, an unknown number of robbers boarded an anchored tanker near position 12-02S 077-31W, Callao Anchorage. The robbers stole ship's spare parts and escaped unnoticed. The theft was discovered by the duty crew during routine rounds. Incid", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.516666699809832, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-252", - "dateofocc": "2016-10-26", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "YEMEN:On 26 October, the product tanker MELATI SATU was attacked in the Bab el Mandeb Strait area. Reportedly, the ship was attacked with a rocket propelled grenade and automatic rifle fire, but damage is reported to be slight. Crew is reportedly safe an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.550000000269847, 12.533333300269476] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-253", - "dateofocc": "2016-10-25", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "YEMEN:On 25 October, a merchant tanker was approached by a small boat near Perim Island, vicinity 12-39.8N 043-24.9E. The occupants fired an RPG at the vessel, the damage is unknown at this time. All crew are safe and the vessel has continued with her pa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.41666669966753, 12.666666699797247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-254", - "dateofocc": "2016-10-25", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "MALAYSIA:On 25 October, pirates attacked the tug EVER OCEAN SILK towing the oil barge EVER GIANT approximately 60 nm north of the port of Bintulu, Sarawak, vicinity 04-09.1N113-03.9E. The pirates robbed the crew of all valuables and fled. Crew is safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [113.066666700166252, 4.15000000007484] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-255", - "dateofocc": "2016-10-20", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 20 October, 10 gunmen attacked Korean heavy lift ship DONGBANG GIANT NO 2 near position 04-32N 119-33E, 8 nm south of Bongao, Tawitawi Island. The vessel was en route from Australia to Masan, Korea. Militants, allegedly belonging to Abu Sa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.550000000029627, 4.533333300010781] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-256", - "dateofocc": "2016-10-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 20 October, an unknown number of robbers boarded an anchored tanker near position 01-42.5N 101-27.0E, Dumai Tanker Anchorage. They stole engine spare parts and escaped unnoticed. The incident was discovered during routine rounds and was repo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.449999999714123, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-257", - "dateofocc": "2016-10-17", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:Early during the week of 17 - 21 October, pirates attempted to board the tanker VAJARA in the Ramos River area of Delta State, vicinity 05-21.2N 005-12.4E. Fire was exchanged between Nigerian authorities and the pirates. The attempt to board was", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.199999999973898, 5.349999999574038] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-258", - "dateofocc": "2016-10-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOMALIA:On 22 October at 0955LT in 04-28.1N 053-22.2E, vessel was approached by a speed boat with six persons on board. Warning shots were fired from the vessel when boat got too. Speed boat returned fire and departed from the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.366666700124199, 4.466666700071642] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-47", - "dateofocc": "2017-02-23", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tug", - "descriptio": "INDONESIA:On 23 February, five robbers armed with a knife boarded an offshore tug anchored near position 01-10N 103-059E, Batu Ampar Anchorage, Batam Island. Alert crew noticed the robbers on the CCTV cameras and raised the alarm. Seeing the crew's alert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.983333300214213, 1.166666699874952] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-48", - "dateofocc": "2017-02-16", - "subreg": "95", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOUTH KOREA:On 16 February, a South Korean fisheries patrol boat fired 900 rounds from a machine gun to drive off dozens of Chinese fishing vessels that were allegedly trying to interfere with an interdiction operation. The patrol boat apprehended one ve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.099999999624629, 33.533333300049264] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-59", - "dateofocc": "2017-03-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 08 March at 0800Z in 03-20.0N 004-28.9E, a bulk carrier was attacked. The vessel managed to evade the threat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.483333300144011, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-113", - "dateofocc": "2017-04-14", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 14 April at 0652Z, a vessel was attacked in 15-55.5N 052-20.7E. Shots were fired towards the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.350000000194711, 15.933333300199536] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-114", - "dateofocc": "2017-04-15", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 15 April at 1316Z, the M/V Alheera was attacked in 12-53N 047-57E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.950000000232251, 12.883333300235847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-115", - "dateofocc": "2017-04-16", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Container Vessel", - "descriptio": "RED SEA:On 16 April at 1022Z, a vessel was approached in 12-49.1N 043-16.0E. Three blue skiffs with five persons in each approached the underway container vessel. Master raised the alarm, non-essential crew retreated into the citadel and the armed securi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.266666700067333, 12.816666700296707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-25", - "dateofocc": "2017-01-28", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "PANAMA:On 28 January, items were stolen an anchored unlocked catamaran in San Blas. The thieves took a wallet and cellphones from the salon chart table and left two sets of muddy footprints. A report was made to the local police and to a weather report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-78.816666699941834, 9.566666699966788] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-26", - "dateofocc": "2017-01-27", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "PUERTO RICO:On 27 January, a dinghy and outboard motor was stolen from a sailing yacht anchored inVieques Esperanza. The dinghy and outboard motor had been secured with a steel chain that had been cut. Later the dinghy was found on a nearby beach minus t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.483333299627475, 18.099999999761565] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-27", - "dateofocc": "2017-01-25", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "DOMINICAN REPUBLIC:On 25 January, a knife-armed intruder swam on to a sailing yacht and attacked thehusband and wife in the Marina Zar Par, Boca Chica. After a struggle the intruder held a knife to the wife¿s neck and demanded and received money and jew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.616666700183885, 18.449999999727879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-28", - "dateofocc": "2017-01-24", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "COLOMBIA:On 24 January, robbers boarded an anchored chemical tanker near position10-19N 074-32W, Mamonal Inner Anchorage, Columbia. The robbers stole ship items, and escaped without being noticed. The crew noted the theft during routine rounds later in t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-74.533333299785227, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-29", - "dateofocc": "2017-01-30", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "SIERRA LEONE:On 30 January, two robbers boarded an anchored container ship near position08-27N 013-26W, Freetown Outer Anchorage. A duty crewman informed the duty officer that he saw them on the forecastle. Alarm was raised, PA announcement made and crew", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.433333299877745, 8.450000000303817] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-30", - "dateofocc": "2017-01-25", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SIERRA LEONE:On 25 January, three men armed with knives boarded an anchored bulk carrier near position 08-27N 013-21W, Pepel Anchorage. Upon noticing the men, the crew raised the alarm but the assailants stole ship's stores and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.350000000041462, 8.450000000303817] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-31", - "dateofocc": "2017-01-25", - "subreg": "83", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "FIJI:On 25 January two individuals boarded a sailing yacht boat anchored in Suva. They attacked the lone crewman with a cane knife and injured him severely. The crewman was hospitalized and police apprehended one of the perpetrators.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [178.433333299609103, -18.133333299939807] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-32", - "dateofocc": "2017-02-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 05 February at 1024Z, a vessel was attacked in 03-58.6N 005-28.6E. The general cargo ship BBC CARIBBEAN was attacked by pirates at position at the Pennington Oil Terminal, off of Bayelsa. Eight crewmen, seven Russians and one Ukrainian, were k", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.483333300176355, 3.983333299678179] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-116", - "dateofocc": "2017-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 19 April at 0855Z, a tanker was attacked in 03-25N 005-36E. Nine pirates in a speed boat fired upon a tanker being escorted by a security boat. Master immediately notified the escort vessel and Nigerian Navy. Pirates aborted the attack and mov", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.599999999806982, 3.416666700172584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-304", - "dateofocc": "2017-11-19", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "WESTERN INDIAN OCEAN:On 19 November at 0917Z, a vessel was attacked in 01-56S 047-57E. The vessel was attacked by a skiff with four persons on board. They tried to board the vessel but failed due to razor wire along the gunnel. They fired two RPG after t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.950000000232251, -1.933333299955507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-305", - "dateofocc": "2017-11-18", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "WESTERN INDIAN OCEAN:On 18 November at 0555Z a fishing vessel reported suspicious activity in 01-52S 049-23E. One skiff approached the fishing vessel at a distance of 1000 meters. The vessel fired warning shots and the skiff turned away.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.38333330006725, -1.866666700016367] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-58", - "dateofocc": "2017-03-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:Vessel attacked in 03-16N 004-31E on 08 March at 0830Z.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.516666699938355, 3.266666699673067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-171", - "dateofocc": "2017-06-13", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 13 June at 1350Z, a vessel was approached by four skiffs with six persons in each skiff, in 12-56.49N 043-12.17E. Skiffs approached and followed the vessel for about ten minutes. Security team aboard vessel showed weapons and skiff dropped bac", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.200000000303476, 12.933333300102561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-180", - "dateofocc": "2017-06-25", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 25 June at 1411Z in 14-43.6N 042-05.6E, a vessel was approached by one dark hulled skiff with eight persons on board. The skiff was armed with weapons. Skiff approached to within three cables of the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.099999999638385, 14.733333299801018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-181", - "dateofocc": "2017-06-28", - "subreg": "62", - "hostility_": "Suspicous Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 28 June at 0800Z, five skiffs with four or five persons on board each, approached a vessel in 12-28N 043-44E. The skiffs approached to 0.5 NM before retreating.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.733333299839558, 12.466666700330336] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-182", - "dateofocc": "2017-06-30", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 30 June at 0820Z, a vessel was approached by four skiffs with seven persons on board each, in 12-53N 043-11E. The skiffs approached to within 40 meters of vessel before retreating.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.183333300406332, 12.883333300235847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-183", - "dateofocc": "2017-07-05", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 05 July at 1220Z, a vessel was approached by seven skiffs in 14-17.9N 042-21.3E. Each skiff had five or six persons on board and were sighted with weapons. Skiffs approached to within 320 meters of vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.349999999871272, 14.299999999998363] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-184", - "dateofocc": "2017-06-24", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VENEZUELA:On 24 June, eight robbers boarded an anchored tanker near position 10-12 N 064-46W, Jose Terminal Anchorage, during the pre-departure inspection. They assaulted a duty crewman on security rounds. Another crew noticed the robbers, raised the ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.766666699622363, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-185", - "dateofocc": "2017-06-01", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 11 June, an outboard motor was stolen from a sailing yacht anchored in Wallilabou, in vicinity 13-16N 061-16W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.266666699958819, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-186", - "dateofocc": "2017-05-24", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 24 May, a dinghy and outboard motor were stolen from a sailing yacht anchored in Wallilabou, in vicinity 13-16N 061-16W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.266666699958819, 13.266666699996506] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-187", - "dateofocc": "2017-06-23", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 23 June, CP 41, a laden tanker en route from Singapore to Songkhla, Thailand, was boarded by six armed pirates from a speed boat near position 03-55N 103-52E, 33 nm north-northeast of Kuantan. They took the 17 crew members hostage, hit a few", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.866666700408359, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-188", - "dateofocc": "2017-06-21", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "INDONESIA:On 21 June, while carrying out pre-departure checks a duty crewman noticed wet footsteps on the poop deck of a cargo ship anchored near position 01-04N 104-08E, Jetty No. 3, CPO Kabil Port, Batam. Upon carrying out further checks he noticed the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-195", - "dateofocc": "2017-07-14", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 14 July, two robbers boarded an anchored container ship near position14-33N 120-55E, Manila South Harbor Anchorage. Duty crewman informed the Chief Officer who raised the alarm. Crew mustered and moved towards the bow. Seeing the alerted c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-196", - "dateofocc": "2017-07-10", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 10 July, robbers boarded an anchored container carrier near position 14-33N 120-54E, Manila South Harbor Anchorage, stole ship's properties and escaped unnoticed. The theft was noticed by the duty crew during routine rounds. Incident repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.900000000028399, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-197", - "dateofocc": "2017-07-13", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Fishing Vessel", - "descriptio": "TAIWAN:On 13 July, the Coast Guard Administration (CGA) said that all seven fishermen aboard the Taiwanese fishing boat JIN JIN HE FA 2 were safe after being robbed by men from a Chinese boat. The fishermen were attacked in vicinity 21-55N 118-19E,113 na", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.316666699661596, 21.916666700321173] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-198", - "dateofocc": "2017-07-07", - "subreg": "95", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "JAPAN:On 07 July, Japan reported that one of its patrol vessels was chased by an apparently armed fishing boat believed to be from North Korea, according to a government spokesman. The incident occurred in the Sea of Japan, in vicinity 36-39.5N 133-12.1E", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [133.199999999616807, 36.666666699674067] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-200", - "dateofocc": "2017-07-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 30 July, the cargo vessel OYA 1 was attacked and boarded by piratesin 04-10.12N 006-59.44E. The pirates kidnapped five crew members and escaped. The Nigerian Navy has been notified.UPDATE: On 19 August, two Moroccan sailors kidnapped on 30 Jul", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.983333299775211, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-201", - "dateofocc": "2017-07-29", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 29 July between 1630Z and 1830Z, a vessel was approached three instances in vicinity14-16N 051-08E. The vessel was approached by one skiff from the starboard side. The vessel fired a warning shot and the skiff turned away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.133333299898993, 14.26666670002885] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-202", - "dateofocc": "2017-07-21", - "subreg": "51", - "hostility_": "Robber", - "victim_d": "Tanker", - "descriptio": "LIBERIA:On 21 July, a suspicious man was sighted on the poop deck of a merchant tanker anchored near position 06-21N 010-52W, Monrovia Anchorage. Vessel raised the alarm, crew members conducted a search but nothing was reported stolen. No injuries report", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-10.866666700307405, 6.349999999606382] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-328", - "dateofocc": "2017-11-22", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "INDONESIA:On 22 November, pirates hijacked the tug EVER PROSPER in vicinity 07-11S 116-27E, tied up the crew and stole the barge EVER OMEGA, carrying 3,700 tons of Palm Oil. The barge was later found by authorities, but the cargo was gone.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [116.450000000199225, -7.183333300350114] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-329", - "dateofocc": "2017-11-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 20 Nov, an unlit boat approached a bulk carrier underway near position01-02N 103-39E, 6 nm south of Pulau Nipah, and came alongside the starboard quarter. Crew on deck watch noticed the boat and informed the duty officer. Deck lights and sea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.650000000144985, 1.033333300347238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-147", - "dateofocc": "2017-05-04", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PERU:On 04 May, six robbers armed with knives boarded a container ship anchored near position 12-01S 077-12W, Callao Anchorage. They took hostage a duty crewman and the shore security watchman and tied them up. The robbers then broke into the forecastle", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.199999999813031, -12.01666669993989] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-148", - "dateofocc": "2017-05-17", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "NIGERIA:On 17 May, armed pirates boarded a general cargo ship near position 03-59N 006-46E, approximately 50 nm southwest of Port Harcourt. They kidnapped six crew members and escaped. The remaining crew sailed the vessel to Bonny anchorage. The Nigerian", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, -3.983333299886851] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-149", - "dateofocc": "2017-05-16", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF ADEN:On 16 May, an Indian anti-piracy patrol received a distress call from a Liberia-registered bulk carrier that reported a suspicious incident by two suspicious mother vessels along with 7-8 skiffs. When it sent the distress call, bulk carrier", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.383333300164281, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-150", - "dateofocc": "2017-05-16", - "subreg": "73", - "hostility_": "Suspicious Approach", - "victim_d": "Offshore Supply Vessel", - "descriptio": "INDONESIA:On 16 May, an underway offshore supply ship was approached by a small speed boat near position 03-32N 126-23E, 26 nm southwest of Kepulauan Talaud North Sulawesi. The small boat closed to approximately 30 meters. Alarm raised, crew mustered and", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [126.383333299859373, 3.533333299978437] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-151", - "dateofocc": "2017-05-11", - "subreg": "74", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 11 May, a robber armed with a knife boarded an anchored bulk carrier via the anchor chain near position 14-50S 117-32E, Muara Berau Anchorage, Samarinda. Duty crewman on routine rounds noticed the robber and informed the duty officer who rai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [117.533333300067852, -14.833333299743117] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-152", - "dateofocc": "2017-05-10", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "PHILIPPINES:On 10 May, authorities recovered the remains of a fisherman and young boy, who went missing and who are believed to be have been killed by pirates in the seas off Tungawan town, Zamboanga Sibugay, in vicinity 07-32N 122-31E. A spokesman said", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.516666700157089, 7.533333300107756] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-153", - "dateofocc": "2017-05-06", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Container Vessel", - "descriptio": "IVORY COAST:On 06 May, duty officer onboard a container ship anchored near position005-10N 004-04W, Abidjan Anchorage, noticed a suspicious boat approaching from astern and alerted the duty crew on deck. As the boat came alongside, alarm and ship's whist", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-4.066666700447229, 5.166666700004328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-154", - "dateofocc": "2017-05-07", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "GULF OF OMAN:On 07 May, duty officer onboard a bulk carrier underway near position 25-32N 057-33E, 12 nm southwest of Bandar E Jask, Iran, noticed three skiffs approaching the vessel. At the same time a vessel suspected to be the mother vessel was seen a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.549999999823285, 25.53333329979057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-155", - "dateofocc": "2017-04-22", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 22 April, duty crewman onboard a container vessel anchored near position07-10N 122-39E, 10 nm southwest of the Olutanga Coast noticed a small boat near the anchor chain. The hawse pipe cover was opened and the crewman informed the duty off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.649999999860142, 7.166666700069015] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-156", - "dateofocc": "2017-05-18", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "VENEZUELA:On 18 May, robbers boarded an anchored chemical tanker near position 10-11N 064-46W, 4 nm west of Lecheria, stole ship's equipment, stores and escaped unnoticed. Theft noticed by crew on routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.766666699622363, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-157", - "dateofocc": "2017-05-12", - "subreg": "27", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "CAYMAN ISLANDS:On 12 May, a beached dinghy/outboard motor was stolen from the beach area near downtown Georgetown, in vicinity 19-18N 081-21W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-81.350000000441867, 19.300000000160082] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-158", - "dateofocc": "2017-05-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 16 May, Warri gunmen kidnapped four Itsekiri community leaders and four officials of Elcrest, a Nigerian Petroleum Development Company, along the Benin River, Warri North Local Government Area of Delta State, in vicinity 05-45N 005-03. The vic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.050000000373757, 5.750000000306443] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-159", - "dateofocc": "2017-05-12", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 12 May, crew of a tanker underway near position 03-58N 007-33E, Yoho Anchorage, noticed two skiffs with around nine persons approaching in suspicious way. Alarm raised and crew was mustered. One skiff closed to a distance of three meters and s", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.550000000004957, 3.96666669960581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-42", - "dateofocc": "2018-01-01", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 01 January, seven robbers boarded an anchored container ship in vicinity 14-33N 120-54E, South Harbor Anchorage. The robbers stole ship's properties and escaped unseen. The master reported the incident to the port authorities who notified", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.900000000028399, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-278", - "dateofocc": "2016-11-06", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 06 November, an unknown number of robbers boarded an anchored tanker near position 07-20N 125-37E, Davao Anchorage. The robbers stole ship's stores and escaped. The theft was noticed by the duty crew on routine rounds. Port control informe", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [125.616666699987604, 7.333333299741582] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-160", - "dateofocc": "2017-05-23", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "SOMALIA:On 23 May, Somali pirates reportedly hijacked an Iranian fishing vessel, in vicinity07-45N 050-13E, to use as a base to attack bigger, more valuable ships, Ali Shire, the mayor of Habo in the northern semi-autonomous region of Puntland, told Reut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [50.216666700427027, 7.750000000371131] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-161", - "dateofocc": "2017-05-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Chemical Tanker", - "descriptio": "INDONESIA:On 20 May, six robbers wearing masks and armed with long knives boarded a berthed chemical tanker near position 01-43N 101-23E, MSSP Jetty, Lubuk Gaung Port, Dumai. Alert crewman noticed the robbers and raised the alarm. The robbers stole ship'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.383333299950266, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-234", - "dateofocc": "2017-09-26", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 26 September at 0700Z, in 12-08N 044-15E, a vessel reported sighting five skiffs with four persons on board. One skiff came within one cable of the vessel. Armed guards aboard the vessel showed weapons and the skiff changed direction.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.250000000202533, 12.133333300436391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-235", - "dateofocc": "2017-09-24", - "subreg": "56", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "LIBYA:On 24 September at 0700Z, a bulk carrier was attacked by a speed boat in 32-55N 023-27E. The speed boat fired gun shots and rockets at the vessel. The vessel is safe and continued passage to port.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [23.449999999889599, 32.916666699777579] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-236", - "dateofocc": "2017-09-22", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 22 September at 0721Z, a vessel reported a suspicious approach in 12-37N 047-28E. The vessel was approached by a skiff with three persons on board.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.466666699663563, 12.616666699930477] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-237", - "dateofocc": "2017-09-15", - "subreg": "51", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "GUINEA:On 15 September at 0206Z, a vessel was attacked in 09-24.35N 013-44.56W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.74999999987449, 9.399999999570127] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-238", - "dateofocc": "2017-09-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LNG Carrier", - "descriptio": "MALAYSIA:On 07 September at 1910Z, a vessel was attacked in 02-03.6N 104-59.3E. Four armed robbers with guns and knives boarded an underway LNG carrier. The robbbers' stole crew property and escaped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.983333300246557, 2.066666700173869] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-239", - "dateofocc": "2017-09-06", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 06 September at 1500Z in 05-38.3N 103-11.8E, an underway tanker was boarded and hijacked by ten pirates in a speed boat. Authorities were able to detain all ten pirates and the vessel continued on voyage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.200000000445186, 5.633333299776552] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-240", - "dateofocc": "2017-09-01", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VENEZUELA:On 01 September, five robbers in a small fishing boat armed with pistols, knives and sticks boarded a tanker anchored near position 10-14N 064-44W, Puerto La Cruz Anchorage. They assaulted the aft duty watchman, tied him up and took him hostage", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.733333299828018, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-241", - "dateofocc": "2017-09-02", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "BANGLADESH:On 02 September, four robbers armed with long knives boarded an anchored bulk carrier during cargo operations near position 22-14N 091-44E, Chittagong Alpha Anchorage. The watchmen and duty crewman on routine rounds noticed the robbers on the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.233333299593937] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-242", - "dateofocc": "2017-09-02", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "COLOMBIA:On 02 September, duty officer onboard an LPG tanker anchored near position10-19N 075-32W, Cartagena Inner Anchorage, noticed a small boat approaching near the bow and asked the duty watch crewman to investigate. Upon checking, the duty crewman r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-243", - "dateofocc": "2017-09-01", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "GRENADA:On 01 September, multiple boarding's were reported aboard six occupied and unoccupied yachts in Prickly Bay, in vicinity 11-59.7N 061-45.9W. A minor altercation with was reported with the thief, who escaped, when discovered by one of the onboard", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.766666700424651, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-244", - "dateofocc": "2017-09-08", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "GUINEA:On 08 September, seven robbers armed with knives and crowbars boarded an anchored bulk carrier near position 09-21N 013-44W, Conakry Anchorage. They attempted to kidnap the master. After 15 minutes, the robbers left the vessel with ship's property", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.733333299977346, 9.349999999703414] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-128", - "dateofocc": "2017-04-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOMALIA:On 22 April at 1610Z, a vessel was attacked in 05-39N 048-57E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.950000000264595, 5.649999999673696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-245", - "dateofocc": "2017-09-07", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 11 September, robbers boarded a bulk carrier during cargo operations, near position 00-13S 117-33E, Muara Berau, Samarinda anchorage, and stole two mooring ropes from the forecastle storeroom and escaped unnoticed. Incident reported by duty", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.549999999964939, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-246", - "dateofocc": "2017-08-29", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 29 August, robbers boarded an anchored chemical tanker during cargo operations near position 16-57N 082-15E, Kakinada Port. They stole ship's stores and escaped unnoticed. The theft was noticed by the duty crew during routine rounds. Port contro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [82.249999999632792, 16.95000000012908] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-300", - "dateofocc": "2016-11-26", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "MEXICO:On 26 November, robbers boarded the offshore supply ships GLOBAL EXPLORER and VIKRANT DOLPHIN while the vessels were anchored at Dos Bocas anchorage, Tabasco State. 11 armed men boarded the ships about 0200 LT and stole equipment, cargo and crews'", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-93.200000000330476, 18.449999999727879] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-301", - "dateofocc": "2016-11-27", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "BENIN:On 27 November, pirates boarded the refrigerated cargo ship SARONIC BREEZE near position 05-04N 002-37E, 70 nm south of Cotonou. The pirates maintained control of the ship until 29 November when they left the ship, taking 3 crewmen as hostages.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.616666699607094, 5.0666667002709] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-247", - "dateofocc": "2017-09-28", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "YEMEN:On 28 September at 1236Z in 15-05.7N 052-29.0E, a merchant tanker was attacked and fired upon by one small boat with five or six persons on board. Vessel and crew reported safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.483333299897708, 15.133333299634103] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-337", - "dateofocc": "2017-12-10", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 10 December, duty crewman onboard a tanker anchored near 06-19N 003-17E, 5 nm south of Lagos, noticed three robbers on the main deck and raised the alarm. Seeing the alerted crew, the robbers escaped empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.283333299745493, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-340", - "dateofocc": "2017-12-08", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 08 December, four robbers armed with knives and swords boarded an anchored tanker near 01-27N 104-39E, 15 nm north-northeast of Pulau Bintan. The robbers tied up the second engineer in the engine room workshop, stole engine spare parts and e", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.650000000177329, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-341", - "dateofocc": "2017-12-07", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 07 December, duty watchmen onboard a container ship anchored near 14-35N 120-51E, Manila anchorage, noticed three robbers near the forecastle and immediately notified the officer on watch. Alarm raised and crew mustered. Seeing the alerted", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.850000000161685, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-342", - "dateofocc": "2017-12-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "INDONESIA:On 07 December, four robbers, armed with knives, boarded an anchored offshore supply vessel near 00-43N 104-10E, Galang Anchorage. Duty watchman spotted the robbers and informed the duty officer. Alarm was raised and crew mustered. Seeing the c", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.166666699608641, 0.71666670017521] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-343", - "dateofocc": "2017-12-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "INDONESIA:On 07 December, a crewmember onboard an offshore support vessel anchored near00-44N 104-08E, Galang Lay Up Anchorage, noticed several robbers armed with crow bars and raised the alarm. Seeing the alerted crew, the robbers escaped with stolen sh", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 0.73333330024758] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-344", - "dateofocc": "2017-10-05", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDIA:On 05 October, robbers attempted to board an unmanned tanker under tow near20-43N 071-29E, 10 nm south of Pipavav. Alarm raised, crew mustered and evasive maneuvers initiated. Seeing the alerted crew, the robbers escaped, stealing the buoys attache", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [71.483333299612809, 20.716666699922655] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-345", - "dateofocc": "2017-12-05", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "BANGLADESH:On 05 December, robbers boarded a barge under tow near 21-52N 091-45E, 4.47 nm west of Kutubdia Island. The robbers were able steal barge properties and escape. No injury to crews. Incident reported to the authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.750000000389662, 21.86666669955514] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-351", - "dateofocc": "2017-12-14", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 14 December, at 0830 UTC pirates boarded the Greece-flagged bulk carrier SKYLIGHT near 03-46N 006-17E, 32 nm south of Brass. Ten crewmen were kidnapped.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.283333299842525, 3.766666700138899] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-352", - "dateofocc": "2017-12-14", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 14 December, a merchant vessel reported a suspicious approach near13-56N 049-51E, 60 nm southeast of Mukalla. Three skiffs with three to four persons in each skiff made a close approach, and then turned away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.849999999664192, 13.933333300134905] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-353", - "dateofocc": "2017-12-09", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 09 December, robbers boarded an anchored container ship via the anchor chain, near14-35N 120-55E, Manila South Harbor Anchorage. The thieves cut through the forecastle store room padlock, stole ship's properties and escaped. The incident w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-262", - "dateofocc": "2016-11-01", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "HAITI:On 01 November, an unknown number of robbers boarded an anchored bulk carrier near position 18-34N 072-21W, Port Au Prince Anchorage. The thieves boarded via the anchor chain, stole ship¿s stores and escaped unnoticed. Crew noticed the theft on ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.350000000150828, 18.566666700257827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-263", - "dateofocc": "2016-11-03", - "subreg": "57", - "hostility_": "Robbres", - "victim_d": "LPG Tanker", - "descriptio": "GHANA:On 03 November, an unknown number of robbers boarded an anchored LPG tanker near position 04-52N 001-39W, Takoradi Anchorage. The duty watchmen noticed one robber on the poop deck and raised the alarm. Seeing the alerted crew, the robbers escaped i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.649999999752993, 4.866666699904727] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-264", - "dateofocc": "2016-11-05", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 05 November, Nigerian authorities were alerted to a possible pirate attack against bulk carrier COLUMBIA RIVER, in the Lagos Outer Anchorage, vicinity 06-20N 003-23E. The Nigerian Navy sent a ship, NNS KARADUWA, to investigate. They found 16 m", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.38333330037824, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-265", - "dateofocc": "2016-10-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Chemical Tanker", - "descriptio": "SOMALIA:On 22 October, suspected Somali pirates attacked the chemical tanker CPO KOREA 330 nautical miles off the east coast of Somalia. The attack was confirmed after a thorough investigation into the incident. The Operation Commander of the EU Naval Fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [53.000000000260684, 4.91666669977144] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-266", - "dateofocc": "2016-11-06", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Sailing Vessel", - "descriptio": "PHILIPPINES:On 06 November, Abu Sayyaf militants boarded a Germany-flagged sailing yacht ROCKALL, near a remote island in the southern Sulu Archipelago, vicinity05-01N 119-34E. The militants kidnapped a 70-year-old German man and killed his female compan", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.566666699926827, 5.016666700404187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-267", - "dateofocc": "2016-11-05", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 05 November, at about 11:00 local time, an Indonesian fishing boat captain was kidnapped while his ship operated in Kertam waters some 15 nautical miles from the Kinabatangan river. The gunmen, three of whom wore fatigues and two in civilian", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.766666700260657, 5.700000000439729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-268", - "dateofocc": "2016-11-05", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 05 November, at about 11:45 local time, an Indonesian fishing boat captain was kidnapped by the same group that attacked another fishing boat at 11:00 in the same area as the above incident in Kertam waters some 15 nautical miles from the Kin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.783333300333084, 5.700000000439729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-269", - "dateofocc": "2016-11-01", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "VIETNAM:On 01 November, a Vietnam-flagged fishing boat was chased and hit by a Chinese ship and two smaller boats seven nautical miles north of Woody Island. The captain claimed ten Chinese crewmen jumped onto the Vietnamese boat and attacked the fisherm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.316666700366909, 16.93333330023188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-270", - "dateofocc": "2016-10-30", - "subreg": "93", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "VIETNAM:On 30 October, a Vietnam-flagged fishing boat carrying 18 fishermen was attacked by Chinese ships while fishing six nautical miles from Woody Island. The ship's captain stated that his boat was chased and boarded by Chinese sailors who proceeded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.316666700366909, 16.91666670015951] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-271", - "dateofocc": "2016-10-25", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tug and Barge", - "descriptio": "MALAYSIA:On 25 October at 2030 LT in 04-08.8N 112-30.0E, Bintulu Sarawak, armed pirates in a wooden boat approached, boarded and hijacked a tug and barge. The ten member crew was taken hostage. The pirates stole navigational equipment, personal belonging", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [112.499999999936563, 4.15000000007484] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-272", - "dateofocc": "2016-11-07", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "GUYANA:On 07 November at 0500 LT at Berbice port, vicinity 06-18N 057-32W, duty officer aboard a berthed cargo vessel noticed a robber attempting to board the vessel form the stern with a hook. Crew confronted the robber and threatened to call police. Ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-57.533333300134757, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-104", - "dateofocc": "2017-04-08", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 08 April, armed pirates in a skiff boarded the tanker bulk carrier OS 35 near position14-02N 051-40E, 147nm southeast of Al Mukalla. The Master and crew stopped the engine and retreated into the citadel and requested help via radio. The v", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.600000000395255, 14.016666699795906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-118", - "dateofocc": "2017-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 19 April, nine pirates in a skiff approached and fired upon a tanker underway near position 03-25N 005-46E, 59 nm south-southwest of Brass. Alarm raised, fire pumps started and non-essential crew retreated to the citadel. Vessel increased spee", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.766666700203587, 3.416666700172584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-119", - "dateofocc": "2017-04-15", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "GULF OF ADEN:On 15 April, six pirates armed with automatic weapons in a white skiff approached and fired upon the product tanker ALHEERA underway near position 12-53N 048-02E. Master raised the alarm, contacted UKMTO and non-essential crew members took s", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.033333300068534, 12.883333300235847] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-287", - "dateofocc": "2017-10-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 29 October at 1742Z an underway tanker was boarded by five robbers. They entered the engine room and tied up the crew. Robbers escaped with spare parts and ship property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.216666700374731, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-229", - "dateofocc": "2016-10-03", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Chemical Tanker", - "descriptio": "YEMEN:On 3 October, at 0650 UTC, an underway chemical tanker near position 14-01.4N042-49.6E, southern Red Sea, reported a skiff closing to within two tenths of a mile. The skiff had a black hull with six persons on board wearing black and white clothing", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.833333300439961, 14.016666699795906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-230", - "dateofocc": "2016-10-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 1 October at approximately 0100Z, Houthi fighters fired a possible missile at a civilian logistics ship, an Australian-built HSV-2 SWIFT logistics catamaran, near the Bab el Mandab Strait off Yemen's southern coast, vicinity 12-33.9N 043-32.9E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.550000000269847, 12.566666700063763] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-231", - "dateofocc": "2016-10-04", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 4 October, Pirates kidnapped 32 fishermen from two fishing trawlers-FV MA BABAR DOA and FV NASIMA located on the Meghna River in Noakhali, vicinity 22-21.9N091-11.04. The pirates also looted fishing nets and the catch from both vessels. Lat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.183333300159973, 22.366666700020971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-232", - "dateofocc": "2016-10-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 2 October, three robbers in a wooden boat boarded an anchored bulk carrier near position 05-29.7S 105-17.3E, Panjang Anchorage. Duty crewman on rounds spotted the robbers and notified the bridge. Hearing the crewman reporting via radio, the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, -5.500000000282228] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-233", - "dateofocc": "2016-10-01", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 1 October, pirates of Alauddin Bahini opened fire at a vessel carrying Hilsha fish on the Meghna River, vicinity 22-21.9N 091-11.4E, killing one and injuring six.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.183333300159973, 22.366666700020971] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-234", - "dateofocc": "2016-09-25", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 25 September, three robbers armed with long knives boarded an anchored bulk carrier near position 07-46S 109-04E, Cilacap Anchorage. They took hostage a duty crewman, threatened and tied him to the gangway railing. Then they entered the engi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.066666700036933, -7.766666699577627] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-97", - "dateofocc": "2017-03-26", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 26 March, a dinghy and small outboard motor were stolen from a yacht anchored in Saline Bay, in vicinity 12-38N 061-24W. Report made to local area authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.399999999661816, 12.633333300002903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-98", - "dateofocc": "2017-03-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 29 March, armed pirates in a boat chased and fired upon a tanker underway near position 04-05N 004-42E, 64 nm southwest of the Bayelsa Coast. The onboard armed naval security team returned fire resulting in the pirates aborting the attack and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.700000000407385, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-99", - "dateofocc": "2017-04-04", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOMALIA:On 04 April, Somali pirates hijacked SALAMA I off the coast of central Somalia, in vicinity 03-37N 048-47E. The vessel is reportedly carrying a cargo of food.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.783333299867991, 3.616666699639438] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-100", - "dateofocc": "2017-03-26", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 26 March, duty crewman on routine rounds onboard a bulk carrier anchored near position 03-43S 114-25E, Taboneo Anchorage, noticed the forecastle store room door lock was broken. Further checks made on the forecastle indicated that the hawse", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [114.416666700165024, -3.716666699581538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-101", - "dateofocc": "2017-03-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "INDONESIA:On 26 March, one robber attempted to board an anchored product tanker near position01-43N 101-26E, Lubuk Gaung Anchorage, Dumai. Alert crewman noticed the robber and raised the alarm. Seeing the crew's alertness, the robber escaped in a boat wi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.433333299816979, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-102", - "dateofocc": "2017-03-21", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "PHILIPPINES:On 21 March, one robber boarded an LPG tanker anchored near position13-40N 121-03E, JG Summit Berth, Batangas, during loading operations. An alert duty crewman saw a robber hiding near the starboard winches. When confronted, the robber threat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.04999999962854, 13.666666699829534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-103", - "dateofocc": "2017-03-30", - "subreg": "73", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "PAPUA NEW GUINEA:In late March, a group of 13 persons, including two foreign missionaries, were robbed at knife point as they were travelling to Fergusson Island, Milne Bay province, in vicinity09-24S 150-40E, via motor boat. The pirates stole almost eve", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "X" - }, - "geometry": { - "type": "Point", - "coordinates": [150.666666699763482, -9.3999999997788] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-167", - "dateofocc": "2017-05-26", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "SIERRA LEONE:On 26 May, robbers boarded an anchored container ship near position 08-26N 013-28W, Free Town Roads Anchorage, stole ship's properties and escaped. The theft was discovered by duty crew during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.466666699672032, 8.433333300406673] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-168", - "dateofocc": "2017-06-03", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 03 June, a merchant vessel was approached by a number of skiffs with four or five persons in each skiff and weapons sighted in position 12-57N 043-06E, near Bab el Mandeb Strait. There were nine skiffs sighted; however, it is uncertain if they", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.099999999670729, 12.949999999999704] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-169", - "dateofocc": "2017-05-31", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 31 May, robbers boarded a bulk carrier anchored near position 07-46S 109-04E, Cilacap Anchorage, stole ship's properties and escaped. The theft was noticed by the duty crew during routine rounds. Incident reported to the local agents.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.066666700036933, -7.749999999680483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-170", - "dateofocc": "2017-05-28", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 28 May, six persons armed with guns boarded a tanker, using a rope, near position02-49N 105-17E, 24 nm west of Pulau Jemaja. They tied up the crew, threatened them with their weapons, stole ship's cash and master's personal belongings and es", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, 2.816666699973325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-269", - "dateofocc": "2017-10-15", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 15 October, an Iranian fishing boat captain reported that his boat had broken down and he had sighted two approaching fast boats. No further communication was received from the boat and its location is unknown. The boat had 20 crew onboar", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.916666700262681, 13.333333299935589] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-270", - "dateofocc": "2017-10-18", - "subreg": "63", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "INDIAN OCEAN:On 18 October, a merchant vessel near position 20-15N 066-50E, approximately 170 nm southwest of Porbandar, India, reported two unknown vessels had followed the merchant vessel at a range of 50 meters for approximately 1 hour. Nothing else w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [66.833333300316781, 20.250000000325713] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-271", - "dateofocc": "2017-10-17", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDIA:On 17 October, two robbers boarded an anchored bulk carrier near position22-47N 070-01E, Kandla Anchorage. Duty officer spotted the robbers and raised the alarm. Seeing the alerted crew, the robbers escaped with stolen ship's properties.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [70.016666699808297, 22.783333299926483] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-272", - "dateofocc": "2017-10-14", - "subreg": "92", - "hostility_": "Robbers", - "victim_d": "Fishing Vessel", - "descriptio": "PHILIPPINES:On 14 October, armed men abducted five crewmen from F/V DANVIL 9 in the port of Poblacion on Pangutaran Island, in vicinity 06-19N 120-32E. A spokesman said the probable Abu Sayyaf captors were aboard two motorized bancas and immediately left", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.533333300164827, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-129", - "dateofocc": "2017-04-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 29 April at 0408Z, a vessel was attacked in 03-51.2N 006-46.1E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 3.849999999975182] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-273", - "dateofocc": "2017-10-13", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 13 October, two robbers in a wooden boat boarded an anchored bulk carrier via the anchor chain near position 00-13S 117-35E, Muara Berau, Samarinda Inner Anchorage. They stole ship's properties and threatened duty AB with knives. As the robb", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.216666699918051] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-285", - "dateofocc": "2016-11-15", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 15 November in 01-25N 104-41E, an unknown number of robbers boarded an anchored heavy load carrier. They stole ships parts and escaped. Theft noticed by crew on routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-286", - "dateofocc": "2016-11-29", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "NIGERIA:On 19 November, Singapore flagged MAERSK COTONOU was approached by a speedboat with eight armed men in vicinity 04-01N 007-03E, 25 NM South of Bonny. The alarm was raised and the ship managed to evade the boat using speed and maneuvering.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.050000000438445, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-287", - "dateofocc": "2016-11-15", - "subreg": "51", - "hostility_": "Suspicious Approach", - "victim_d": "Sailing Vessel", - "descriptio": "CAPE VERDE:On 15 November, a fishing boat approached S/V SHERPA in vicinity 27-07N 013-58W, 35 miles from shore of EL Aajum, Western Sahara. Three men in the fishing boat made a very close pass to the sailing vessel but the fishing boat propeller became", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-13.966666700137864, 27.116666699949747] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-288", - "dateofocc": "2016-11-05", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MOZAMBIQUE:On 05 November, an unknown number of robbers stolean outboard motor from a dinghy tied to S/V EUTIKIA, anchored near position 21-39S 035-25E, at Bazaruto anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [35.416666700308099, -21.650000000399814] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-289", - "dateofocc": "2016-10-30", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MADAGASCAR:On 30 October, three robbers boarded S/V EUTIKIA, anchored in vicinity 15-43S 046-18E, Mahajanga anchorage. The robbers threatened the crew with knives and forced them inside the boat. They then stole money, cameras, video cameras, cell phones", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [46.300000000133934, -15.716666699969608] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-290", - "dateofocc": "2016-07-15", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 15 July at 0500 LT in 00-17.5S 117-40.4E, duty crew noticed one robber with long knives on board an anchored bulk carrier. There were another three or four robbers in the boat. The duty crew retreated to the accommodation and raised the alar", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.666666699595567, -0.299999999754334] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-291", - "dateofocc": "2016-11-23", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 23 November at 0920 LT in 06-21.5N 119-53.8E, eight persons wearing masks armed with automatic weapons in a speed boat attempted to board an underway bulk carrier using a long pole with a hook. Master raised the alarm and activated the SSA", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.899999999995998, 6.366666700402845] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-292", - "dateofocc": "2016-11-23", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 23 November at 0530 LT in 03-35.4N 005-13.6E, pirates with automatic weapons approached and fired upon an underway tanker. The alarm was raised, SSAS activated, crew alerted and the on board security team opened fire. Pirates boarded the tanke", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.233333299943467, 3.583333299845151] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-293", - "dateofocc": "2016-10-26", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Container Ship", - "descriptio": "VIETNAM:On 26 October at 0330 LT in 10-23.26N 107-03.15E, crew aboard an anchored container ship noticed robbers boarding vessel via small wooden boat. Master raised the alarm and crew managed to apprehend one robber. Incident reported to port authoritie", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.050000000075102, 10.383333299705328] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-294", - "dateofocc": "2016-07-03", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 03 July at 0435 LT in 00-15.5S 117-37.3E, robbers boarded an anchored bulk carrier. They stole ship's stores and escaped. The theft was noticed by crew during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.616666699728853, -0.266666699784764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-295", - "dateofocc": "2016-11-05", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "INDONESIA:On 05 November at 0245 LT in 06-01.76S 106-53.21E, Tanjung Priok anchorage, two robbers in a small boat boarded an anchored LPG Tanker using a rope with a hook. They stole ship's spares and escaped. Engineer on routine rounds noticed the theft", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.883333299678441, -6.033333299818253] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-296", - "dateofocc": "2016-11-23", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VENEZUELA:On 23 November at 0145 LT in 10-11.4N 064-45.4W, Puerto Jose anchorage, duty crew aboard an anchored bulk carrier noticed the bosun store door open. Two robbers armed with knives were seen stealing ship's stores. The crew tried to confront the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.749999999725162, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-297", - "dateofocc": "2016-11-27", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "HAITI:On 27 November at 2210 LT in 18-34.18N 072-23.7W, Port Au Prince anchorage, robbers attempted to board an anchored tanker via the hawspipe. Crew on routine rounds noticed the robbers and raised the alarm resulting in the robbers retreating. Crew mu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.400000000017542, 18.566666700257827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-298", - "dateofocc": "2016-11-24", - "subreg": "92", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 24 November at 1040 LT in 05-47.7N 119-51.8E an underway bulk carrier noticed a blue speed boat with about ten armed persons wearing black masks approaching the vessel at high speed. Master raised the alarm, alerted the crew and contacted", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.866666700026485, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-346", - "dateofocc": "2017-12-13", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 13 December at 1200Z, four armed robbers boarded an underway tanker in01-14.6N 104-02.3E. As they entered the engine room, they encountered an oiler and assaulted him. The alarm was raised and crew mustered. Robbers escaped with ship's engin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.033333300080926, 1.249999999711235] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-347", - "dateofocc": "2017-12-14", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 14 December at 0110Z a vessel was chased in 03-58.3N 006-12.4E. A wooden speedboat with four persons on board attempted to board the vessel. The vessel increased speed and took preventative measures while managing to evade boat.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.200000000006241, 3.96666669960581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-348", - "dateofocc": "2017-12-12", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "OMAN:On 12 December M/V Grand Ace 11 was approached by a skiff in 24-57N 057-42E.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.700000000322746, 24.950000000387774] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-299", - "dateofocc": "2016-11-24", - "subreg": "92", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 24 November at 0722 LT in 05-55.6N 119-50.2E, seven armed persons wearing black masks in a speed boat approached an underway bulk carrier from astern. The crew noticed the approaching boat and raised the alarm, started evasive maneuvers an", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.833333300232198, 5.933333299876153] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-33", - "dateofocc": "2017-02-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 07 February at 1936Z, a vessel was attacked in 03-31N 007-04E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.066666700335588, 3.516666699906011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-34", - "dateofocc": "2017-02-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "LPG Tanker", - "descriptio": "NIGERIA:On 07 February at 1904Z, a LPG tanker was boarded by pirates in 04-03.2N 007-13.5E. 21 members went into the citadel and the remaining four crew members are missing. The Nigerian Navy has been notified.Update:NIGERIA:On 08 February, the Nigerian", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.233333300008155, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-35", - "dateofocc": "2016-12-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 29 December at 0001Z, two robbers boarded an anchored tanker. Duty crew on routine rounds spotted the robbers and informed the bridge. The alarm was raised and crew mustered. Seeing the alert crew, the robbers escaped empty handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.700000000310354] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-36", - "dateofocc": "2016-12-23", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 23 December at 1905Z, a vessel reported being approached by three skiffs in15-45.7N 041-18.1E. The closest the skiff got was 100 meters. The vessel security team fired warning shots. Crew mustered in the citadel while the vessel took evasive a", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [41.299999999972215, 15.766666699627649] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-37", - "dateofocc": "2016-12-22", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 22 December at 1025Z, a vessel reported being approached by two high speed boats with five people in each boat. The vessel sounded the alarm, increased speed and activated hoses. The security team showed their weapons to the boats who then alt", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.333333300006473, 12.683333299869616] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-194", - "dateofocc": "2017-07-22", - "subreg": "51", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "SENEGAL:On 22 July at 0249Z fishing vessel approached and attempted to board an underway bulk carrier in 15-31.9N 018-10.0W. The alarm was raised, crew mustered, vessel increased speed and conducted evasive maneuvers.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-18.166666699734094, 15.533333300366508] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-1", - "dateofocc": "2017-12-24", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 24 December, a merchant vessel reported being attacked and boarded in 03-47N 006-50E, 42 nm south-southwest of Bonny Island.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.83333330017507, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-267", - "dateofocc": "2017-10-06", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 06 October, one skiff carrying twelve suspected pirates were interdicted by Indian Naval forces aboard INS TRISHUL. They were responding to a distress call from the India-flagged bulk carrier M/V JAG AMAR. The event occurred in the Gulf o", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [47.900000000365537, 12.983333299969274] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-2", - "dateofocc": "2017-12-21", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "NIGERIA:On 21 December, the Nigerian Navy in Lagos rescued four Chinese nationals from kidnappers around Igbokoda area of Ondo State in vicinity 06-09N 004-40E. The Flag Off Commanding, Western Naval Command, Rear Adm. Sylvanus Abbah, told journalists in", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.666666700437816, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-3", - "dateofocc": "2017-12-29", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "COLOMBIA:On 29 December, three robbers in a wooden boat boarded a general cargo vessel anchored in vicinity 10-19N 075-31W, Cartagena Inner Anchorage. Duty crewman noticed the robbers and raised the alarm. Seeing the crew alertness, the robbers escaped w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-4", - "dateofocc": "2017-12-28", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "BRAZIL:On 28 December, four robbers armed with a handgun boarded a small sailing yacht in the approaches to the port of Santos, in vicinity 23-59S 046-18W, late at night. The robbers methodically ransacked the boat, taking almost anything they could carr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "V" - }, - "geometry": { - "type": "Point", - "coordinates": [-46.300000000342607, -23.983333299634353] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-5", - "dateofocc": "2017-12-24", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 24 December, duty crewmen onboard a product tanker anchored in vicinity 06-17N 003-13E, SSA Anchorage, Lagos, saw three robbers attempting to board the vessel and immediately notified the officer on watch. Alarm was raised and crew was mustere", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.216666699806353, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-6", - "dateofocc": "2017-12-31", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "BANGLADESH:On 31 December, robbers boarded a barge under tow in vicinity 21-49N 091-34E, and stole barge's properties. All crew safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.566666699920631, 21.816666699688426] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-7", - "dateofocc": "2017-12-28", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "SINGAPORE STRAIT:On 28 December, four robbers boarded a bulk carrier awaiting a Pilot boat in vicinity 01-16N 104-02E, 3 nm south of Changi. They entered the engine room and threatened the duty engineer with a knife. The engineer managed to escape and ra", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.033333300080926, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-8", - "dateofocc": "2017-12-25", - "subreg": "72", - "hostility_": "Robbbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:ON 25 December, duty crewman onboard a tanker anchored in vicinity 07-46S 109-04E, Cilacap Anchorage, spotted four robbers near the poop deck. Alarm raised and crew mustered. Seeing the crew alertness, the robbers escaped with stolen ship's eng", - "hostilityt": 0, - "hostilit_D": null, - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.066666700036933, -7.766666699577627] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-9", - "dateofocc": "2017-12-29", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 29 December, duty crewman onboard a bulk carrier anchored in vicinity38-46N 118-30E, Caofeidian Anchorage, noticed suspicious movements on the main deck. Upon checking, he noticed two unauthorized persons standing near the emergency generator ro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.500000000130626, 38.766666700371502] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-84", - "dateofocc": "2017-03-24", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOMALIA:On 24 March at 1545Z, in position 07-58N 049-53E, vessel Casayr II - No 30 was hijacked. 20 crew members were taken hostage. The dhow had three skiffs onboard. The pirates released 13 crew members in one skiff. The dhow with the remaining crew an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.883333299633762, 7.966666699735129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-85", - "dateofocc": "2017-03-26", - "subreg": "71", - "hostility_": "Sucpicious Approach", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 26 March at 1254Z, an underway tanker was approached by two speed boats with two persons in each boat. Vessel took evasive action, sounded the horn and directed signal lamp towards boats. At a distance of 15 meters from the tanker, the speed", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.533333299615094, 1.116666700008238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-86", - "dateofocc": "2017-03-24", - "subreg": "61", - "hostility_": "Mothership Activity", - "victim_d": "Vessel", - "descriptio": "SOMALIA:On 24 March, possible mothership operations in area within 300 miles of 07-58N 049-53E have been reported.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.883333299633762, 7.966666699735129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-266", - "dateofocc": "2017-10-07", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 07 October, a merchant vessel reported a suspicious approach by four dark-hulled skiffs with 4-5 persons in each skiff near position 11-56N 044-43E, approximately 54 nm southwest of Aden. They approached to 0.7 nm and turned away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.716666699799475, 11.933333300070217] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-311", - "dateofocc": "2017-11-21", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 21 November at 2140Z a vessel was approached by pirates in 05-13N 004-03E.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.050000000341413, 5.216666699871041] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-268", - "dateofocc": "2017-10-04", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 04 October, six to eight robbers boarded an anchored container ship near position14-33N 120-54E, Manila South Port Anchorage, and were noticed by a duty crewman who raised the alarm. Seeing the crew's alertness, the robbers escaped with st", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.900000000028399, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-172", - "dateofocc": "2017-06-13", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "ERITREA:On 13 June at 1350Z, a vessel was approached by four skiffs with six or seven persons on board in 12-56.49N 043-12.17E. Skiffs approached and followed for ten minutes closing to a CPA of 0.5NM. Armed security team showed weapons and the skiffs dr", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.200000000303476, 12.933333300102561] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-178", - "dateofocc": "2017-06-19", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "KENYA:On 19 June, duty crewman on anti-piracy watch onboard a product tanker berthed near position 04-04S 039-39E, Mbaraki Terminal, Mombasa, noticed a robber attempting to board via the poop deck using a hook attached with rope and informed the duty off", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.649999999873899, -4.066666700447229] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-179", - "dateofocc": "2017-05-31", - "subreg": "83", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "FIJI:On 31 May, two robbers boarded a sailing yacht anchored near position17-19S 177-07E, Wayasewa Island. The robbers stole an iPad, 2 phones and a dive lamp. Local authorities notified.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "XIV" - }, - "geometry": { - "type": "Point", - "coordinates": [177.116666700304108, -17.31666670020121] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-330", - "dateofocc": "2017-12-07", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 07 December, a merchant ship reported that eight robbers attempted to board their ship near 03-31N 007-07E, approximately 60 nm south of Bonny. The boarding attempt failed and the ship and crew are reportedly safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.116666700202302, 3.516666699906011] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-189", - "dateofocc": "2017-07-11", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "IRAN:On 11 July at 1120Z, a vessel was approached by a yellow hulled skiff in 25-31N 057-25E.There were two persons on board with weapons. The skiff approached to within one cable of the vessel. The armed security team fired warning shots and the skiff r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.416666700120288, 25.516666699718144] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-190", - "dateofocc": "2017-06-30", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VENEZUELA:On 30 June, five robbers boarded a chemical tanker anchored near position10-16N 064-42W, Puerto La Cruz Anchorage. The robbers entered the forepeak storeroom. Alert crewman noticed the robbers and raised the alarm, resulting in the robbers esca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.699999999858449, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-191", - "dateofocc": "2017-07-02", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "MOZAMBIQUE:On 02 July, a duty crewman onboard a container ship anchored near position14-22S 040-42E, Nacala Anchorage, noticed two robbers attempting to board the ship. Alarm was raised and crew was mustered. Seeing the crew alertness, the robbers escape", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [40.699999999772956, -14.366666699970949] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-192", - "dateofocc": "2017-06-13", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "Offshore Supply Vessel", - "descriptio": "INDONESIA:On 13 June, duty crewman onboard an offshore supply vessel anchored near position01-00N 104-14E, Singatac Anchorage, Pulau Bintan, noticed four suspicious persons in a small boat near the stern of the vessel. He immediately informed the duty of", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.2333333004471, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-309", - "dateofocc": "2017-11-22", - "subreg": "57", - "hostility_": "Suspicous Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 22 November a vessel was approached in 03-17.5N 006-52.5E. One speed boat with three persons on board approached to within one cable after chasing the vessel for 30 minutes. Vessel performed maneuvers and the boarding was thwarted.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.883333300041784, 3.299999999642637] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-310", - "dateofocc": "2017-11-22", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 22 November at 0340Z a vessel was attacked in 03-04N 006-59E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.983333299775211, 3.066666700206213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-273", - "dateofocc": "2016-11-11", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "COLOMBIA:On 11 November, four robbers armed with knives boarded an anchored LPG tanker near position 10-19N 075-31W, Mamonal Inner Anchorage. Duty crewman on routine rounds spotted the robbers and reported to the bridge. Duty officer raised the alarm, ma", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-274", - "dateofocc": "2016-11-03", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "DOMINICAN REPUBLIC:On 03 November, robbers boarded a sailing yacht anchored near Luperon, vicinity19-54N 070-57W. The thieves were able to steal a laptop computer, a mobile phone, an Iridium satellite phone and other valuables.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.950000000285399, 19.900000000359341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-275", - "dateofocc": "2016-11-13", - "subreg": "72", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 13 November, the tanker SOUTHERN FALCON, underway near position03-40N 119-51E, 65 nm southeast of Sibutu Island, reported a suspicious approach by six speed boats with one armed person in each boat. The boats gave chase to the tanker; the", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.850000000129285, 3.666666700405472] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-276", - "dateofocc": "2016-11-11", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 11 November, ten persons armed with guns approached the underway bulk carrier ROYAL 16 near position 06-40N 122-31E, 10 nm north-northeast of Basilan Island. Ship's master raised the alarm and activated the SSAS. The armed persons boarded", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.516666700157089, 6.666666699603184] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-277", - "dateofocc": "2016-11-09", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 09 November, ten robbers armed with knives boarded an anchored tanker near position 01-41N 101-30E, Dumai Anchorage, and entered the engine room. They took hostage the duty oiler, punched him, tied him up, and threatened him with a knife. Th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.499999999580837, 1.68333330041321] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-49", - "dateofocc": "2017-03-02", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 02 March, an alert crewman onboard a general cargo vessel underway near position04-28N 002-30E, 127 nm southwest of Lagos, noticed a suspicious boat doing 9 knots at a distance of 0.9 nm astern. The cargo vessel increased speed and made large", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [2.499999999976524, 4.466666700071642] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-204", - "dateofocc": "2017-07-25", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES: On 25 July, a yacht was boarded in Canouan, in vicinity 12-43N 061-20W, by a single male who dove overboard and swam away after being confronted by the owners. Several VHF calls to the SVG Coast Guard were not answered.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.333333299897959, 12.716666699663961] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-205", - "dateofocc": "2017-07-11", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "GRENADA:On 11 July, an unoccupied yacht on a mooring had its dinghy's outboard motor stolen overnight, in vicinity 12-07N 061-40W. The dinghy was lifted and the outboard was locked to the dinghy. A police report was made and this was also announced on th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.666666699791904, 12.116666700363965] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-206", - "dateofocc": "2017-07-29", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 29 July, Yemen's Huthi rebels said they targeted a military ship belonging to the United Arab Emirates, in vicinity 13-19N 043-15E, part of the Saudi-led coalition fighting them in the country. The ship, carrying military equipment, was arriving", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.250000000170189, 13.316666699863219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-207", - "dateofocc": "2017-06-28", - "subreg": "63", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "BANGLADESH:On 28 June, gunmen kidnapped four fishermen along with two trawlers near the Moktar area of the Meghna River, in vicinity 22-39N 090-49E. Local people said a gang of sea robbers of the notorious Kalam Bahini gang raided the two trawlers and lo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [90.816666700121232, 22.650000000223486] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-5", - "dateofocc": "2017-01-09", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "PHILIPPINES:On 09 January, gunmen attacked a Filipino fishing boat with 15 crew on board which was operating off Laud Siromon Island near the Zamboanga peninsula. Five armed men were in the speedboat that attacked the fishing boat. A police spokesman sai", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.333333299863398, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-6", - "dateofocc": "2017-01-08", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 08 January, five robbers boarded a bulk carrier anchored near position00-15S 117-34E, Muara Berau Anchorage, Samarinda. They took hostage a duty crewman and tied him at the fore mast. Another duty crewman tried to contact the detained crew b", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-7", - "dateofocc": "2017-01-07", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "PHILIPPINES:On 07 January, robbers in two unlit boats boarded a product tanker anchored near position 13-44N 121-02E, Batangas Anchorage. Duty crewman on routine rounds noticed the robbers and raised the alarm. Hearing the alarm, the robbers escaped in t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-297", - "dateofocc": "2017-11-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 16 November, a merchant vessel was attacked near position 04-07N 006-57E, 20 nm southwest of Bonny. All crew mustered in the citadel. A Nigerian Navy team boarded the vessel, but pirates had already left the vessel.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.949999999805641, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-315", - "dateofocc": "2017-11-16", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "COLOMBIA:On 16 November, robbers armed with knives boarded an anchored chemical tanker near position 10-19N 075-31W, Mamonal Anchorage. Duty crewman on routine rounds noticed the robbers and notified the duty officer who raised the alarm. Hearing the ala", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-316", - "dateofocc": "2017-11-22", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 22 November, a merchant vessel reported that one speed boat with three persons onboard, approached to within cable after following for about 30 minutes, near position03-17N 006-52E, 66 nm south-southwest of Bonny. Vessel took anti-piracy preve", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.866666699969358, 3.283333299745493] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-317", - "dateofocc": "2017-11-21", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 21 November, crew aboard a merchant vessel near position 06-18N 003-10E, Lagos Anchorage, observed two small boats approach to a close proximity. Persons on the boat attempted to board the ship using hooked ropes. Nigerian patrol boat informed", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.16666669993964, 6.299999999739669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-318", - "dateofocc": "2017-11-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 16 November, a merchant tanker reported an attempted boarding by seven individuals in a white speedboat using ladders near position 03-30N 006-46E, 60 nm south of Bonny. Due to the vessel's high freeboard, pirates aborted the boarding after fi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-319", - "dateofocc": "2017-11-16", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 16 November, pirates attacked a bulk carrier underway near position 04-07N 006-57E, 19 nm southwest of Bonny. The attack occurred about 15 minutes after its Nigerian Navy security escort boat departed the area. Upon hearing them mayday transmi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.949999999805641, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-138", - "dateofocc": "2017-04-28", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Supply Vessel", - "descriptio": "GUYANA:On 28 April, duty officer on routine rounds onboard a seismic support vessel anchored near position 06-49N 058-10W, Georgetown Anchorage, noticed a boat alongside the vessel and raised the alarm. Seeing the alerted crew, five robbers were seen esc", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.816666700102644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-320", - "dateofocc": "2017-11-16", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 16 November, seven pirates in a speed boat chased a tanker underway near position 03-30N 006-45E, 56 nm south-southwest of Bonny Island. As the boat closed to 300 meters, the crew noticed a long ladder. The crew raised the alarm, commenced eva", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.750000000338787, 3.500000000008868] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-321", - "dateofocc": "2017-11-21", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "Gulf of Aden:On 21 November, a merchant ship reported being attacked skiff near position14-08N 048-57E, near the port of Al Mukalla, Yemen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [48.950000000264595, 14.133333299601759] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-322", - "dateofocc": "2017-11-19", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 19 November, a merchant ship reported sighting a suspicious skiff near position14-04N 051-47 E, near IRTC Point B. The skiff was reportedly carrying a ladder.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.783333299964966, 14.066666699662619] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-323", - "dateofocc": "2017-11-18", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "INDIAN OCEAN:On 18 November, pirates attacked fishing vessel GALERNA III near position01-56S 049-23E, 380 nm east of the Somali coast. The Italian Navy ship ITS VIRGINIO FASAN investigated the incident and intercepted two small boats and arrested six Som", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.38333330006725, -1.933333299955507] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-324", - "dateofocc": "2017-11-17", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "INDIAN OCEAN:On 17 November, pirates attacked MV EVER DYNAMIC near position 01-55S 047-56E, 363 nm east of the Somali coast. The Italian Navy ship ITS VIRGINIO FASAN investigated the incident.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [47.933333300335107, -1.916666699883081] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-325", - "dateofocc": "2017-11-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 17 November, three robbers armed with knives boarded an anchored product tanker near position 01-25N 104-35E, 12 nm north of Tanjung. Berakit, Pulau Bintan. Duty crewman on routine rounds noticed the robbers. Alarm raised and crew mustered.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.583333300413472, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-326", - "dateofocc": "2017-12-01", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 01 December at 0846Z a vessel was attacked in 03-28N 006-50E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.83333330017507, 3.466666700039298] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-327", - "dateofocc": "2017-12-03", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 03 December at 1610Z robbers were discovered aboard a container vessel in14-33.72N 120-55.25E. Liferafts and immersion suits were reported missing. It was noticed the robbers had boarded the vessel via the anchor chain. Authorities carried", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.566666700128451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-281", - "dateofocc": "2017-10-20", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VENEZUELA:On 20 October, a crewman onboard a tanker anchored near position 10-11N 064-46W, Puerto Jose Anchorage, noticed five robbers on the poop deck and raised the alarm. Seeing the crew's alertness, the robbers escaped. A search was carried out throu", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.766666699622363, 10.183333300238417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-282", - "dateofocc": "2017-10-25", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 25 October, pirates attacked a laden tanker underway near position 03-32N 006-47E, 54 nm south-southwest of Bonny. Two armed pirates boarded the vessel and crew mustered in the citadel. The authorities were notified. The vessel and crew are sa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.783333300308357, 3.533333299978437] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-283", - "dateofocc": "2017-10-21", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Container Vessel", - "descriptio": "NIGERIA:On 21 October, container ship DEMETER was attacked by pirates near position03-47N 007-09E, south of Port Harcourt, while transiting from Malabo, Equatorial Guinea to Monrovia, Liberia. Pirates boarded the ship, kidnapped six crewmembers, includin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.150000000171872, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-284", - "dateofocc": "2017-10-20", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 20 October, an Iranian vessel with 19 sailors onboard was seized near Socotra Island by local fishermen. There was no immediate official Iranian reaction to the comments made by Yemen's Prime Minister on his Twitter account in which he said the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.816666699823998, 12.266666699964162] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-285", - "dateofocc": "2017-10-25", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 25 October, four robbers armed with knives boarded an anchored LPG tanker near position 07-44S 109-04E, Cilacap Anchorage. The duty crewman on routine rounds spotted the robbers on the main deck. Alarm raised, SSAS activated and all crew mus", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.066666700036933, -7.733333299783339] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-286", - "dateofocc": "2017-10-17", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 17 October, a duty crewman onboard an underway bulk carrier near position01-16N 104-12E, 9 nm northwest of Todang, Bintan Island, noticed two unauthorized persons on the aft deck. Duty officer notified and alarm raised. Seeing the alerted cr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.19999999957821, 1.266666699608436] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-216", - "dateofocc": "2017-08-21", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "PANAMA:On 21 August, an in-the-water but chain locked dinghy and outboard motor were stolen overnight from a sailing yacht anchored in Portobello Bay, in vicinity 09-33N 079-39W. The dinghy minus the outboard motor was recovered the next morning.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.649999999577517, 9.550000000069588] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-217", - "dateofocc": "2017-08-18", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "DOMINICAN REPUBLIC:On 18 August, an unoccupied trimaran on a mooring in Luperon Bay, in vicinity19-54N 070-57W had its primary mooring line released and the secondary anchor and rope stolen. The boat went adrift and damaged its stern mounted radio antenn", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.950000000285399, 19.900000000359341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-218", - "dateofocc": "2017-08-12", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "VENEZUELA:On 12 August, six fishermen on Lake Maracaibo, in vicinity 10-06N 071-35W, were assaulted and murdered by pirates during two simultaneous assaults by armed gangs that ply Lake Maracaibo. Local media reports indicate that the first attack was ag", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-71.583333299554909, 10.100000000402133] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-219", - "dateofocc": "2017-08-09", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "ST MARTIN:On 09 August, a dinghy and outboard motor were stolen from a sailing yacht anchored in Simpson Bay Lagoon, in vicinity 18-02N 063-06W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-63.099999999626846, 18.033333299997707] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-220", - "dateofocc": "2017-08-19", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 19 August, an alert duty crewman onboard the bridge of a tanker anchored in position 06-20N 003-18E, Lagos General Purpose Anchorage, spotted a floating object near the starboard bow and informed the armed security guard who fired warning shot", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.299999999642637, 6.333333299709238] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-221", - "dateofocc": "2017-08-19", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 19 August, a merchant vessel reported that eight black-hulled skiffs with two persons onboard each skiff made a suspicious approach 14 nm off Delta state, in vicinity04-18N 006-23E. The skiffs travelled at 7 knots and came within 0.3 nm of the", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.383333299575952, 4.299999999674981] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-222", - "dateofocc": "2017-08-04", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "GHANA:On 04 August, deck watch personnel onboard an LPG tanker anchored near position04-54N 001-39W, Takoradi Anchorage. Crew noticed a robber near the starboard side poop deck and informed the duty officer who raised the alarm. Hearing the alarm and see", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.649999999752993, 4.89999999987424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-223", - "dateofocc": "2017-08-19", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 19 August, a merchant vessel near position 12-50N 043-12E was approached by five skiffs with three persons in each skiff. Armed security team onboard showed weapons and the skiffs altered course away from the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.200000000303476, 12.833333300369134] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-224", - "dateofocc": "2017-08-20", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 20 August, two robbers boarded an underway bulk carrier near position01-04N 103-41E, 4.7 nm south-southeast of Pulau Nipah, and entered the steering gear room. They threatened the duty oiler with a knife. Once the robbers left the steering g", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 1.066666700141525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-277", - "dateofocc": "2017-10-24", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SUQUTRA:On 24 October at 0748Z a wooden vessel was attcked in 11-50N 054-35E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.583333299695823, 11.83333330033679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-278", - "dateofocc": "2017-10-24", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "SUQUTRA:On 24 October at 0800Z a vessel was attacked in 11-50N 054-30E. The vessel had 13 persons on board and four of them were injured by the pirates firing shots.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [54.49999999985954, 11.83333330033679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-214", - "dateofocc": "2017-08-18", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "DJIBOUTI:On 18 August at 1132Z, a vessel was approached in 12-38N 043-21E by a number of skiffs with five or six persons in each skiff. Ladders were sighted and the armed security team fired warning shots.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.349999999903616, 12.633333300002903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-215", - "dateofocc": "2017-08-19", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 19 August at 0716Z, a vessel was approached in 05-44.8N 004-47.5E by eight black hulled skiffs with two persons in each skiff. The skiffs approached to within 0.3 NM of the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.800000000140813, 5.750000000306443] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-336", - "dateofocc": "2017-12-17", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 17 December at 0106Z robbers attempted to board a vessel in 06-17N 003-21E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.35000000040867, 6.283333299842525] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-120", - "dateofocc": "2017-04-10", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "GUATEMALA:On 10 April, one robber boarded an anchored yacht at Bahia de Graciosa, in vicinity 15-51N 088-32W, waking both crewmembers. The captain went topside and discovered a man was removing the small outboard from the rail mount. A scuffle ensued, an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.533333300237985, 15.850000000363252] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-121", - "dateofocc": "2017-04-06", - "subreg": "28", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "HONDURAS:On 06 April, a yacht with 2 persons onboard anchored off Graham's Place, in vicinity16-28N 085-50W. They met a man who identified himself by name and then asked several questions about their planned stay, and number of persons on board. Later th", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-85.833333300240611, 16.466666699560392] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-122", - "dateofocc": "2017-04-22", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "SOMALIA:On 22 April, six armed persons in a skiff chased and fired upon the underway tanker COSTINA near position 05-42N 048-53E, 30 nm northeast of Hobyo. Master raised the alarm and sent distress message, to which a warship responded. The skiff chased", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [48.883333299601418, 5.700000000439729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-123", - "dateofocc": "2017-04-23", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "PHILIPPINES:On 23 April, suspected illegal fishermen managed to elude arrest by ramming their fishing vessel into the small boat being used by policemen inside a fish sanctuary in Barangay Sulangan, Bantayan Island, in vicinity 11-10N 123-43E. The police", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [123.716666699656344, 11.166666700198391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-124", - "dateofocc": "2017-04-22", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 22 April, an unknown number of robbers boarded an LPG tanker at berth, near position 13-40N 121-03E, Batangas. They stole ship¿s properties and escaped. The theft was discovered by the crew during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.04999999962854, 13.666666699829534] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-125", - "dateofocc": "2017-04-19", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 19 April, three robbers boarded an anchored bulk carrier near position00-15S 117-34E, Samarinda Anchorage. Alarm raised and crew mustered. Seeing the crew¿s alertness, the robbers escaped without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-126", - "dateofocc": "2017-04-18", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 18 April, armed men tried to commandeer a cargo vessel off the waters of Zamboanga del Norte, in vicinity 08-10N 122-31E, police said. A police spokesman said armed men on two motorized boats fired at M/V DOÑA ANABELLE while it was sailin", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [122.516666700157089, 8.166666700101359] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-127", - "dateofocc": "2017-04-20", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 20 April in 00-15.7S 117-34.5E, Samarinda anchorage, three robbers boarded an anchored bulk carrier. The alarm was raised and crew mustered. Seeing the crew alertness, the robbers escaped without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.583333299934566, -0.266666699784764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-130", - "dateofocc": "2017-04-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 29 April, armed pirates in a speedboat boarded a general cargo vessel underway near position 03-41N 006-46E, 47 nm southwest of Bonny Island. Alarm raised, SSAS activated and all crew retreated into the citadel. Ship owner notified the IMB Pir", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 3.683333299578578] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-131", - "dateofocc": "2017-04-28", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 28 April at 1850Z, a vessel was attacked in 03-49N 007-04E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.066666700335588, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-132", - "dateofocc": "2017-04-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 29 April at 1820Z, a vessel was attacked in 03-33N 006-42E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.699999999572753, 3.549999999875581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-133", - "dateofocc": "2017-05-01", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 01 May at 1300Z, a M/V was approached in 12-08N 044-16E. Five skiffs with five persons on board approached the vessel. Skiffs approached to .2NM before armed security team aboard vessel fired warning shots. All five skiffs turned away aft", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [44.266666700099677, 12.133333300436391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-259", - "dateofocc": "2016-10-25", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 25 October, a product tanker underway near position 06-15N 003-21E, 15.7 nm south of Lagos was approached by two suspicious speed boats. The vessel raised an alarm, and the crew mustered in the safe area. A Nigerian Navy patrol boat responded", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.35000000040867, 6.249999999872955] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-260", - "dateofocc": "2016-10-24", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Trawler", - "descriptio": "MALAYSIA:On 24 October, six armed pirates boarded a fishing trawler in the open sea, vicinity06-46.0N 117-30.8E, near Jambongan, Malaysia. They took one ton of fish, 500 liters of fuel and GPS units from the crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.516666699995426, 6.76666670023593] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-261", - "dateofocc": "2016-11-01", - "subreg": "95", - "hostility_": "Coast Guard", - "victim_d": "Fishing Trawler", - "descriptio": "SOUTH KOREA:On 01 November, South Korea¿s Coast Guard fired live rounds at Chinese trawlers fishing illegally in Korean-controlled waters for the first time. During the early evening hours, three coast guard patrol boats fired M60 machine gun rounds at", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [126.500000000389377, 37.433333300445213] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-274", - "dateofocc": "2017-10-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 20 October, a vessel was attacked in position 03-55N 006-39E, 50 nm south of Port Harcourt. A black speedboat travelling at 25 to 27 knots approached the vessel and fired shots, Navy team on-board returned fire. The boat followed for 25 minute", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.64999999970604, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-275", - "dateofocc": "2017-10-20", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 20 October at 0900Z a vessel was attacked in 03-35N 007-00E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 3.583333299845151] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-276", - "dateofocc": "2017-10-21", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 21 October a vessel was attacked by pirates in 03-52.3N 007-06.6E. Six crew members were reported missing. Vessel and remaining crew are safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.116666700202302, 3.866666699872383] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-331", - "dateofocc": "2017-12-02", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "GHANA:On 02 December, a merchant vessel near position 04-54N 001-42W, Takoradi Anchorage, was boarded by one person with five others waiting in two nearby boats. A fire hose, computer and monitor reported missing. A navy patrol boat was dispatched to the", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-1.699999999619706, 4.89999999987424] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-162", - "dateofocc": "2017-05-24", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "VENEZUELA:On 24 May, six robbers boarded an anchored general cargo ship, near position10-17N 064-42W, near Isla Boraccha, Pozuelos Bay Anchorage, and broke into the forecastle store room. Alert duty crewman noticed the robbers and informed the duty offic", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.699999999858449, 10.2833332999719] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-163", - "dateofocc": "2017-06-01", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "GULF OF OMAN:On 01 June, armed persons attacked the Marshall Islands-flagged tanker NAVIG8 PROVIDENCE near position 23-32N 060-26E, 100 nm east-southeast of Muscat, Oman.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [60.433333300289689, 23.533333299725882] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-164", - "dateofocc": "2017-05-31", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "TAnker", - "descriptio": "GULF OF ADEN:On 31 May, three assailants in a skiff armed with an RPG chased and fired upon a laden Marshall Islands-flagged tanker MUSKIE near position 12-35N 043-25E, near the Bab el Mandeb Strait. Alarm raised and non-essential crew members mustered i", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.41666669966753, 12.583333300136189] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-165", - "dateofocc": "2017-05-27", - "subreg": "63", - "hostility_": "Suspicous Approach", - "victim_d": "Fishing Vessel", - "descriptio": "INDIAN OCEAN:On 27 May, a South Korean fishing boat reported a suspicious approach by an unknown boat approximately 1,440 kilometers southeast of Salalah, Oman, in vicinity05-06N 059-12E. Contact was subsequently lost with the fishing vessel, leading aut", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [59.199999999921602, 5.10000000024047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-166", - "dateofocc": "2017-05-24", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 24 May, two robbers armed with a machete boarded an anchored product tanker near position 01-43N 101-25E, Dumai Anchorage. Alarm raised and crew mustered. The robbers escaped with stolen ship's properties.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [101.416666699744553, 1.716666700207497] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-42", - "dateofocc": "2017-02-19", - "subreg": "92", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "PHILIPPINES:On 19 February, pirates believed to be affiliated with Abu Sayyaf, boarded the Vietnam-flagged cargo ship GIANG HAI, near position 06-09N 119-34E, approximately 35 nm northwest of Doc Can Island. The pirates abducted six crew members and kill", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.649999999763168, 6.150000000139528] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-43", - "dateofocc": "2017-02-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 19 February, armed pirates in a speedboat boarded an underway asphalt tanker near position 05-12N 004-48E, 33 nm west-southwest of Forcados. Alarm was raised, SSAS activated and all crew retreated to the citadel. Incident reported to the IMB P", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.800000000140813, 5.199999999973898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-87", - "dateofocc": "2017-03-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Product Tanker", - "descriptio": "NIGERIA:On 29 March at 1233Z in vicinity 04-00N 004-40E, an underway product tanker was attacked by pirates.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.666666700437816, 3.99999999957538] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-88", - "dateofocc": "2017-03-29", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 29 March at 1305Z a vessel was attacked in 04-09.58N 004-37.18E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.616666699671782, 4.166666699971984] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-89", - "dateofocc": "2017-03-30", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 30 March at 0800Z a bulk carrier was attacked in 04-01N 006-48E. Four persons in a small boat boarded the vessel as it approached the pilot station. Five crew members escaped after being kidnapped by the pirates.UPDATE:On 25 April, five Filipi", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.8000000002055, 4.016666700371843] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-137", - "dateofocc": "2017-05-02", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VENEZUELA:On 02 May, three robbers armed with knives boarded a cement carrier berthed near position 10-14N 064-33W, Berth No.5, Portugalete. Alarm raised and crew mustered. Seeing the crew's alertness, the robbers escaped without stealing anything.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.550000000258308, 10.233333300105187] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-139", - "dateofocc": "2017-04-27", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 27 April, a yacht was tied to a mooring in Luperon Bay, in vicinity 13-09N 061-14W, while the owner went ashore. Vandals released the yacht, removing all lines from it and the mooring. The yacht was seen adrift, an eme", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.233333300164531, 13.150000000365878] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-140", - "dateofocc": "2017-04-08", - "subreg": "25", - "hostility_": "Robber", - "victim_d": "Vessel", - "descriptio": "PUERTO RICO:On 08 April, a robber boarded a yacht moored in Isabel Segunda, in vicinity 18-09N 065-26W, and stole an outboard motor.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.433333299760761, 18.149999999628278] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-141", - "dateofocc": "2017-05-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 03 May at 1706Z, an underway tanker was boarded by robbers in 01-16.6N 103-17.6E. The second engineer noticed five robbers in the engine room. The alarm was raised and the robbers escaped after seeing alerted crew.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.30000000017867, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-142", - "dateofocc": "2017-05-02", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "GULF OF ADEN:On 02 May, a merchant vessel reported a suspicious group of three to four skiffs, green and white hulls with four to five persons in each skiff, in position 12-26N 043-50E, 12 nm off Yemeni coast, near the entrance to Bab el Mandeb Strait.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.833333299572985, 12.433333299636729] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-143", - "dateofocc": "2017-04-25", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SAUDI ARABIA:On 25 April, Saudi Arabia confirmed that Yemen based Houthi rebel forces tried to attack an Armco fuel distribution terminal in Jazan province, in vicinity 17-08N 042-20E, with a remotely controlled boat, filled with explosives. The state ne", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.333333299974129, 17.133333299698791] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-144", - "dateofocc": "2017-05-02", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "BANGLADESH:On 02 May, two robbers boarded a product tanker anchored near position22-13N 091-44E, Chittagong Anchorage. Duty crewman spotted the robbers on the poop deck and informed the duty officer, who raised the alarm. PA announcement made and crew wa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.216666700420831] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-145", - "dateofocc": "2017-05-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 02 May, three robbers boarded a bulk carrier anchored near position 05-57S 106-55E, Tanjung Priok Anchorage, Jakarta. The robbers entered into the engine room, stole ship's engine spares and escaped. Duty crewman noticed the robbers escaping", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [106.916666700372105, -5.949999999981969] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-288", - "dateofocc": "2017-11-03", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "GHANA:On 03 November at 0054Z a vessel was possibly hijacked in 05-59N 001-14E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.233333299814092, 5.983333299742867] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-289", - "dateofocc": "2017-10-29", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "COLOMBIA:On 29 October, duty officers onboard an anchored LPG tanker noticed a small boat near the anchor chain, near position 10-19N 075-31W, Cartagena Inner Anchorage. Alarm was raised. Seeing the crew alertness, the robbers fled with stolen ship's pro", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.516666699745144, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-290", - "dateofocc": "2017-11-01", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 01 November, a merchant vessel was attacked near position 04-03N 007-03E, the vicinity of Port Harcourt. Two pirates boarded the merchant vessel, then left in two speedboats and headed off on a northerly course.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.050000000438445, 4.050000000341413] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-291", - "dateofocc": "2017-10-27", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "SAO TOME AND PRINCIPE:On 27 October, five skiffs approached an underway LPG Tanker near position 00-41N 006-03E, 35 nm northwest of Sao Tome & Principe. Each boat had two persons onboard, wearing green clothing. Alarm was raised, crew was mustered, Maste", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.050000000406101, 0.683333300380866] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-306", - "dateofocc": "2017-11-13", - "subreg": "51", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "CAPE VERDE:On 13 November, three robbers armed with knives, boarded a sailing yacht anchored at Porto da Praia Bay, Ihla de Santiago, in vicinity 38-44N 027-04W and threatened to cut the throats of the crew and owner of the yacht if they did not get all", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-27.066388899716856, 38.733333299677838] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-307", - "dateofocc": "2017-11-10", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 10 November, five to six armed personnel in a blue hulled boat, five to six meters in length, attempted to board a vessel in position 04-15N 005-36E, the vicinity of Pennington Terminal.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [5.599999999806982, 4.249999999808267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-332", - "dateofocc": "2017-12-01", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 01 December, pirates boarded a merchant vessel near 03-24N 006-50E, 57nmsouthwest of Bonny. Nigerian Navy responded.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.83333330017507, 3.40000000027544] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-308", - "dateofocc": "2017-11-10", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 10 November, crewman on routine rounds onboard an LPG Tanker anchored near position 01-28N 104-38E, 14 nm north-northeast of Tanjung Berakit, Pulau Bintan, noticed three unauthorized persons on the poop deck. Alarm raised and crew mustered.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, 1.46666669997461] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-193", - "dateofocc": "2017-07-13", - "subreg": "57", - "hostility_": "Vessel", - "victim_d": "Pirates", - "descriptio": "NIGERIA:On 13 July, six persons in a skiff boarded the underway general cargo ship UAL HOUSTON near position 04-07N 007-00E, 16 nm south-southwest of Bonny. Alarm raised, SSAS activated and all crew retreated to the citadel. Nigerian Navy boarded the ves", - "hostilityt": 4, - "hostilit_D": "Kidnapping", - "victim_l": 13, - "victim_l_D": "Other", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-292", - "dateofocc": "2017-10-29", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 29 October, five robbers with knives in a skiff boarded a tanker underway near position 01-16.7N 104-13.8E, 4 nm south-southeast of the Kampung Sungai Buntu Coast, and entered the engine room. They threatened the duty oiler with a knife and t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.2333333004471, 1.283333299680805] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-293", - "dateofocc": "2017-10-27", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 27 October, a duty crewman watch on board a tanker anchored near position07-51S 109-04E, Cilacap Anchorage, spotted a robber near the emergency generator room. Alarm was raised and crew was mustered. Hearing the alarm, the robber, along with", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [109.066666700036933, -7.85000000031323] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-294", - "dateofocc": "2017-10-27", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 27 October, five robbers armed with knives boarded an anchored product tanker near position 01-27N 104-38E, around 13 nm north-northeast of Tanjung Berakit, Pulau Bintan. Duty crewman on routine rounds spotted the robbers and informed the br", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.633333300280185, 1.450000000077466] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-295", - "dateofocc": "2017-09-30", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 30 September, while approaching an anchored container ship near position14-35N 120-57E, Manila South Port Anchorage, a port authority service boat noticed a small boat with four persons near the bow. As the service boat approached the bow,", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.949999999895113, 14.583333300200877] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-95", - "dateofocc": "2017-04-01", - "subreg": "61", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "SOMALIA:Indian cargo dhow Al KAUSAR with 11 crew enroute form Dubai to Bosaso was hijacked in vicinity 07-58N 049-51E on 01 April. The pirates took the vessel to the Eyl coast of Somalia where they are awaiting ransom payment.UPDATE:The kidnappers took t", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [49.849999999664192, 7.966666699735129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-96", - "dateofocc": "2017-04-03", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 03 April at 0530Z in 13-10N 043-03E, a M/V reported being approached by six light blue skiffs with five persons on each skiff. Ladders and hooks were observed on the skiffs. Vessel raised the alarm and armed guards took positions on the bridge w", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.049999999804015, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-117", - "dateofocc": "2017-04-19", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "NIGERIA:On 19 April at 0934Z, an offshore tug was attacked and boarded by armed pirates in04-06.43N 006-15.34E. Pirates kidnapped eight crew members and escaped. Nigerian Navy has been notified and rescue operations are in progress. One crew member was r", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.249999999872955, 4.100000000208126] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-212", - "dateofocc": "2017-08-13", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 13 August at 2155Z, two robbers attempted to board a moored tanker in05-48.3N 118-04.6E. The robbers failed and port authorities were informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.083333300400341, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-213", - "dateofocc": "2017-08-15", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 15 August at 2050Z, duty crew aboard an anchored container ship in14-33.9N 120-55.6E, noticed two unauthorized persons trying to gain access to the vessel via the hawse pipe. Crew raised the alarm. Robbers escaped in a waiting boat along w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.933333299997912, 14.566666700128451] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-1", - "dateofocc": "2017-01-15", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "LPG Tanker", - "descriptio": "VENEZUELA:On 15 January, two robbers boarded an LPG tanker anchored near position10-12N 064-47W, Jose Anchorage. The robbers took hostage a duty crewman on the forecastle, tied him up and threatened him with a knife. They then removed the hawse pipe cove", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.783333299694732, 10.200000000135617] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-2", - "dateofocc": "2017-01-06", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "DOMINICAN REPUBLIC:On 06 January, a dinghy and a 30 hp outboard motor were stolen from a sailing yacht anchored in Luperon. After a brief search, the dinghy, minus the motor, was found near a nearby beach. Report made to local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-70.950000000285399, 19.900000000359341] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-3", - "dateofocc": "2017-01-16", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "BANGLADESH:On 16 January, robbers, armed with knives boarded an anchored container ship near position 22-06N 091-44E, Chittagong Anchorage. The duty crewman on security watch noticed the robbers and notified the duty officer who raised the alarm, made a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.733333299593198, 22.099999999890883] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-4", - "dateofocc": "2017-01-16", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Product Tanker", - "descriptio": "MALAYSIA:On 16 January, a crewman onboard an anchored product tanker conducting cargo operations near position 05-47N 118-01E, Mowtas Oil Terminal, Sandakan Port, Sabah, observed a robber on the forecastle. Seeing the alert crewman approaching the foreca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.016666699561938, 5.783333300276013] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-248", - "dateofocc": "2017-09-26", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 26 September a tanker was attacked by pirates in 03-48.73N 006-35.96E. The pirates disabled all communication equipment on board. Some crew members reported missing. Nigerian Navy escorted vessel to anchorage.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.599999999839326, 3.816666700005669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-249", - "dateofocc": "2017-08-29", - "subreg": "53", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "LIBYA:On 29 August at 2303Z in 36-02N 013-14E, a tanker was boarded by individuals posing as the Libyan Coast Guard. They detained the tanker and forced the crew to sail to Tripoli. The crew were taken ashore and detained in jail.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "III" - }, - "geometry": { - "type": "Point", - "coordinates": [13.233333300202162, 36.033333299680464] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-250", - "dateofocc": "2017-08-29", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "PANAMA:On 29 August, a thief stole a dinghy and outboard motor from a yacht anchored in Bocas del Toro, in vicinity 09-30N 082-23W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-82.38333330044378, 9.500000000202874] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-251", - "dateofocc": "2017-09-18", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 18 September, a vessel reported it was attacked and boarded near position04-47N 008-18E, vicinity of Parrot Island, Calabar. Four speed boats attacked the vessel and five crew were reportedly abducted. No further details were provided.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [8.299999999804356, 4.783333300243669] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-252", - "dateofocc": "2017-09-14", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 14 September, a supply vessel reported that its security team fired warning shots at a suspicious speedboat as it headed towards their vessel near position 04-16N 007-02E, 9 nm southwest of Bonny Island. The speedboat had hidden behind a trawl", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.033333299641924, 4.266666699705411] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-253", - "dateofocc": "2017-09-19", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 19 September, robbers boarded an anchored bulk carrier during cargo operations near position 20-54N 107-16E, Campha Inner Anchorage. Duty crewman on routine rounds noticed the paint storeroom padlock broken and raised the alarm. Incident repor", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.266666700338419, 20.900000000391685] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-254", - "dateofocc": "2017-09-22", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VENEZUELA:On 22 September, the duty officer onboard a bulk carrier anchored near position10-09N 064-47W, Puerto La Cruz Anchorage, raised the alarm when the duty crewman did not respond to a call on the radio. Crew was mustered and they carried out a sea", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.783333299694732, 10.150000000268903] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-255", - "dateofocc": "2017-09-20", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 20 September, a robber boarded an anchored tanker near position 06-19N 003-22E, Lagos Anchorage. Duty crew noticed the robber and raised the alarm, resulting in the robber escaping empty-handed. Incident reported to the local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.316666699636812] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-256", - "dateofocc": "2017-09-28", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "GULF OF OMAN:On 28 September, a merchant tanker was attacked near position 15-53N 052-20E, 20 nm south of al Gaydah, Yemen. Six persons were reportedly in the boat and they fired on the tanker. Ship and crew are safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.333333300297511, 15.883333300332822] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-333", - "dateofocc": "2017-11-30", - "subreg": "62", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "CAPE VERDE:On 30 November, a Netherlands-flagged sailing yacht anchored in Ihla de Santiago, Porto da Praia Bay, in vicinity 14-54.3N 023-30.3E, was boarded by two men armed with knives and a metal pipe. They spent two hours on the yacht, thoroughly rans", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": null - }, - "geometry": { - "type": "Point", - "coordinates": [23.499999999756312, 14.900000000197679] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-74", - "dateofocc": "2017-03-18", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 18 March, a catamaran anchored at Canouan Charlestown Bay, in vicinity12-42N 061-20E, was boarded at approximately 3 a.m. The Captain awoke and yelled at the individual, who jumped overboard and swam away. Incident rep", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.333333299897959, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-75", - "dateofocc": "2017-03-17", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MARTINIQUE:On 17 March, a sailing yacht anchored in St Anne, in vicinity 14-26N 060-53W, had a tiller extension handle stolen from their dinghy at the main dinghy dock. Incident reported to local police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.88333330019816, 14.433333299701417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-76", - "dateofocc": "2017-03-17", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MARTINIQUE:On 17 March, a sailing yacht anchored at St Anne, in vicinity 14-26N 060-53W, reported that the outboard motor on the dinghy had been stolen from the main dinghy dock. Incident reported to local police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.88333330019816, 14.433333299701417] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-77", - "dateofocc": "2017-03-15", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Sailing Vessel", - "descriptio": "COLOMBIA:On 15 March, a sailing yacht anchored at Isla Baru, in vicinity 10-10N 075-40W, was boarded by four men armed with a gun and a machete. They assaulted the Captain, hitting him with an oar, the machete and the gun. They ransacked the yacht, steal", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.666666700244662, 10.166666700166047] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-334", - "dateofocc": "2017-12-03", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Cargo Vessel", - "descriptio": "PHILIPPINES:On 03 December, during routine security rounds, crewman onboard an anchored container ship near position 14-33N 120-55E, Manila Quarantine Anchorage, noticed the securing cables for the forward lifesaving appliances cut and the life rafts and", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-335", - "dateofocc": "2017-10-25", - "subreg": "71", - "hostility_": "Suspicious Approach", - "victim_d": "Cargo Vessel", - "descriptio": "INDONESIA:On 25 October, an alert crewman onboard a general cargo ship underway near01-03N 103-41E, 1.8 nm northwest of Pulau Cula, noticed four persons onboard a small wooden craft closing in on the stern of the ship. Alarm raised and crew mustered. See", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.683333300114555, 1.050000000244381] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-40", - "dateofocc": "2017-02-12", - "subreg": "62", - "hostility_": "Suspicous Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 12 February, a skiff with six armed persons on board approached a merchant vessel 37 nm south of the town of Haswayn, off Yemen's east coast. The captain of the vessel reported automatic weapons and rocket-propelled grenades on board the skiff.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.099999999961767, 14.999999999931106] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-41", - "dateofocc": "2017-02-14", - "subreg": "94", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "CHINA:On 14 February, four robbers boarded an anchored bulk carrier near position38-52N 119-10E, Jingtang Anchorage, and tried to open the port side Marine Diesel Oil manhole. Duty officer raised the alarm and SSAS Alert was activated. Seeing the crew al", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.166666700093742, 38.866666700104929] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-279", - "dateofocc": "2016-11-16", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "PERU:On 16 November at 1940 LT in 12-02.5S 077-08.9W, two robbers armed with knives boarded a berthed bulk carrier. The robbers threatened the duty crew with the knives. the alarm was raised and crew alerted. The robbers escaped with stolen ship property", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XVI" - }, - "geometry": { - "type": "Point", - "coordinates": [-77.149999999946317, -12.033333300012316] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-280", - "dateofocc": "2016-11-19", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 19 November at 0240 LT vicinity 00-16N 117-37E, at Muara Berau anchorage, robbers with knives were seen stealing ship's stores. Duty crew aboard the anchored bulk carrier noticed the forecastle store door open with padlock broken. The alarm", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.616666699728853, -0.266666699784764] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-281", - "dateofocc": "2016-11-16", - "subreg": "72", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "PHILIPPINES:On 16 November at 1100 LT in 04-23N 119-37E, five persons wearing masks in a white speed boat approached an underway vessel from astern. Master raised alarm and tried alerting other ships in area. Seeing the alerted crew, the boat moved away", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.616666699793541, 4.383333300410584] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-282", - "dateofocc": "2016-11-19", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "MALAYSIA:On 19 November at 1930 LT in 04-49N 118-46E, five armed persons wearing masks boarded a fishing vessel. They stole personal belongings and an outboard engine. Before escaping, they kidnapped two crew members. Malaysian authorities are investigat", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.766666700260657, 4.816666700037956] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-283", - "dateofocc": "2016-11-20", - "subreg": "92", - "hostility_": "Suspicious Approach", - "victim_d": "Bulk Carrier", - "descriptio": "PHILIPPINES:On 20 November at 0720 LT in 05-34.8N 119-47.9E, persons armed with guns approached an underway bulk carrier from the stern. Master raised the alarm, started evasive maneuvers, alerted ships in the area and opened communications with Philippi", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [119.800000000262571, 5.583333299909839] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-284", - "dateofocc": "2016-11-23", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "VIETNAM:On 23 November at 0150 LT in 10-15.6N 107-00.2E, at Vung Tau anchorage, duty crew noticed a fishing boat slowly approaching the vessel. The boat circled and then stopped near the bow. Another boat had come alongside near accommodation ladder. Two", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.000000000208388, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-312", - "dateofocc": "2016-12-13", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Offshore Supply Vessel", - "descriptio": "NIGERIA:On 13 December, bandits attacked the offshore supply vessel CHILOSCO near position 03-45N 006-10E, 29 nm south of Brass.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.166666700036672, 3.750000000241755] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-313", - "dateofocc": "2016-12-10", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 10 December, the product tanker SOCHIMA was attacked by pirates in Gulf of Guinea, 40 nautical miles south of Brass, Nigeria. The vessel was approached by speedboat with armed men, who tried to board the vessel and take control. The Nigeria Na", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.249999999872955, 3.733333300344611] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-314", - "dateofocc": "2016-12-08", - "subreg": "72", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "MALAYSIA:On 08 December, security forces shot and killed three gunmen in a firefight during a kidnapping attempt in Darvel Bay, vicinity 04-48N 118-39E. A police spokesman confirmed that there was a shootout between security forces and the armed group, a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.649999999730767, 4.800000000140813] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-315", - "dateofocc": "2016-12-05", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "PHILIPPINES:On 05 December, three Indonesian fishermen were kidnapped near the Philippine island of Labuan, in vicinity 05-16.8N 115-12.7E. All three fishermen were reportedly released unhurt the following day, and it is believed that the owner of the Sa", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [115.21666669983108, 5.283333299810181] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-105", - "dateofocc": "2017-04-09", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 09 April at 0315Z in 14-20N 053-11E, a vessel reported a suspicious approach. The vessel approached to a distance of 1NM from the bow with an additional four skiffs on the starboard beam at a distance of 0.5NM. Four persons were spotted on each", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [53.183333299830394, 14.333333299967933] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-136", - "dateofocc": "2017-05-03", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 03 May in 13-10N 049-18E, a group of nine skiffs with black and white hulls approached a vessel. After the skiffs surrounded the vessel at 0.6NM, the vessel fired two warning shots and the skiffs moved away.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [49.300000000230966, 13.166666700263022] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-93", - "dateofocc": "2017-03-22", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "MOZAMBIQUE:On 22 March, duty crew on routine rounds onboard a bulk carrier anchored near position 19-48S 034-50E, Berth No 6, Port of Beira, noticed two robbers armed with knives on the poop deck. Chief Officer informed via radio. Crew mustered and then", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "VII" - }, - "geometry": { - "type": "Point", - "coordinates": [34.833333300181266, -19.799999999935267] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-296", - "dateofocc": "2017-11-11", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 11 November, armed pirates boarded the drifting bulk carrier VENUS BAY near position 04-07N 006-59E, 17nm south-southwest of Bonny Island. They entered the bridge and fired their weapons damaging the bridge windows. The pirates stole ship's pr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.983333299775211, 4.11666670010527] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-199", - "dateofocc": "2017-07-25", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 25 July at 1230Z, a vessel was approached by nine white skiffs with ten persons in each skiff, in 14-53N 042-27E. The skiffs closed to two cables and ladders were sighted. The armed security presence deterred the skiffs. The vessel is currently", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.449999999604756, 14.883333300300478] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2016-235", - "dateofocc": "2016-10-01", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT LUCIA:On 1 October, a dinghy was stolen overnight from a sailing yacht anchored in Rodney Bay, vicinity 14-05.9N 060-57.8W. After the owner posted a reward for safe return of the vessel, the dinghy was returned without the fuel tank and a pair of f", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.966666699859161, 14.083333299735045] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-298", - "dateofocc": "2017-10-25", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "SAINT LUCIA:On 25 October, a chartered catamaran was boarded by 4 men in Soufriere, in vicinity13-51N 061-03W. Two of the men were armed with guns, and one with a knife, all had their faces concealed. The men made many threats and a short struggle ensued", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.049999999695444, 13.850000000298621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-299", - "dateofocc": "2017-11-08", - "subreg": "62", - "hostility_": "Suspicous Approach", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 08 November, a merchant vessel reported a suspicious approach by two skiffs near position 12-30N 043-37E, near Mayyun Island. Seven persons were sighted in each skiff, both of which closed to within 100 meters of the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.616666700033704, 12.500000000299906] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-300", - "dateofocc": "2017-11-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 07 November, robbers armed with knives boarded a bulk carrier underway near position 02-53N 105-17E, 21 nm southwest of Pulau Mangkai, Kepulauan Anambas. They threatened the crew with the knives, stole ship's properties, cash and crew person", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [105.283333300346158, 2.883333299912408] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-301", - "dateofocc": "2017-11-03", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "INDONESIA:On 03 November, two robbers armed with knives and sticks boarded a bulk carrier anchored near position 00-15S 117-34E, Muara Berau Anchorage, Samarinda, during cargo operations. They threatened a duty crewman and duty officer with knives, stole", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [117.566666699862139, -0.249999999887564] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-302", - "dateofocc": "2017-11-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "INDONESIA:On 03 November, three robbers armed with knives in a small wooden boat boarded an anchored offshore supply ship near position 01-11N 103-59E, Batu Ampar Anchorage, Batam. Duty crewman on routine rounds noticed the robbers and shouted at them re", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.983333300214213, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-303", - "dateofocc": "2017-11-03", - "subreg": "63", - "hostility_": "Robbers", - "victim_d": "Barge", - "descriptio": "BANGLADESH:On 03 November, a robber armed with a knife boarded a barge under tow near position 22-02N 091-48E, Kutubdia Anchorage. The master switched on the search light and directed it towards the barge and notified port control and the Coast Guard. Se", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 2, - "victim_l_D": "Barge", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [91.800000000256432, 22.033333300127026] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-90", - "dateofocc": "2017-03-28", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "COLOMBIA:On 28 March at 0845Z in 10-19.3N 075-32.1W, an anchored tanker was boarded by pirates. The alarm was raised and crew mustered. Seeing the alerted crew, the robbers escaped with stolen ship's property.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-75.533333299817571, 10.316666699766188] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-91", - "dateofocc": "2017-03-25", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MARTINIQUE:On 25 March, one robber boarded a catamaran anchored in the Le Marin Marina. The robber went into the cockpit area of the yacht, saw the astonished and concerned crew looking at him, whereupon the robber sat down and stared back at the crew fo", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.866666700125734, 14.466666700395024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-92", - "dateofocc": "2017-03-18", - "subreg": "28", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "GUATEMALA:On 18 March, an unknown number of robbers boarded a sailing yacht anchored in Shell Bay Anchorage, Rio Dulce, in vicinity 15-55N 088-43W. They were able to steal electric tools, anchor line and electronics and escape. Incident announced on loca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-88.716666699632469, 15.916666700127166] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-94", - "dateofocc": "2017-03-26", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 26 March, duty crew onboard a tanker anchored near position 13-43N 121-02E, Batangas Anchorage, noticed a robber on the forecastle as he approached during routine rounds. The robber threatened the crewman with a knife, resulting in the dut", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.033333299731339, 13.716666699696304] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-134", - "dateofocc": "2017-04-28", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Offshore Support Vessel", - "descriptio": "GUYANA:On 28 April at 0620Z, robbers were discovered on a seismic support vessel, in06-49.4N 058-10.2W, Georgetown anchorage. Duty officer on rounds noticed a boat alongside the vessel and raised the alarm. Seeing the alerted crew, the robbers were seen", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 6, - "victim_l_D": "Offshore Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-58.16666670012836, 6.816666700102644] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-135", - "dateofocc": "2017-04-29", - "subreg": "57", - "hostility_": "Mothership Activity", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 29 April in 03-15N 007-00E, a suspected pirate mother vessel was observed in the Gulf of Guinea. Vessel was reported as being a supply vessel type around 60-80 meters in length with a white hull.", - "hostilityt": 6, - "hostilit_D": "Other", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 3.249999999775923] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-173", - "dateofocc": "2017-05-28", - "subreg": "62", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 14 June, suspected Shiite Huthi rebels fired a missile at a Saudi-led coalition warship off Mocha, Yemen, in vicinity 13-19N 043-15E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.250000000170189, 13.316666699863219] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-174", - "dateofocc": "2017-06-14", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "PHILIPPINES:On 14 June, a robber boarded an anchored tanker via the hawse pipe near position13-44N 121-01E, Batangas Inner Anchorage. The robber stole ship's properties and escaped unnoticed. The theft was discovered by duty crew during routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [121.016666699658913, 13.733333299768674] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-175", - "dateofocc": "2017-06-13", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Research Vessel", - "descriptio": "INDONESIA:On 13 June, robbers boarded a research vessel anchored near position 00-45N 104-08E, Galang Layup Anchorage, stole ship's equipment and escaped unnoticed. The theft was noticed in the morning during routine rounds. Incident reported to the loca", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.133333299814353, 0.750000000144723] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-176", - "dateofocc": "2017-06-07", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 07 June, two robbers boarded a tanker, at anchor, near position 01-21N 104-36E,8 nm north of Tg Berakit, Bintan Island. They threatened the duty crewman with a knife, took his radio and held him hostage. They then entered the engine room thr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.600000000310615, 1.350000000344039] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-177", - "dateofocc": "2017-06-03", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "INDONESIA:On 03 June, eight robbers boarded M/V HARVESTER while at anchor near buoy no. 2, Belawan Port. The robbers tied up members of the crew and stole seven 25 liter cans of paint. The following day, members of the Western Fleet Quick Response (WFQR)", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [98.683333299952892, 3.783333300211325] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-225", - "dateofocc": "2017-08-10", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 10 August, a merchant vessel sighted seven skiffs in the vicinity of 13-12N 042-58E, 16 nm southeast of Mocha Port. Two of the skiffs closed to 1 cable then withdrew. Vessel and crew are reported to be safe.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.966666699967732, 13.200000000232592] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-226", - "dateofocc": "2017-08-15", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "PHILIPPINES:On 15 August, an alert duty crewman on security rounds onboard a container ship anchored near position 14-33N 120-55E, Manila South Harbor Anchorage, noticed two persons inside the starboard hawse pipe trying to open the cover and gain access", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.550000000231307] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-227", - "dateofocc": "2017-08-13", - "subreg": "72", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "MALAYSIA:On 13 August, two robbers attempted to board a berthed tanker near position05-48N 118-04E, Sandakan Port, but failed in their attempt. Port authorities informed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [118.066666700328028, 5.800000000173156] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-60", - "dateofocc": "2017-03-10", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:Vessel attacked in 03-03N 006-57E on 10 March at 0630Z.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.949999999805641, 3.050000000309069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-61", - "dateofocc": "2017-03-09", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "YEMEN:Vessel reported being approached in 13-52N 050-20E on 09 March at 0845Z. Two mother vessels deployed four skiffs that approached the vessel. The vessel showed weapons and the skiffs retreated. Vessel reported safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.33333330023288, 13.866666700195765] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-146", - "dateofocc": "2017-05-07", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "IRAN:On 07 May at 1440Z, a vessel was attacked in 25-32N 057-33E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [57.549999999823285, 25.53333329979057] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-73", - "dateofocc": "2017-03-10", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "YEMEN:On 10 March, a Yemen Coast Guard vessel struck a mine in waters of the southern Red Sea, in vicinity 13-46N 042-13E, killing eight sailors and wounding eight others, including the vessel's captain.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [42.216666700168275, 13.766666699563018] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-257", - "dateofocc": "2017-10-12", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "MALAYSIA:On October 12 at 0020Z, five persons in two wooden boats boarded an unmanned rig that was being towed in vicinity 01-11.1N 103-33.6E. Tug master raised the alarm and notified local authorities. Vessel and crew reported safe.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [103.566666700308701, 1.183333299947378] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-258", - "dateofocc": "2017-10-06", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "SOMALIA:On 06 October at 0700Z, two white skiffs with ladders approached a vessel in13-13N 050-30E. They approached to within 1.2NM and turned away. Crew and vessel are safe.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [50.499999999730164, 13.216666700129792] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-259", - "dateofocc": "2017-10-02", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 02 October at 1815Z, a vessel was attacked in 04-17.4N 007-04.0E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.066666700335588, 4.283333299777837] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-260", - "dateofocc": "2017-09-29", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "VENEZUELA:On 29 September, duty crewman onboard a tanker anchored near position10-16N 064-42W, Puerto La Cruz Anchorage, spotted two robbers armed with knives on the poop deck and immediately informed the duty officer. Alarm was raised, PA announcement w", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-64.699999999858449, 10.266666699899474] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-261", - "dateofocc": "2017-09-26", - "subreg": "26", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "HAITI:On 26 September, three robbers attempted to board an anchored tanker via the hawse pipe near position 18-34N 072-24W, Port Au Prince Anchorage. Duty crewman saw the robbers and raised the alarm, resulting in the robbers escaping empty-handed.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-72.400000000017542, 18.566666700257827] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-262", - "dateofocc": "2017-09-16", - "subreg": "24", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "CURACAO:On 16 September, an in the water dinghy with outboard motor was stolen from a yacht anchored in Spanish Water, in vicinity 12-08N 069-02W.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-69.033333300057052, 12.133333300436391] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-263", - "dateofocc": "2017-10-02", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 02 October, gunmen abducted three crew members and stole personal belongings after boarding a Panama-flagged tanker 34 nm southeast of Brass, in vicinity03-55N 006-36E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.599999999839326, 3.916666699739096] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-264", - "dateofocc": "2017-09-28", - "subreg": "61", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "TANZANIA:On 28 September, five armed robbers boarded a vessel near position 06-46S 039-21E, Dar es Salaam Anchorage, tied up a crew member before stealing a VHF radio and various items of cargo.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "VIII" - }, - "geometry": { - "type": "Point", - "coordinates": [39.349999999774298, -6.766666700444603] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-265", - "dateofocc": "2017-09-30", - "subreg": "71", - "hostility_": "Pirates", - "victim_d": "Tug", - "descriptio": "INDONESIA:On 30 September, the Indonesian Navy's Western Fleet Quick Response Unit arrested 15 suspected pirates in the Singapore Strait following a tip-off by Singapore authorities. The alleged pirates were in six wooden boats when they were arrested. A", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 10, - "victim_l_D": "Tugboat", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.883333299613753, 0.51666669980898] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-228", - "dateofocc": "2017-08-09", - "subreg": "91", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "PHILIPPINES:On 09 August, robbers boarded a container ship anchored near position 14-32N 120-55E, Manila Anchorage. The robbers entered the forecastle store room. Security guard on routine rounds noticed the robbers and raised the alarm. Seeing the alert", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [120.916666699925486, 14.533333300334164] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-229", - "dateofocc": "2017-08-27", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "GRENADA:On 27 August, an unoccupied catamaran was boarded while anchored in Mt. Hartman Bay, in vicinity 12-00N 061-45W. The break-in was discovered the next morning by the care taker. The thieves broke the door lock and thoroughly ransacked the interior", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.749999999628187, 11.999999999834074] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-230", - "dateofocc": "2017-08-22", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "MARTINIQUE:On 22 August, a thief stole a dinghy and outboard motor from a yacht anchored in Le Marin, in vicinity 14-28N 060-53W. Incident reported to the marina and on the local VHF.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-60.88333330019816, 14.466666700395024] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-231", - "dateofocc": "2017-08-07", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Fishing Vessel", - "descriptio": "GUYANA:During the week of 07 August, pirates attacked four fishing vessels in the Waini River, in vicinity 08-25N 059-50W. The masked gunmen also stole one of the vessels named ¿PRIYA 2¿ after dumping its workers onto another vessel that was in the are", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 4, - "victim_l_D": "Fishing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-59.833333300299103, 8.416666700334247] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-232", - "dateofocc": "2017-08-28", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 28 August, unknown gunmen, suspected to be militants, attacked a Navy boat and killed four soldiers and a civilian in Bayelsa State, in vicinity 04-13N 006-08E. The suspects were said to have laid an ambush for the soldiers along the waterways", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.133333300242384, 4.216666699838697] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-233", - "dateofocc": "2017-08-28", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "RED SEA:On 28 August in position 13-00N 043-10E a merchant vessel reported sighting four skiffs with five to six persons in each boat. Vessel reported seeing one ladder onboard two of the skiffs, no weapons were sighted. The skiffs did not approach any c", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [43.166666700333906, 12.999999999866418] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-203", - "dateofocc": "2017-07-31", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 31 July at 1750Z, a tanker was attacked by pirates in 04-07.5N 007-00.0E. The pirates stole personal belongings and three crew members were reported missing.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.999999999672355, 4.133333300177696] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-208", - "dateofocc": "2017-08-05", - "subreg": "22", - "hostility_": "Robbers", - "victim_d": "Container Vessel", - "descriptio": "ECUADOR:On 05 August, robbers, unnoticed by the crew, boarded a berthed container ship near position 01-00N 079-39W, Esmeraldas Port. The thieves stole brass sounding pipe covers and escaped. The theft was noticed by duty crew on routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "XII" - }, - "geometry": { - "type": "Point", - "coordinates": [-79.649999999577517, 1.000000000377668] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-209", - "dateofocc": "2017-08-07", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 07 August, a duty crewman onboard a tanker berthed near position 06-27N 003-22E, Folawiyo Terminal, Apapa, Lagos, noticed two robbers trying to insert a flexible hose into a cargo tank. He immediately informed the duty officer who raised the a", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [3.366666700305871, 6.450000000239129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-210", - "dateofocc": "2017-08-03", - "subreg": "51", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "MAURITANIA:On 03 August, a merchant vessel was approached near position 16-48N 016-51W, approximately 30 nm from Mauritania, by a small vessel claiming to be Mauritanian Navy which requested the MV to stop or they would open fire. Evasive maneuvering com", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [-16.849999999704949, 16.799999999629563] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-211", - "dateofocc": "2017-08-02", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 02 August, an unnoticed robber boarded a tanker anchored near position01-24N 104-33E, 10 nm north of Tanjung Berakit, Pulau Bintan, stole ship's properties and escaped. The theft was noticed by the deck crew the following day.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.550000000443902, 1.400000000210753] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-279", - "dateofocc": "2017-10-25", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 25 October, armed pirates from a speed boat boarded an underway crude oil tanker near 03-35N 006-49E, 51 nm south-southwest of Bonny Island. The 23 crew transferred control to, and retreated into the citadel and contacted the owners for help.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.816666700102644, 3.599999999742295] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-280", - "dateofocc": "2017-11-01", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 01 November at 0925Z a vessel was attacked in 04-05N 007-04E.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [7.066666700335588, 4.083333300310983] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-313", - "dateofocc": "2017-11-28", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Vessel", - "descriptio": "NIGERIA:On 28 November at 0445Z a vessel was approached in 06-02N 001-18E.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [1.299999999577949, 6.033333299609581] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-314", - "dateofocc": "2017-11-26", - "subreg": "71", - "hostility_": "Robbers", - "victim_d": "Tanker", - "descriptio": "INDONESIA:On 26 November an anchored product tanker noticed two damaged padlocks during routine rounds. Crew mustered and search was carried out with nothing being found stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [104.683333300146899, 1.416666700107896] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-11", - "dateofocc": "2017-12-28", - "subreg": "24", - "hostility_": "Pirates", - "victim_d": "Sailing Vessel", - "descriptio": "VENEZUELA:On 28 December, a monohull sailing yacht with 2 persons onboard departed Puerto La Cruz, Venezuela for Grenada. During the mid-morning hours, 2 miles off the Paria Peninsula in vicinity 10-42N 062-30W, and approximately 10 miles east of Cabo Tr", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-62.500000000326907, 10.699999999702129] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-106", - "dateofocc": "2017-04-05", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MARTINIQUE:On 05 April, robbers boarded a sailing yacht berthed at the long main dock in Port de France, vicinity 14-36N 061-05W. An outboard motor fuel tank was reported stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.083333299665014, 14.600000000098021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-107", - "dateofocc": "2017-04-02", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "MARTINIQUE:On 02 April, robbers boarded a sailing yacht berthed at the long main dock in Port de France, vicinity 14-36N 061-05W. An outboard motor fuel tank was reported stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.083333299665014, 14.600000000098021] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-108", - "dateofocc": "2017-04-01", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 01 April, a robber boarded a sailing yacht anchored in Charlestown Bay, vicinity12-42N 061-20W. All yacht entrances were locked and equipment stowed inside, nothing was stolen.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.333333299897959, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-109", - "dateofocc": "2017-03-28", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "SAINT VINCENT AND THE GRENADINES:On 28 March, two robbers boarded a sailing yacht anchored in Charlestown Bay, vicinity12-42N 061-20W. The yacht owner succeeded in scaring away the robbers and nothing was stolen. Report made to local authorities.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.333333299897959, 12.69999999976676] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-110", - "dateofocc": "2017-04-07", - "subreg": "57", - "hostility_": "Robbers", - "victim_d": "Bulk Carrier", - "descriptio": "ANGOLA:On 07 April, duty crewman on routine rounds onboard a bulk carrier anchored near position 05-52S 013-02E, Congo River, noticed six robbers on the forecastle and informed the duty officer on the bridge. Alarm was raised and ships whistle sounded. S", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [13.033333299835988, -5.866666700145686] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-111", - "dateofocc": "2017-04-08", - "subreg": "62", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "GULF OF ADEN:On 08 April, a suspicious skiff with three persons on board approached an underway tanker near position 14-09N 051-37E, approximately 140 nm northwest of Socotra Island. Alarm was raised, crew alerted and onboard security guard showed weapon", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [51.616666700292399, 14.150000000398222] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-112", - "dateofocc": "2017-04-14", - "subreg": "62", - "hostility_": "Pirates", - "victim_d": "Vessel", - "descriptio": "ARABIAN SEA:On 14 April at 0652Z a vessel was approached by pirates in 15-55.5N 052-20.7E. The small vessel had six to seven persons on board who fired shots and attempted to board the vessel several times but failed. The small boat deaparted the area an", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IX" - }, - "geometry": { - "type": "Point", - "coordinates": [52.350000000194711, 15.933333300199536] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2018-31", - "dateofocc": "2018-01-01", - "subreg": "93", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "VIETNAM:On 01 January, a robber boarded an anchored vessel during cargo operations in vicinity20-57N 107-19E, Cam Pha Loading Anchorage, and escape with stolen ship properties. The theft was noticed by crew on routine rounds.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "XI" - }, - "geometry": { - "type": "Point", - "coordinates": [107.316666700205133, 20.950000000258399] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-69", - "dateofocc": "2017-03-13", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Sailing Vessel", - "descriptio": "PUERTO RICO:On 13 March, a dinghy and outboard motor were stolen from a sailing yacht anchored in Vieques, vicinity 18-07N 065-25W. The outboard was removed and the dinghy set adrift. Dinghy ended up beating against the rocks and was found unsalvageable", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 8, - "victim_l_D": "Sailing Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-65.416666699688335, 18.116666699658708] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-70", - "dateofocc": "2017-03-12", - "subreg": "25", - "hostility_": "Robbers", - "victim_d": "Vessel", - "descriptio": "ST LUCIA:On 12 March, thieves boarded an unlocked yacht anchored in Soufriere, vicinity13-51N 061-03W, while crew was ashore for the evening. Cash, cellphones and computers were taken. A report was made to the police.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 11, - "victim_l_D": "Vessel", - "navarea": "IV" - }, - "geometry": { - "type": "Point", - "coordinates": [-61.049999999695444, 13.850000000298621] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-71", - "dateofocc": "2017-03-10", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "LNG Tanker", - "descriptio": "NIGERIA:On 10 March a speed boat carrying armed men attacked and attempted to board LNG tanker LA MANCHA KNUTSEN near position 03-03N 006-57E, approximately 90 nm south of Port Harcourt. When the attack started, vessel activated its security alert system", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.949999999805641, 3.050000000309069] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-72", - "dateofocc": "2017-03-08", - "subreg": "57", - "hostility_": "Pirates", - "victim_d": "Bulk Carrier", - "descriptio": "NIGERIA:On 08 March, the bulk carrier SOFIA was near position 03-20N 004-29E 120 nm southwest of Brass, Bayelsa State while en route from Lagos to Owendo Anchorage, Libreville, Gabon when seven armed persons in a skiff approached and fired upon the ship.", - "hostilityt": 1, - "hostilit_D": "Pirate Assault", - "victim_l": 3, - "victim_l_D": "Cargo Ship", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [4.483333300144011, 3.333333299612207] - } - }, - { - "type": "Feature", - "properties": { - "reference": "2017-312", - "dateofocc": "2017-11-16", - "subreg": "57", - "hostility_": "Suspicious Approach", - "victim_d": "Tanker", - "descriptio": "NIGERIA:On 16 November at 0945Z a tanker was approached by a speed boat with seven persons on board in 03-30.6N 006-45.9E. As the boat closed to 300 meters, the tanker performed evasive maneuvers to escape the vessel.", - "hostilityt": 3, - "hostilit_D": "Suspicious Approach", - "victim_l": 9, - "victim_l_D": "Tanker", - "navarea": "II" - }, - "geometry": { - "type": "Point", - "coordinates": [6.76666670023593, 3.516666699906011] - } - } - ] -} diff --git a/examples/pirates.jGIS b/examples/pirates.jGIS deleted file mode 100644 index 45bfaeb2a..000000000 --- a/examples/pirates.jGIS +++ /dev/null @@ -1,83 +0,0 @@ -{ - "layerTree": [ - "d793fed9-f3f8-4e2f-bfca-b01d7f5a91eb", - "e7127387-d529-4f1a-9187-dda676b69b78" - ], - "layers": { - "d793fed9-f3f8-4e2f-bfca-b01d7f5a91eb": { - "name": "OpenStreetMap.Mapnik Layer", - "parameters": { - "source": "9cb7ef3b-e831-4dec-9baa-5a000ff3bb98" - }, - "type": "RasterLayer", - "visible": true - }, - "e7127387-d529-4f1a-9187-dda676b69b78": { - "filters": { - "appliedFilters": [ - { - "feature": "convertedsubreg", - "operator": ">=", - "value": 1356825600000.0 - } - ], - "logicalOp": "all" - }, - "name": "Custom GeoJSON Layer", - "parameters": { - "color": { - "circle-fill-color": "#f66151", - "circle-radius": 5.0, - "circle-stroke-color": "#3399CC", - "circle-stroke-line-cap": "round", - "circle-stroke-line-join": "round", - "circle-stroke-width": 1.25 - }, - "opacity": 1.0, - "source": "f5967740-f35c-4a9f-a721-67b798496398", - "symbologyState": { - "renderType": "Single Symbol" - }, - "type": "circle" - }, - "type": "VectorLayer", - "visible": true - } - }, - "metadata": {}, - "options": { - "bearing": 0.0, - "extent": [ - -19118720.268355727, - -12812863.718760101, - -1222492.139435364, - 12812863.718760109 - ], - "latitude": 4.263256414560601e-14, - "longitude": -91.36411001720195, - "pitch": 0.0, - "projection": "EPSG:3857", - "zoom": 2.1686721181322306 - }, - "sources": { - "9cb7ef3b-e831-4dec-9baa-5a000ff3bb98": { - "name": "OpenStreetMap.Mapnik", - "parameters": { - "attribution": "(C) OpenStreetMap contributors", - "maxZoom": 19.0, - "minZoom": 0.0, - "provider": "OpenStreetMap", - "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", - "urlParameters": {} - }, - "type": "RasterSource" - }, - "f5967740-f35c-4a9f-a721-67b798496398": { - "name": "Custom GeoJSON Layer Source", - "parameters": { - "path": "../../examples/pirates.geojson" - }, - "type": "GeoJSONSource" - } - } -} diff --git a/examples/time_test.jGIS b/examples/time_test.jGIS deleted file mode 100644 index 034c4fac1..000000000 --- a/examples/time_test.jGIS +++ /dev/null @@ -1,99 +0,0 @@ -{ - "layerTree": [ - "8de7c2c0-6024-4716-b542-031a89fb87f9", - "3e21d680-406f-4099-bd9e-3a4edb9a2c8b", - "00d18d9e-fe3d-4fd2-8bbd-fa50cb4e87d8" - ], - "layers": { - "00d18d9e-fe3d-4fd2-8bbd-fa50cb4e87d8": { - "filters": { - "appliedFilters": [], - "logicalOp": "all" - }, - "name": "pirates", - "parameters": { - "opacity": 1.0, - "source": "3a2d852f-8fd3-4acb-90e7-154e9f53558c", - "type": "circle" - }, - "type": "VectorLayer", - "visible": false - }, - "3e21d680-406f-4099-bd9e-3a4edb9a2c8b": { - "filters": { - "appliedFilters": [], - "logicalOp": "all" - }, - "name": "earthquakes", - "parameters": { - "color": { - "circle-fill-color": "#3584e4", - "circle-radius": 5.0, - "circle-stroke-color": "#62a0ea", - "circle-stroke-line-cap": "round", - "circle-stroke-line-join": "round", - "circle-stroke-width": 1.25 - }, - "opacity": 1.0, - "source": "348d85fa-3a71-447f-8a64-e283ec47cc7c", - "symbologyState": { - "renderType": "Single Symbol" - }, - "type": "circle" - }, - "type": "VectorLayer", - "visible": true - }, - "8de7c2c0-6024-4716-b542-031a89fb87f9": { - "name": "OpenStreetMap.Mapnik Layer", - "parameters": { - "source": "b2ea427a-a51b-43ad-ae72-02cd900736d5" - }, - "type": "RasterLayer", - "visible": true - } - }, - "metadata": {}, - "options": { - "bearing": 0.0, - "extent": [ - 4411741.095920008, - -7226144.228711288, - 20843337.516080517, - 16086786.11300372 - ], - "latitude": 36.93694189913924, - "longitude": 113.4351155940005, - "pitch": 0.0, - "projection": "EPSG:3857", - "zoom": 2.28340994912359 - }, - "sources": { - "348d85fa-3a71-447f-8a64-e283ec47cc7c": { - "name": "Custom GeoJSON Layer Source", - "parameters": { - "path": "../../examples/eq.json" - }, - "type": "GeoJSONSource" - }, - "3a2d852f-8fd3-4acb-90e7-154e9f53558c": { - "name": "Custom GeoJSON Layer Source", - "parameters": { - "path": "../../examples/pirates.geojson" - }, - "type": "GeoJSONSource" - }, - "b2ea427a-a51b-43ad-ae72-02cd900736d5": { - "name": "OpenStreetMap.Mapnik", - "parameters": { - "attribution": "(C) OpenStreetMap contributors", - "maxZoom": 19.0, - "minZoom": 0.0, - "provider": "OpenStreetMap", - "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", - "urlParameters": {} - }, - "type": "RasterSource" - } - } -} From 3f46642137508db05e7f03c5ef7acdc9ca35184a Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 11:23:19 +0100 Subject: [PATCH 32/59] Fix layer selecting --- packages/base/src/mainview/TemporalSlider.tsx | 42 ++++++++++++++----- 1 file changed, 31 insertions(+), 11 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 6d520a5f5..31878f86a 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -51,29 +51,50 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [currentValue, setCurrentValue] = useState(0); const [fps, setFps] = useState(1); + const layerIdRef = useRef(''); const intervalRef = useRef(null); const { featureProperties } = useGetProperties({ layerId, model }); useEffect(() => { - const localState = model.sharedModel.awareness.getLocalState(); - const selectedLayer = localState?.selected?.value; + const handleClientStateChanged = () => { + if (!model.localState?.selected?.value) { + return; + } - if (!selectedLayer) { - console.warn('Layer must be selected to use identify tool'); - return; - } + const selectedLayerId = Object.keys(model.localState.selected.value)[0]; + + // reset + if (selectedLayerId !== layerIdRef.current) { + setSelectedFeature(''); + setRange({ start: 0, end: 1 }); + setMinMax({ min: 0, max: 1 }); + setValidFeatures([]); + setInferredDateFormat('yyyy-MM-dd'); + setStep(stepMap.year); + setCurrentValue(0); + setFps(1); + setLayerId(selectedLayerId); + } + }; + + // Initial state + handleClientStateChanged(); - const selectedLayerId = Object.keys(selectedLayer)[0]; - setLayerId(selectedLayerId); + model.clientStateChanged.connect(handleClientStateChanged); return () => { + model.clientStateChanged.disconnect(handleClientStateChanged); if (intervalRef.current) { clearInterval(intervalRef.current); } }; }, []); + useEffect(() => { + layerIdRef.current = layerId; + }, [layerId]); + useEffect(() => { const featuresForSelect = []; @@ -156,7 +177,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; // Convert milliseconds back to the original date string format - // TODO I'm pretty sure this ends up in local time, not UTC time const millisecondsToDateString = ( milliseconds: number, dateFormat: string @@ -243,7 +263,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return (
- {layerId ? ( + {layerId && validFeatures.length > 0 ? ( <>
{/* Feature select */} @@ -349,7 +369,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => {
) : ( -
Select a layer
+
Select a vector layer
)}
); From a8256f62ac461e84f91129b9b099d0dcad6f44b7 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 11:48:25 +0100 Subject: [PATCH 33/59] Only display steps that make sense --- packages/base/src/mainview/TemporalSlider.tsx | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 31878f86a..18b8d2652 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -1,7 +1,7 @@ import { faPause, faPlay } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Button, Slider } from '@jupyter/react-components'; -import { IJupyterGISModel } from '@jupytergis/schema'; +import { IDict, IJupyterGISModel } from '@jupytergis/schema'; import { format, isValid, parse, toDate } from 'date-fns'; import { daysInYear, @@ -50,6 +50,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [step, setStep] = useState(stepMap.year); const [currentValue, setCurrentValue] = useState(0); const [fps, setFps] = useState(1); + const [validSteps, setValidSteps] = useState({}); const layerIdRef = useRef(''); const intervalRef = useRef(null); @@ -74,6 +75,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { setStep(stepMap.year); setCurrentValue(0); setFps(1); + setValidSteps({}); setLayerId(selectedLayerId); } }; @@ -158,10 +160,16 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const min = Math.min(...convertedValues); const max = Math.max(...convertedValues); + // Get valid step options + const filteredSteps = Object.fromEntries( + Object.entries(stepMap).filter(([_, val]) => val < max - min) + ); + // Update the range and minMax state setCurrentValue(min); setMinMax({ min, max }); setRange({ start: min, end: min + step }); + setValidSteps(filteredSteps); model.addFeatureAsMs(layerId, selectedFeature); }, [selectedFeature]); @@ -357,13 +365,11 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { setStep(+e.target.value); }} > - {Object.entries(stepMap).map(([key, val]) => { - return ( - - ); - })} + {Object.entries(validSteps).map(([key, val]) => ( + + ))}
From 01bc28b776f5e77009d8880e4b0492c71912c42a Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 13:00:31 +0100 Subject: [PATCH 34/59] Enable/Disabel toolbar button based on selection --- packages/base/src/commands.ts | 29 +++++++++++++++++++---- packages/base/src/panelview/leftpanel.tsx | 7 ++++++ packages/schema/src/interfaces.ts | 2 +- packages/schema/src/model.ts | 2 +- python/jupytergis_lab/src/index.ts | 3 ++- 5 files changed, 35 insertions(+), 8 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 2b357b71e..d1cafd00c 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -176,17 +176,36 @@ export function addCommands( return tracker.currentWidget?.model.isTemporalControllerActive || false; }, isEnabled: () => { - return tracker.currentWidget - ? tracker.currentWidget.model.sharedModel.editable - : false; + const model = tracker.currentWidget?.model; + if (!model) { + return false; + } + + const selectedLayers = model.localState?.selected?.value; + + // No selection / too many selections / selection is a source + if ( + !selectedLayers || + Object.keys(selectedLayers).length !== 1 || + model.getSource(Object.keys(selectedLayers)[0]) + ) { + if (model.isTemporalControllerActive) { + model.toggleTemporalController(); + commands.notifyCommandChanged(CommandIDs.temporalController); + } + + return false; + } + + return true; }, - execute: args => { + execute: () => { const current = tracker.currentWidget; if (!current) { return; } - current.model.toggleTemporalController(CommandIDs.temporalController); + current.model.toggleTemporalController(); commands.notifyCommandChanged(CommandIDs.temporalController); }, ...icons.get(CommandIDs.temporalController) diff --git a/packages/base/src/panelview/leftpanel.tsx b/packages/base/src/panelview/leftpanel.tsx index 1d2ff10c9..d0e0d0ba9 100644 --- a/packages/base/src/panelview/leftpanel.tsx +++ b/packages/base/src/panelview/leftpanel.tsx @@ -13,6 +13,8 @@ import { LayersPanel } from './components/layers'; import { SourcesPanel } from './components/sources'; import { ControlPanelHeader } from './header'; import { FilterPanel } from './components/filter-panel/Filter'; +import { CommandRegistry } from '@lumino/commands'; +import { CommandIDs } from '../constants'; /** * Options of the left panel widget. @@ -40,6 +42,7 @@ export class LeftPanelWidget extends SidePanel { this._model = options.model; this._state = options.state; + this._commands = options.commands; const header = new ControlPanelHeader(); this.header.addWidget(header); @@ -178,6 +181,7 @@ export class LeftPanelWidget extends SidePanel { this._lastSelectedNodeId = nodeId; jGISModel.syncSelected(updatedSelectedValue, this.id); + this._commands.notifyCommandChanged(CommandIDs.temporalController); } }; @@ -191,11 +195,13 @@ export class LeftPanelWidget extends SidePanel { this._lastSelectedNodeId = nodeId; } this._model?.jGISModel?.syncSelected(selection, this.id); + this._commands.notifyCommandChanged(CommandIDs.temporalController); } private _lastSelectedNodeId: string; private _model: IControlPanelModel; private _state: IStateDB; + private _commands: CommandRegistry; } export namespace LeftPanelWidget { @@ -203,6 +209,7 @@ export namespace LeftPanelWidget { model: IControlPanelModel; tracker: IJupyterGISTracker; state: IStateDB; + commands: CommandRegistry; } export interface IProps { diff --git a/packages/schema/src/interfaces.ts b/packages/schema/src/interfaces.ts index 318fedd3b..dc1038447 100644 --- a/packages/schema/src/interfaces.ts +++ b/packages/schema/src/interfaces.ts @@ -217,7 +217,7 @@ export interface IJupyterGISModel extends DocumentRegistry.IModel { isIdentifying: boolean; isTemporalControllerActive: boolean; - toggleTemporalController(emitter: string): void; + toggleTemporalController(): void; addFeatureAsMs(id: string, selectedFeature: string): void; triggerLayerUpdate(layerId: string, layer: IJGISLayer): void; diff --git a/packages/schema/src/model.ts b/packages/schema/src/model.ts index 4abffb084..26f81110f 100644 --- a/packages/schema/src/model.ts +++ b/packages/schema/src/model.ts @@ -627,7 +627,7 @@ export class JupyterGISModel implements IJupyterGISModel { this._isIdentifying = !this._isIdentifying; } - toggleTemporalController(emitter: string) { + toggleTemporalController() { this._isTemporalControllerActive = !this._isTemporalControllerActive; this.sharedModel.awareness.setLocalStateField( diff --git a/python/jupytergis_lab/src/index.ts b/python/jupytergis_lab/src/index.ts index 08b2039e7..757436c96 100644 --- a/python/jupytergis_lab/src/index.ts +++ b/python/jupytergis_lab/src/index.ts @@ -270,7 +270,8 @@ const controlPanel: JupyterFrontEndPlugin = { const leftControlPanel = new LeftPanelWidget({ model: controlModel, tracker, - state + state, + commands: app.commands }); leftControlPanel.id = 'jupytergis::leftControlPanel'; leftControlPanel.title.caption = 'JupyterGIS Control Panel'; From 1819596546284e7ebacff4273ac61242542388f3 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 13:01:00 +0100 Subject: [PATCH 35/59] Clean up --- packages/base/src/mainview/mainView.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 6b45cd3c7..178c793f2 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -550,7 +550,6 @@ export class MainView extends React.Component { newSource = new VectorSource({ features: featureCollection }); - console.log('finish'); break; } From 1e1ca40155f88705cf8a2f2e43a4c3dfe8248e3d Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 13:35:43 +0100 Subject: [PATCH 36/59] Fix CSS for mainview --- packages/base/src/mainview/mainView.tsx | 50 +++++++++++++------------ python/jupytergis_lab/style/base.css | 8 +++- 2 files changed, 33 insertions(+), 25 deletions(-) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 178c793f2..c31f6110a 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1796,35 +1796,37 @@ export class MainView extends React.Component { ); })} - {this._model.isTemporalControllerActive && ( - - )} -
- - - - +
+ {this._model.isTemporalControllerActive && ( + + )}
+ + + + +
+
+
- ); } diff --git a/python/jupytergis_lab/style/base.css b/python/jupytergis_lab/style/base.css index b4355fb06..78dba813e 100644 --- a/python/jupytergis_lab/style/base.css +++ b/python/jupytergis_lab/style/base.css @@ -212,10 +212,16 @@ div.jGIS-toolbar-widget > div.jp-Toolbar-item:last-child { border: solid 1.5px red; } +.jGIS-Mainview-Container { + display: flex; + flex-direction: column; + height: 100%; +} + .jGIS-Mainview { width: 100%; - height: calc(100% - 16px); box-sizing: border-box; + flex: 1; } .jGIS-Popup-Wrapper { From 55574134b828c568ee589d670ddbf1ccc7cef9c5 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 13:36:02 +0100 Subject: [PATCH 37/59] Add raster layer check --- packages/base/src/commands.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index d1cafd00c..c5d3749ea 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -183,11 +183,12 @@ export function addCommands( const selectedLayers = model.localState?.selected?.value; - // No selection / too many selections / selection is a source + // No selection / too many selections / selection is a source /selection is not a vector layer if ( !selectedLayers || Object.keys(selectedLayers).length !== 1 || - model.getSource(Object.keys(selectedLayers)[0]) + model.getSource(Object.keys(selectedLayers)[0]) || + model.getLayer(Object.keys(selectedLayers)[0])?.type !== 'VectorLayer' ) { if (model.isTemporalControllerActive) { model.toggleTemporalController(); From 3e9ee242f778167e14b5afda0a6854778af30587 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 13:36:16 +0100 Subject: [PATCH 38/59] Clean up --- packages/base/src/mainview/TemporalSlider.tsx | 195 ++++++++---------- 1 file changed, 91 insertions(+), 104 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 18b8d2652..c9cfb8fcf 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -271,112 +271,99 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return (
- {layerId && validFeatures.length > 0 ? ( - <> -
- {/* Feature select */} -
- - -
- {/* Current frame */} -
- Current Frame:{' '} - {millisecondsToDateString(range.start, inferredDateFormat)} ≤{' '} - t ≤{' '} - {millisecondsToDateString(range.end, inferredDateFormat)} -
+
+ {/* Feature select */} +
+ + +
+ {/* Current frame */} +
+ Current Frame:{' '} + {millisecondsToDateString(range.start, inferredDateFormat)} ≤{' '} + t ≤{' '} + {millisecondsToDateString(range.end, inferredDateFormat)} +
+
+
+ {/* controls */} +
+
+ +
-
- {/* controls */} -
-
- - -
-
- - setFps(+e.target.value)} - /> -
-
- {/* slider */} -
- -
+
+ + setFps(+e.target.value)} + />
-
- {/* range */} -
- Range: - {millisecondsToDateString(minMax.min, inferredDateFormat)}{' '} - to - {millisecondsToDateString(minMax.max, inferredDateFormat)} -
- {/* step */} -
- - -
-
- - ) : ( -
Select a vector layer
- )} +
+ {/* slider */} +
+ +
+
+
+ {/* range */} +
+ Range: + {millisecondsToDateString(minMax.min, inferredDateFormat)}{' '} + to + {millisecondsToDateString(minMax.max, inferredDateFormat)} +
+ {/* step */} +
+ + +
+
); }; From 7075d654277135d7925cfc7a256f008f0385adb8 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 14:32:50 +0100 Subject: [PATCH 39/59] Actually use state --- packages/base/src/mainview/mainView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index c31f6110a..eb5b41c19 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1797,7 +1797,7 @@ export class MainView extends React.Component { })}
- {this._model.isTemporalControllerActive && ( + {this.state.displayTemporalController && ( )}
Date: Fri, 7 Feb 2025 14:33:01 +0100 Subject: [PATCH 40/59] Clear filter when closing --- packages/base/src/mainview/TemporalSlider.tsx | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index c9cfb8fcf..53ea84739 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -87,6 +87,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { return () => { model.clientStateChanged.disconnect(handleClientStateChanged); + removeFilter(); if (intervalRef.current) { clearInterval(intervalRef.current); } @@ -237,6 +238,32 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { model.triggerLayerUpdate(layerId, layer); }; + const removeFilter = () => { + console.log('removing'); + const layer = model.getLayer(layerIdRef.current); + if (!layer) { + return; + } + + const appliedFilters = layer.filters?.appliedFilters || []; + const logicalOp = layer.filters?.logicalOp || 'all'; + + // This is the only way to add a 'between' filter so + // find the index of the existing 'between' filter + const betweenFilterIndex = appliedFilters.findIndex( + filter => filter.operator === 'between' + ); + + if (betweenFilterIndex !== -1) { + // If found, replace the existing filter + appliedFilters.splice(betweenFilterIndex, 1); + } + + // Apply the updated filters to the layer + layer.filters = { logicalOp, appliedFilters }; + model.triggerLayerUpdate(layerIdRef.current, layer); + }; + const playAnimation = () => { // Clear any existing interval first if (intervalRef.current) { From d833d689ac74c55e27776938ffda7c8911bbce4c Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 7 Feb 2025 14:45:37 +0100 Subject: [PATCH 41/59] Fix animate in lite --- packages/base/src/mainview/TemporalSlider.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 53ea84739..5eec947f5 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -359,6 +359,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { Date: Fri, 7 Feb 2025 15:29:48 +0100 Subject: [PATCH 42/59] Add borders --- packages/base/style/statusBar.css | 1 + packages/base/style/temporalSlider.css | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/base/style/statusBar.css b/packages/base/style/statusBar.css index 9ac1ee459..73a7f49ae 100644 --- a/packages/base/style/statusBar.css +++ b/packages/base/style/statusBar.css @@ -5,6 +5,7 @@ height: 16px; background-color: var(--jp-layout-color1); font-size: var(--jp-ui-font-size0); + border-top: 1px solid var(--jp-border-color1); } .jgis-status-bar-item { diff --git a/packages/base/style/temporalSlider.css b/packages/base/style/temporalSlider.css index ffd689404..4df1df185 100644 --- a/packages/base/style/temporalSlider.css +++ b/packages/base/style/temporalSlider.css @@ -4,6 +4,7 @@ gap: 0.2rem; padding: 0.5rem; background-color: var(--jp-layout-color1); + border-bottom: 1px solid var(--jp-border-color1); } .jp-gis-temporal-slider-container span, From 91bea0186fba3d7574c02af6a2c35d8d0ef234db Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 10 Feb 2025 11:37:15 +0100 Subject: [PATCH 43/59] Remove status bar border and restore screenshots --- packages/base/style/statusBar.css | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/base/style/statusBar.css b/packages/base/style/statusBar.css index 73a7f49ae..9ac1ee459 100644 --- a/packages/base/style/statusBar.css +++ b/packages/base/style/statusBar.css @@ -5,7 +5,6 @@ height: 16px; background-color: var(--jp-layout-color1); font-size: var(--jp-ui-font-size0); - border-top: 1px solid var(--jp-border-color1); } .jgis-status-bar-item { From ff9d5c484869000b7441854359e4cb4b2b33764d Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 10 Feb 2025 12:52:59 +0100 Subject: [PATCH 44/59] Remove filter from example --- examples/earthquakes.jGIS | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/examples/earthquakes.jGIS b/examples/earthquakes.jGIS index 46d10fefa..18eff9fb2 100644 --- a/examples/earthquakes.jGIS +++ b/examples/earthquakes.jGIS @@ -6,13 +6,7 @@ "layers": { "3e21d680-406f-4099-bd9e-3a4edb9a2c8b": { "filters": { - "appliedFilters": [ - { - "feature": "convertedtime", - "operator": ">=", - "value": 1506561891990.0 - } - ], + "appliedFilters": [], "logicalOp": "all" }, "name": "Custom GeoJSON Layer", @@ -48,13 +42,13 @@ "options": { "bearing": 0.0, "extent": [ - -8743782.33482077, - -9086918.06770886, - 3974641.244421752, - 19283053.908469707 + -14723872.80667293, + -4835119.4874388315, + -1931504.9042952778, + 13305887.78837996 ], - "latitude": 41.57863106624126, - "longitude": -21.420961668139388, + "latitude": 35.52446437432016, + "longitude": -74.80890180273175, "pitch": 0.0, "projection": "EPSG:3857", "zoom": 2.6670105136699993 From 9cf7bb7ad63a4d143d633ae1b28cf9d84de7b228 Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 10 Feb 2025 12:53:22 +0100 Subject: [PATCH 45/59] Select default feature --- packages/base/src/mainview/TemporalSlider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 5eec947f5..cba5d314a 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -128,6 +128,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } setValidFeatures(featuresForSelect); + setSelectedFeature(featuresForSelect[0]); }, [featureProperties]); useEffect(() => { @@ -308,7 +309,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { setSelectedFeature(e.target.value); }} > - {validFeatures.map(feature => { return (
@@ -402,9 +401,8 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { {/* range */}
Range: - {millisecondsToDateString(minMax.min, inferredDateFormat)}{' '} - to - {millisecondsToDateString(minMax.max, inferredDateFormat)} + {millisecondsToDateString(minMax.min, dateFormat)} to + {millisecondsToDateString(minMax.max, dateFormat)}
{/* step */}
diff --git a/packages/base/src/tools.ts b/packages/base/src/tools.ts index 80643c450..71947592e 100644 --- a/packages/base/src/tools.ts +++ b/packages/base/src/tools.ts @@ -868,7 +868,7 @@ export const stringToArrayBuffer = async ( return await base64Response.arrayBuffer(); }; -export const getNumericFeatures = ( +export const getNumericFeatureAttributes = ( featureProperties: Record> ) => { // We only want number values here From 68307601c9fee1d47f84db0f8ae9a83353fc8e5f Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 11 Feb 2025 14:44:36 +0100 Subject: [PATCH 50/59] Heatmap wip --- packages/base/src/mainview/mainView.tsx | 50 ++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 5 deletions(-) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 92ebe1b8b..de60b5a52 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -37,7 +37,7 @@ import { ContextMenu } from '@lumino/widgets'; import { Collection, MapBrowserEvent, Map as OlMap, View, getUid } from 'ol'; //@ts-expect-error no types for ol-pmtiles import { PMTilesRasterSource, PMTilesVectorSource } from 'ol-pmtiles'; -import { FeatureLike } from 'ol/Feature'; +import Feature, { FeatureLike } from 'ol/Feature'; import { ScaleLine } from 'ol/control'; import { Coordinate } from 'ol/coordinate'; import { singleClick } from 'ol/events/condition'; @@ -60,7 +60,7 @@ import { } from 'ol/proj'; import { get as getProjection } from 'ol/proj.js'; import { register } from 'ol/proj/proj4.js'; -import Feature from 'ol/render/Feature'; +import RenderFeature from 'ol/render/Feature'; import { GeoTIFF as GeoTIFFSource, ImageTile as ImageTileSource, @@ -84,6 +84,9 @@ import { FollowIndicator } from './FollowIndicator'; import TemporalSlider from './TemporalSlider'; import { MainViewModel } from './mainviewmodel'; import { Spinner } from './spinner'; +import BaseVectorLayer from 'ol/layer/BaseVector'; +import WebGLPointsLayerRenderer from 'ol/renderer/webgl/PointsLayer'; +import { Geometry } from 'ol/geom'; interface IProps { viewModel: MainViewModel; @@ -511,7 +514,7 @@ export class MainView extends React.Component { minZoom: sourceParameters.minZoom, maxZoom: sourceParameters.maxZoom, url: url, - format: new MVT({ featureClass: Feature }) + format: new MVT({ featureClass: RenderFeature }) }); } else { newSource = new PMTilesVectorSource({ @@ -1167,22 +1170,59 @@ export class MainView extends React.Component { const layerParams = layer.parameters as IHeatmapLayer; const heatmap = mapLayer as HeatmapLayer; - if (oldLayer?.feature !== layerParams.feature) { + // no old layer when filter is in memory + if (oldLayer && oldLayer?.parameters.feature !== layerParams.feature) { // No way to change 'weight' attribute (feature used for heatmap stuff) so need to replace layer this.replaceLayer(id, layer); return; } - heatmap.setOpacity(layerParams.opacity || 1); + heatmap.setOpacity(layerParams.opacity ?? 1); heatmap.setBlur(layerParams.blur); heatmap.setRadius(layerParams.radius); heatmap.setGradient( layerParams.color ?? ['#00f', '#0ff', '#0f0', '#ff0', '#f00'] ); + + const source: VectorSource = this._sources[layerParams.source]; + + if (layer.filters?.appliedFilters.length) { + // If heatmaps ever support other filter types this won't work + const activeFilter = layer.filters.appliedFilters[0]; + + // Save original features on first filter application + if (this._ogFeatures.length === 0) { + this._ogFeatures = source.getFeatures(); + console.log('preFeatureCount', this._ogFeatures); + } + + // clear current features + source.clear(); + + const startTime = activeFilter.betweenMin ?? 0; + const endTime = activeFilter.betweenMax ?? 1; + + const filteredFeatures = this._ogFeatures.filter(feature => { + const featureTime = feature.get(activeFilter.feature); + return featureTime >= startTime && featureTime <= endTime; + }); + + source.addFeatures(filteredFeatures); + } else { + // Restore original features when no filters are applied + source.addFeatures(this._ogFeatures); + this._ogFeatures = []; + const postFeatureCount = source.getFeatures(); + console.log('postFeatureCount', postFeatureCount); + } + + break; } } } + private _ogFeatures: Feature[] = []; + /** * Wait for all layers to be loaded. */ From bd8e83a9483d342e188c20a8763a5c002a31aa2f Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 11 Feb 2025 17:43:37 +0100 Subject: [PATCH 51/59] Remove feature from schema --- .../base/src/formbuilder/objectform/heatmapLayerForm.ts | 4 ---- packages/schema/src/schema/heatmapLayer.json | 6 +----- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/packages/base/src/formbuilder/objectform/heatmapLayerForm.ts b/packages/base/src/formbuilder/objectform/heatmapLayerForm.ts index a46bddd80..703b7a36f 100644 --- a/packages/base/src/formbuilder/objectform/heatmapLayerForm.ts +++ b/packages/base/src/formbuilder/objectform/heatmapLayerForm.ts @@ -54,10 +54,6 @@ export class HeatmapLayerPropertiesForm extends LayerPropertiesForm { if (!data) { return; } - - if (this.features.length !== 0) { - schema.properties.feature.enum = this.features; - } } private async fetchFeatureNames( diff --git a/packages/schema/src/schema/heatmapLayer.json b/packages/schema/src/schema/heatmapLayer.json index 39605fec1..9b654d788 100644 --- a/packages/schema/src/schema/heatmapLayer.json +++ b/packages/schema/src/schema/heatmapLayer.json @@ -2,17 +2,13 @@ "type": "object", "description": "HeatmapLayer", "title": "IHeatmapLayer", - "required": ["source", "blur", "radius", "feature"], + "required": ["source", "blur", "radius"], "additionalProperties": false, "properties": { "source": { "type": "string", "description": "The id of the source" }, - "feature": { - "type": "string", - "description": "The feature to use" - }, "opacity": { "type": "number", "description": "The opacity of the source", From 1d538b60bd5a6016078cc444d7120096f3adb7ea Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 11 Feb 2025 17:43:58 +0100 Subject: [PATCH 52/59] Enable for heatmap layers --- packages/base/src/commands.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 874567e5f..7b5f7a182 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -182,13 +182,16 @@ export function addCommands( } const selectedLayers = model.localState?.selected?.value; - + if (!selectedLayers) { + return false; + } + const layerType = model.getLayer(Object.keys(selectedLayers)[0])?.type; // Selection should only be one vector layer + ['VectorLayer', 'HeatmapLayer'].includes(layerType ?? ''); if ( - !selectedLayers || Object.keys(selectedLayers).length !== 1 || model.getSource(Object.keys(selectedLayers)[0]) || - model.getLayer(Object.keys(selectedLayers)[0])?.type !== 'VectorLayer' + !['VectorLayer', 'HeatmapLayer'].includes(layerType ?? '') ) { if (model.isTemporalControllerActive) { model.toggleTemporalController(); From 95cf5bc06a1135f85aa4bcbc0c0e4126f5409d8a Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 11 Feb 2025 17:44:27 +0100 Subject: [PATCH 53/59] Close --- packages/base/src/mainview/TemporalSlider.tsx | 3 +++ packages/base/src/mainview/mainView.tsx | 16 +++++----------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 11056d088..adde8a70b 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -63,6 +63,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const { featureProperties } = useGetProperties({ layerId, model }); useEffect(() => { + // This is for when the selected layer changes const handleClientStateChanged = () => { if (!model.localState?.selected?.value) { return; @@ -85,6 +86,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } }; + // this is for when the layer itself changes const handleLayerChange = ( _: IJupyterGISDoc, change: IJGISLayerDocChange @@ -269,6 +271,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { // Apply the updated filters to the layer layer.filters = { logicalOp, appliedFilters }; model.triggerLayerUpdate(layerId, layer); + // model.sharedModel.updateLayer(layerId, layer); }; const removeFilter = () => { diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index de60b5a52..c1332574e 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -889,7 +889,7 @@ export class MainView extends React.Component { source: this._sources[layerParameters.source], blur: layerParameters.blur, radius: layerParameters.radius, - weight: layerParameters.feature, + // weight: layerParameters.feature, gradient: layerParameters.color }); break; @@ -1170,13 +1170,6 @@ export class MainView extends React.Component { const layerParams = layer.parameters as IHeatmapLayer; const heatmap = mapLayer as HeatmapLayer; - // no old layer when filter is in memory - if (oldLayer && oldLayer?.parameters.feature !== layerParams.feature) { - // No way to change 'weight' attribute (feature used for heatmap stuff) so need to replace layer - this.replaceLayer(id, layer); - return; - } - heatmap.setOpacity(layerParams.opacity ?? 1); heatmap.setBlur(layerParams.blur); heatmap.setRadius(layerParams.radius); @@ -1193,7 +1186,6 @@ export class MainView extends React.Component { // Save original features on first filter application if (this._ogFeatures.length === 0) { this._ogFeatures = source.getFeatures(); - console.log('preFeatureCount', this._ogFeatures); } // clear current features @@ -1202,18 +1194,20 @@ export class MainView extends React.Component { const startTime = activeFilter.betweenMin ?? 0; const endTime = activeFilter.betweenMax ?? 1; + console.log('startTime, endTime', startTime, endTime); + const filteredFeatures = this._ogFeatures.filter(feature => { const featureTime = feature.get(activeFilter.feature); return featureTime >= startTime && featureTime <= endTime; }); + console.log('filteredFeatures', filteredFeatures); + source.addFeatures(filteredFeatures); } else { // Restore original features when no filters are applied source.addFeatures(this._ogFeatures); this._ogFeatures = []; - const postFeatureCount = source.getFeatures(); - console.log('postFeatureCount', postFeatureCount); } break; From e3920859787079c13c3edebe8be071ebaaf84fb2 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 12 Feb 2025 10:25:50 +0100 Subject: [PATCH 54/59] Heatmaps work? --- packages/base/src/mainview/mainView.tsx | 27 ++++++++++--------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index c1332574e..4942e1aa0 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -887,9 +887,8 @@ export class MainView extends React.Component { newMapLayer = new HeatmapLayer({ opacity: layerParameters.opacity, source: this._sources[layerParameters.source], - blur: layerParameters.blur, - radius: layerParameters.radius, - // weight: layerParameters.feature, + blur: layerParameters.blur ?? 15, + radius: layerParameters.radius ?? 8, gradient: layerParameters.color }); break; @@ -1171,8 +1170,8 @@ export class MainView extends React.Component { const heatmap = mapLayer as HeatmapLayer; heatmap.setOpacity(layerParams.opacity ?? 1); - heatmap.setBlur(layerParams.blur); - heatmap.setRadius(layerParams.radius); + heatmap.setBlur(layerParams.blur ?? 15); + heatmap.setRadius(layerParams.radius ?? 8); heatmap.setGradient( layerParams.color ?? ['#00f', '#0ff', '#0f0', '#ff0', '#f00'] ); @@ -1180,12 +1179,12 @@ export class MainView extends React.Component { const source: VectorSource = this._sources[layerParams.source]; if (layer.filters?.appliedFilters.length) { - // If heatmaps ever support other filter types this won't work + // Heatmaps don't work with existing filter system so this should be fine const activeFilter = layer.filters.appliedFilters[0]; // Save original features on first filter application - if (this._ogFeatures.length === 0) { - this._ogFeatures = source.getFeatures(); + if (!Object.keys(this._ogFeatures).includes(id)) { + this._ogFeatures[id] = source.getFeatures(); } // clear current features @@ -1194,20 +1193,16 @@ export class MainView extends React.Component { const startTime = activeFilter.betweenMin ?? 0; const endTime = activeFilter.betweenMax ?? 1; - console.log('startTime, endTime', startTime, endTime); - - const filteredFeatures = this._ogFeatures.filter(feature => { + const filteredFeatures = this._ogFeatures[id].filter(feature => { const featureTime = feature.get(activeFilter.feature); return featureTime >= startTime && featureTime <= endTime; }); - console.log('filteredFeatures', filteredFeatures); - source.addFeatures(filteredFeatures); } else { // Restore original features when no filters are applied - source.addFeatures(this._ogFeatures); - this._ogFeatures = []; + source.addFeatures(this._ogFeatures[id]); + delete this._ogFeatures[id]; } break; @@ -1215,7 +1210,7 @@ export class MainView extends React.Component { } } - private _ogFeatures: Feature[] = []; + private _ogFeatures: IDict[]> = {}; /** * Wait for all layers to be loaded. From 685134d57225f3308ae183451154fa82f744d344 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 12 Feb 2025 11:16:16 +0100 Subject: [PATCH 55/59] Tweak --- packages/base/src/mainview/TemporalSlider.tsx | 13 ++-- packages/base/src/mainview/mainView.tsx | 71 ++++++++++++------- 2 files changed, 49 insertions(+), 35 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index adde8a70b..2b07bc88a 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -72,17 +72,11 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const selectedLayerId = Object.keys(model.localState.selected.value)[0]; // reset + // ? TODO restore from existing filter object if possible? if (selectedLayerId !== layerIdRef.current) { - setSelectedFeature(''); - setRange({ start: 0, end: 1 }); - setMinMax({ min: 0, max: 1 }); - setValidFeatures([]); + setLayerId(selectedLayerId); setDateFormat('yyyy-MM-dd'); - setStep(stepMap.year); - setCurrentValue(0); setFps(1); - setValidSteps({}); - setLayerId(selectedLayerId); } }; @@ -133,6 +127,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }, [layerId]); useEffect(() => { + console.log('feature prop effect'); const featuresForSelect = []; // We only want to show features that could be time values @@ -204,7 +199,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { setMinMax({ min, max }); setRange({ start: min, end: min + step }); setValidSteps(filteredSteps); - setStep(Object.values(filteredSteps)[0]); + setStep(Object.values(filteredSteps).slice(-1)[0]); model.addFeatureAsMs(layerId, selectedFeature); }, [selectedFeature]); diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 4942e1aa0..a87477e82 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1176,41 +1176,60 @@ export class MainView extends React.Component { layerParams.color ?? ['#00f', '#0ff', '#0f0', '#ff0', '#f00'] ); - const source: VectorSource = this._sources[layerParams.source]; + this.handleTimeStuff(id, layer); - if (layer.filters?.appliedFilters.length) { - // Heatmaps don't work with existing filter system so this should be fine - const activeFilter = layer.filters.appliedFilters[0]; + break; + } + } + } - // Save original features on first filter application - if (!Object.keys(this._ogFeatures).includes(id)) { - this._ogFeatures[id] = source.getFeatures(); - } + private _ogFeatures: IDict[]> = {}; + handleTimeStuff = (id: string, layer: IJGISLayer) => { + const selectedLayer = this._model?.localState?.selected?.value; - // clear current features - source.clear(); + if (!selectedLayer || Object.keys(selectedLayer).length !== 1) { + console.warn('This shouldnt happen'); + return; + } - const startTime = activeFilter.betweenMin ?? 0; - const endTime = activeFilter.betweenMax ?? 1; + const selectedLayerId = Object.keys(selectedLayer)[0]; - const filteredFeatures = this._ogFeatures[id].filter(feature => { - const featureTime = feature.get(activeFilter.feature); - return featureTime >= startTime && featureTime <= endTime; - }); + // Don't do anything to nonselected layers + if (selectedLayerId !== id) { + return; + } - source.addFeatures(filteredFeatures); - } else { - // Restore original features when no filters are applied - source.addFeatures(this._ogFeatures[id]); - delete this._ogFeatures[id]; - } + const layerParams = layer.parameters as IHeatmapLayer; - break; + const source: VectorSource = this._sources[layerParams.source]; + + if (layer.filters?.appliedFilters.length) { + // Heatmaps don't work with existing filter system so this should be fine + const activeFilter = layer.filters.appliedFilters[0]; + + // Save original features on first filter application + if (!Object.keys(this._ogFeatures).includes(id)) { + this._ogFeatures[id] = source.getFeatures(); } - } - } - private _ogFeatures: IDict[]> = {}; + // clear current features + source.clear(); + + const startTime = activeFilter.betweenMin ?? 0; + const endTime = activeFilter.betweenMax ?? 1; + + const filteredFeatures = this._ogFeatures[id].filter(feature => { + const featureTime = feature.get(activeFilter.feature); + return featureTime >= startTime && featureTime <= endTime; + }); + + source.addFeatures(filteredFeatures); + } else { + // Restore original features when no filters are applied + source.addFeatures(this._ogFeatures[id]); + delete this._ogFeatures[id]; + } + }; /** * Wait for all layers to be loaded. From 7b56775f187d3b20f70b90d4c17a00f9ff80bf16 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 12 Feb 2025 13:34:49 +0100 Subject: [PATCH 56/59] State restore wip --- packages/base/src/mainview/TemporalSlider.tsx | 40 +++++++++++++++++-- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 2b07bc88a..a9da47b14 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -3,6 +3,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Button, Slider } from '@jupyter/react-components'; import { IDict, + IJGISFilterItem, IJGISLayerDocChange, IJupyterGISDoc, IJupyterGISModel @@ -56,6 +57,9 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [currentValue, setCurrentValue] = useState(0); const [fps, setFps] = useState(1); const [validSteps, setValidSteps] = useState({}); + const [filterStates, setFilterStates] = useState< + IDict + >({}); const layerIdRef = useRef(''); const intervalRef = useRef(null); @@ -127,7 +131,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }, [layerId]); useEffect(() => { - console.log('feature prop effect'); const featuresForSelect = []; // We only want to show features that could be time values @@ -156,6 +159,11 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { } setValidFeatures(featuresForSelect); + // const currentStateSelectedValue = filterStates[layerId]?.feature; + + // // Delete the ms + // const loseMS = currentStateSelectedValue?.slice(0, -2); + // console.log('loseMS', loseMS); setSelectedFeature(featuresForSelect[0]); }, [featureProperties]); @@ -195,15 +203,35 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { Object.entries(stepMap).filter(([_, val]) => val < max - min) ); - setCurrentValue(min); + //using filter item as a state object to restore prev values + const currentState = filterStates[layerId]; + if (typeof currentState?.value === 'string') { + return; + } + setMinMax({ min, max }); - setRange({ start: min, end: min + step }); + + setRange({ + start: currentState?.betweenMin ?? min, + end: currentState?.betweenMax ?? min + step + }); + setValidSteps(filteredSteps); setStep(Object.values(filteredSteps).slice(-1)[0]); model.addFeatureAsMs(layerId, selectedFeature); }, [selectedFeature]); + useEffect(() => { + const currentState = filterStates[layerId]; + if (typeof currentState?.value === 'string') { + console.log('broke'); + return; + } + + setCurrentValue(currentState?.value ?? 0); + }, [minMax]); + // Infer the date format from a date string const determineDateFormat = (dateString: string): string | null => { for (const format of commonDateFormats) { @@ -231,6 +259,7 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; const applyFilter = (value: number) => { + console.log('apply filter'); const newFilter = { feature: `${selectedFeature}ms`, operator: 'between' as const, @@ -263,6 +292,11 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { appliedFilters.push(newFilter); } + setFilterStates(prevState => ({ + ...prevState, + [layerId]: newFilter + })); + // Apply the updated filters to the layer layer.filters = { logicalOp, appliedFilters }; model.triggerLayerUpdate(layerId, layer); From 69b4126a56710c7ba0f26e63d0b37ce8ef51f063 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 12 Feb 2025 13:57:06 +0100 Subject: [PATCH 57/59] Set filter states in mainview --- packages/base/src/mainview/TemporalSlider.tsx | 15 ++++++-------- packages/base/src/mainview/mainView.tsx | 20 +++++++++++++++---- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index a9da47b14..bb413d275 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -22,6 +22,7 @@ import { useGetProperties } from '../dialogs/symbology/hooks/useGetProperties'; interface ITemporalSliderProps { model: IJupyterGISModel; + filterStates: IDict; } // List of common date formats to try @@ -46,7 +47,7 @@ const stepMap = { year: millisecondsInDay * daysInYear }; -const TemporalSlider = ({ model }: ITemporalSliderProps) => { +const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { const [layerId, setLayerId] = useState(''); const [selectedFeature, setSelectedFeature] = useState(''); const [range, setRange] = useState({ start: 0, end: 1 }); // min/max of current range being displayed @@ -57,9 +58,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { const [currentValue, setCurrentValue] = useState(0); const [fps, setFps] = useState(1); const [validSteps, setValidSteps] = useState({}); - const [filterStates, setFilterStates] = useState< - IDict - >({}); const layerIdRef = useRef(''); const intervalRef = useRef(null); @@ -259,7 +257,6 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { }; const applyFilter = (value: number) => { - console.log('apply filter'); const newFilter = { feature: `${selectedFeature}ms`, operator: 'between' as const, @@ -292,10 +289,10 @@ const TemporalSlider = ({ model }: ITemporalSliderProps) => { appliedFilters.push(newFilter); } - setFilterStates(prevState => ({ - ...prevState, - [layerId]: newFilter - })); + // setFilterStates(prevState => ({ + // ...prevState, + // [layerId]: newFilter + // })); // Apply the updated filters to the layer layer.filters = { logicalOp, appliedFilters }; diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index a87477e82..6dd126bdc 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -84,8 +84,6 @@ import { FollowIndicator } from './FollowIndicator'; import TemporalSlider from './TemporalSlider'; import { MainViewModel } from './mainviewmodel'; import { Spinner } from './spinner'; -import BaseVectorLayer from 'ol/layer/BaseVector'; -import WebGLPointsLayerRenderer from 'ol/renderer/webgl/PointsLayer'; import { Geometry } from 'ol/geom'; interface IProps { @@ -106,6 +104,7 @@ interface IStates { scale: number; loadingErrors: Array<{ id: string; error: any; index: number }>; displayTemporalController: boolean; + filterStates: IDict; } export class MainView extends React.Component { @@ -149,7 +148,8 @@ export class MainView extends React.Component { loadingLayer: false, scale: 0, loadingErrors: [], - displayTemporalController: false + displayTemporalController: false, + filterStates: {} }; this._sources = []; @@ -1223,6 +1223,15 @@ export class MainView extends React.Component { return featureTime >= startTime && featureTime <= endTime; }); + // set state for restoration + this.setState(old => ({ + ...old, + filterStates: { + ...this.state.filterStates, + [selectedLayerId]: activeFilter + } + })); + source.addFeatures(filteredFeatures); } else { // Restore original features when no filters are applied @@ -1850,7 +1859,10 @@ export class MainView extends React.Component {
{this.state.displayTemporalController && ( - + )}
Date: Wed, 12 Feb 2025 17:30:32 +0100 Subject: [PATCH 58/59] Fixed --- packages/base/src/mainview/TemporalSlider.tsx | 94 ++++++++++--------- 1 file changed, 48 insertions(+), 46 deletions(-) diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index bb413d275..19bd45759 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -8,12 +8,13 @@ import { IJupyterGISDoc, IJupyterGISModel } from '@jupytergis/schema'; -import { format, isValid, parse, toDate } from 'date-fns'; +import { format, isValid, parse } from 'date-fns'; import { daysInYear, millisecondsInDay, millisecondsInHour, millisecondsInMinute, + millisecondsInSecond, millisecondsInWeek, minutesInMonth } from 'date-fns/constants'; @@ -26,6 +27,7 @@ interface ITemporalSliderProps { } // List of common date formats to try +// TODO: Not even close to every valid format const commonDateFormats = [ 'yyyy-MM-dd', // ISO format (e.g., 2023-10-05) 'dd/MM/yyyy', // European format (e.g., 05/10/2023) @@ -40,6 +42,9 @@ const commonDateFormats = [ // Time steps in milliseconds const stepMap = { + millisecond: 1, + second: millisecondsInSecond, + minute: millisecondsInMinute, hour: millisecondsInHour, day: millisecondsInDay, week: millisecondsInWeek, @@ -64,6 +69,7 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { const { featureProperties } = useGetProperties({ layerId, model }); + console.log('top', currentValue); useEffect(() => { // This is for when the selected layer changes const handleClientStateChanged = () => { @@ -74,7 +80,6 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { const selectedLayerId = Object.keys(model.localState.selected.value)[0]; // reset - // ? TODO restore from existing filter object if possible? if (selectedLayerId !== layerIdRef.current) { setLayerId(selectedLayerId); setDateFormat('yyyy-MM-dd'); @@ -129,65 +134,64 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { }, [layerId]); useEffect(() => { - const featuresForSelect = []; + const results: string[] = []; - // We only want to show features that could be time values for (const [key, set] of Object.entries(featureProperties)) { - let isDateValid = false; - const checkValue = set.values().next().value; - - // We only want to look at strings and whole numbers - // ? Is there a better way to check if number values are valid timestamps? - // ! QGIS doesn't actually support number values for their time thing - const isString = typeof checkValue === 'string'; - const isNumber = - typeof checkValue === 'number' && Number.isInteger(checkValue); - if (!isString && !isNumber) { + if (set.size === 0) { continue; } - isDateValid = isValid(toDate(checkValue)); - if (!isDateValid) { + const sampleValue = set.values().next().value; + + // Validate value type + const isString = typeof sampleValue === 'string'; + const isInteger = Number.isInteger(sampleValue); + if (!isString && !isInteger) { continue; } - if (checkValue) { - featuresForSelect.push(key); + // Date validation + if (isString) { + const dateFormatFromString = determineDateFormat(sampleValue); + + if (!dateFormatFromString) { + continue; + } + setDateFormat(dateFormatFromString); } - } - setValidFeatures(featuresForSelect); - // const currentStateSelectedValue = filterStates[layerId]?.feature; + results.push(key); + } - // // Delete the ms - // const loseMS = currentStateSelectedValue?.slice(0, -2); - // console.log('loseMS', loseMS); - setSelectedFeature(featuresForSelect[0]); + // if we have state then remove the ms from the converted feature name + const currentState = filterStates[layerId]; + const currentFeature = currentState?.feature.slice(0, -2); + setValidFeatures(results); + setSelectedFeature(currentFeature ?? results[0]); }, [featureProperties]); useEffect(() => { - if (!selectedFeature) { + console.log('selecting feature'); + if (!selectedFeature || !featureProperties[selectedFeature]) { return; } - // Get the values from the selected feature - const values: any[] = Array.from(featureProperties[selectedFeature]); + // Get and validate values + const valueSet = featureProperties[selectedFeature]; + if (valueSet.size === 0) { + return; + } - // Check the type of the first element - const isString = typeof values[0] === 'string'; - let convertedValues; + const values = Array.from(valueSet); + const [firstValue] = values; - if (isString) { - const dateFormatFromString = determineDateFormat(values[0]); - if (!dateFormatFromString) { - console.log('Date string has an unsupported format'); - return; - } + // Check the type of the first element + const isString = typeof firstValue === 'string'; - setDateFormat(dateFormatFromString); + let convertedValues: number[]; + if (isString) { convertedValues = values.map(value => Date.parse(value)); // Convert all strings to milliseconds - setDateFormat(dateFormatFromString); } else { convertedValues = values; // Keep numbers as they are } @@ -203,20 +207,17 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { //using filter item as a state object to restore prev values const currentState = filterStates[layerId]; - if (typeof currentState?.value === 'string') { - return; - } + const step = + Object.values(filteredSteps).slice(-1)[0] ?? stepMap.millisecond; + setValidSteps(filteredSteps); + setStep(step); setMinMax({ min, max }); - setRange({ start: currentState?.betweenMin ?? min, end: currentState?.betweenMax ?? min + step }); - setValidSteps(filteredSteps); - setStep(Object.values(filteredSteps).slice(-1)[0]); - model.addFeatureAsMs(layerId, selectedFeature); }, [selectedFeature]); @@ -251,6 +252,7 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { }; const handleChange = (e: any) => { + console.log('hanfdle change', e.target.value); setCurrentValue(+e.target.value); setRange({ start: +e.target.value, end: +e.target.value + step }); applyFilter(+e.target.value); From a3000e2ddc11dd25796150fc4823af7fa284eef4 Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 13 Feb 2025 10:26:14 +0100 Subject: [PATCH 59/59] Clean up --- packages/base/src/commands.ts | 28 +++++++++++-------- packages/base/src/mainview/TemporalSlider.tsx | 20 ++++--------- packages/base/src/mainview/mainView.tsx | 27 ++++++++++-------- 3 files changed, 37 insertions(+), 38 deletions(-) diff --git a/packages/base/src/commands.ts b/packages/base/src/commands.ts index 7b5f7a182..94f076e3d 100644 --- a/packages/base/src/commands.ts +++ b/packages/base/src/commands.ts @@ -185,18 +185,22 @@ export function addCommands( if (!selectedLayers) { return false; } - const layerType = model.getLayer(Object.keys(selectedLayers)[0])?.type; - // Selection should only be one vector layer - ['VectorLayer', 'HeatmapLayer'].includes(layerType ?? ''); - if ( - Object.keys(selectedLayers).length !== 1 || - model.getSource(Object.keys(selectedLayers)[0]) || - !['VectorLayer', 'HeatmapLayer'].includes(layerType ?? '') - ) { - if (model.isTemporalControllerActive) { - model.toggleTemporalController(); - commands.notifyCommandChanged(CommandIDs.temporalController); - } + + const layerId = Object.keys(selectedLayers)[0]; + const layerType = model.getLayer(layerId)?.type; + if (!layerType) { + return false; + } + + // Selection should only be one vector or heatmap layer + const isSelectionValid = + Object.keys(selectedLayers).length === 1 && + !model.getSource(layerId) && + ['VectorLayer', 'HeatmapLayer'].includes(layerType); + + if (!isSelectionValid && model.isTemporalControllerActive) { + model.toggleTemporalController(); + commands.notifyCommandChanged(CommandIDs.temporalController); return false; } diff --git a/packages/base/src/mainview/TemporalSlider.tsx b/packages/base/src/mainview/TemporalSlider.tsx index 19bd45759..96eaa9f12 100644 --- a/packages/base/src/mainview/TemporalSlider.tsx +++ b/packages/base/src/mainview/TemporalSlider.tsx @@ -69,7 +69,6 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { const { featureProperties } = useGetProperties({ layerId, model }); - console.log('top', currentValue); useEffect(() => { // This is for when the selected layer changes const handleClientStateChanged = () => { @@ -171,7 +170,6 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { }, [featureProperties]); useEffect(() => { - console.log('selecting feature'); if (!selectedFeature || !featureProperties[selectedFeature]) { return; } @@ -221,17 +219,16 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { model.addFeatureAsMs(layerId, selectedFeature); }, [selectedFeature]); + // minMax needs to be set before current value so the slider displays correctly useEffect(() => { const currentState = filterStates[layerId]; - if (typeof currentState?.value === 'string') { - console.log('broke'); - return; - } - setCurrentValue(currentState?.value ?? 0); + setCurrentValue( + typeof currentState?.value === 'number' ? currentState.value : minMax.min + ); }, [minMax]); - // Infer the date format from a date string + // Guess the date format from a date string const determineDateFormat = (dateString: string): string | null => { for (const format of commonDateFormats) { const parsedDate = parse(dateString, format, new Date()); @@ -252,7 +249,6 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { }; const handleChange = (e: any) => { - console.log('hanfdle change', e.target.value); setCurrentValue(+e.target.value); setRange({ start: +e.target.value, end: +e.target.value + step }); applyFilter(+e.target.value); @@ -291,15 +287,9 @@ const TemporalSlider = ({ model, filterStates }: ITemporalSliderProps) => { appliedFilters.push(newFilter); } - // setFilterStates(prevState => ({ - // ...prevState, - // [layerId]: newFilter - // })); - // Apply the updated filters to the layer layer.filters = { logicalOp, appliedFilters }; model.triggerLayerUpdate(layerId, layer); - // model.sharedModel.updateLayer(layerId, layer); }; const removeFilter = () => { diff --git a/packages/base/src/mainview/mainView.tsx b/packages/base/src/mainview/mainView.tsx index 6dd126bdc..621ffc830 100644 --- a/packages/base/src/mainview/mainView.tsx +++ b/packages/base/src/mainview/mainView.tsx @@ -1176,25 +1176,29 @@ export class MainView extends React.Component { layerParams.color ?? ['#00f', '#0ff', '#0f0', '#ff0', '#f00'] ); - this.handleTimeStuff(id, layer); + this.handleTemporalController(id, layer); break; } } } - private _ogFeatures: IDict[]> = {}; - handleTimeStuff = (id: string, layer: IJGISLayer) => { + /** + * Heatmap layers don't work with style based filtering. + * This modifies the features in the underlying source + * to work with the temporal controller + */ + handleTemporalController = (id: string, layer: IJGISLayer) => { const selectedLayer = this._model?.localState?.selected?.value; + // Temporal Controller shouldn't be active if more than one layer is selected if (!selectedLayer || Object.keys(selectedLayer).length !== 1) { - console.warn('This shouldnt happen'); return; } const selectedLayerId = Object.keys(selectedLayer)[0]; - // Don't do anything to nonselected layers + // Don't do anything to unselected layers if (selectedLayerId !== id) { return; } @@ -1208,17 +1212,17 @@ export class MainView extends React.Component { const activeFilter = layer.filters.appliedFilters[0]; // Save original features on first filter application - if (!Object.keys(this._ogFeatures).includes(id)) { - this._ogFeatures[id] = source.getFeatures(); + if (!Object.keys(this._originalFeatures).includes(id)) { + this._originalFeatures[id] = source.getFeatures(); } // clear current features source.clear(); const startTime = activeFilter.betweenMin ?? 0; - const endTime = activeFilter.betweenMax ?? 1; + const endTime = activeFilter.betweenMax ?? 1000; - const filteredFeatures = this._ogFeatures[id].filter(feature => { + const filteredFeatures = this._originalFeatures[id].filter(feature => { const featureTime = feature.get(activeFilter.feature); return featureTime >= startTime && featureTime <= endTime; }); @@ -1235,8 +1239,8 @@ export class MainView extends React.Component { source.addFeatures(filteredFeatures); } else { // Restore original features when no filters are applied - source.addFeatures(this._ogFeatures[id]); - delete this._ogFeatures[id]; + source.addFeatures(this._originalFeatures[id]); + delete this._originalFeatures[id]; } }; @@ -1908,4 +1912,5 @@ export class MainView extends React.Component { private _documentPath?: string; private _contextMenu: ContextMenu; private _loadingLayers: Set; + private _originalFeatures: IDict[]> = {}; }